/* ==========================================================================
   North Kiwi Limited — site stylesheet
   Sections: 1 Tokens · 2 Reset · 3 Typography · 4 Layout · 5 Buttons
             6 Header/Nav · 7 Hero · 8 Components · 9 Sections
             10 Forms · 11 Footer · 12 Utilities · 13 Motion · 14 Print
   ========================================================================== */

/* 1 · TOKENS ============================================================== */
:root {
  /* Brand */
  --canopy-900: #0c2318;
  --canopy-800: #123324;
  --canopy-700: #1a4a33;
  --canopy-600: #236345;
  --leaf-500:   #4f9e3a;
  --leaf-400:   #6fb845;
  --leaf-300:   #9ed36f;
  --gold-600:   #c9871a;
  --gold-500:   #e8a628;
  --gold-400:   #f4bf55;

  /* Neutrals */
  --ink:        #16241c;
  --ink-soft:   #46564c;
  --ink-mute:   #6c7c72;
  --line:       #e2e6df;
  --line-soft:  #eef1ec;
  --cream:      #fbfaf5;
  --cream-warm: #f5f2e9;
  --white:      #ffffff;

  /* Semantic */
  --bg:         var(--cream);
  --surface:    var(--white);
  --text:       var(--ink);
  --accent:     var(--leaf-500);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Fluid scale (320px → 1280px) */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.38vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.72vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.50rem + 1.25vw, 2.65rem);
  --step-4:  clamp(2.10rem, 1.65rem + 2.20vw, 3.60rem);
  --step-5:  clamp(2.50rem, 1.75rem + 3.60vw, 4.80rem);

  /* Space */
  --sp-2xs: 0.375rem;
  --sp-xs:  0.625rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Geometry */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(12, 35, 24, 0.06), 0 2px 8px rgba(12, 35, 24, 0.05);
  --shadow:    0 4px 12px rgba(12, 35, 24, 0.07), 0 12px 32px rgba(12, 35, 24, 0.07);
  --shadow-lg: 0 8px 24px rgba(12, 35, 24, 0.10), 0 28px 60px rgba(12, 35, 24, 0.12);

  --ease: cubic-bezier(0.22, 0.68, 0.36, 1);
  --header-h: 76px;
}

/* 2 · RESET =============================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* <picture> is a wrapper only — letting it generate a box would break
   height:100% / object-fit on the <img> inside aspect-ratio containers. */
picture { display: contents; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--leaf-400);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* 3 · TYPOGRAPHY ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-sm);
  color: var(--canopy-900);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 650; }

p { margin: 0 0 var(--sp-sm); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 350;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf-500);
  margin-bottom: var(--sp-xs);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-400); }

/* 4 · LAYOUT ============================================================== */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 640px) { .wrap { width: min(100% - 4rem, var(--wrap)); } }

.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--sp-2xl); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--cream { background: var(--cream-warm); }
.section--white { background: var(--white); }
.section--dark { background: var(--canopy-900); color: #dfe8e1; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lede { color: #b8c8bd; }

.section-head { max-width: 62ch; margin-bottom: var(--sp-lg); }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--sp-md); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* Alternating media + copy rows */
.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* 5 · BUTTONS ============================================================= */
.btn {
  --btn-bg: var(--canopy-800);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold-500); --btn-fg: var(--canopy-900); }
.btn--gold:hover { --btn-bg: var(--gold-400); }

.btn--leaf { --btn-bg: var(--leaf-500); --btn-fg: var(--white); }
.btn--leaf:hover { --btn-bg: var(--leaf-400); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--canopy-900);
  border-color: rgba(18, 51, 36, 0.25);
}
.btn--ghost:hover { --btn-bg: var(--canopy-900); --btn-fg: var(--white); }

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

.btn--lg { padding: 1.1em 2.1em; font-size: var(--step-0); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-xs) var(--sp-sm); }

/* Text link with animated underline */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 650;
  font-size: var(--step--1);
  color: var(--canopy-700);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease);
  padding-bottom: 2px;
}
.link:hover { background-size: 100% 2px; }
.link--light { color: var(--gold-400); }

/* 6 · HEADER / NAV ======================================================== */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--canopy-900);
  color: var(--white);
  font-size: var(--step--1);
  font-weight: 650;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 640px) { .header__inner { width: min(100% - 4rem, var(--wrap)); } }

/* Scrolled + inner-page (non-transparent) states */
.header.is-solid,
.header.is-scrolled {
  background: rgba(251, 250, 245, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(18, 51, 36, 0.08), 0 6px 24px rgba(12, 35, 24, 0.06);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.header.is-solid .brand, .header.is-scrolled .brand { color: var(--canopy-900); }
.brand__mark { flex: none; width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* Desktop nav */
.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: clamp(0.5rem, 0.1rem + 1.2vw, 1.5rem); }
}
.nav__link {
  position: relative;
  padding: 0.4rem 0.15rem;
  font-size: var(--step--1);
  font-weight: 550;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.header.is-solid .nav__link, .header.is-scrolled .nav__link { color: var(--ink-soft); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover { color: var(--white); }
.header.is-solid .nav__link:hover, .header.is-scrolled .nav__link:hover { color: var(--canopy-900); }
.nav__link[aria-current="page"] { color: var(--white); font-weight: 650; }
.header.is-solid .nav__link[aria-current="page"],
.header.is-scrolled .nav__link[aria-current="page"] { color: var(--canopy-900); }

.header__cta { display: none; }
@media (min-width: 1000px) { .header__cta { display: inline-flex; margin-left: 0.5rem; } }

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (min-width: 1000px) { .burger { display: none; } }
.header.is-solid .burger, .header.is-scrolled .burger {
  background: rgba(18, 51, 36, 0.06);
  border-color: rgba(18, 51, 36, 0.14);
}
.burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background-color 0.3s var(--ease);
}
.header.is-solid .burger__bar, .header.is-scrolled .burger__bar { background: var(--canopy-900); }
.burger[aria-expanded="true"] .burger__bar { background: var(--canopy-900); }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  align-content: start;
  gap: 0;
  padding: calc(var(--header-h) + 1.5rem) 1.75rem 2.5rem;
  background: var(--cream);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1000px) { .drawer { display: none; } }

.drawer__link {
  padding: 1.05rem 0.25rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--canopy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.drawer__link:hover { color: var(--leaf-500); padding-left: 0.75rem; }
.drawer__link[aria-current="page"] { color: var(--leaf-500); }
.drawer__link::after { content: "→"; opacity: 0.35; font-family: var(--font-body); font-size: 1rem; }
.drawer__foot { margin-top: var(--sp-lg); display: grid; gap: var(--sp-sm); }
.drawer__meta { font-size: var(--step--1); color: var(--ink-mute); }

body.nav-open { overflow: hidden; }

/* 7 · HERO ================================================================ */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: center;
  padding-block: calc(var(--header-h) + 3rem) var(--sp-xl);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 26, 17, 0.72) 0%, rgba(8, 26, 17, 0.34) 42%, rgba(8, 26, 17, 0.80) 100%),
    linear-gradient(100deg, rgba(8, 26, 17, 0.62) 0%, rgba(8, 26, 17, 0.05) 62%);
}
.hero__inner { max-width: 780px; color: var(--white); }
.hero h1 { color: var(--white); margin-bottom: var(--sp-md); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
  display: block;
}
.hero__lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.90);
  max-width: 56ch;
  margin-bottom: var(--sp-lg);
  font-weight: 350;
}
.hero__actions { margin-bottom: var(--sp-xl); }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 720px;
}
.hero__facts dt, .hero__facts dd { margin: 0; }
.hero__fact-k {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1.2;
}
.hero__fact-v {
  display: block;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 900px) and (min-height: 700px) { .scroll-cue { display: block; } }
.scroll-cue span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: currentColor;
  border-radius: 2px;
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  75%  { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* Inner-page hero */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(3rem, 1.5rem + 6vw, 6rem)) clamp(3rem, 1.5rem + 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(8, 26, 17, 0.86) 0%, rgba(8, 26, 17, 0.58) 100%);
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lede { color: rgba(255, 255, 255, 0.86); max-width: 58ch; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-sm);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.65);
}
.crumbs a { text-decoration: none; color: inherit; transition: color 0.2s var(--ease); }
.crumbs a:hover { color: var(--gold-400); }
.crumbs span[aria-hidden] { opacity: 0.5; }

/* 8 · COMPONENTS ========================================================== */

/* Trust strip */
.trust {
  background: var(--canopy-900);
  color: rgba(255, 255, 255, 0.85);
  padding-block: var(--sp-md);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-sm) var(--sp-md);
  text-align: center;
}
.trust__item { padding: 0.5rem; }
.trust__k {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--gold-400);
  font-weight: 600;
}
.trust__v {
  display: block;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--line-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: var(--sp-md); display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.card__body h3 { margin: 0; }
.card__body p { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }
.card__body .link { margin-top: auto; padding-top: var(--sp-xs); }
.card__num {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(251, 250, 245, 0.92);
  color: var(--canopy-800);
  font-family: var(--font-display);
  font-weight: 650;
  border-radius: 50%;
  font-size: 0.9rem;
}

/* Feature (icon) card */
.feature {
  padding: var(--sp-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--sp-sm);
  background: linear-gradient(140deg, var(--leaf-300), var(--leaf-500));
  color: var(--white);
  border-radius: 14px;
}
.feature__icon--gold { background: linear-gradient(140deg, var(--gold-400), var(--gold-600)); }
.feature h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 650; }
.feature p { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }

.section--dark .feature {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.10);
}
.section--dark .feature p { color: #aebdb3; }

/* Checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.checks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.checks li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--leaf-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section--dark .checks li { color: #b8c8bd; }

/* Stat block */
.stat { text-align: center; padding: var(--sp-md) var(--sp-sm); }
.stat__k {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--canopy-800);
  line-height: 1.1;
}
.section--dark .stat__k { color: var(--gold-400); }
.stat__v { display: block; font-size: var(--step--1); color: var(--ink-mute); margin-top: 0.35rem; }
.section--dark .stat__v { color: #9fb0a5; }

/* Timeline (season calendar) */
.timeline { position: relative; display: grid; gap: var(--sp-md); }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--leaf-400), var(--gold-500));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  padding-left: 60px;
}
.timeline__dot {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 2px solid var(--leaf-400);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--canopy-800);
}
.timeline__item h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 650; margin-bottom: 0.25rem; }
.timeline__item p { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }

/* Quote */
.quote {
  position: relative;
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
  font-weight: 400;
  color: var(--canopy-900);
}
.section--dark .quote { color: var(--white); }
.quote__mark {
  display: block;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.quote__by {
  display: block;
  margin-top: var(--sp-md);
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section--dark .quote__by { color: #9fb0a5; }

/* Detail table */
.detail-table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.detail-table th, .detail-table td {
  padding: 0.95rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.detail-table th {
  width: 42%;
  font-weight: 650;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.detail-table td { color: var(--ink); font-weight: 500; }
.detail-table tr:last-child th, .detail-table tr:last-child td { border-bottom: 0; }
@media (max-width: 520px) {
  .detail-table th, .detail-table td { display: block; width: 100%; }
  .detail-table th { border-bottom: 0; padding-bottom: 0.15rem; }
}

/* Pill / badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.35em 0.9em;
  background: rgba(79, 158, 58, 0.12);
  color: var(--canopy-700);
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 650;
}
.pill--gold { background: rgba(232, 166, 40, 0.16); color: var(--gold-600); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* Banner CTA */
.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sp-2xl);
  color: var(--white);
  text-align: center;
}
.cta-banner__media { position: absolute; inset: 0; z-index: -2; }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(8, 26, 17, 0.90), rgba(18, 51, 36, 0.72));
}
.cta-banner h2 { color: var(--white); max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 56ch; margin-inline: auto; }
.cta-banner .btn-row { justify-content: center; margin-top: var(--sp-md); }

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.filter-btn {
  padding: 0.6em 1.3em;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--leaf-400); color: var(--canopy-800); }
.filter-btn[aria-pressed="true"] {
  background: var(--canopy-800);
  border-color: var(--canopy-800);
  color: var(--white);
}

/* Fixed row height rather than per-item aspect-ratio: it is the only way the
   span-2 tiles line up exactly with the single tiles beside them. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(48%, 260px), 1fr));
  grid-auto-rows: clamp(132px, 15vw, 208px);
  gap: var(--sp-sm);
}
.gallery__item {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item.is-hidden { display: none; }
.gallery__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(8, 26, 17, 0.82));
  color: var(--white);
  font-size: var(--step--1);
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover .gallery__cap,
.gallery__item:focus-visible .gallery__cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 20, 14, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 100%;
  max-height: 78svh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--step--1);
  text-align: center;
  max-width: 60ch;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__close { top: 1.25rem; right: 1.25rem; font-size: 1.5rem; line-height: 1; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 600px) { .lightbox__nav { width: 40px; height: 40px; } }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  width: 100%;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--canopy-900);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.accordion__btn:hover { color: var(--leaf-500); }
.accordion__icon {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.accordion__icon::before { width: 16px; height: 2px; }
.accordion__icon::after  { width: 2px; height: 16px; }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p {
  padding-bottom: 1.35rem;
  color: var(--ink-soft);
  max-width: 68ch;
  font-size: var(--step--1);
}

/* 9 · SECTION HELPERS ===================================================== */
.media-stack { display: grid; gap: var(--sp-sm); grid-template-columns: 1fr 1fr; }
.media-stack img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.media-stack__tall { grid-row: span 2; height: 100%; object-fit: cover; }
.media-stack img.media-stack__tall { height: 100%; }

.badge-float {
  position: absolute;
  right: -14px;
  bottom: -14px;
  padding: 1.1rem 1.4rem;
  background: var(--gold-500);
  color: var(--canopy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 190px;
}
@media (max-width: 480px) { .badge-float { right: 0; bottom: -10px; padding: 0.85rem 1rem; } }
.badge-float__k { display: block; font-family: var(--font-display); font-size: var(--step-1); font-weight: 650; line-height: 1.1; }
.badge-float__v { display: block; font-size: 0.72rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }

/* Contact info cards */
.info-card {
  padding: var(--sp-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
}
.info-card h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 650; margin-bottom: 0.5rem; }
.info-card address { font-style: normal; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7; }
.info-card a { color: var(--canopy-700); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(35, 99, 69, 0.3); }
.info-card a:hover { border-bottom-color: currentColor; }

.map-frame {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--line-soft);
}
@media (max-width: 640px) { .map-frame { aspect-ratio: 4 / 3; } }

/* 10 · FORMS ============================================================== */
.form { display: grid; gap: var(--sp-sm); }
.form__row { display: grid; gap: var(--sp-sm); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label { font-size: var(--step--1); font-weight: 650; color: var(--canopy-800); }
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346564c' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; padding-right: 2.6rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--leaf-400);
  box-shadow: 0 0 0 3px rgba(111, 184, 69, 0.18);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #c0533f; }
.field__hint { font-size: 0.78rem; color: var(--ink-mute); }

/* Honeypot — hidden from humans, visible to naive bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.form__consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--leaf-500); }

.form-note {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 550;
}
.form-note--ok { background: rgba(79, 158, 58, 0.12); color: #1f5c22; border: 1px solid rgba(79, 158, 58, 0.3); }
.form-note--err { background: rgba(192, 83, 63, 0.10); color: #8c3524; border: 1px solid rgba(192, 83, 63, 0.28); }

/* 11 · FOOTER ============================================================= */
.footer {
  background: var(--canopy-900);
  color: #a9bcb0;
  padding-block: var(--sp-xl) var(--sp-md);
  font-size: var(--step--1);
}
.footer__grid {
  display: grid;
  gap: var(--sp-lg);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
@media (min-width: 720px)  { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }

.footer .brand { color: var(--white); margin-bottom: var(--sp-sm); }
.footer__blurb { max-width: 38ch; margin-bottom: var(--sp-sm); }
.footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__list a {
  text-decoration: none;
  color: #a9bcb0;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer__list a:hover { color: var(--gold-400); padding-left: 4px; }
.footer address { font-style: normal; line-height: 1.75; }
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--sp-md);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-md);
  font-size: 0.8rem;
  color: #7d9186;
}
.footer__meta a { color: inherit; text-decoration: none; }
.footer__meta a:hover { color: var(--gold-400); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }

/* Back to top */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--canopy-800);
  color: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s,
              background-color 0.25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--leaf-500); }

/* 12 · UTILITIES ========================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-lg { margin-top: var(--sp-lg); }
.mt-md { margin-top: var(--sp-md); }
.mb-md { margin-bottom: var(--sp-md); }
.img-round { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.img-bw { filter: grayscale(1) contrast(1.05); }

/* 13 · MOTION ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* 14 · PRINT ============================================================== */
@media print {
  .header, .drawer, .to-top, .scroll-cue, .cta-banner, .lightbox { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1.5rem; }
  .hero, .page-hero { min-height: auto; padding-block: 1rem; color: #000; }
  .hero::after, .page-hero::after, .hero__media, .page-hero__media { display: none; }
  .hero h1, .page-hero h1, .hero__lede, .page-hero .lede { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
