/* =========================================================================
   Geeta Thresher — Design System
   Brand: Crimson + Harvest Gold on warm ivory. Montserrat throughout.
   ========================================================================= */

/* ---- Montserrat (self-hosted, client-provided) -----------------------
   One variable file per style covers the full 100–900 weight range, so a
   single small woff2 gives every weight the site uses. */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-italic-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Brand — GREEN-LED (trial). Variable names kept as-is so every existing
     rule flips to green in one place; gold stays the accent. Revert = restore
     the original crimson values here. */
  --crimson-900: #0F3D22;
  --crimson-800: #14532D;
  --crimson-700: #17612F;
  --crimson-600: #1E7A3A;   /* primary brand green */
  --crimson-500: #2E9E44;
  --crimson-050: #E9F5EC;

  /* Brand — harvest gold (from logo) */
  --gold-700: #A6720F;
  --gold-600: #C8891B;      /* accent */
  --gold-500: #D9A429;
  --gold-400: #E6B94A;
  --gold-100: #F6E7C4;

  /* Neutrals — warm */
  --ink: #241B14;           /* headings / body */
  --ink-soft: #4A3D33;
  --muted: #6E5F52;         /* secondary text */
  --line: #E7DECF;          /* borders on cream */
  --line-soft: #F0E9DC;

  /* Surfaces */
  --cream: #FBF6EC;         /* page background */
  --cream-2: #F5EEDE;       /* alt section */
  --card: #FFFFFF;
  --card-2: #FFFDF8;

  /* Semantic */
  --primary: var(--crimson-600);
  --on-primary: #FFFFFF;
  --accent: var(--gold-600);
  --on-accent: #2A1D05;
  --success: #2E7D32;
  --ring: rgba(30, 122, 58, 0.35);

  /* Type — Montserrat everywhere (client brand font).
     Both tokens map to Montserrat; visual hierarchy comes from weight/size.
     Var names kept as-is so existing rules need no change. */
  --font-serif: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale (8pt) */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  /* Radii & shadows */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(36, 27, 20, .06), 0 1px 3px rgba(36, 27, 20, .05);
  --shadow-md: 0 6px 18px rgba(36, 27, 20, .08), 0 2px 6px rgba(36, 27, 20, .05);
  --shadow-lg: 0 24px 60px rgba(36, 27, 20, .14), 0 8px 20px rgba(36, 27, 20, .08);
  --shadow-crimson: 0 16px 40px rgba(15, 61, 34, .28);

  --container: 1440px;
  --nav-h: clamp(78px, 8.5vw, 104px);

  /* Type scale — one source of truth for the whole site.
     H1 (hero/page title) → H2 (section) → H3 (sub) → H4 (sub-sub) → body. */
  --fs-hero:  clamp(2.6rem, 5.4vw, 4.1rem);   /* homepage hero H1 */
  --fs-h1:    clamp(2.2rem, 4.6vw, 3.4rem);   /* page-hero H1 */
  --fs-h2:    clamp(1.85rem, 3.3vw, 2.6rem);  /* section heading */
  --fs-h3:    clamp(1.25rem, 1.8vw, 1.55rem); /* sub heading / card title */
  --fs-h4:    clamp(1.05rem, 1.35vw, 1.2rem); /* sub-sub heading */
  --fs-lead:  clamp(1.08rem, 1.35vw, 1.24rem);/* intro paragraph */
  --fs-body:  1rem;                            /* body paragraph */
  --fs-sm:    .95rem;                          /* support paragraph */
  --fs-meta:  .84rem;                          /* labels / meta */
  --fs-eyebrow: .8rem;
  --lh-tight: 1.1; --lh-snug: 1.32; --lh-body: 1.65;
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
/* Responsive safeguards: no media or long word can force horizontal scroll on
   any device. */
svg, video, iframe, canvas { max-width: 100%; }
body { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }

/* ---- Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: var(--lh-tight); color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }
p { color: var(--ink-soft); }
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: var(--lh-body); }

/* ---- Layout helpers --------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 2.6vw, 32px); }
.section { padding-block: clamp(44px, 5.5vw, 84px); position: relative; }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: var(--space-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--crimson-700);
  background: var(--crimson-050); border: 1px solid #C9E6D0;
  padding: 6px 14px; border-radius: var(--r-pill);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-600); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 16px; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--crimson-600); color: var(--on-primary); box-shadow: var(--shadow-crimson); }
.btn--primary:hover { background: var(--crimson-700); transform: translateY(-2px); box-shadow: 0 20px 46px rgba(15, 61, 34, .34); }
.btn--gold { background: var(--gold-500); color: var(--on-accent); box-shadow: 0 14px 32px rgba(200, 137, 27, .32); }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--crimson-600); color: var(--crimson-700); background: var(--card); }
.btn--light { background: #fff; color: var(--crimson-700); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--block { width: 100%; }

/* ---- Top utility bar -------------------------------------------------- */
.topbar {
  background: var(--crimson-900); color: #F6E7C4; font-size: .84rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #F1E4C4; }
.topbar__item svg { width: 15px; height: 15px; color: var(--gold-400); flex: none; }
.topbar__item a:hover { color: #fff; }
.topbar__badge { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #fff; letter-spacing: .02em; }
.topbar__badge svg { width: 16px; height: 16px; color: var(--gold-400); }
@media (max-width: 720px) { .topbar__badge { display: none; } .topbar__item--email { display: none; } }

/* ---- Header / nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(251, 246, 236, .93); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.24rem; line-height: 1; color: var(--ink); letter-spacing: -0.01em; }
.brand__tag { display: block; font-family: var(--font-sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--crimson-700); font-weight: 600; margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-weight: 500; font-size: .96rem; color: var(--ink-soft); padding: 10px 14px; border-radius: var(--r-pill);
  transition: color .18s ease, background-color .18s ease;
}
.nav__links a:hover { color: var(--crimson-700); background: var(--crimson-050); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--card);
  border-radius: 12px; align-items: center; justify-content: center;
}
.nav__toggle svg { width: 24px; height: 24px; color: var(--ink); }

@media (max-width: 940px) {
  .nav__links, .nav__actions .btn--quote-desktop { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(36, 27, 20, .5); opacity: 0; transition: opacity .28s ease; }
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--cream); box-shadow: var(--shadow-lg); padding: 20px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-nav__panel a.m-link { padding: 14px 12px; border-radius: 12px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-nav__panel a.m-link:hover { background: var(--crimson-050); color: var(--crimson-700); }
.mobile-nav__panel .btn { margin-top: 14px; }
.icon-btn { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--card); display: inline-flex; align-items: center; justify-content: center; }
.icon-btn svg { width: 22px; height: 22px; }

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 92px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(230, 185, 74, .22), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(30, 122, 58, .10), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero__title { margin-top: 22px; }
.hero__title .accent { color: var(--crimson-600); font-style: italic; }
.hero__sub { font-size: var(--fs-lead); line-height: var(--lh-body); margin-top: 22px; max-width: 34rem; }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero__trust-item svg { width: 20px; height: 20px; color: var(--success); flex: none; }

/* Hero visual — framed product on crimson panel */
.hero__visual { position: relative; }
.hero__panel {
  position: relative; background: linear-gradient(160deg, var(--crimson-700), var(--crimson-900));
  border-radius: var(--r-xl); padding: 20px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.hero__panel::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-xl); pointer-events: none;
  background: radial-gradient(80% 60% at 80% 0%, rgba(230,185,74,.25), transparent 60%);
}
.hero__photo { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.hero__panel-label { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; color: #fff; }
.hero__panel-label .pl-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.hero__panel-label .pl-sub { font-size: .82rem; color: var(--gold-400); font-weight: 500; letter-spacing: .04em; }
.hero__panel-badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 8px 13px; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.hero__panel-badge svg { width: 15px; height: 15px; color: var(--gold-400); }

/* Floating spec chip */
.hero__chip {
  position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line);
}
.hero__chip .chip-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; flex: none; }
.hero__chip .chip-ico svg { width: 22px; height: 22px; }
.hero__chip .chip-num { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; line-height: 1; color: var(--ink); }
.hero__chip .chip-lbl { font-size: .78rem; color: var(--muted); margin-top: 3px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero__chip { left: 0; }
}

/* ---- Stat strip ------------------------------------------------------- */
.stats { background: linear-gradient(180deg, var(--green-900), #0F3D22); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.14); }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; color: var(--gold-400); line-height: 1; }
.stat__label { margin-top: 10px; font-size: .92rem; color: #E7DECF; }
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat:nth-child(odd)::before { display: none; }
}

/* ---- Section intro layout with note ----------------------------------- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---- Product cards ---------------------------------------------------- */
.products__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.pcard--feature { grid-column: span 3; flex-direction: row; }
.pcard__media { position: relative; background: var(--cream-2); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard--feature .pcard__media { flex: 0 0 46%; min-height: 340px; }
.pcard:not(.pcard--feature) .pcard__media { aspect-ratio: 4/3; }
.pcard__flag {
  position: absolute; top: 14px; left: 14px; background: var(--crimson-600); color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.pcard__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pcard--feature .pcard__body { padding: clamp(24px, 3vw, 40px); justify-content: center; }
.pcard__cat { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); }
.pcard__title { font-size: var(--fs-h3); }
.pcard--feature .pcard__title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.pcard__desc { color: var(--muted); font-size: var(--fs-sm); }
.pcard__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; margin-top: 4px; }
.spec { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--ink-soft); }
.spec svg { width: 17px; height: 17px; color: var(--crimson-600); flex: none; }
.pcard__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pcard__link { font-weight: 600; color: var(--crimson-700); display: inline-flex; align-items: center; gap: 7px; font-size: .95rem; }
.pcard__link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.pcard__link:hover svg { transform: translateX(4px); }

.pcard--soon { border-style: dashed; background: var(--card-2); }
.pcard--soon .pcard__media { display: grid; place-items: center; aspect-ratio: 4/3; color: var(--gold-700); background: repeating-linear-gradient(45deg, #FBF6EC, #FBF6EC 12px, #F5EEDE 12px, #F5EEDE 24px); }
.pcard--soon .pcard__media svg { width: 54px; height: 54px; opacity: .5; }
.pcard__soon-tag { position: absolute; top: 14px; left: 14px; background: var(--gold-500); color: var(--on-accent); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }

@media (max-width: 960px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .pcard--feature { grid-column: span 2; flex-direction: column; }
  .pcard--feature .pcard__media { flex: none; min-height: 0; aspect-ratio: 16/10; }
}
@media (max-width: 620px) {
  .products__grid { grid-template-columns: 1fr; }
  .pcard--feature { grid-column: span 1; }
}

/* ---- Features / why-us ------------------------------------------------ */
.features { background: var(--cream-2); }
.features__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--crimson-050); color: var(--crimson-600); display: grid; place-items: center; margin-bottom: 18px; }
.feature__ico svg { width: 27px; height: 27px; }
.feature h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.feature p { font-size: var(--fs-sm); color: var(--muted); }
@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features__grid { grid-template-columns: 1fr; } }

/* ---- How it works ----------------------------------------------------- */
.steps__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); }
.step__num {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; background: var(--crimson-600);
  display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); color: var(--muted); }
.step__arrow { position: absolute; top: 44px; right: -16px; color: var(--gold-500); z-index: 2; }
.step__arrow svg { width: 26px; height: 26px; }
@media (max-width: 900px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } .step__arrow { display: none; } }
@media (max-width: 480px) { .steps__grid { grid-template-columns: 1fr; } }

/* ---- Gallery ---------------------------------------------------------- */
.gallery__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gtile { position: relative; overflow: hidden; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--cream-2); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gtile:hover img { transform: scale(1.06); }
.gtile--tall { grid-row: span 2; }
.gtile--wide { grid-column: span 2; }
.gtile__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; color: #fff; font-size: .85rem; font-weight: 500; background: linear-gradient(transparent, rgba(36,27,20,.72)); opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.gtile:hover .gtile__cap { opacity: 1; transform: translateY(0); }
@media (max-width: 820px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gtile--wide { grid-column: span 2; } }

/* ---- Testimonials ----------------------------------------------------- */
.tstm { background: linear-gradient(165deg, var(--crimson-800), var(--crimson-900)); color: #fff; overflow: hidden; }
.tstm .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.16); color: #F6E7C4; }
.tstm .section-head h2 { color: #fff; }
.tstm .section-head p { color: #EBD9D3; }
.tstm__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 28px; backdrop-filter: blur(4px); display: flex; flex-direction: column; gap: 16px;
}
.quote__stars { display: flex; gap: 3px; color: var(--gold-400); }
.quote__stars svg { width: 18px; height: 18px; }
.quote__text { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.5; color: #FBF3EC; font-style: italic; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-500); color: var(--crimson-900); display: grid; place-items: center; font-weight: 700; font-family: var(--font-serif); font-size: 1.1rem; flex: none; }
.quote__name { font-weight: 600; color: #fff; }
.quote__role { font-size: .84rem; color: var(--gold-400); }
@media (max-width: 900px) { .tstm__grid { grid-template-columns: 1fr; } }

/* ---- FAQ -------------------------------------------------------------- */
.faq__wrap { margin-top: 44px; max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.faq-q__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--crimson-050); color: var(--crimson-600); display: grid; place-items: center; flex: none; transition: transform .25s ease, background-color .2s ease; }
.faq-q__icon svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); background: var(--crimson-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 24px 22px; color: var(--muted); font-size: var(--fs-sm); }

/* ---- Contact ---------------------------------------------------------- */
.contact { background: var(--cream-2); }
.contact__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: start; }
/* Let both columns shrink below their content so nothing overflows on small screens */
.contact__grid > * { min-width: 0; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.cinfo {
  display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px;
}
.cinfo__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--crimson-050); color: var(--crimson-600); display: grid; place-items: center; flex: none; }
.cinfo__ico svg { width: 22px; height: 22px; }
.cinfo__label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.cinfo__value { color: var(--ink); font-weight: 500; margin-top: 3px; overflow-wrap: anywhere; }
.cinfo__value a:hover { color: var(--crimson-700); }
.map-embed { margin-top: 4px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { width: 100%; height: 220px; border: 0; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: var(--fs-h3); }
.form-card > p { margin-top: 8px; margin-bottom: 22px; color: var(--muted); font-size: .96rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink-soft); }
.field label .req { color: var(--crimson-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--card-2);
  transition: border-color .18s ease, box-shadow .18s ease; min-height: 48px;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--crimson-600); box-shadow: 0 0 0 3px var(--ring); }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__help { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.field__error { font-size: .82rem; color: var(--crimson-700); margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--crimson-600); }
.field.has-error .field__error { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 4px; text-align: center; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #EAF6EA; border: 1px solid #BEE3BE;
  color: #1E5E22; padding: 16px 18px; border-radius: var(--r-md); font-weight: 500;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 24px; height: 24px; color: var(--success); flex: none; }
.form-success a { text-decoration: none; }

/* Error banner shown if the enquiry can't be sent */
.form-error {
  display: none; margin-top: 14px; padding: 13px 16px;
  background: #FCE9E9; border: 1px solid #F0B4B4; color: #9B1C1C;
  border-radius: var(--r-md); font-weight: 500; font-size: .92rem; line-height: 1.45;
}
.form-error.is-visible { display: block; }

/* Honeypot anti-spam field — visually hidden, kept off-screen for bots */
.hp-field {
  position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } .field__row { grid-template-columns: 1fr; } }

/* ---- CTA band --------------------------------------------------------- */
.cta-band { background: linear-gradient(150deg, var(--gold-600), var(--gold-500)); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 120% at 90% 20%, rgba(255,255,255,.28), transparent 55%); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #2A1D05; max-width: 30rem; }
.cta-band p { color: #4A340A; margin-top: 10px; max-width: 34rem; }
.cta-band .btn--primary { background: var(--crimson-700); box-shadow: 0 14px 34px rgba(15,61,34,.3); }
.cta-band .btn--primary:hover { background: var(--crimson-800); }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: linear-gradient(180deg, var(--green-900), #0F3D22); color: #D7E7DC; padding-block: 64px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; align-items: start; }
.footer__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #B9D2C1; font-size: .95rem; margin-top: 16px; max-width: 26rem; }
.footer__brand .brand__logo { border-color: rgba(255,255,255,.15); }
.footer__col { text-align: center; }
.site-footer h4 { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; align-items: center; }
.site-footer a { color: #C7D8CC; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer__contact { align-items: center; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; justify-content: flex-start; font-size: .95rem; color: #C7D8CC; text-align: left; max-width: 260px; line-height: 1.5; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 48px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #A9C2B2; }
.footer__bottom a { color: #C7D8CC; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Floating WhatsApp ------------------------------------------------ */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }

/* ---- Reveal on scroll ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* placeholder note pill (for build handoff) */
.tbd { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: var(--gold-700); background: var(--gold-100); padding: 3px 9px; border-radius: var(--r-pill); vertical-align: middle; }

/* =========================================================================
   MULTI-PAGE ADDITIONS — interior page banners, product detail, timeline
   ========================================================================= */

/* ---- Active nav link -------------------------------------------------- */
.nav__links a.is-active { color: var(--crimson-700); background: var(--crimson-050); font-weight: 600; }
.mobile-nav__panel a.m-link.is-active { color: var(--crimson-700); background: var(--crimson-050); }

/* ---- Interior page banner --------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--crimson-800), var(--crimson-900));
  color: #fff; padding-block: clamp(48px, 7vw, 84px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 100% at 90% 0%, rgba(230, 185, 74, .28), transparent 55%),
    radial-gradient(50% 90% at 0% 100%, rgba(255, 255, 255, .06), transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero__sub { color: #F1DED6; font-size: var(--fs-lead); margin-top: 18px; max-width: 46rem; line-height: var(--lh-body); }
.page-hero .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: #F6E7C4; margin-bottom: 20px; }

/* ---- Breadcrumb ------------------------------------------------------- */
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: #EAD7CF; flex-wrap: wrap; }
.breadcrumb a { color: #F6E7C4; font-weight: 500; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb svg { width: 15px; height: 15px; opacity: .6; }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ---- Product detail (products page) ----------------------------------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.pdetail__gallery { position: sticky; top: calc(var(--nav-h) + 20px); }
.pdetail__main { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--cream-2); box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.pdetail__main img { width: 100%; height: 100%; object-fit: cover; }
.pdetail__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.pthumb { border: 2px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--cream-2); aspect-ratio: 1; padding: 0; transition: border-color .18s ease, transform .18s ease; }
.pthumb img { width: 100%; height: 100%; object-fit: cover; }
.pthumb:hover { transform: translateY(-2px); }
.pthumb.is-active { border-color: var(--crimson-600); }

.pdetail__body .pcard__cat { display: block; margin-bottom: 10px; }
.pdetail__body h2 { font-size: var(--fs-h2); }
.pdetail__body > p { margin-top: 16px; color: var(--ink-soft); }
.pdetail__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-pill); background: var(--crimson-050); color: var(--crimson-700); border: 1px solid #C9E6D0;
}
.pill svg { width: 15px; height: 15px; }

.spec-table { margin-top: 26px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--card); }
.spec-table__row { display: grid; grid-template-columns: 42% 58%; }
.spec-table__row + .spec-table__row { border-top: 1px solid var(--line-soft); }
.spec-table__k { padding: 14px 18px; font-weight: 600; color: var(--ink); background: var(--cream-2); font-size: .92rem; }
.spec-table__v { padding: 14px 18px; color: var(--ink-soft); font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.spec-table__v .tbd { flex: none; }
.pdetail__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; }
  .pdetail__gallery { position: static; }
}

/* ---- Section divider label -------------------------------------------- */
.other-products { background: var(--cream-2); }

/* ---- About: story lead ------------------------------------------------ */
.about-lead { display: grid; grid-template-columns: 1fr 1.18fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about-lead__media { position: relative; }
.about-lead__media img { border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-lead__badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 16px 20px; text-align: center;
}
.about-lead__badge .n { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--crimson-600); line-height: 1; }
.about-lead__badge .l { font-size: .78rem; color: var(--muted); margin-top: 5px; }
.about-lead__body { text-align: center; }
.about-lead__body h2 { margin-top: 16px; font-size: var(--fs-h3); }
@media (min-width: 1100px) { .about-lead__body h2 { white-space: nowrap; } }
.about-lead__body p { margin-top: 16px; text-align: left; }
.about-lead__body .leaders__list { justify-content: center; }
@media (max-width: 860px) { .about-lead { grid-template-columns: 1fr; } .about-lead__media { max-width: 480px; } }

/* ---- Timeline --------------------------------------------------------- */
.timeline { margin-top: 52px; position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-left: 62px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute; left: 10px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--crimson-600); border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--crimson-050); z-index: 1;
}
.tl-item__year { font-family: var(--font-serif); font-weight: 700; color: var(--gold-700); font-size: 1.1rem; }
.tl-item h3 { font-size: var(--fs-h3); margin-top: 4px; }
.tl-item p { font-size: var(--fs-sm); color: var(--muted); margin-top: 6px; }

/* ---- Values (reuse feature look with gold accent) --------------------- */
.values__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; }
.value__ico { width: 52px; height: 52px; border-radius: 13px; background: var(--gold-100); color: var(--gold-700); display: grid; place-items: center; margin-bottom: 16px; }
.value__ico svg { width: 26px; height: 26px; }
.value h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.value p { font-size: var(--fs-sm); color: var(--muted); }
@media (max-width: 900px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values__grid { grid-template-columns: 1fr; } }

/* ---- About photo gallery (varied grid) -------------------------------- */
.about-gallery__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 16px; }
.about-gallery__grid .gtile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.about-gallery__grid .gtile:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.about-gallery__grid .gtile:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.about-gallery__grid .gtile:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.about-gallery__grid .gtile:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.about-gallery__grid .gtile:nth-child(6) { grid-column: span 2; grid-row: span 1; }
.gtile--placeholder { display: grid; place-items: center; color: var(--gold-700); background: repeating-linear-gradient(45deg, #FBF6EC, #FBF6EC 12px, #F5EEDE 12px, #F5EEDE 24px); }
.gtile--placeholder svg { width: 40px; height: 40px; opacity: .5; }
.gtile--placeholder span { position: absolute; bottom: 12px; font-size: .78rem; font-weight: 600; }
@media (max-width: 820px) {
  .about-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .about-gallery__grid .gtile:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .about-gallery__grid .gtile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

/* ---- Contact page tweaks ---------------------------------------------- */
.contact-page .contact__grid { margin-top: 0; }

/* =========================================================================
   SCROLL-SCRUB HERO (scrollytelling video)
   ========================================================================= */
.scrolly { position: relative; background: #0B160E; }
/* Track defines how much scrolling scrubs the video. JS raises the height
   only when scrubbing is active; default 100vh keeps a clean no-JS/reduced
   hero that just shows the poster + text. */
.scrolly__track { position: relative; height: 100svh; }
.scrolly.is-active .scrolly__track { height: var(--scrolly-len, 340vh); }

.scrolly__stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden; display: flex; align-items: center;
  background: #0B160E;
}
.scrolly__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; background: #0B160E;
}
/* Scrim for text legibility over the footage */
.scrolly__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,22,14,.86) 0%, rgba(10,22,14,.58) 40%, rgba(10,22,14,.12) 68%, rgba(10,22,14,0) 100%),
    linear-gradient(0deg, rgba(10,22,14,.72) 0%, rgba(10,22,14,0) 46%),
    radial-gradient(90% 70% at 82% 12%, rgba(30,122,58,.20), transparent 60%);
}

.scrolly__overlay { position: relative; z-index: 2; width: 100%; }
/* No frosted panel — the scrim gradient + text-shadow keep copy legible while
   the video stays crisp behind it. */
.scrolly__copy {
  max-width: 40rem; color: #fff;
  padding: clamp(4px, 1vw, 12px) 0;
}
.scrolly__copy .eyebrow {
  background: rgba(20,40,28,.42); border-color: rgba(255,255,255,.28); color: #F6E7C4;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.scrolly__copy h1 { color: #fff; font-size: var(--fs-hero); text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 8px 40px rgba(0,0,0,.55); }
.scrolly__copy h1 .accent { color: var(--gold-400); font-style: italic; }
.scrolly__copy .hero__sub { color: #F4ECE3; margin-top: 22px; text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 20px rgba(0,0,0,.5); }
.scrolly__copy .hero__cta { margin-top: 30px; }
.scrolly__copy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); }
.scrolly__copy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.scrolly__copy .hero__trust { margin-top: 30px; }
.scrolly__copy .hero__trust-item { color: #EADFd5; }
.scrolly__copy .hero__trust-item svg { color: var(--gold-400); }

/* Scroll cue */
.scrolly__cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: #F6E7C4; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: opacity .4s ease; pointer-events: none;
}
.scrolly__cue svg { width: 22px; height: 22px; animation: cueBounce 1.8s ease-in-out infinite; }
.scrolly.cue-hidden .scrolly__cue { opacity: 0; }
@keyframes cueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .scrolly__cue svg { animation: none; } }

/* Progress bar */
.scrolly__progress {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; height: 4px;
  background: rgba(255,255,255,.12);
}
.scrolly__progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--crimson-500), var(--gold-400));
  transition: width .08s linear;
}

/* Buffering hint */
.scrolly__loading {
  position: absolute; z-index: 3; right: 20px; top: calc(var(--nav-h) + 20px);
  display: none; align-items: center; gap: 9px; color: #F6E7C4; font-size: .82rem; font-weight: 500;
  background: rgba(16,11,8,.5); padding: 8px 14px; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.scrolly.is-buffering .scrolly__loading { display: inline-flex; }
.scrolly__loading .spinner {
  width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(246,231,196,.35);
  border-top-color: #F6E7C4; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .scrolly__copy { max-width: none; }
  .scrolly__scrim { background:
    linear-gradient(0deg, rgba(10,22,14,.88) 0%, rgba(10,22,14,.42) 52%, rgba(10,22,14,.18) 100%),
    radial-gradient(90% 60% at 80% 8%, rgba(30,122,58,.20), transparent 60%); }
}

/* ---- About: leadership / mentors ------------------------------------- */
.leaders { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.leaders__label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin-bottom: 14px; }
.leaders__list { display: flex; flex-wrap: wrap; gap: 10px; }
.leader {
  display: inline-flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 7px 16px 7px 7px; font-weight: 600; color: var(--ink); font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.leader__avatar {
  width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(150deg, var(--crimson-600), var(--crimson-800));
  color: #fff; display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700; font-size: .95rem; flex: none;
}

/* ---- About: infrastructure checklist --------------------------------- */
.infra-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.infra-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }
.infra-list svg { width: 20px; height: 20px; color: #fff; background: var(--crimson-600); border-radius: 50%; padding: 3px; flex: none; margin-top: 1px; }

/* ---- Product detail: 5-thumb gallery + crops row --------------------- */
.pdetail__thumbs--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 480px) { .pdetail__thumbs--5 { gap: 8px; } }

.crops-row { margin-top: 22px; }
.crops-row__label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin-bottom: 10px; }
.crops-row__list { display: flex; flex-wrap: wrap; gap: 8px; }
.crop-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--ink);
  background: var(--gold-100); border: 1px solid #EBD9A8; padding: 6px 14px; border-radius: var(--r-pill);
}
.crop-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-600); }

.page-hero__jump { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================================
   MOBILE / TABLET HERO — static (non-scrub) fallback + compact type
   ========================================================================= */
/* When JS marks the hero static (touch / small / reduced motion), unpin it and
   let it size to the device instead of forcing a 340vh scroll-scrub track. */
.scrolly--static .scrolly__track { height: auto; }
.scrolly--static .scrolly__stage {
  position: relative; height: auto; min-height: 86svh;
  align-items: flex-end;
  padding-block: clamp(72px, 18vw, 140px) clamp(30px, 9vw, 48px);
}
.scrolly--static .scrolly__progress,
.scrolly--static .scrolly__cue { display: none; }

/* Desktop / laptop: full-viewport autoplay hero with vertically-centred copy
   (the hero is now an autoplay loop at every width, so give big screens the
   familiar centred hero rather than the mobile bottom-aligned layout). */
@media (min-width: 1025px) {
  .scrolly--static .scrolly__stage {
    min-height: 100svh;
    align-items: center;
    padding-block: calc(var(--nav-h, 76px) + 24px) clamp(48px, 8vh, 96px);
  }
}

/* Compact hero typography on phones so nothing overflows / gets cut off */
@media (max-width: 640px) {
  .scrolly--static .scrolly__stage { min-height: 82svh; }
  .scrolly__copy h1 { font-size: clamp(1.95rem, 8.4vw, 2.6rem); line-height: 1.1; }
  .scrolly__copy .hero__sub { font-size: 1rem; margin-top: 16px; }
  .scrolly__copy .hero__cta { margin-top: 22px; gap: 10px; }
  .scrolly__copy .hero__cta .btn { width: 100%; }
  .scrolly__copy .hero__trust { margin-top: 20px; gap: 10px 18px; }
  .scrolly__copy .hero__trust-item { font-size: .86rem; }
  /* keep the header compact so the hero has room */
  .brand__tag { display: none; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.1rem; }
}

/* ---- Product cards: contain-fit media (cutout product shots) + crop badge ---- */
.pcard__media--contain { background: var(--card-2); display: grid; place-items: center; }
/* Only the main product image is contained/padded — never the small crop badge. */
.pcard__media--contain img:not(.pcard__crop) { object-fit: contain; padding: 18px; }
.pcard:hover .pcard__media--contain img:not(.pcard__crop) { transform: scale(1.03); }
/* Crop badge — selector kept specific enough to beat `.pcard__media img { width:100% }`. */
.pcard__media .pcard__crop {
  position: absolute; bottom: 12px; left: 12px;
  width: 56px; height: 56px; padding: 0;
  border-radius: 50%; object-fit: cover; background: #fff; border: 2px solid #fff;
  box-shadow: var(--shadow-md); transition: none;
}
.pcard:hover .pcard__media .pcard__crop { transform: none; }

/* =========================================================================
   PRODUCTS PAGE — richer detail look & motion (applies to all 4 products)
   ========================================================================= */

/* Decorative gold glow behind each product gallery (contained by sticky gallery) */
.product-detail .pdetail__gallery::before {
  content: ""; position: absolute; z-index: 0; width: 62%; aspect-ratio: 1;
  right: -6%; top: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(230,185,74,.32), transparent 70%);
  filter: blur(28px); pointer-events: none;
}
.product-detail--reverse .pdetail__gallery::before { right: auto; left: -6%; }
.pdetail__main, .pdetail__thumbs { position: relative; z-index: 1; }

/* Framed image polish + hover lift */
.pdetail__main { transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease; }
.product-detail .pdetail__gallery:hover .pdetail__main { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Contain-fit main image for cutout product shots + floating crop inset + tag */
.pdetail__main--contain { background: var(--card-2); position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.pdetail__main--contain img:not(.pdetail__crop) { position: absolute; inset: 0; width: 100%; height: 100%; box-sizing: border-box; object-fit: contain; padding: clamp(14px, 2.6vw, 30px); transition: transform .45s ease; }
.product-detail .pdetail__gallery:hover .pdetail__main--contain img:not(.pdetail__crop) { transform: scale(1.04); }
.pdetail__main .pdetail__crop {
  position: absolute; bottom: 16px; left: 16px; width: 86px; height: 86px;
  border-radius: 50%; object-fit: cover; border: 3px solid #fff; background: #fff;
  box-shadow: var(--shadow-lg); padding: 0; z-index: 2;
  animation: cropFloat 5.5s ease-in-out infinite;
}
@keyframes cropFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.pdetail__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--crimson-600); color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* Reverse layout on desktop (image on the right) */
@media (min-width: 861px) {
  .product-detail--reverse .pdetail__gallery { order: 2; }
}

/* Directional reveal: image slides from outer edge, text from the other side */
@media (min-width: 861px) {
  .product-detail .pdetail__gallery.reveal { transform: translateX(-32px); }
  .product-detail .pdetail__body.reveal { transform: translateX(32px); }
  .product-detail--reverse .pdetail__gallery.reveal { transform: translateX(32px); }
  .product-detail--reverse .pdetail__body.reveal { transform: translateX(-32px); }
  .product-detail .pdetail__gallery.reveal.is-in,
  .product-detail .pdetail__body.reveal.is-in { transform: none; }
}

/* Staggered entrance of pills, crop chips & spec rows once the body reveals */
.pdetail__body .pill,
.pdetail__body .crop-chip,
.pdetail__body .spec-table__row {
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}
.pdetail__body.is-in .pill,
.pdetail__body.is-in .crop-chip,
.pdetail__body.is-in .spec-table__row { opacity: 1; transform: none; }
.pdetail__body.is-in .pill:nth-child(1) { transition-delay: .10s; }
.pdetail__body.is-in .pill:nth-child(2) { transition-delay: .16s; }
.pdetail__body.is-in .pill:nth-child(3) { transition-delay: .22s; }
.pdetail__body.is-in .crop-chip:nth-child(1) { transition-delay: .12s; }
.pdetail__body.is-in .crop-chip:nth-child(2) { transition-delay: .18s; }
.pdetail__body.is-in .crop-chip:nth-child(3) { transition-delay: .24s; }
.pdetail__body.is-in .crop-chip:nth-child(4) { transition-delay: .30s; }
.pdetail__body.is-in .crop-chip:nth-child(5) { transition-delay: .36s; }
.pdetail__body.is-in .spec-table__row:nth-child(1) { transition-delay: .18s; }
.pdetail__body.is-in .spec-table__row:nth-child(2) { transition-delay: .24s; }
.pdetail__body.is-in .spec-table__row:nth-child(3) { transition-delay: .30s; }
.pdetail__body.is-in .spec-table__row:nth-child(4) { transition-delay: .36s; }
.pdetail__body.is-in .spec-table__row:nth-child(5) { transition-delay: .42s; }
.pdetail__body.is-in .spec-table__row:nth-child(6) { transition-delay: .48s; }
.pdetail__body.is-in .spec-table__row:nth-child(7) { transition-delay: .54s; }

/* Gentle pulse on section eyebrow dots */
.eyebrow .dot { animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(200,137,27,.5);} 50% { box-shadow: 0 0 0 5px rgba(200,137,27,0);} }

@media (prefers-reduced-motion: reduce) {
  .pdetail__main .pdetail__crop, .eyebrow .dot { animation: none; }
  .pdetail__body .pill, .pdetail__body .crop-chip, .pdetail__body .spec-table__row { opacity: 1 !important; transform: none !important; }
}

/* ---- Long spec table: keep stagger snappy (trailer has ~14 rows) ---- */
.pdetail__body.is-in .spec-table__row:nth-child(n+8) { transition-delay: .56s; }

/* ---- Product highlight callout (e.g. water-tank capacity) ---- */
.pdetail__highlight {
  display: inline-flex; align-items: baseline; gap: 12px; margin-top: 22px;
  background: var(--crimson-050); border: 1px solid #C9E6D0; border-radius: var(--r-md);
  padding: 14px 22px;
}
.pdetail__highlight .n { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--crimson-700); line-height: 1; }
.pdetail__highlight .l { font-size: .92rem; color: var(--ink-soft); }

/* Water-tank body checklist reuses .infra-list; give it top spacing here */
.pdetail__body .infra-list { margin-top: 22px; }

/* 2-thumbnail gallery (e.g. tractor trailer: two angles) */
.pdetail__thumbs--2 { grid-template-columns: repeat(2, 1fr); max-width: 320px; }

/* =========================================================================
   LEGAL / PROSE PAGES (Terms, Privacy) + 404
   ========================================================================= */
.legal { max-width: 820px; margin-inline: auto; }
.legal__updated { font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.legal .legal-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--gold-100); border: 1px solid #EBD9A8; border-radius: var(--r-md);
  padding: 16px 18px; margin: 8px 0 36px; font-size: .95rem; color: var(--ink-soft);
}
.legal .legal-note svg { width: 20px; height: 20px; color: var(--gold-700); flex: none; margin-top: 2px; }
.legal h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 40px 0 12px; }
.legal h2:first-of-type { margin-top: 8px; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.7; }
.legal ul { margin: 0 0 16px 0; padding-left: 22px; }
.legal li { margin-bottom: 9px; color: var(--ink-soft); line-height: 1.65; }
.legal a { color: var(--crimson-700); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

/* 404 */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.notfound__code { font-family: var(--font-serif); font-size: clamp(5rem, 18vw, 10rem); line-height: 1; color: var(--crimson-600); font-weight: 600; }
.notfound h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: 8px; }
.notfound p { color: var(--muted); margin: 14px auto 26px; max-width: 34rem; }
.notfound__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer developer credit */
.footer__credit { flex-basis: 100%; text-align: center; margin-top: 8px; color: #A9C2B2; font-size: .84rem; }
.footer__credit strong { color: #E3EFE7; font-weight: 600; }
.footer__credit a { color: inherit; text-decoration: none; }
.footer__credit a:hover strong { color: #fff; }

/* =========================================================================
   PRODUCTS PAGE v2 — filterable catalog grid + detail modal
   ========================================================================= */
/* Sticky filter toolbar */
.prod-toolbar {
  position: sticky; top: 73px; z-index: 30;
  background: rgba(251, 246, 236, .9);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-block: 1px solid var(--line); padding-block: 14px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 17px;
  border-radius: var(--r-pill); border: 1.5px solid var(--line); background: var(--card);
  font-family: inherit; font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  cursor: pointer; transition: background-color .2s, border-color .2s, color .2s, transform .15s;
}
.filter-chip:hover { border-color: var(--crimson-600); color: var(--crimson-700); }
.filter-chip:active { transform: scale(.97); }
.filter-chip.is-active { background: var(--crimson-600); border-color: var(--crimson-600); color: #fff; box-shadow: var(--shadow-sm); }
.filter-chip .count { font-size: .82em; opacity: .65; }
.filter-chip.is-active .count { opacity: .9; }

/* Grid */
.prod-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-grid__empty { display: none; text-align: center; color: var(--muted); padding: 48px 0; }

/* Card */
.prod-card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; text-align: left; cursor: pointer;
  font-family: inherit; padding: 0; width: 100%;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .25s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.prod-card:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }
.prod-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream-2); overflow: hidden; }
.prod-card__media img:not(.prod-card__crop) { width: 100%; height: 100%; object-fit: contain; padding: 16px; border-radius: 0; transition: transform .45s ease, border-radius .35s ease; }
.prod-card__media--cover img:not(.prod-card__crop) { object-fit: cover; padding: 0; }
.prod-card:hover .prod-card__media img:not(.prod-card__crop) { transform: scale(1.05); border-radius: 18px; }
.prod-card__tag { position: absolute; top: 12px; left: 12px; background: var(--crimson-600); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.prod-card__media .prod-card__crop { position: absolute; bottom: 12px; left: 12px; width: 52px; height: 52px; padding: 0; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: var(--shadow-md); background: #fff; }
.prod-card__body { padding: 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod-card__cat { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; }
.prod-card__title { font-size: 1.2rem; line-height: 1.16; }
.prod-card__desc { font-size: .92rem; color: var(--muted); flex: 1; }
.prod-card__foot { margin-top: 8px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--crimson-700); font-size: .92rem; }
.prod-card__foot svg { width: 16px; height: 16px; transition: transform .2s ease; }
.prod-card:hover .prod-card__foot svg { transform: translateX(4px); }
.prod-card__full { display: none; }

/* Entrance / filter animation */
@keyframes cardIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.prod-card.animate-in { animation: cardIn .5s cubic-bezier(.22,.61,.36,1) both; }
@media (prefers-reduced-motion: reduce) { .prod-card.animate-in { animation: none; } }

/* Detail modal */
.pm { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.pm.is-open { visibility: visible; }
.pm__backdrop { position: absolute; inset: 0; background: rgba(36,27,20,.62); opacity: 0; transition: opacity .3s ease; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.pm.is-open .pm__backdrop { opacity: 1; }
.pm__panel {
  position: relative; width: min(960px, 94vw); margin: 5vh auto; background: var(--cream);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); max-height: 90vh; overflow: auto;
  opacity: 0; transform: translateY(26px) scale(.98);
  transition: opacity .3s ease, transform .36s cubic-bezier(.22,.61,.36,1);
}
.pm.is-open .pm__panel { opacity: 1; transform: none; }
.pm__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: background-color .2s, color .2s; }
.pm__close svg { width: 22px; height: 22px; }
.pm__close:hover { background: var(--crimson-050); color: var(--crimson-700); }
@media (prefers-reduced-motion: reduce) { .pm__panel { transition: none; } }

/* Modal detail layout (reuses .spec-table, .pill, .crop-chip, .pdetail__highlight, .infra-list) */
.pm-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3.5vw, 40px); padding: clamp(22px, 4vw, 44px); }
@media (max-width: 760px) { .pm-detail { grid-template-columns: 1fr; } }
.pm-media { position: relative; }
.pm-media__main { border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--cream-2); aspect-ratio: 4 / 3; overflow: hidden; display: grid; place-items: center; }
.pm-media__main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.pm-media--cover .pm-media__main img { object-fit: cover; padding: 0; }
.pm-media__tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--crimson-600); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill); }
.pm-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(56px, 1fr)); gap: 10px; margin-top: 12px; }
.pm-body .pcard__cat { display: block; margin-bottom: 8px; }
.pm-body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.pm-body > p { margin-top: 12px; color: var(--ink-soft); line-height: 1.7; }
.pm-body .spec-table, .pm-body .pdetail__badges, .pm-body .crops-row, .pm-body .pdetail__highlight, .pm-body .infra-list, .pm-body .pdetail__cta { margin-top: 20px; }

/* Home page featured products — 4-up grid (reuses .prod-card) */
.prod-grid.prod-grid--home { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .prod-grid.prod-grid--home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prod-grid.prod-grid--home { grid-template-columns: 1fr; } }

/* =========================================================================
   NEW LOGO + GREEN CHROME (topbar / header / footer accents)
   Crimson remains the content accent elsewhere.
   ========================================================================= */
:root {
  --green-900: #14532D;   /* dark forest — topbar, wordmark */
  --green-800: #17612F;
  --green-700: #1E7A3A;
  --green-600: #2E9E44;   /* medium green — tractor */
  --green-500: #37B24D;
  --green-050: #E9F5EC;
}

/* Top bar -> dark green */
.topbar { background: var(--green-900); }

/* Header nav links -> green hover/active */
.nav__links a:hover { color: var(--green-700); background: var(--green-050); }
.nav__links a.is-active { color: var(--green-700); background: var(--green-050); }
.mobile-nav__panel a.m-link:hover { color: var(--green-700); background: var(--green-050); }
.mobile-nav__panel a.m-link.is-active { color: var(--green-700); background: var(--green-050); }

/* Brand logo lockup (replaces small icon + text) */
/* Brand logo scales with the viewport so it reads well on every screen. */
.brand__lockup { height: clamp(58px, 6.6vw, 90px); width: auto; display: block; }
/* Footer: dark bg needs the colour logo on a light chip to stay legible */
.footer__brand .brand__lockup { height: clamp(72px, 7.5vw, 92px); background: transparent; border-radius: 0; padding: 0; box-shadow: none; filter: brightness(0) invert(1); opacity: .96; }

/* =========================================================================
   PORTRAIT PRODUCTS SHOWCASE VIDEO
   ========================================================================= */
.showcase { background: var(--cream-2); overflow: hidden; }
.showcase__grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.showcase__copy .eyebrow { margin-bottom: 20px; }
.showcase__copy h2 { margin-bottom: 16px; }
.showcase__copy p { color: var(--muted); max-width: 34rem; }
.showcase__copy .hero__cta { margin-top: 28px; }
.showcase__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.showcase__list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: .98rem; }
.showcase__list svg { width: 20px; height: 20px; color: #fff; background: var(--green-600); border-radius: 50%; padding: 3px; flex: none; margin-top: 1px; }

.showcase__stage { position: relative; justify-self: center; }
.showcase__stage::before {
  content: ""; position: absolute; z-index: 0; inset: 6% -12% -8% 8%;
  background: radial-gradient(60% 60% at 60% 40%, rgba(46,158,68,.28), transparent 70%),
              radial-gradient(50% 50% at 20% 90%, rgba(230,185,74,.28), transparent 70%);
  filter: blur(26px); pointer-events: none;
}
.showcase__phone {
  position: relative; z-index: 1; width: min(300px, 78vw);
  border: 9px solid #1c1c1e; border-radius: 34px; background: #000;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.2); overflow: hidden;
}
.showcase__phone video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #000; }
.showcase__badge {
  position: absolute; z-index: 2; left: -14px; bottom: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 16px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .86rem; color: var(--ink); box-shadow: var(--shadow-lg);
}
.showcase__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px rgba(46,158,68,.2); }

@media (max-width: 860px) {
  .showcase__grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase__copy { order: 1; }
  .showcase__stage { order: 2; }
}

/* =========================================================================
   PRODUCTS LANDING — main-machine feature cards (A, B, C…)
   ========================================================================= */
.machine-list { margin-top: 40px; display: grid; gap: 28px; }
.machine-feature {
  display: grid; grid-template-columns: minmax(260px, 40%) 1fr; gap: clamp(20px, 3vw, 40px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; align-items: stretch; text-align: left;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .25s ease;
}
.machine-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.machine-feature:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }
.machine-feature__media { position: relative; background: var(--cream-2); min-height: 260px; }
.machine-feature__media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform .45s ease; }
.machine-feature:hover .machine-feature__media img { transform: scale(1.04); }
.machine-feature__count {
  position: absolute; top: 14px; left: 14px; background: var(--crimson-600); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.machine-feature__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.machine-feature__body h2, .machine-feature__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-family: var(--font-serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.machine-feature__body > p { color: var(--ink-soft); }
.machine-feature__models { margin-top: 6px; }
.machine-feature .prod-card__foot { margin-top: 12px; font-size: 1rem; }
.machine-list__note { margin-top: 22px; color: var(--muted); font-size: .92rem; }
@media (max-width: 760px) {
  .machine-feature { grid-template-columns: 1fr; }
  .machine-feature__media { min-height: 0; aspect-ratio: 16 / 10; }
}

/* Gallery gold-glow bleeds past the edge when the gallery is full-width on
   small screens — suppress it there to avoid horizontal overflow. */
@media (max-width: 900px) {
  .product-detail .pdetail__gallery::before { display: none; }
}

/* About "Machines we build" gallery — product shots on white, shown in full */
.gtile--contain { background: var(--card-2); }
.gtile--contain img { object-fit: contain; padding: 16px; background: var(--card-2); }

/* "See all models" card in the related-models strip */
.prod-card--all { border-color: var(--gold-400); background: var(--card-2); }
.prod-card--all .prod-card__media img { opacity: .92; }

/* Product pages: centred page-hero headers with balanced side spacing */
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__inner { margin-inline: auto; max-width: min(80%, 880px); }
.page-hero--center .breadcrumb { justify-content: center; }
.page-hero--center .page-hero__sub { margin-left: auto; margin-right: auto; }

/* Contact — Locations: two units 50/50 with full-height maps */
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; align-items: stretch; }
.location-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.location-card__head { margin-bottom: 16px; }
.location-card__addr { color: var(--ink-soft); margin-top: 6px; font-size: .95rem; line-height: 1.55; }
.location-card .map-embed { flex: 1; margin-top: 0; min-height: 320px; }
.location-card .map-embed iframe { height: 100%; min-height: 320px; }
.location-card .btn { margin-top: 16px; }
@media (max-width: 760px) { .locations__grid { grid-template-columns: 1fr; } }
