/* ==========================================================================
   Airplant Man Tropicals — site.css
   Single stylesheet, organised as: tokens → base → layout → components → pages
   Colour and type decisions live in :root. Change them there, not inline.
   ========================================================================== */

:root {
  /* --- Greens ------------------------------------------------------------ */
  --canopy: #0e241a;        /* deepest forest — dark sections, footer        */
  --forest: #173d2a;        /* primary brand green — buttons, headings       */
  --frond: #2e6b45;         /* rich botanical green — links, hovers          */
  --moss: #7c9a6d;          /* muted moss — hairlines, meta text on dark     */
  /* --- Neutrals ---------------------------------------------------------- */
  --bark: #6b5440;          /* earthy brown — quiet accents                  */
  --ivory: #fbf8ef;         /* warm off-white — page background              */
  --paper: #ffffff;         /* card background — crisp white against the tints */
  --sage: #e6f0dd;          /* pale green — alternating sections             */
  --sage-deep: #d8e7cc;     /* pale green, one step down — hairlines on sage */
  --charcoal: #2b2e2a;      /* body copy                                     */
  --stone: #6d7269;        /* secondary copy, captions                      */
  --line: #ddd8c9;          /* hairline rules on light                       */
  /* --- Plant accents (used sparingly) ------------------------------------ */
  --orchid: #7c4b86;
  --bromeliad: #c1502e;
  --pollen: #d8a83e;

  /* --- Type -------------------------------------------------------------- */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.7vw, 1.95rem);
  --step-3: clamp(1.85rem, 1.55rem + 1.4vw, 2.85rem);
  --step-4: clamp(2.3rem, 1.75rem + 2.6vw, 4rem);
  --step-5: clamp(2.8rem, 1.9rem + 4vw, 5.2rem);

  /* --- Space & shape ----------------------------------------------------- */
  --gap: clamp(1.25rem, 0.9rem + 1.4vw, 2.25rem);
  --section-y: clamp(4rem, 2.5rem + 6vw, 8rem);
  --wrap: 1220px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(14, 36, 26, 0.06), 0 12px 32px rgba(14, 36, 26, 0.08);
  --shadow-lift: 0 2px 4px rgba(14, 36, 26, 0.08), 0 22px 48px rgba(14, 36, 26, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Legibility for light text sitting directly on a photo, with no scrim. */
  --ink-ring:
    1px 1px 1.5px rgba(6, 18, 12, 0.95),
    -1px 1px 1.5px rgba(6, 18, 12, 0.95),
    1px -1px 1.5px rgba(6, 18, 12, 0.95),
    -1px -1px 1.5px rgba(6, 18, 12, 0.95),
    0 0 3px rgba(6, 18, 12, 0.8);
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
picture { display: block; max-width: 100%; }

img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.22; }
h4 { font-size: var(--step-0); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--frond);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--forest); }

ul, ol { padding-left: 1.15rem; }
li { margin-bottom: 0.4em; }

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

::selection { background: var(--moss); color: var(--canopy); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: var(--canopy);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--ivory); }

.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;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.wrap--narrow { max-width: 780px; margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.section--flush-top { padding-top: 0; }

.section--dark {
  background: var(--canopy);
  color: #e4e9e0;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--ivory); }
.section--dark a { color: var(--moss); }
.section--dark a:hover { color: var(--ivory); }

/* Alternating sections carry a pale green wash rather than another off-white,
   so the page has some colour in it between the photographs. */
.section--paper { background: var(--sage); }
.section--paper .plant-card,
.section--paper .value-card,
.section--paper .care-card { border-color: var(--sage-deep); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--stone); font-size: var(--step-1); line-height: 1.55; }
.section--dark .section-head p { color: #c3cebe; }

.lede { font-size: var(--step-1); line-height: 1.6; color: var(--stone); }
.section--dark .lede { color: #c9d3c4; }

/* Signature detail: the specimen tag.
   Nursery plants carry a small tag; every label on this site echoes it. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--frond);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.section--dark .eyebrow,
.hero .eyebrow { color: var(--pollen); }

.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
  margin: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn--primary:hover { background: var(--canopy); border-color: var(--canopy); color: var(--ivory); }

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: var(--ivory); }

.btn--light {
  background: var(--ivory);
  color: var(--canopy);
  border-color: var(--ivory);
}
.btn--light:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }

.btn--outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 244, 236, 0.6);
}
.btn--outline-light:hover { background: rgba(247, 244, 236, 0.14); color: var(--ivory); border-color: var(--ivory); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
}
.link-arrow span { transition: transform 0.22s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.masthead.is-stuck {
  background: var(--ivory);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(14, 36, 26, 0.06);
}
.masthead.is-transparent {
  background: transparent;
  border-bottom-color: rgba(247, 244, 236, 0.16);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--forest);
}
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__mark path,
.brand__mark circle { transition: fill 0.3s var(--ease), stroke 0.3s var(--ease); }
/* The wordmark is the loudest thing in the header on purpose — it is the
   business name, and it should read from across the room. */
.brand__name {
  display: block;
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.12rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.18;
  color: var(--canopy);
}
.brand__name small {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--frond);
}
.brand:hover .brand__name { color: var(--frond); }
.masthead.is-transparent .brand__name { color: var(--ivory); }
.masthead.is-transparent .brand { color: var(--ivory); }
.masthead.is-transparent .brand__name small { color: rgba(247, 244, 236, 0.75); }

.nav { display: none; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li { margin: 0; }
.nav__link {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--charcoal);
  padding-block: 0.4rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--forest); }
.masthead.is-transparent .nav__link {
  color: #fffdf7;
  text-shadow: var(--ink-ring);
}
.masthead.is-transparent .brand { text-shadow: 0 1px 4px rgba(6, 18, 12, 0.7); }
.masthead.is-transparent .nav__link:hover { color: #fff; }

.masthead .btn--nav { min-height: 42px; padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.masthead.is-transparent .btn--nav { background: var(--ivory); color: var(--canopy); border-color: var(--ivory); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.masthead.is-transparent .nav-toggle { border-color: rgba(247, 244, 236, 0.4); }
.masthead.is-transparent .nav-toggle span { background: var(--ivory); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--canopy);
  border-top: 1px solid rgba(247, 244, 236, 0.12);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1.5rem;
}
.mobile-nav li { margin: 0; border-bottom: 1px solid rgba(247, 244, 236, 0.09); }
.mobile-nav a {
  display: block;
  padding: 1rem 0.25rem;
  font-family: var(--display);
  font-size: 1.28rem;
  color: var(--ivory);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--moss); }
.mobile-nav .btn { width: 100%; margin-top: 1.35rem; }

@media (min-width: 1000px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  margin-top: -76px;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  isolation: isolate;
}
.hero--short { min-height: min(62vh, 560px); }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* No overlay on the hero photo — the client wants full colour. Legibility is
   carried by the text itself (see .hero h1 / p / .eyebrow below), which costs
   the photo nothing. If text ever needs more help over a busier photo, the
   gentlest fix is raising the text-shadow alpha, not adding a scrim back. */
.hero::after { content: none; }

/* OPTIONAL MIDDLE GROUND — if the headline proves hard to read on a phone in
   daylight, delete the rule above and uncomment this one. It puts a soft dark
   pool behind the text only, in the lower-left corner; the rest of the photo,
   including the whole right-hand side, stays at full colour and full contrast.

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 12% 88%,
              rgba(6, 18, 12, 0.78) 0%, rgba(6, 18, 12, 0.5) 38%,
              rgba(6, 18, 12, 0.12) 68%, rgba(6, 18, 12, 0) 85%);
}
*/

.hero__inner {
  padding-block: clamp(4.5rem, 12vw, 8rem) clamp(3rem, 7vw, 5.5rem);
  max-width: var(--wrap);
}
.hero h1 {
  color: var(--ivory);
  font-size: var(--step-5);
  margin-bottom: 0.4em;
  max-width: 11.5em;
  text-wrap: balance;
  text-shadow: var(--ink-ring), 0 8px 34px rgba(6, 18, 12, 0.9);
}
.hero p {
  color: #fffdf7;
  font-size: var(--step-1);
  line-height: 1.55;
  max-width: 52ch;
  font-weight: 600;
  text-shadow: var(--ink-ring), 0 4px 20px rgba(6, 18, 12, 0.95);
}
/* Small gold type disappears against pale foliage, so the eyebrow sits on a
   compact tag instead — the specimen-label motif used elsewhere on the site.
   It covers only the label, so the photograph itself stays untouched. */
.hero .eyebrow,
.feature-band .eyebrow {
  padding: 0.4rem 0.85rem 0.4rem 0.75rem;
  border-radius: 8px;
  background: rgba(6, 18, 12, 0.68);
  backdrop-filter: blur(5px);
  align-items: flex-start;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(6, 18, 12, 0.95);
}
.hero .eyebrow::before,
.feature-band .eyebrow::before {
  width: 1.1rem;
  margin-top: 0.62em;
  opacity: 0.95;
}
/* Outlined button over an undimmed photo needs a little body behind it. */
.hero .btn--outline-light {
  background: rgba(6, 18, 12, 0.42);
  backdrop-filter: blur(3px);
  border-color: rgba(255, 253, 247, 0.85);
}
.hero .btn--outline-light:hover { background: rgba(6, 18, 12, 0.62); }
.hero__scroll { color: rgba(255, 253, 247, 0.85); text-shadow: var(--ink-ring); }

/* Slightly shorter hero on phones so the photo isn't cropped to a narrow
   strip. Add an object-position here if a future hero photo has its subject
   off-centre. */
@media (max-width: 760px) {
  .hero { min-height: min(82vh, 680px); }
}

.hero__scroll {
  position: absolute;
  right: clamp(1.15rem, 4vw, 2.5rem);
  bottom: clamp(3rem, 7vw, 5.5rem);
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.6);
  display: none;
}
@media (min-width: 900px) { .hero__scroll { display: block; } }

/* Page header for interior pages */
.page-head {
  background: var(--canopy);
  color: #dbe3d7;
  margin-top: -76px;
  padding-block: clamp(7rem, 14vw, 10rem) clamp(3rem, 6vw, 4.5rem);
}
.page-head h1 { color: var(--ivory); max-width: 20ch; text-wrap: balance; }
.page-head p { color: #b9c6b3; font-size: var(--step-1); max-width: 58ch; line-height: 1.55; }
.page-head .eyebrow { color: var(--pollen); }

/* ==========================================================================
   Grids & cards
   ========================================================================== */

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 235px), 1fr)); }

/* Collection cards — tall photographic tiles */
.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: var(--ivory);
  background: var(--forest);
  box-shadow: var(--shadow);
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 24, 17, 0.9) 6%, rgba(9, 24, 17, 0.35) 48%, rgba(9, 24, 17, 0.08) 78%);
}
.collection-card:hover img,
.collection-card:focus-visible img { transform: scale(1.055); }
.collection-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  z-index: 1;
}
.collection-card h3 { color: var(--ivory); margin-bottom: 0.4rem; }
.collection-card p {
  color: rgba(247, 244, 236, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}
.collection-card__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pollen);
}

.collection-card--wide { aspect-ratio: 16 / 10; }

/* Plant / product cards */
.plant-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.plant-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--forest);
}
.plant-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.plant-card:hover .plant-card__media img { transform: scale(1.05); }
.plant-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.25rem 1.35rem;
}
.plant-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.5rem;
}
.plant-card h3 { font-size: var(--step-1); margin-bottom: 0.15rem; }
.plant-card__sci {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.plant-card__desc { font-size: 0.92rem; color: var(--stone); line-height: 1.55; }
.plant-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.plant-card__price {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--forest);
}
.plant-card .btn { min-height: 42px; padding: 0.5rem 1.15rem; font-size: 0.82rem; }

/* Availability chips — the specimen tag again, at small size */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.7);
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.chip--available { color: var(--frond); }
.chip--limited { color: var(--bromeliad); }
.chip--seasonal { color: var(--bark); }
.chip--soon { color: var(--stone); }
.chip--enquire { color: var(--orchid); }
.plant-card__media .chip {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(4px);
}

/* Value / credibility cards */
.value-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 1.1rem;
  color: var(--frond);
}
.value-card h3 { font-size: var(--step-1); }
.value-card p { font-size: 0.94rem; color: var(--stone); margin: 0; }

.section--dark .value-card {
  background: rgba(247, 244, 236, 0.05);
  border-color: rgba(247, 244, 236, 0.16);
}
.section--dark .value-card p { color: #c3cebe; }
.section--dark .value-card__icon { color: var(--moss); }

/* Care guide cards */
.care-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: inherit; }
.care-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--forest); }
.care-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.care-card:hover .care-card__media img { transform: scale(1.05); }
.care-card__body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.care-card p { font-size: 0.93rem; color: var(--stone); }
.care-card .link-arrow { margin-top: auto; padding-top: 1rem; }

/* ==========================================================================
   Split (image + text) sections
   ========================================================================== */

.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-media { grid-template-columns: 1.15fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest);
}
.split__media img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
}
.split__media--tall img { aspect-ratio: 4 / 5; }

/* Full-bleed feature band */
.feature-band {
  position: relative;
  color: var(--ivory);
  isolation: isolate;
  padding-block: clamp(5rem, 12vw, 9rem);
}
.feature-band__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.feature-band__media img { width: 100%; height: 100%; object-fit: cover; }
/* Same treatment as the hero: photo undimmed, type carries its own contrast. */
.feature-band::after { content: none; }
.feature-band h2 { text-shadow: var(--ink-ring), 0 8px 34px rgba(6, 18, 12, 0.9); }
.feature-band p { font-weight: 600; text-shadow: var(--ink-ring), 0 4px 20px rgba(6, 18, 12, 0.95); }
.feature-band .btn--outline-light {
  background: rgba(6, 18, 12, 0.42);
  backdrop-filter: blur(3px);
  border-color: rgba(255, 253, 247, 0.85);
}
.feature-band .btn--outline-light:hover { background: rgba(6, 18, 12, 0.62); }
.feature-band h2 { color: var(--ivory); font-size: var(--step-4); max-width: 12em; }
.feature-band p { color: #fffdf7; max-width: 52ch; font-size: var(--step-1); line-height: 1.55; }
/* Also a .wrap — see the note on .hero__inner above. */
.feature-band__inner { max-width: var(--wrap); }
.feature-band__inner .btn-row { max-width: 52ch; }

/* ==========================================================================
   Gallery + lightbox
   ========================================================================== */

.gallery {
  columns: 1;
  column-gap: var(--gap);
}
@media (min-width: 620px) { .gallery { columns: 2; } }
@media (min-width: 1000px) { .gallery { columns: 3; } }

.gallery__item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: var(--gap);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; transition: transform 0.6s var(--ease), opacity 0.3s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); opacity: 0.92; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(9, 24, 17, 0.94);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__caption {
  position: absolute;
  left: 0; right: 0; bottom: clamp(0.75rem, 3vw, 1.75rem);
  text-align: center;
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.85rem;
  padding-inline: 1rem;
}
.lightbox__btn {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.5rem);
  right: clamp(0.75rem, 3vw, 1.5rem);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: rgba(247, 244, 236, 0.12);
  border: 1px solid rgba(247, 244, 236, 0.35);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.35rem;
  cursor: pointer;
}
.lightbox__btn:hover { background: rgba(247, 244, 236, 0.24); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(247, 244, 236, 0.12);
  border: 1px solid rgba(247, 244, 236, 0.35);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav:hover { background: rgba(247, 244, 236, 0.24); }

/* ==========================================================================
   Video
   ========================================================================== */

.video-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--canopy);
  box-shadow: var(--shadow-lift);
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76vh;
  background: var(--canopy);
}
/* The clip is portrait, so on wide screens it is centred rather than stretched. */
.video-frame--wide {
  max-width: 460px;
  margin-inline: auto;
}
.video-frame figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  color: #c3cebe;
  background: var(--canopy);
}
.section--dark .video-frame { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--frond);
  box-shadow: 0 0 0 3px rgba(46, 107, 69, 0.14);
}
.field__hint { font-size: 0.82rem; color: var(--stone); }

.form-note { font-size: 0.85rem; color: var(--stone); }

.newsletter {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
}
@media (min-width: 560px) {
  .newsletter { grid-template-columns: 1fr auto; align-items: start; }
}
.newsletter input {
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ivory);
  background: rgba(247, 244, 236, 0.08);
  border: 1.5px solid rgba(247, 244, 236, 0.4);
  border-radius: 999px;
}
.newsletter input::placeholder { color: rgba(247, 244, 236, 0.6); }
.newsletter input:focus { border-color: var(--ivory); outline-offset: 2px; }

/* ==========================================================================
   Shop / filters
   ========================================================================== */

.shop-layout { display: grid; gap: clamp(1.75rem, 3vw, 2.75rem); align-items: start; }
@media (min-width: 940px) { .shop-layout { grid-template-columns: 268px 1fr; } }

.filters {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
}
@media (min-width: 940px) { .filters { position: sticky; top: 96px; } }
.filters h2 { font-size: var(--step-1); margin-bottom: 0.35rem; }
.filters fieldset { border: 0; padding: 0; margin: 0; }
.filter-group { padding-block: 1rem; border-top: 1px solid var(--line); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.7rem;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.32rem 0;
  font-size: 0.93rem;
  cursor: pointer;
}
.filter-option input { width: 18px; height: 18px; accent-color: var(--frond); flex: none; }

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.shop-count { font-size: 0.9rem; color: var(--stone); }

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--stone);
}

/* Sample-content notice — honest labelling of placeholder inventory */
.notice {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: rgba(216, 168, 62, 0.12);
  border: 1px solid rgba(216, 168, 62, 0.5);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6a5219;
}
.notice strong { color: #503d0e; }
.notice svg { flex: none; width: 22px; height: 22px; color: var(--pollen); }

/* ==========================================================================
   Contact details
   ========================================================================== */

.contact-list { display: grid; gap: 1.35rem; list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 0; }
.contact-list dt,
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-family: var(--display);
  font-size: var(--step-1);
  color: var(--forest);
  text-decoration: none;
}
.contact-value:hover { color: var(--frond); }
.section--dark .contact-value { color: var(--ivory); }
.section--dark .contact-label { color: var(--pollen); }

/* ==========================================================================
   Prose (care guides, policies)
   ========================================================================== */

/* Applied alongside .wrap, so the measure is set on the children. */
.prose { max-width: var(--wrap); }
.prose > * { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.prose ul { margin-bottom: 1.3em; }
.prose li { line-height: 1.65; }
.prose blockquote {
  margin: 2rem 0;
  padding: 1.1rem 1.5rem;
  border-left: 3px solid var(--moss);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--stone);
}

.toc {
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.toc h2 {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  margin: 0 0 0.6rem;
}
.toc ul { margin: 0; }

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.spec-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-list dt {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
}
.spec-list dd { margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--canopy);
  color: #b9c6b3;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  font-size: 0.93rem;
}
.footer a { color: #cfd9c9; text-decoration: none; }
.footer a:hover { color: var(--ivory); text-decoration: underline; }
.footer .brand { color: var(--ivory); }
.footer .brand__name small { color: rgba(247, 244, 236, 0.6); }

.footer__top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer h2 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pollen);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; }
.footer__blurb { max-width: 38ch; margin-top: 1.25rem; }

.footer__social { display: flex; gap: 0.6rem; margin-top: 1.35rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(247, 244, 236, 0.25);
  border-radius: 50%;
}
.footer__social a:hover { background: rgba(247, 244, 236, 0.12); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  font-size: 0.85rem;
  color: #93a48d;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }

/* ==========================================================================
   Motion
   ========================================================================== */

/* Content is only hidden for the reveal animation when JS is running,
   so a script failure can never leave a section invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

/* Centred text column — carries its own auto margins. */
.center-block {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}
.eyebrow--center { justify-content: center; }
.btn-row--center { justify-content: center; }

.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.5rem; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.text-balance { text-wrap: balance; }
