/* ==========================================================================
   YOVEL EAST — Premium Enterprise Agriculture Site
   Design system: 8px spacing scale · glassmorphism · terrace-arc signature motif
   ========================================================================== */

:root {
  /* Brand */
  --green: #4a8f1c;
  --green-light: #7ec13f;
  --green-dark: #2f5d16;
  --green-ink: #1d3a0e;
  --yellow: #f4d03f;
  --yellow-dark: #d9ae14;
  --purple: #311356;
  --purple-light: #6b3fa0;

  /* Tints (derived) */
  --green-04: rgba(74, 143, 28, 0.04);
  --green-08: rgba(74, 143, 28, 0.08);
  --green-14: rgba(74, 143, 28, 0.14);
  --purple-06: rgba(49, 19, 86, 0.06);
  --purple-12: rgba(49, 19, 86, 0.12);
  --yellow-16: rgba(244, 208, 63, 0.16);

  /* Neutrals */
  --ink: #12180f;
  --bg: #f8faf5;
  --bg-alt: #f2f5ec;
  --white: #ffffff;
  --muted: #5c6a58;
  --muted-soft: #8a9484;
  --border: rgba(18, 24, 15, 0.08);
  --border-soft: rgba(18, 24, 15, 0.05);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.55);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(18, 24, 15, 0.05);
  --shadow: 0 16px 40px rgba(18, 24, 15, 0.08);
  --shadow-lg: 0 30px 70px rgba(18, 24, 15, 0.14);
  --shadow-green: 0 20px 44px rgba(74, 143, 28, 0.22);
  --shadow-yellow: 0 16px 34px rgba(244, 208, 63, 0.35);
  --shadow-purple: 0 20px 44px rgba(49, 19, 86, 0.22);

  /* Motion */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.3, 1);

  /* 8px spacing scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Radii */
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text, var(--ink));
  background: var(--bg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--r-sm);
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
}
h2.section-title {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: var(--s-2);
}
h2.section-title.left {
  text-align: left;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: var(--s-2);
}
.section-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: var(--s-4);
}
.light {
  color: var(--white);
}
.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}
.section-eyebrow.light::before {
  background: var(--yellow);
}

/* ---------- Candid Image Filter ---------- */
.candid-img {
  filter: contrast(0.97) saturate(0.92) sepia(0.04);
  transition:
    filter 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.farm-card:hover .candid-img {
  filter: contrast(1.05) saturate(1.04) sepia(0);
  transform: scale(1.05);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.35s var(--ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}
.btn-ghost {
  background: var(--green-08);
  color: var(--green-dark);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}
.btn-sm {
  padding: 12px 24px;
  font-size: 13px;
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple 0.6s var(--ease-soft);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-4) 0;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 8px 30px rgba(18, 24, 15, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  transition: transform 0.4s var(--ease);
  filter: brightness(0) invert(1);
}
.nav.scrolled .logo img {
  filter: none;
}
.nav-links {
  display: flex;
  gap: var(--s-4);
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: 0.25s;
  opacity: 0.92;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav.scrolled .nav-links a {
  color: var(--ink);
  opacity: 0.72;
}
.nav.scrolled .nav-links a:hover {
  opacity: 1;
  color: var(--green);
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--white);
  margin: 5px auto;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.nav.scrolled .hamburger span {
  background: var(--ink);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (full-bleed background image) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 var(--s-6);
  color: var(--white);
  overflow: hidden;
  scroll-margin-top: 84px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 24, 15, 0.6);
}
.hero-terraces {
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: var(--s-4);
  filter: brightness(0) invert(1);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: var(--s-3);
}
.hero-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--s-3);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--yellow), #fff2b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: var(--s-2);
}
.scroll-down {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-down span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ---------- Sections & Layouts ---------- */
.section {
  padding: var(--s-7) 0;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 84px;
}
.section > .container {
  width: 100%;
}
.section-white {
  background: var(--white);
}
.section-light {
  background: var(--bg);
}
.section-green {
  background: linear-gradient(150deg, var(--purple) 0%, #241041 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.centered {
  text-align: center;
}
.section-header {
  max-width: 720px;
  margin: 0 auto var(--s-6);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}
.col-image {
  position: relative;
}
.col-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.col-image.overlap {
  z-index: 1;
}
.col-image .deco-arc {
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 70%;
  opacity: 0.5;
}
.col-image.overlap.left-arc .deco-arc {
  top: -12%;
  left: -14%;
}
.col-image.overlap.right-arc .deco-arc {
  bottom: -12%;
  right: -14%;
}

/* Floating stat cards over about image */
.stat-float-group {
  position: absolute;
  bottom: -28px;
  right: -28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.stat-float {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}
.stat-float .stat-num {
  font-size: 28px;
}

/* Stats (inline, legacy usage retained for potential reuse) */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-4);
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
}
.stat {
  text-align: left;
}
.stat-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
  font-family: "Poppins", sans-serif;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Vision & Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.vm-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  border-radius: 0 4px 4px 0;
}
.vm-vision::before {
  background: linear-gradient(180deg, var(--green-light), var(--green));
}
.vm-mission::before {
  background: linear-gradient(180deg, var(--purple-light), var(--purple));
}
.vm-vision {
  background: linear-gradient(160deg, var(--white) 60%, var(--green-04) 100%);
}
.vm-mission {
  background: linear-gradient(160deg, var(--white) 60%, var(--purple-06) 100%);
}
.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
  transition: transform 0.4s var(--ease);
}
.vm-vision .vm-icon {
  background: var(--green-08);
  color: var(--green);
}
.vm-mission .vm-icon {
  background: var(--purple-12);
  color: var(--purple);
}
.vm-card:hover .vm-icon {
  transform: scale(1.1) rotate(4deg);
}
.vm-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vm-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.vm-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.vm-mission .vm-subtitle {
  color: var(--purple);
}
.vm-text {
  font-size: 16px;
  color: var(--muted);
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
}
.value-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  padding: var(--s-4) var(--s-2);
  text-align: left;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(244, 208, 63, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
}
.value-card:hover::before {
  opacity: 1;
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.value-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.value-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
}

/* History & Lists */
.history-list {
  margin-top: var(--s-3);
}
.history-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--muted);
  font-size: 16px;
}
.history-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 2px;
  background: var(--green);
}

.check-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Services (simple card grid) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.service {
  background: var(--white);
  padding: var(--s-4) var(--s-3);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-08);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2);
  transition: transform 0.4s var(--ease);
}
.service:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Bento Grid (Business Highlights) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.bento-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease);
}
.bento-item:hover {
  box-shadow: var(--shadow-lg);
}
.bento-item.b-wide {
  grid-column: span 2;
}
.bento-item.b-tall {
  grid-row: span 2;
}
.bento-item.b-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.7s var(--ease);
}
.bento-item:hover img {
  transform: scale(1.08);
}
.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18, 24, 15, 0.82) 0%,
    rgba(18, 24, 15, 0.05) 55%,
    transparent 75%
  );
}
.bento-label {
  position: absolute;
  left: var(--s-2);
  right: var(--s-2);
  bottom: var(--s-2);
  z-index: 2;
  color: var(--white);
}
.bento-label .glass-tag {
  display: inline-block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.bento-label h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 4px;
}
.bento-label p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 90%;
}
.bento-item.b-large .bento-label h3 {
  font-size: 24px;
}

/* ---------- Farms ---------- */
.farms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.farm-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  border: 1px solid var(--border);
}
.farm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.farm-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #eef1e8;
}
.farm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}
.location-badge {
  position: absolute;
  top: var(--s-2);
  left: var(--s-2);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.location-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.farm-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-1);
}
.farm-body h3 {
  font-size: 21px;
}
.farm-body p {
  color: var(--muted);
  margin-bottom: var(--s-2);
}

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.video-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #10150d;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: contrast(0.97) saturate(0.92) sepia(0.04);
  transition: transform 0.6s var(--ease);
}
.video-thumb:hover img {
  transform: scale(1.05);
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 15, 0.22);
  transition: background 0.35s var(--ease);
}
.video-thumb:hover::after {
  background: rgba(18, 24, 15, 0.32);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.35s var(--ease);
}
.video-thumb:hover .video-play {
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-play svg {
  width: 24px;
  height: 24px;
  fill: var(--ink);
  margin-left: 3px;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #10150d;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.video-body h3 {
  font-size: 19px;
}
.video-body p {
  color: var(--muted);
  font-size: 14.5px;
}
.video-more {
  text-align: center;
  color: var(--muted-soft);
  font-size: 14px;
  margin-top: var(--s-4);
  font-style: italic;
}

/* CTA banner */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 70%);
  padding: var(--s-7) 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-banner .deco-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

/* ---------- Contact (redesigned) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-6);
  align-items: stretch;
}
.contact-map-col {
  display: flex;
}
.contact-intro h2 {
  margin-bottom: var(--s-2);
}
.contact-intro > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: var(--s-4);
  max-width: 440px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: linear-gradient(160deg, var(--white), var(--green-04));
}
.contact-card .cc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-08);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .cc-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h4 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-card p {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

/* Map */
.map-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 480px;
  background:
    linear-gradient(150deg, var(--green-08), var(--purple-06)),
    repeating-linear-gradient(
      45deg,
      rgba(18, 24, 15, 0.03) 0 2px,
      transparent 2px 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.map-card .map-pin {
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
  box-shadow: var(--shadow-green);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pinFloat 3s var(--ease-soft) infinite;
}
.map-card .map-pin::after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
}
@keyframes pinFloat {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-10px);
  }
}
.map-card .map-caption {
  position: absolute;
  bottom: var(--s-2);
  left: var(--s-2);
  right: var(--s-2);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.map-card .map-caption strong {
  color: var(--ink);
  display: block;
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* ---------- Footer (mega footer) ---------- */
.footer {
  background: linear-gradient(180deg, var(--green-dark), var(--green-ink));
  color: rgba(255, 255, 255, 0.8);
  padding: var(--s-6) 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo img {
  filter: brightness(0) invert(1);
  margin-bottom: var(--s-2);
}
.footer-tag {
  font-size: 14px;
  opacity: 0.7;
  max-width: 300px;
  margin-bottom: var(--s-3);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.footer-social a:hover svg {
  stroke: var(--ink);
}
.footer h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--s-3);
}
.footer ul li {
  padding: 7px 0;
  font-size: 14px;
}
.footer ul li a {
  opacity: 0.75;
  transition: 0.25s;
}
.footer ul li a:hover {
  color: var(--yellow);
  opacity: 1;
  padding-left: 4px;
}
.footer-bottom {
  padding: var(--s-3) 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.55;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-left.visible {
  transform: translateX(0);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-right.visible {
  transform: translateX(0);
}
.stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}
.stagger .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

/* ---------- Scroll to Top Button ---------- */
.scroll-to-top {
  position: fixed;
  bottom: calc(var(--s-4) + env(safe-area-inset-bottom, 0px));
  right: calc(var(--s-4) + env(safe-area-inset-right, 0px));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow);
  z-index: 99;
}
.scroll-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
  .bento-item.b-large {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: var(--s-6) 0;
  }
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: var(--s-6);
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-logo {
    width: min(180px, 60vw);
  }
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.7rem);
  }
  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .two-col.reverse {
    direction: ltr;
  }
  .col-image img {
    height: 380px;
  }
  .stat-float-group {
    position: static;
    flex-direction: row;
    margin-top: var(--s-3);
    flex-wrap: wrap;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .farms-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
  }

  .container {
    overflow: hidden;
  }
  .nav {
    padding: 18px 0;
  }
  .nav-inner {
    min-height: 48px;
  }
  .logo img {
    width: 122px;
    height: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86%, 360px);
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px calc(28px + env(safe-area-inset-right, 0px)) 40px 28px;
    gap: var(--s-3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition:
      transform 0.4s var(--ease),
      opacity 0.3s var(--ease);
    opacity: 0;
    visibility: hidden;
    z-index: 110;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    color: var(--ink) !important;
    font-size: 18px;
    opacity: 1;
    padding: 2px 0;
  }
  .nav-links a::after {
    display: none;
  }
  .hamburger {
    display: block;
    margin-right: env(safe-area-inset-right, 0px);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: var(--s-5) 0;
  }
  .hero {
    padding-top: 112px;
    padding-bottom: var(--s-5);
  }
  .hero-logo {
    width: min(150px, 58vw);
    margin-bottom: var(--s-3);
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .section-header {
    margin-bottom: var(--s-5);
  }
  .section-title {
    font-size: clamp(24px, 7vw, 30px);
  }
  .section-sub,
  .lead {
    font-size: 16px;
  }
  .two-col {
    gap: 32px;
  }
  .col-image img {
    height: 320px;
  }
  .stat-float-group {
    gap: 10px;
  }
  .stat-float {
    min-width: 0;
    flex: 1 1 140px;
    padding: 14px 16px;
  }
  .vm-card,
  .service,
  .farm-card,
  .contact-card {
    border-radius: var(--r);
  }
  .vision-mission-grid,
  .values-grid,
  .services-grid,
  .contact-cards,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .bento-item.b-wide,
  .bento-item.b-large {
    grid-column: span 1;
  }
  .map-card,
  .map-wrap {
    min-height: 380px;
  }
  .footer-grid {
    gap: var(--s-3);
  }
  .scroll-to-top {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
    width: 46px;
    height: 46px;
  }

  .farms-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: var(--s-3);
    padding-bottom: var(--s-2);
    margin: 0 calc(-1 * var(--s-3));
    padding-left: var(--s-3);
    padding-right: var(--s-3);
  }
  .farms-grid::-webkit-scrollbar {
    display: none;
  }
  .farm-card {
    min-width: 82%;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 104px;
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 15px 24px;
    font-size: 13px;
  }
  .nav-links {
    width: 100%;
    padding: 32px 24px;
  }
  .nav-links a {
    font-size: 16px;
  }
  .contact-card {
    padding: var(--s-2);
  }
  .map-wrap {
    min-height: 300px;
  }
}

.map-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eee;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
