/* ==========================================================================
   Go Green Exports (Pvt) Ltd — cocopeat.lk
   Design system. Single stylesheet, no framework.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  /* Canopy — deep forest green. Structure, headers, footers, dark blocks. */
  --canopy-900: #0e1f14;
  --canopy-800: #14301e;
  --canopy-700: #1b4029;
  --canopy-600: #245538;

  /* Leaf — brand green. Accents on dark only. */
  --leaf-400: #57a968;
  --leaf-300: #8cc79a;

  /* Harvest — controlled premium accent. Primary CTA. */
  --harvest-600: #a8681a;
  --harvest-500: #c98b2e;
  --harvest-400: #e0a63f;
  --harvest-300: #efc373;

  /* Coir — earth neutrals from the raw material itself. */
  --coir-700: #6b5540;
  --coir-600: #8c7355;
  --coir-300: #d9c7ae;
  --coir-200: #eadfce;

  /* Bone — warm off-white surfaces. */
  --bone-100: #f7f3ec;
  --bone-50:  #fbf9f5;
  --white:    #ffffff;

  /* Ink — text. */
  --ink-900: #161c18;
  --ink-700: #39433c;
  --ink-500: #5c6760;

  --line:        rgba(22, 28, 24, .14);
  --line-strong: rgba(22, 28, 24, .26);
  --line-dark:   rgba(234, 223, 206, .18);

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --step--1: clamp(.8125rem, .79rem + .1vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .14vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.07rem + .26vw, 1.3125rem);
  --step-2:  clamp(1.375rem, 1.27rem + .5vw, 1.75rem);
  --step-3:  clamp(1.625rem, 1.44rem + .9vw, 2.375rem);
  --step-4:  clamp(2rem, 1.65rem + 1.7vw, 3.375rem);
  --step-5:  clamp(2.375rem, 1.8rem + 2.8vw, 4.5rem);

  /* Space */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 4rem;
  --sp-9: 5.5rem;  --sp-10: 7.5rem;

  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  --radius-sm: 3px;
  --radius:    5px;
  --radius-lg: 8px;

  --shadow-1: 0 1px 2px rgba(14, 31, 20, .06), 0 2px 8px rgba(14, 31, 20, .05);
  --shadow-2: 0 2px 6px rgba(14, 31, 20, .07), 0 12px 32px rgba(14, 31, 20, .09);
  --shadow-3: 0 4px 12px rgba(14, 31, 20, .1), 0 24px 60px rgba(14, 31, 20, .14);

  --wrap: 1240px;
  --wrap-narrow: 800px;
  --header-h: 76px;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bone-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

/* <picture> is a wrapper with no box of its own. Letting it generate an inline
   box breaks percentage sizing on the <img> inside aspect-ratio containers. */
picture { display: block; }
@supports (display: contents) { picture { display: contents; } }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--canopy-900);
  line-height: 1.12;
  letter-spacing: -.018em;
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--canopy-600); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--canopy-800); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15em; }
li + li { margin-top: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }

strong, b { color: var(--ink-900); font-weight: 600; }

::selection { background: var(--harvest-300); color: var(--canopy-900); }

/* --------------------------------------------------------------- a11y */
:focus-visible {
  outline: 3px solid var(--harvest-500);
  outline-offset: 2px;
  border-radius: 2px;
}
.dark :focus-visible, .u-dark :focus-visible { outline-color: var(--harvest-400); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--harvest-400); color: var(--canopy-900);
  padding: .75rem 1.25rem; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; transition: top .15s ease;
}
.skip-link:focus { top: var(--sp-4); }

/* ------------------------------------------------------------- utilities */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
@media (min-width: 768px) { .wrap { padding-inline: var(--sp-6); } }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--bone { background: var(--bone-100); }
.section--paper { background: var(--white); }
.section--sand { background: var(--coir-200); }
.section--dark { background: var(--canopy-900); color: var(--coir-200); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark a { color: var(--harvest-300); }
.section--dark a:hover { color: var(--harvest-400); }
.section--dark strong, .section--dark b { color: var(--white); }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--coir-700);
  margin: 0 0 var(--sp-3);
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; width: 2rem; height: 2px; background: var(--harvest-500); flex: none;
}
.section--dark .eyebrow { color: var(--leaf-300); }
.section--dark .eyebrow::before { background: var(--harvest-400); }
.eyebrow--center { justify-content: center; }

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--ink-700); }
.section--dark .lede { color: var(--coir-200); }

.sec-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

.measure { max-width: 68ch; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-0);
  line-height: 1.2; letter-spacing: -.005em;
  padding: .95rem 1.6rem; min-height: 48px;
  border-radius: var(--radius); border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--harvest-400); color: var(--canopy-900); border-color: var(--harvest-400); }
.btn--primary:hover { background: var(--harvest-300); border-color: var(--harvest-300); color: var(--canopy-900); }

.btn--secondary { background: transparent; color: var(--canopy-800); border-color: var(--canopy-800); }
.btn--secondary:hover { background: var(--canopy-800); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: var(--white); color: var(--canopy-900); border-color: var(--white); }

.btn--dark { background: var(--canopy-800); color: var(--white); border-color: var(--canopy-800); }
.btn--dark:hover { background: var(--canopy-700); border-color: var(--canopy-700); color: var(--white); }

.btn--sm { padding: .6rem 1.1rem; min-height: 40px; font-size: var(--step--1); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* text link with arrow */
.link-arrow {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step--1);
  letter-spacing: .01em; text-decoration: none; color: var(--canopy-700);
  display: inline-flex; align-items: center; gap: .5em;
  border-bottom: 2px solid var(--harvest-400); padding-bottom: 2px;
  min-height: 24px;
}
.link-arrow:hover { color: var(--canopy-900); border-bottom-color: var(--canopy-900); }
.link-arrow svg { flex: none; transition: transform .16s ease; }
.link-arrow:hover svg { transform: translateX(3px); }
.section--dark .link-arrow { color: var(--coir-200); border-bottom-color: var(--harvest-400); }
.section--dark .link-arrow:hover { color: var(--white); border-bottom-color: var(--white); }

/* ----------------------------------------------------------------- header */
.topbar {
  background: var(--canopy-900); color: var(--coir-300);
  font-size: var(--step--1); border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); min-height: 40px; flex-wrap: wrap;
}
.topbar__note { display: flex; align-items: center; gap: .55em; margin: 0; padding-block: .35rem; }
.topbar__note svg { color: var(--leaf-300); flex: none; }
.topbar__links { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar a { color: var(--coir-200); text-decoration: none; display: inline-flex; align-items: center; gap: .45em; min-height: 32px; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
@media (max-width: 900px) { .topbar__note { display: none; } .topbar__inner { justify-content: center; } }
@media (max-width: 640px) {
  .topbar__links { gap: var(--sp-4); }
  .topbar__links a[href^="mailto"] { display: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow-2); }

.header__inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { width: 150px; height: 50px; }
@media (max-width: 480px) { .brand img { width: 117px; height: 39px; } }

.header__nav { margin-left: auto; }
.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

/* primary nav */
.nav > ul { display: flex; align-items: center; gap: var(--sp-1); list-style: none; margin: 0; padding: 0; }
.nav > ul > li { margin: 0; position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35em;
  font-family: var(--font-display); font-weight: 600; font-size: .9375rem;
  color: var(--canopy-900); text-decoration: none;
  padding: .65rem .85rem; border-radius: var(--radius); min-height: 44px;
  background: none; border: 0; cursor: pointer; font-feature-settings: inherit;
}
.nav__link:hover { background: var(--bone-100); color: var(--canopy-700); }
.nav__link[aria-current="page"] { color: var(--canopy-600); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .1rem;
  height: 2px; background: var(--harvest-400);
}
.nav__link svg { transition: transform .16s ease; }
.nav__link[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__panel {
  position: absolute; top: calc(100% + 4px); left: 0; z-index: 60;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-3);
  padding: var(--sp-4); min-width: 260px;
  display: none;
}
.nav__panel[data-open="true"] { display: block; }
.nav__panel ul { list-style: none; margin: 0; padding: 0; }
.nav__panel li { margin: 0; }
.nav__panel a {
  display: block; padding: .6rem .75rem; border-radius: var(--radius);
  text-decoration: none; color: var(--ink-700); font-size: .9375rem; min-height: 40px;
}
.nav__panel a:hover { background: var(--bone-100); color: var(--canopy-800); }

/* mega menu */
.nav__panel--mega { left: 50%; right: auto; transform: translateX(-50%); width: min(1080px, calc(100vw - 3rem)); padding: var(--sp-6); }
.mega { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5); }
.mega__col > a.mega__head {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  color: var(--canopy-900); padding: 0 0 .5rem; margin-bottom: .5rem;
  border-bottom: 2px solid var(--harvest-400); text-decoration: none;
}
.mega__col > a.mega__head:hover { color: var(--canopy-600); }
.mega__col a { font-size: .875rem; padding: .4rem .5rem; }
.mega__foot {
  grid-column: 1 / -1; border-top: 1px solid var(--line);
  margin-top: var(--sp-3); padding-top: var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between;
}
.mega__foot p { margin: 0; font-size: var(--step--1); color: var(--ink-500); max-width: 52ch; }
@media (max-width: 1180px) { .mega { grid-template-columns: repeat(3, 1fr); } }

/* Between the mega-menu breakpoint and full width the header row is tight:
   drop the button labels to icons before anything can overflow. */
@media (max-width: 1320px) {
  .header__inner { gap: var(--sp-4); }
  .nav__link { padding: .65rem .5rem; font-size: .875rem; }
  .nav__link[aria-current="page"]::after { left: .5rem; right: .5rem; }
  .header__actions { gap: var(--sp-2); }
  .header__actions .icon-btn span { display: none; }
  .header__actions .icon-btn { padding: 0 .55rem; min-width: 44px; }
  .header__actions .btn--primary { padding: .6rem .85rem; }
  .header__actions .btn--primary .btn__long { display: none; }
  .header__actions .btn--primary .btn__short { display: inline; }
  .brand img { width: 152px; height: 52px; }
}

/* mobile nav */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: var(--white); color: var(--canopy-900); cursor: pointer;
}
.nav-toggle:hover { background: var(--bone-100); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .header__nav {
    position: fixed; inset: 0 0 0 auto; width: min(420px, 100%);
    background: var(--white); z-index: 110;
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto; padding: var(--sp-5) var(--sp-5) var(--sp-8);
    box-shadow: var(--shadow-3); margin-left: 0;
  }
  .header__nav[data-open="true"] { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 1rem .25rem; min-height: 52px; border-radius: 0; font-size: 1.0625rem; }
  .nav__link:hover { background: none; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__panel {
    position: static; display: none; box-shadow: none; border: 0;
    border-radius: 0; padding: 0 0 var(--sp-4) var(--sp-3); width: auto; min-width: 0;
    background: none;
  }
  .nav__panel--mega { width: auto; padding: 0 0 var(--sp-4) var(--sp-3); left: auto; transform: none; }
  .mega { grid-template-columns: 1fr; gap: var(--sp-4); }
  .mega__foot { display: none; }
  .nav-close { display: inline-flex !important; }

}
@media (min-width: 1081px) { .nav-close { display: none !important; } }

.nav-foot { display: none; }
@media (max-width: 1080px) {
  .nav-foot { display: grid; gap: var(--sp-3); margin-top: var(--sp-6); }
  .nav-foot__note { margin: var(--sp-2) 0 0; font-size: var(--step--1); color: var(--ink-500); }
}

/* Below the sticky action bar breakpoint the header carries only the brand,
   the language control and the menu button — quote and WhatsApp live in the
   sticky bar and in the drawer, so nothing has to be squeezed. */
@media (max-width: 820px) {
  .header__actions .btn--primary,
  .header__actions .header__wa { display: none; }
}

.nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
@media (min-width: 1081px) { .nav-head { display: none; } }
.nav-close {
  width: 48px; height: 48px; border: 1px solid var(--line-strong); background: var(--white);
  border-radius: var(--radius); cursor: pointer; color: var(--canopy-900);
  align-items: center; justify-content: center;
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(14,31,20,.55); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

.btn__short { display: none; }

/* icon button */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45em;
  min-width: 44px; min-height: 44px; padding: 0 .8rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--white); color: var(--canopy-800); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: .875rem;
}
.icon-btn:hover { background: var(--canopy-800); color: var(--white); border-color: var(--canopy-800); }
@media (max-width: 620px) { .icon-btn span { display: none; } }

/* language widget — lives in the utility bar */
.lang-select { position: relative; }
.lang-select__btn {
  display: inline-flex; align-items: center; gap: .4em;
  background: none; border: 0; cursor: pointer; color: var(--coir-200);
  font: inherit; font-size: var(--step--1); padding: .35rem .25rem; min-height: 32px;
}
.lang-select__btn:hover { color: var(--white); text-decoration: underline; }
.lang-select__btn[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }
#google_translate_element { position: absolute; right: 0; top: calc(100% + 6px); z-index: 70; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem; box-shadow: var(--shadow-2); display: none; }
#google_translate_element[data-open="true"] { display: block; }
#google_translate_element select { height: 40px; padding: .35rem .6rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--white); color: var(--ink-900); font: inherit; font-size: .875rem; }
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { font-size: 0 !important; color: transparent !important; }

/* ------------------------------------------------------------------- hero */
.hero { position: relative; background: var(--canopy-900); color: var(--coir-200); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(14,31,20,.94) 0%, rgba(14,31,20,.88) 34%, rgba(14,31,20,.6) 62%, rgba(14,31,20,.45) 100%),
    linear-gradient(to top, rgba(14,31,20,.75) 0%, rgba(14,31,20,0) 45%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(3.5rem, 2rem + 8vw, 7.5rem);
  max-width: 46rem;
}
.hero h1 { color: var(--white); margin-bottom: var(--sp-5); }
.hero h1 em { font-style: normal; color: var(--harvest-300); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem;
  letter-spacing: .11em; text-transform: uppercase; color: var(--canopy-900);
  background: var(--harvest-400); padding: .5rem .85rem; border-radius: var(--radius-sm);
  margin-bottom: var(--sp-5); line-height: 1.35; max-width: 34rem;
}
.hero__eyebrow svg { flex: none; }
.hero__sub { font-size: var(--step-1); line-height: 1.55; color: var(--coir-200); max-width: 42rem; margin-bottom: var(--sp-6); }
.hero .btn-row { margin-bottom: var(--sp-6); }

.hero__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); list-style: none; margin: 0; padding: 0; }
.hero__chips li {
  margin: 0; display: flex; align-items: center; gap: .5em;
  font-size: var(--step--1); color: var(--coir-200); font-weight: 500;
}
.hero__chips svg { color: var(--leaf-300); flex: none; }

/* -------------------------------------------------------------- proof bar */
.proofbar { background: var(--canopy-800); color: var(--coir-200); border-top: 1px solid rgba(255,255,255,.09); }
.proofbar__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.proofbar__item { padding: var(--sp-6) var(--sp-5) var(--sp-6) 0; border-right: 1px solid var(--line-dark); }
.proofbar__item:last-child { border-right: 0; padding-right: 0; }
.proofbar__item + .proofbar__item { padding-left: var(--sp-5); }
.proofbar__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); line-height: 1;
  color: var(--white); letter-spacing: -.03em; display: block; margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.proofbar__value--sm { font-size: clamp(1.125rem, .9rem + .8vw, 1.5rem); }
.proofbar__label { font-size: var(--step--1); line-height: 1.45; color: var(--coir-300); margin: 0; }
.proofbar__note {
  display: block; font-family: var(--font-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-300); margin-bottom: .6rem;
}
@media (max-width: 1080px) {
  .proofbar__grid { grid-template-columns: repeat(3, 1fr); }
  .proofbar__item:nth-child(3n) { border-right: 0; }
  .proofbar__item:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 640px) {
  .proofbar__grid { grid-template-columns: repeat(2, 1fr); }
  .proofbar__item:nth-child(n) { border-right: 1px solid var(--line-dark); padding: var(--sp-5) var(--sp-4) var(--sp-5) 0; }
  .proofbar__item:nth-child(2n), .proofbar__item:last-child { border-right: 0; }
  .proofbar__item:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .proofbar__item:nth-child(2n) { padding-left: var(--sp-4); }
}

/* ------------------------------------------------------------ split block */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center;
}
.split--top { align-items: start; }
.split--wide-media { grid-template-columns: 1.15fr 1fr; }
.split--media-first > .split__media { order: -1; }
@media (max-width: 900px) { .split, .split--wide-media { grid-template-columns: 1fr; }
  .split--media-first > .split__media { order: 0; } }

.split__media img { width: 100%; border-radius: var(--radius-lg); }
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius-lg); }
.figure figcaption {
  font-size: var(--step--1); color: var(--ink-500); margin-top: var(--sp-3);
  padding-left: var(--sp-3); border-left: 2px solid var(--harvest-400);
}
.section--dark .figure figcaption { color: var(--coir-300); }

.media-stack { display: grid; gap: var(--sp-4); }
.media-stack--2 { grid-template-columns: 1fr 1fr; }

/* -------------------------------------------------------------- fact list */
.factlist { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; gap: var(--sp-4); }
.factlist li { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.factlist dt, .factlist .factlist__k {
  font-family: var(--font-display); font-weight: 700; color: var(--canopy-900);
}
.factlist svg { color: var(--harvest-600); margin-top: .35em; flex: none; }
.section--dark .factlist svg { color: var(--harvest-400); }
.section--dark .factlist .factlist__k { color: var(--white); }

/* ------------------------------------------------------------------ cards */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* category card — editorial, image-led */
.cat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.cat-card:hover { box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.cat-card__media { aspect-ratio: 16 / 10; background: var(--coir-200); overflow: hidden; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover .cat-card__media img { transform: scale(1.035); }
.cat-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.cat-card__eyebrow {
  font-family: var(--font-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--coir-700); margin: 0 0 .6rem;
}
.cat-card h3 { font-size: var(--step-2); margin-bottom: var(--sp-3); }
.cat-card h3 a { text-decoration: none; color: inherit; }
.cat-card h3 a::after { content: ""; position: absolute; inset: 0; }
.cat-card p { font-size: .9375rem; color: var(--ink-700); margin-bottom: var(--sp-4); }
.cat-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-2) var(--sp-3); }
.cat-card__foot .link-arrow { margin-left: auto; }
.cat-card__count { font-size: var(--step--1); color: var(--ink-500); }
.cat-card:hover .link-arrow svg { transform: translateX(3px); }

/* product card */
.prod-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.prod-card:hover { box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.prod-card__media { aspect-ratio: 4 / 3; background: var(--bone-50); }
.prod-card__media img { width: 100%; height: 100%; object-fit: contain; padding: var(--sp-4); }
.prod-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.prod-card__cat {
  font-family: var(--font-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase; color: var(--coir-700); margin: 0 0 .5rem;
}
.prod-card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.prod-card h3 a { text-decoration: none; color: inherit; }
.prod-card h3 a::after { content: ""; position: absolute; inset: 0; }
.prod-card p { font-size: .875rem; color: var(--ink-500); margin: 0 0 var(--sp-4); }
.prod-card__foot { margin-top: auto; }

/* plain feature card */
.fcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.fcard__num {
  font-family: var(--font-display); font-weight: 700; font-size: .8125rem;
  letter-spacing: .1em; color: var(--harvest-600); display: block; margin-bottom: var(--sp-3);
}
.fcard h3 { font-size: var(--step-1); margin-bottom: var(--sp-3); }
.fcard p { font-size: .9375rem; margin: 0; }
.section--dark .fcard { background: rgba(255,255,255,.045); border-color: var(--line-dark); }
.section--dark .fcard p { color: var(--coir-300); }
.section--dark .fcard__num { color: var(--harvest-400); }

/* reason list — numbered editorial */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.reasons > div {
  padding: var(--sp-6) var(--sp-5);
  border-bottom: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark);
}
.reasons > div:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) { .reasons { grid-template-columns: repeat(2, 1fr); }
  .reasons > div:nth-child(3n) { border-right: 1px solid var(--line-dark); }
  .reasons > div:nth-child(2n) { border-right: 0; } }
@media (max-width: 620px) { .reasons { grid-template-columns: 1fr; }
  .reasons > div { border-right: 0 !important; } }

/* ---------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-4); }
.gallery figure { margin: 0; grid-column: span 2; }
.gallery figure:nth-child(1) { grid-column: span 4; }
.gallery figure:nth-child(2) { grid-column: span 2; }
.gallery figure:nth-child(3) { grid-column: span 2; }
.gallery figure:nth-child(4) { grid-column: span 2; }
.gallery figure:nth-child(5) { grid-column: span 2; }
.gallery figure:nth-child(6) { grid-column: span 6; }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.gallery figure:nth-child(1) img { aspect-ratio: 16 / 9; }
.gallery figure:nth-child(6) img { aspect-ratio: 21 / 7; }
.gallery figcaption { margin-top: var(--sp-3); font-size: var(--step--1); color: var(--coir-300); }
.gallery figcaption b { display: block; color: var(--white); font-family: var(--font-display); font-size: .9375rem; margin-bottom: .2rem; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure, .gallery figure:nth-child(n) { grid-column: span 2; }
  .gallery figure img, .gallery figure:nth-child(n) img { aspect-ratio: 16 / 9; }
}

/* ----------------------------------------------------------- credentials */
.cred {
  display: grid; grid-template-columns: 280px 1fr; gap: var(--sp-6);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; align-items: stretch;
}
.cred + .cred { margin-top: var(--sp-5); }
.cred__media { background: var(--bone-50); display: grid; }
.cred__media img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.cred__body { padding: var(--sp-6) var(--sp-6) var(--sp-6) 0; }
.cred--noimg { grid-template-columns: 1fr; }
.cred--noimg .cred__body { padding: var(--sp-6); }
@media (max-width: 760px) { .cred { grid-template-columns: 1fr; }
  .cred__body { padding: var(--sp-5); } .cred__media img { min-height: 180px; max-height: 260px; } }

.cred h3 { font-size: var(--step-2); margin-bottom: var(--sp-2); }
.cred__meta { list-style: none; margin: 0 0 var(--sp-4); padding: 0; font-size: .9375rem; }
.cred__meta li { margin: 0 0 .3rem; display: grid; grid-template-columns: 8.5rem 1fr; gap: var(--sp-3); }
.cred__meta span:first-child { color: var(--ink-500); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .07em; font-family: var(--font-display); font-weight: 600; padding-top: .15em; }
@media (max-width: 520px) { .cred__meta li { grid-template-columns: 1fr; gap: 0; } }

.badge {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-display); font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px; margin-bottom: var(--sp-4);
}
.badge--active { background: var(--canopy-700); color: var(--white); }
.badge--award  { background: var(--harvest-400); color: var(--canopy-900); }
.badge--past   { background: var(--coir-200); color: var(--coir-700); border: 1px solid var(--coir-300); }

/* ----------------------------------------------------------- testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; max-width: 46rem; margin-inline: auto; } }
.quote {
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  display: flex; flex-direction: column;
}
.quote__mark { color: var(--harvest-400); margin-bottom: var(--sp-4); }
.quote blockquote { margin: 0 0 var(--sp-5); font-size: 1rem; line-height: 1.65; color: var(--coir-200); }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: var(--sp-3); border-top: 1px solid var(--line-dark); padding-top: var(--sp-4); }
.quote figcaption img { width: 34px; height: 23px; object-fit: cover; border-radius: 2px; flex: none; }
.quote__who { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: .9375rem; display: block; }
.quote__where { font-size: var(--step--1); color: var(--coir-300); }

/* --------------------------------------------------------------- timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: .6rem; bottom: .6rem; width: 2px;
  background: linear-gradient(var(--harvest-400), var(--coir-300));
}
.timeline > li { margin: 0 0 var(--sp-7); padding-left: var(--sp-7); position: relative; }
.timeline > li:last-child { margin-bottom: 0; }
.timeline > li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: 16px; height: 16px;
  border-radius: 50%; background: var(--harvest-400); border: 3px solid var(--bone-100);
  box-shadow: 0 0 0 1px var(--harvest-500);
}
.timeline__year {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-2);
  color: var(--canopy-900); display: block; line-height: 1; margin-bottom: .4rem;
  font-variant-numeric: tabular-nums;
}
.timeline h2, .timeline h3 { font-size: var(--step-1); margin-bottom: .5rem; letter-spacing: -.01em; }
.timeline p { font-size: .9375rem; margin: 0; }

/* ------------------------------------------------------------------ steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 3px solid var(--harvest-400); padding-top: var(--sp-4); }
.step__n {
  font-family: var(--font-display); font-weight: 700; font-size: .8125rem;
  letter-spacing: .14em; color: var(--harvest-600); display: block; margin-bottom: .6rem;
}
.section--dark .step__n { color: var(--harvest-400); }
.step h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.step p { font-size: .9375rem; margin: 0; }
.section--dark .step p { color: var(--coir-300); }

/* ------------------------------------------------------------ breadcrumbs */
.crumbs { background: var(--canopy-900); }
.crumbs ol {
  list-style: none; margin: 0; padding: var(--sp-4) 0; display: flex; flex-wrap: wrap;
  gap: .5em; font-size: var(--step--1); color: var(--coir-300);
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: .5em; }
.crumbs li + li::before { content: "/"; color: rgba(217,199,174,.45); }
.crumbs a { color: var(--coir-200); text-decoration: none; min-height: 24px; display: inline-flex; align-items: center; }
.crumbs a:hover { color: var(--white); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--harvest-300); }

/* footer regional list: name above number so nothing is squeezed */
.footer__regions { list-style: none; margin: 0; padding: 0; }
.footer__regions li { margin: 0 0 .75rem; }
.footer__regions b { display: block; font-family: var(--font-display); font-size: .875rem; color: var(--white); }
.footer__regions a { font-variant-numeric: tabular-nums; min-height: 24px; display: inline-flex; align-items: center; }

/* --------------------------------------------------------------- pagehead */
.pagehead { background: var(--canopy-900); color: var(--coir-200); position: relative; overflow: hidden; }
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(14,31,20,.95) 0%, rgba(14,31,20,.86) 45%, rgba(14,31,20,.62) 100%);
}
.pagehead__inner { position: relative; z-index: 2; padding-block: clamp(2.75rem, 1.75rem + 4.5vw, 5rem); max-width: 52rem; }
.pagehead h1 { color: var(--white); font-size: var(--step-4); margin-bottom: var(--sp-4); }
.pagehead p { color: var(--coir-200); font-size: var(--step-1); margin: 0; max-width: 46rem; }
.pagehead .eyebrow { color: var(--leaf-300); }
.pagehead .eyebrow::before { background: var(--harvest-400); }

/* ---------------------------------------------------------------- prose */
.prose h2 { font-size: var(--step-3); margin-top: var(--sp-8); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin-top: var(--sp-6); }
.prose > *:first-child { margin-top: 0; }
.prose ul { padding-left: 1.25em; }
.prose li::marker { color: var(--harvest-600); }

/* checked list */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.ticks li { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: start; font-size: .9375rem; }
.ticks svg { color: var(--canopy-600); margin-top: .3em; flex: none; }
.section--dark .ticks svg { color: var(--leaf-300); }
.ticks--2 { grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-6); }
@media (max-width: 680px) { .ticks--2 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- tables */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: var(--sp-4); }
table.spec {
  width: 100%; border-collapse: collapse; font-size: .9375rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
table.spec caption {
  text-align: left; font-family: var(--font-display); font-weight: 700;
  color: var(--canopy-900); font-size: var(--step-1); padding-bottom: var(--sp-3);
}
table.spec th, table.spec td { padding: .85rem 1.1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
table.spec tr:last-child th, table.spec tr:last-child td { border-bottom: 0; }
table.spec th {
  font-family: var(--font-display); font-weight: 600; color: var(--canopy-900);
  width: 40%; background: var(--bone-50);
}
table.spec td { color: var(--ink-700); }
.spec-note { font-size: var(--step--1); color: var(--ink-500); margin-top: var(--sp-3); }

/* ------------------------------------------------------------ product page */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

.pdp__gallery { display: grid; gap: var(--sp-3); }
.pdp__main {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; overflow: hidden;
}
.pdp__main img { width: 100%; height: 100%; object-fit: contain; padding: var(--sp-5); }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); list-style: none; margin: 0; padding: 0; }
.pdp__thumbs li { margin: 0; }
.pdp__thumbs button {
  width: 100%; aspect-ratio: 1; background: var(--white); cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius); padding: .4rem; overflow: hidden;
}
.pdp__thumbs button[aria-current="true"] { border-color: var(--harvest-500); box-shadow: 0 0 0 1px var(--harvest-500); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pdp__aside { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
@media (max-width: 900px) { .pdp__aside { position: static; } }

.quotebox {
  background: var(--canopy-900); color: var(--coir-200);
  border-radius: var(--radius-lg); padding: var(--sp-6);
}
.quotebox h3 { color: var(--white); font-size: var(--step-1); margin-bottom: var(--sp-3); }
.quotebox p { font-size: .9375rem; color: var(--coir-300); }
.quotebox .btn-row { margin-top: var(--sp-5); }
.quotebox__trust { list-style: none; margin: var(--sp-5) 0 0; padding: var(--sp-4) 0 0; border-top: 1px solid var(--line-dark); display: grid; gap: .5rem; font-size: var(--step--1); }
.quotebox__trust li { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; color: var(--coir-300); }
.quotebox__trust svg { color: var(--leaf-300); margin-top: .25em; }

/* qualification question list */
.qlist { list-style: none; counter-reset: q; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.qlist li { margin: 0; counter-increment: q; display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.qlist li::before {
  content: counter(q, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: .8125rem;
  color: var(--harvest-600); padding-top: .25em; letter-spacing: .06em;
}

/* ------------------------------------------------------------------ forms */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}
/* A light card inside a dark section is its own colour context. */
.section--dark .form-card { color: var(--ink-700); }
.section--dark .form-card h1,
.section--dark .form-card h2,
.section--dark .form-card h3,
.section--dark .form-card h4 { color: var(--canopy-900); }
.section--dark .form-card p,
.section--dark .form-card label,
.section--dark .form-card span,
.section--dark .form-card li { color: inherit; }
.section--dark .form-card .lede { color: var(--ink-700); }
.section--dark .form-card a { color: var(--canopy-600); }
.section--dark .form-card a:hover { color: var(--canopy-800); }
.section--dark .form-card .hint,
.section--dark .form-card .opt,
.section--dark .form-card .form-reassure { color: var(--ink-500); }
.section--dark .form-card .err { color: #8c1c1c; }
.section--dark .form-card .form-steps li { color: var(--ink-500); }
.section--dark .form-card .form-steps li[aria-current="step"] { color: var(--canopy-900); }
.section--dark .form-card .form-steps li[data-done="true"] { color: var(--canopy-600); }
.section--dark .form-card .form-msg--ok { color: #17492a; }
.section--dark .form-card .form-msg--ok h3 { color: #17492a; }
.section--dark .form-card .form-msg--err,
.section--dark .form-card .form-msg--err h3 { color: #7d1b1b; }
.section--dark .form-card .btn--secondary { color: var(--canopy-800); border-color: var(--canopy-800); }
.section--dark .form-card .btn--secondary:hover { background: var(--canopy-800); color: var(--white); }
.section--dark .form-card :focus-visible { outline-color: var(--harvest-600); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-5); }
.form-grid > .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-family: var(--font-display); font-weight: 600; font-size: .875rem; color: var(--canopy-900);
}
.field .opt { font-weight: 400; color: var(--ink-500); font-size: .8125rem; }
.field .hint { font-size: .8125rem; color: var(--ink-500); }

.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink-900);
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: .75rem .9rem; min-height: 48px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2339433c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--canopy-600); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--harvest-500); outline-offset: 1px; border-color: var(--canopy-700);
}
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: #a02020; background: #fdf6f6; }

.field .err {
  display: none; font-size: .8125rem; color: #8c1c1c; font-weight: 500;
  align-items: center; gap: .4em;
}
.field[data-invalid="true"] .err { display: flex; }

.checkfield { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: start; }
.checkfield input[type="checkbox"] { width: 22px; height: 22px; min-height: 22px; margin-top: .15rem; accent-color: var(--canopy-700); }
.checkfield label { font-family: var(--font-body); font-weight: 400; font-size: .9375rem; color: var(--ink-700); }

.form-steps { display: flex; gap: var(--sp-2); list-style: none; margin: 0 0 var(--sp-6); padding: 0; }
.form-steps li {
  margin: 0; flex: 1; font-family: var(--font-display); font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-500);
  border-top: 3px solid var(--line); padding-top: .6rem;
}
.form-steps li[aria-current="step"] { color: var(--canopy-900); border-top-color: var(--harvest-400); }
.form-steps li[data-done="true"] { color: var(--canopy-600); border-top-color: var(--canopy-600); }

.form-panel[hidden] { display: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-top: var(--sp-6); }
.form-reassure { font-size: .8125rem; color: var(--ink-500); margin: var(--sp-3) 0 0; display: flex; align-items: flex-start; gap: .5em; }
.form-reassure svg { color: var(--canopy-600); flex: none; margin-top: .2em; }

.form-msg { border-radius: var(--radius); padding: var(--sp-4) var(--sp-5); margin-bottom: var(--sp-5); font-size: .9375rem; display: none; }
.form-msg[data-show="true"] { display: block; }
.form-msg--ok { background: #eaf4ec; border: 1px solid #b6d8bf; color: #17492a; }
.form-msg--err { background: #fdf1f1; border: 1px solid #e2b7b7; color: #7d1b1b; }
.form-msg h3 { color: inherit; font-size: var(--step-1); margin-bottom: .35rem; }
.form-msg p { margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------- contact bits */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.office { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-6); }
.office + .office { margin-top: var(--sp-4); }
.office h3 { font-size: var(--step-1); margin-bottom: var(--sp-4); }
.office address { font-style: normal; font-size: .9375rem; }
.office dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem var(--sp-4); margin: var(--sp-4) 0 0; font-size: .9375rem; }
.office dt { color: var(--ink-500); font-size: var(--step--1); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding-top: .2em; }
.office dd { margin: 0; }
.office a { font-weight: 500; }

.region-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.region-list li { margin: 0; border-bottom: 1px solid var(--line); padding: var(--sp-4) 0; display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: baseline; justify-content: space-between; }
.region-list b { font-family: var(--font-display); color: var(--canopy-900); font-size: .9375rem; }
.region-list a { font-variant-numeric: tabular-nums; font-weight: 600; min-height: 24px; display: inline-flex; align-items: center; }
.section--dark .region-list { border-color: var(--line-dark); }
.section--dark .region-list li { border-color: var(--line-dark); }
.section--dark .region-list b { color: var(--white); }

.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--coir-200); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; background: var(--canopy-900); color: var(--coir-200); overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(14,31,20,.96), rgba(14,31,20,.82) 55%, rgba(14,31,20,.7)); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--coir-200); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--canopy-900); color: var(--coir-300); font-size: .9375rem; }
.site-footer strong, .site-footer b { color: var(--white); }
.site-footer a { color: var(--coir-200); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer__top { padding-block: var(--sp-8) var(--sp-7); display: grid; grid-template-columns: 1.25fr .85fr .95fr 1.5fr; gap: var(--sp-6) var(--sp-5); }
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { width: 236px; height: 149px; margin-bottom: var(--sp-4); }
.footer__brand p { max-width: 34ch; color: var(--coir-300); }
.site-footer h2, .site-footer h3 {
  font-size: .8125rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--leaf-300); margin-bottom: var(--sp-4); font-weight: 600;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin: 0 0 .55rem; }
.footer__list a { min-height: 24px; display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0 .4em; }
.footer__addr { font-style: normal; margin-bottom: var(--sp-4); }
.footer__addr b { display: block; color: var(--white); font-family: var(--font-display); margin-bottom: .25rem; }

.social { display: flex; gap: var(--sp-2); list-style: none; margin: var(--sp-5) 0 0; padding: 0; }
.social li { margin: 0; }
.social a {
  width: 40px; height: 40px; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); color: var(--coir-200);
}
.social a:hover { background: var(--harvest-400); color: var(--canopy-900); border-color: var(--harvest-400); }

.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--step--1); color: var(--coir-600);
}
.footer__bottom p { margin: 0; color: var(--coir-300); }

/* ------------------------------------------------------- sticky mobile bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 1px; background: var(--line-dark);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center;
  gap: .5em; min-height: 56px; text-decoration: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: .875rem;
  padding-inline: .5rem;
}
.mobile-bar svg { flex: none; }
@media (max-width: 400px) { .mobile-bar a { font-size: .8125rem; gap: .4em; padding-inline: .35rem; } }
.mobile-bar .mb-quote { background: var(--harvest-400); color: var(--canopy-900); }
.mobile-bar .mb-wa { background: var(--canopy-800); color: var(--white); }
@media (max-width: 820px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ------------------------------------------------------------- reveal fx */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- printables */
@media print {
  .site-header, .topbar, .mobile-bar, .site-footer, .cta-band, .nav-scrim { display: none !important; }
  body { background: #fff; color: #000; }
}
