/* =============================================================
   Farming Friend - Earthy Design System
   Custom CSS, no build step. Edit tokens below to re-theme.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette - warm, earthy, natural */
  --paper:        #FAF6EE;   /* page background */
  --paper-2:      #F2EADC;   /* alt section bg */
  --cream:        #FFFDF8;   /* cards */
  --forest:       #233A24;   /* deep green (text/headers) */
  --forest-2:     #2F4A30;   /* slightly lighter forest */
  --leaf:         #5E8240;   /* primary green accent */
  --leaf-soft:    #8AA868;   /* soft sage */
  --soil:         #4A3527;   /* brown */
  --terracotta:   #C26B43;   /* warm accent / CTA */
  --terracotta-d: #A9572F;
  --wheat:        #E0A94A;   /* gold highlight */
  --ink:          #2B2520;   /* body text */
  --ink-soft:     #5E564E;   /* muted text */
  --line:         #E4DAC8;   /* hairlines */

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing & shape */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(43, 37, 32, .06);
  --shadow:    0 14px 40px rgba(43, 37, 32, .10);
  --shadow-lg: 0 30px 70px rgba(43, 37, 32, .16);
  --maxw: 1180px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Custom Cursor ---------- */
*, *::before, *::after { cursor: url('../assets/images/cursor-32.png') 16 4, auto; }
a, button, [role="button"], input[type="submit"], select, .btn, .filter-btn, .nav-toggle, .product-card, .video-card {
  cursor: url('../assets/images/cursor-32.png') 16 4, pointer;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.bg-alt   { background: var(--paper-2); }
.bg-forest{ background: var(--forest); color: #EBE5D8; }
.bg-forest h2, .bg-forest h3 { color: #FFFDF8; }
.bg-forest p { color: #C9C6B4; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.narrow { max-width: 720px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--terracotta); border-radius: 2px;
}
.bg-forest .eyebrow { color: var(--wheat); }
.bg-forest .eyebrow::before { background: var(--wheat); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 24px rgba(194,107,67,.32); }
.btn-primary:hover { background: var(--terracotta-d); box-shadow: 0 16px 30px rgba(194,107,67,.40); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--leaf); color: var(--leaf); }
.btn-light { background: var(--wheat); color: var(--soil); }
.btn-light:hover { background: #ecb55b; }
.btn-text { color: var(--leaf); font-weight: 600; }
.btn-text .arrow { transition: transform .25s var(--ease); }
.btn-text:hover .arrow { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 238, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--forest); }
.brand .logo { width: 40px; height: 40px; flex: none; }
/* Real brand logo (image) */
.brand-logo { height: 52px; width: auto; display: block; mix-blend-mode: multiply; }
.footer-logo { height: 64px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-weight: 500; font-size: .97rem; color: var(--forest-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(94,130,64,.12); color: var(--leaf); }
.nav-links a.active { color: var(--leaf); font-weight: 600; }
.nav-cta { margin-left: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero .lead { margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: none;
  aspect-ratio: 4/3; background: transparent;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.hero-badge .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(94,130,64,.14); color: var(--leaf); flex: none; }
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge b { display: block; font-family: var(--font-display); color: var(--forest); font-size: 1.4rem; line-height: 1; }
.hero-badge small { color: var(--ink-soft); font-size: .82rem; }
.hero-badge.b1 { top: 26px; left: -28px; }
.hero-badge.b2 { bottom: 30px; right: -24px; }

/* decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; pointer-events: none; }
.blob.a { width: 420px; height: 420px; background: var(--leaf-soft); top: -120px; right: -80px; }
.blob.b { width: 360px; height: 360px; background: #e7c98a; bottom: -140px; left: -100px; opacity: .4; }

/* ---------- Trust / logos strip ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; opacity: .8; }
.trust span { font-family: var(--font-display); font-size: 1.25rem; color: var(--soil); opacity: .65; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(94,130,64,.16), rgba(224,169,74,.18));
  color: var(--leaf); margin-bottom: 20px;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--wheat); line-height: 1; }
.bg-forest .stat .num { color: var(--wheat); }
.stat .label { font-size: .92rem; letter-spacing: .04em; margin-top: 8px; }

/* ---------- Split / story ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--leaf-soft); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink); }
.check-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(94,130,64,.16); color: var(--leaf); display: grid; place-items: center; }
.check-list .tick svg { width: 15px; height: 15px; }

/* ---------- Products ---------- */
.product-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .thumb { position: relative; overflow: hidden; background: #f5f0e8; }
.product-card .thumb img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,253,248,.92);
  color: var(--forest); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.product-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { font-size: .95rem; flex: 1; }
.product-card .meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.product-card .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); }
.product-card .price small { font-size: .8rem; color: var(--ink-soft); font-family: var(--font-body); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line); color: var(--forest-2);
  font-weight: 600; font-size: .92rem; transition: all .2s;
}
.filter-btn:hover { border-color: var(--leaf); }
.filter-btn.active { background: var(--forest); color: #fff; border-color: var(--forest); }

/* Product card sizes label */
.product-card .sizes { font-size: .82rem; color: var(--ink-soft); font-weight: 500; }

/* ---- Product Modal ---- */
.product-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(35,58,36,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.product-modal-overlay.active { opacity: 1; pointer-events: auto; }
.product-modal {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  width: 100%; max-width: 680px; max-height: 88vh; position: relative;
  box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.97);
  transition: transform .35s var(--ease);
}
.product-modal-overlay.active .product-modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  font-size: 1.5rem; color: var(--forest); display: grid; place-items: center;
  transition: background .2s, transform .2s; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.modal-close:hover { background: #fff; transform: scale(1.1); }
.modal-scroll { overflow-y: auto; max-height: 88vh; }
.modal-header {
  padding: 48px 40px 32px; position: relative;
}
.modal-header--liquid { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.modal-header--speciality { background: linear-gradient(135deg, #7f4f24, #b08968); }
.modal-header--stimulant { background: linear-gradient(135deg, #3a5a40, #588157); }
.modal-header h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 6px; }
.modal-category {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px;
}
.modal-tagline { color: rgba(255,255,255,.9); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.modal-body { padding: 32px 40px 40px; }
.modal-section { margin-bottom: 28px; }
.modal-section h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--forest); }
.modal-section p { font-size: .96rem; line-height: 1.65; color: var(--ink-soft); }
.modal-desc { font-size: 1.05rem !important; color: var(--ink) !important; line-height: 1.7; }
.modal-features { display: grid; gap: 14px; }
.modal-feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(94,130,64,.06); border-radius: var(--radius-sm); padding: 14px 16px;
}
.modal-feature-icon {
  flex: none; width: 28px; height: 28px; color: var(--leaf);
  background: rgba(94,130,64,.15); border-radius: 50%; display: grid; place-items: center;
}
.modal-feature-icon svg { width: 16px; height: 16px; }
.modal-feature strong { display: block; font-size: .92rem; color: var(--forest); margin-bottom: 2px; }
.modal-feature span { font-size: .88rem; color: var(--ink-soft); }
.modal-table { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.modal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; font-size: .92rem;
}
.modal-row:nth-child(odd) { background: rgba(94,130,64,.04); }
.modal-row span:first-child { font-weight: 600; color: var(--forest); }
.modal-row span:last-child { color: var(--ink-soft); text-align: right; }
.modal-list { padding-left: 0; }
.modal-list li {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  font-size: .92rem; color: var(--ink-soft);
}
.modal-list li::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--leaf);
}
.modal-crops {
  background: var(--paper-2); padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .92rem !important; line-height: 1.7;
}
.modal-sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-size-badge {
  padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  font-weight: 600; font-size: .88rem; color: var(--forest);
  background: var(--paper);
}
.modal-cta { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; }

@media (max-width: 600px) {
  .product-modal-overlay { padding: 12px; align-items: flex-end; }
  .product-modal { max-height: 92vh; border-radius: var(--radius) var(--radius) 0 0; }
  .modal-header { padding: 36px 24px 24px; }
  .modal-body { padding: 24px 24px 32px; }
  .modal-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .modal-row span:last-child { text-align: left; }
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; position: relative; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--leaf-soft); opacity: .5; }
.quote-card .stars { color: var(--wheat); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.quote-card blockquote { font-size: 1.06rem; color: var(--ink); line-height: 1.6; margin-bottom: 22px; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--leaf-soft); flex: none; }
.quote-card .who b { display: block; color: var(--forest); font-family: var(--font-display); }
.quote-card .who small { color: var(--ink-soft); }

/* big featured testimonial */
.feature-quote { text-align: center; max-width: 860px; margin-inline: auto; }
.feature-quote .stars { color: var(--wheat); font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 22px; }
.feature-quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.3; color: #FFFDF8; font-weight: 500; }
.feature-quote .who { margin-top: 28px; }
.feature-quote .who b { color: var(--wheat); font-family: var(--font-body); font-weight: 700; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .photo {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
  position: relative; background: var(--leaf-soft); box-shadow: var(--shadow-sm);
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .socials {
  position: absolute; inset: auto 0 0 0; padding: 14px; display: flex; gap: 10px; justify-content: center;
  background: linear-gradient(transparent, rgba(35,58,36,.78)); opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.team-card:hover .socials { opacity: 1; transform: translateY(0); }
.team-card .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--forest); transition: background .2s; }
.team-card .socials a:hover { background: var(--wheat); }
.team-card .socials svg { width: 17px; height: 17px; }
.team-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.team-card .role { color: var(--terracotta); font-weight: 600; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(224,169,74,.18); filter: blur(50px); top: -100px; right: -60px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #D3D0C0; max-width: 560px; margin: 14px auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--forest); }
.field input, .field textarea, .field select {
  font: inherit; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(94,130,64,.14);
}
.form-note { font-size: .85rem; color: var(--ink-soft); }
.contact-info li { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(94,130,64,.14); color: var(--leaf); display: grid; place-items: center; flex: none; }
.contact-info .ico svg { width: 22px; height: 22px; }
.contact-info b { display: block; color: var(--forest); font-family: var(--font-display); font-size: 1.1rem; }
.contact-info span { color: var(--ink-soft); }

/* ---------- Page header (inner pages) ---------- */
.page-hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero .lead { max-width: 640px; margin: 18px auto 0; }

/* Products hero banner */
.products-hero { padding-bottom: 30px; }
.products-banner { padding: 0 0 10px; }
.products-banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.products-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .products-banner-img { border-radius: var(--radius); }
}
.breadcrumb { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--leaf); }

/* Video testimonials */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.video-card {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.video-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 40px 28px;
  text-align: center;
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-2) 40%, var(--leaf) 100%);
}
.video-card:nth-child(2) .video-card-inner {
  background: linear-gradient(145deg, var(--soil) 0%, #5a3d2e 40%, var(--terracotta) 100%);
}
.video-card:nth-child(3) .video-card-inner {
  background: linear-gradient(145deg, #2a3a28 0%, var(--leaf) 50%, var(--wheat) 100%);
}
.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 2px solid rgba(255,255,255,.3);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.video-card:hover .video-play-icon {
  transform: scale(1.12);
  background: rgba(255,255,255,.28);
}
.video-play-icon svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}
.video-card-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-card-tag {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.video-card-cta {
  font-size: .88rem;
  opacity: .8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .25s;
}
.video-card:hover .video-card-cta { opacity: 1; }
@media (max-width: 960px) {
  .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .video-card-inner { min-height: 260px; padding: 32px 24px; }
}

/* ---------- Footer ---------- */
.footer { background: #1B2D1C; color: #BFC3B0; padding-top: 70px; }
.footer h4 { color: #FFFDF8; font-family: var(--font-body); font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { color: #BFC3B0; transition: color .2s; }
.footer a:hover { color: var(--wheat); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-col li { margin-bottom: 12px; }
.footer .newsletter { display: flex; gap: 8px; margin-top: 14px; }
.footer .newsletter input { flex: 1; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; }
.footer .newsletter input::placeholder { color: #8E9385; }
.footer .newsletter button { padding: 12px 18px; border-radius: 999px; background: var(--wheat); color: var(--soil); font-weight: 700; }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer .socials a:hover { background: var(--leaf); color: #fff; }
.footer .socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-block: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 440px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(250,246,238,.97); backdrop-filter: blur(14px);
    padding: 16px 24px 26px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 13px 14px; border-radius: 12px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-badge { padding: 10px 14px; gap: 10px; font-size: .85rem; }
  .hero-badge .ico { width: 36px; height: 36px; }
  .hero-badge .ico svg { width: 20px; height: 20px; }
  .hero-badge b { font-size: 1.1rem; }
  .hero-badge small { font-size: .75rem; }
  .hero-badge.b1 { top: 12px; left: 0; }
  .hero-badge.b2 { bottom: 12px; right: 0; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
