:root {
  --bg: #fdfdfd;
  --text: #1a1a1a;
  --text-light: #f0fdf4;
  --muted: #5f6c5b;
  --brand: #2d572c;
  --brand-dark: #1a3c19;
  --accent: #eab308;
  --card-bg: rgba(255, 255, 255, 0.9);
  --glass: rgba(255, 255, 255, 0.7);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: url('../images/background-farm.png') center/cover fixed no-repeat;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brand-dark);
  margin-top: 0;
}

/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 800px;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section.alt {
  background: rgba(240, 253, 244, 0.85);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 2.5rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-decoration: none;
  color: var(--brand);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--brand);
}

.site-nav .btn {
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
}

.site-nav .btn:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* Mobile nav */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--brand);
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  #menu-toggle:checked~.site-nav {
    display: flex;
  }
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.hero-inner {
  max-width: 900px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: #f0fdf4;
  margin: 0 auto 2rem;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
}

.btn.light {
  background: #fff;
  color: var(--brand);
}

.link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.link:hover {
  border-color: var(--brand);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-stack img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.image-stack img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Strip facts */
.strip {
  background: linear-gradient(to right, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 3rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.strip-grid strong {
  display: block;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Page hero */
.page-hero {
  background: rgba(244, 247, 245, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .narrow {
  padding: 4rem 0;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: 3rem;
}

/* Bullets */
.bullets {
  padding-left: 1.25rem;
  color: var(--muted);
}

.bullets li {
  margin: 0.5rem 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Contact */
.contact-form {
  display: grid;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  font: inherit;
  background: #f9fafb;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #1b341a, #274e26);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/leaf-pattern.png') repeat;
  opacity: 0.1;
}

.cta-inner {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
  font-size: 2.5rem;
}

.cta p {
  color: #e5fbe3;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: rgba(15, 27, 14, 0.95);
  backdrop-filter: blur(10px);
  color: #d7edd6;
  margin-top: 0;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin: 0 0 1rem;
}

.footer-grid a {
  color: #a3d2a1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: 0.5rem 0;
}

.subfooter {
  text-align: center;
  padding: 1.5rem;
  background: rgba(11, 20, 11, 0.95);
  color: #7a9c78;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}