/* =========================================================================
   JamesGarveyQuinnLLC — Global Stylesheet
   Static product showcase. No cart, checkout, or e-commerce behaviour.
   ========================================================================= */

/* ---------- 1. Design tokens ---------------------------------------- */
:root {
  /* Cream family */
  --cream-050: #fdfbf6;
  --cream-100: #faf6ed;
  --cream-200: #f4eee1;
  --cream-300: #ebe2d0;
  --cream-400: #ddd1ba;

  /* Green family */
  --green-900: #0f2118;
  --green-800: #15301f;
  --green-700: #1d4230;
  --green-600: #275640;
  --green-500: #336b51;
  --green-300: #7d9c88;
  --green-200: #adc2b3;

  /* Accent + ink */
  --brass: #b9975b;
  --brass-soft: #d9c49a;
  --ink: #1a1c19;
  --ink-soft: #4d5450;
  --ink-faint: #7c837e;
  --line: rgba(21, 48, 31, 0.14);
  --line-soft: rgba(21, 48, 31, 0.08);

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

  /* Surfaces + accent gradient.
     The reference system's blue ramp, restated in the brand's brass. */
  --surface: rgba(250, 246, 237, 0.9);
  --surface-solid: #faf6ed;
  --stroke: rgba(21, 48, 31, 0.14);
  --stroke-light: rgba(250, 246, 237, 0.22);
  --accent-from: #d9c49a;
  --accent-to: #b9975b;
  --accent-grad: linear-gradient(90deg, var(--accent-from) 0%, var(--accent-to) 100%);

  /* Layout */
  --shell: 1240px;
  --shell-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 8px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --nav-clear: 5.6rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.45s;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 33, 24, 0.06);
  --shadow-md: 0 14px 34px -18px rgba(15, 33, 24, 0.34);
  --shadow-lg: 0 30px 60px -28px rgba(15, 33, 24, 0.42);
}

/* ---------- 2. Reset ------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img { height: auto; }

/* Instrument Serif ships a single weight — asking for 500+ would synthesise a
   fake bold, so display type stays at 400 and relies on scale for hierarchy. */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--green-900);
}

p { margin: 0; }

/* The UA stylesheet gives figure/blockquote a 40px horizontal margin and dl a
   vertical one, which pulls grid items in off their tracks. */
figure,
blockquote,
dl,
dd { margin: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

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

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

/* ---------- 2b. Motion primitives (from the reference system) --------- */
@keyframes scroll-down {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}
@keyframes role-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.78); }
}

.accent-gradient {
  background: var(--accent-grad);
  background-size: 200% 200%;
}

/* Halftone print texture laid over photography. Applied to the existing image
   containers so no markup has to change. */
.split-media,
.editorial-figure,
.page-hero figure,
.product-media { position: relative; }

.split-media::after,
.editorial-figure::after,
.page-hero figure::after,
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.16;
  mix-blend-mode: multiply;
}
/* Caption must stay above the texture. */
.cat-card figcaption { z-index: 2; }

/* ---------- 3. Layout primitives ------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.section--cream  { background: var(--cream-100); }
.section--cream-2 { background: var(--cream-200); }
.section--white  { background: var(--cream-050); }
.section--green  { background: var(--green-800); }
.section--green .section-title,
.section--green h2,
.section--green h3 { color: var(--cream-100); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green-800);
  color: var(--cream-100);
  padding: 0.85rem 1.35rem;
  font-size: 0.85rem;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

/* Anchor targets must clear the sticky header when jumped to. */
main [id],
section[id] { scroll-margin-top: clamp(88px, 11vw, 112px); }

/* ---------- 4. Type utilities ---------------------------------------- */
/* Reference pattern: a short rule, then a wide-tracked uppercase label. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 2rem;
  height: 1px;
  background: var(--stroke);
}
.eyebrow--muted { color: var(--green-500); }
.eyebrow--light { color: var(--brass-soft); }
.eyebrow--light::before { background: var(--stroke-light); }
.section-head--center .eyebrow { justify-content: center; }
.quote-band .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  max-width: 18ch;
}
.section-title--wide { max-width: 26ch; }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1.35rem;
}
.section--green .lede { color: var(--green-200); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head > div { flex: 1 1 22rem; }
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head--center .lede { margin-inline: auto; }

/* ---------- 5. Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(1); }

/* The reference's signature: on hover the border becomes an animated accent
   gradient. Painted as a two-layer background clipped to padding + border box,
   which is reliable everywhere and needs no extra markup. */
.btn--gradient-ring:hover {
  border-color: transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

.btn--primary {
  background: var(--green-700);
  color: var(--cream-100);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background-image: linear-gradient(var(--green-900), var(--green-900)), var(--accent-grad);
  border-color: transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--green-800);
}
.btn--ghost:hover {
  border-color: transparent;
  background-image: linear-gradient(var(--cream-100), var(--cream-100)), var(--accent-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}
.section--white .btn--ghost:hover,
.cta-band .btn--ghost:hover {
  background-image: linear-gradient(var(--cream-050), var(--cream-050)), var(--accent-grad);
}

.btn--light {
  background: var(--cream-100);
  color: var(--green-900);
}
.btn--light:hover {
  border-color: transparent;
  background-image: linear-gradient(#fff, #fff), var(--accent-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

/* Sits over the photographic hero, so it keeps a plain accent border rather
   than a gradient ring that would need an opaque inner fill to read. */
.btn--outline-light {
  background: transparent;
  border-color: rgba(250, 246, 237, 0.4);
  color: var(--cream-100);
}
.btn--outline-light:hover {
  border-color: var(--brass-soft);
  background: rgba(250, 246, 237, 0.08);
  box-shadow: 0 0 0 1px rgba(185, 151, 91, 0.35);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-700);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--line);
  transition: gap var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover {
  gap: 0.85rem;
  border-color: var(--green-700);
}
.link-arrow--light {
  color: var(--brass-soft);
  border-color: rgba(217, 196, 154, 0.35);
}
.link-arrow--light:hover { color: var(--cream-100); border-color: var(--cream-100); }

/* ---------- 6. Announcement bar --------------------------------------- */
.announce {
  background: var(--green-900);
  color: var(--cream-200);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.7rem 1rem;
}
.announce span { color: var(--brass-soft); }

/* ---------- 7. Header / navigation ------------------------------------ */
/* Floating pill navbar. The header itself is a transparent sticky rail; the
   pill inside it is the visible chrome. A negative bottom margin pulls the
   following section up so the pill floats over the hero. */
.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 60;
  background: transparent;
  border: 0;
  padding-block: 0.85rem;
  margin-bottom: calc(-1 * var(--nav-clear));
  pointer-events: none;
}
/* Direct child only — the mobile panel has its own .shell inside. */
.site-header > .shell {
  display: flex;
  justify-content: center;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  min-height: 0;
  max-width: 100%;
  padding: 0.45rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px -14px rgba(15, 33, 24, 0.45);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  pointer-events: auto;
}
.site-header.is-stuck .nav {
  background: rgba(250, 246, 237, 0.96);
  box-shadow: 0 18px 44px -16px rgba(15, 33, 24, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
/* Circular mark with an accent-gradient ring, per the reference logo. */
.brand img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  padding: 2px;
  background: var(--accent-grad);
  background-size: 200% 200%;
  transition: transform var(--dur) var(--ease), background-position 0.8s var(--ease);
}
.brand:hover img {
  transform: scale(1.1);
  background-position: 100% 50%;
}
/* Divider, matching the reference pill's internal rules. */
.brand::after {
  content: "";
  width: 1px;
  height: 20px;
  background: var(--stroke);
  margin-left: 0.35rem;
}
/* The pill stays compact: the wordmark is carried by the logo and the
   link's aria-label, and reappears in the footer. */
.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--green-900);
}
.brand-text small {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
/* Intentionally kept hidden at every width so the pill stays compact —
   the accessible name lives on the .brand link's aria-label. */

/* Pill-shaped nav items: the active state is a filled capsule rather than an
   underline, matching the reference navbar. */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover {
  color: var(--green-900);
  background: rgba(21, 48, 31, 0.07);
}
.nav-links a[aria-current="page"] {
  color: var(--green-900);
  background: rgba(21, 48, 31, 0.09);
}
.nav-links::after {
  content: "";
  width: 1px;
  height: 20px;
  background: var(--stroke);
  margin-inline: 0.35rem;
}

.nav-cta { display: none; }

/* Six nav items plus a CTA need real room — collapse to the toggle below this. */
@media (min-width: 1120px) {
  .nav-links { display: flex; }
  .nav-cta {
    display: inline-flex;
    padding: 0.6rem 1.15rem;
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: nowrap;
    box-shadow: none;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  margin-left: 0.15rem;
  background: rgba(21, 48, 31, 0.06);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.nav-toggle:hover { background: rgba(21, 48, 31, 0.12); }
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--green-800);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.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); }
@media (min-width: 1120px) { .nav-toggle { display: none; } }

/* The panel opens by changing `display`, not by animating a track size, so the
   navigation can never end up stuck half-open if a transition fails to run.
   Styled as a floating card that hangs beneath the pill. */
.mobile-menu {
  display: none;
  pointer-events: auto;
  margin-top: 0.6rem;
  padding-inline: var(--gutter);
}
.mobile-menu.is-open { display: block; }
.mobile-menu > div {
  overflow: hidden;
  max-width: 34rem;
  margin-inline: auto;
  background: rgba(250, 246, 237, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px -22px rgba(15, 33, 24, 0.5);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
}
.mobile-menu > div > .shell { padding-inline: 1.6rem; }
.mobile-menu ul { padding: 0.9rem 0 0.4rem; }
.mobile-menu li + li { border-top: 1px solid var(--line-soft); }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--green-800);
}
.mobile-menu a[aria-current="page"] { color: var(--brass); font-weight: 600; }
.mobile-menu .btn { width: 100%; margin-top: 1.1rem; margin-bottom: 1.4rem; }
@media (min-width: 1120px) {
  .mobile-menu,
  .mobile-menu.is-open { display: none; }
}

/* ---------- 8. Hero --------------------------------------------------- */
.hero {
  position: relative;
  background: var(--green-900);
  color: var(--cream-100);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 78% 18%, rgba(185, 151, 91, 0.24), transparent 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(51, 107, 81, 0.5), transparent 62%);
  z-index: -1;
}

/* Full-bleed photographic hero: one background image, centred content over it. */
.hero--full {
  display: flex;
  align-items: center;
  min-height: 92vh;
  min-height: 92svh;
  text-align: center;
}
/* Reuses the base hero's ::before (a radial wash) as the bottom fade that hands
   off into the cream band below. */
.hero--full::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, var(--cream-200), rgba(244, 238, 225, 0));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}
/* Scrim for legibility, warmed toward the brand green rather than neutral black.
   Kept light enough that the candles still read through it. */
.hero--full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 26, 19, 0.58) 0%, rgba(11, 26, 19, 0.3) 42%, rgba(11, 26, 19, 0.72) 100%);
}
/* A soft pool behind the copy only, so the type stays crisp without flattening
   the whole photograph. */
.hero-center {
  position: relative;
  isolation: isolate;
}
.hero-center::before {
  content: "";
  position: absolute;
  inset: -6% -8%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(60% 52% at 50% 46%, rgba(11, 26, 19, 0.58), rgba(11, 26, 19, 0) 72%);
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 62rem;
  margin-inline: auto;
  padding-top: calc(clamp(3rem, 7vw, 5.5rem) + var(--nav-clear));
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}
.hero-center .eyebrow { justify-content: center; }
.hero-center .hero-sub { margin-inline: auto; }
.hero-center .btn-row { justify-content: center; }
.hero-center .hero-meta { justify-content: center; text-align: center; }

.hero h1 {
  color: var(--cream-050);
  font-size: clamp(2.7rem, 6.6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
}
.hero p.hero-sub {
  color: var(--green-200);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 46ch;
  margin-top: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 237, 0.16);
}
.hero-meta div { min-width: 7rem; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--cream-050);
  line-height: 1;
}
.hero-meta span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--green-300);
}

/* (The hero image collage was replaced by the full-bleed .hero--full above.) */

/* Cycles the brand phrases beneath the hero CTAs. */
.hero-badge {
  display: inline-block;
  margin-top: 2.25rem;
  color: var(--green-900);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  /* animated accent-gradient border, per the reference's hover pills */
  background-image: linear-gradient(var(--cream-050), var(--cream-050)), var(--accent-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}
/* No fill mode: the span's resting state is fully visible, and the keyframes
   only decorate its arrival. With `both` it would hold the opacity:0 `from`
   frame and vanish permanently if the animation never ran. */
.hero-badge span {
  display: inline-block;
  animation: role-fade-in 0.4s var(--ease);
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--green-800);
  color: var(--cream-100);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(100% 90% at 85% 10%, rgba(185, 151, 91, 0.22), transparent 60%);
}
.page-hero-inner {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
@media (min-width: 900px) {
  .page-hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}
.page-hero h1 {
  color: var(--cream-050);
  font-size: clamp(2.4rem, 5.6vw, 4.25rem);
  line-height: 1.04;
  max-width: 14ch;
}
.page-hero .hero-phrase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: var(--brass-soft);
  margin-top: 1.4rem;
}
.page-hero .lede { color: var(--green-200); }
.page-hero figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  background: var(--green-700);
}
.page-hero figure img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-300);
  /* clears the floating pill, which is pulled over this section */
  padding-top: calc(clamp(1.25rem, 3vw, 2rem) + var(--nav-clear));
}
.breadcrumb a { color: var(--green-200); }
.breadcrumb a:hover { color: var(--cream-100); }
.breadcrumb span[aria-current] { color: var(--brass-soft); }

/* ---------- 9. Marquee phrase strip ----------------------------------- */
.marquee {
  background: var(--cream-200);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding-block: 1.15rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-style: italic;
  color: var(--green-600);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 10. Category tiles ---------------------------------------- */
.cat-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-300);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.4rem 1.35rem;
  background: linear-gradient(to top, rgba(15, 33, 24, 0.9), rgba(15, 33, 24, 0.05));
  color: var(--cream-100);
}
.cat-card h3 {
  color: var(--cream-050);
  font-size: 1.4rem;
}
.cat-card p {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--green-200);
  margin-top: 0.35rem;
}

/* ---------- 11. Product cards ----------------------------------------- */
/* Collection pages show six products — 300px settles them into 3 x 2 at desktop
   rather than an orphaned 4 + 2. */
.product-grid {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.85rem);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
/* The home page shows eight — 250px gives a full 4 x 2. */
.product-grid--4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-050);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream-200);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.055); }

.product-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--green-800);
  color: var(--cream-100);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}
.product-tag--brass { background: var(--brass); color: var(--green-900); }
.product-tag--soon  { background: var(--cream-050); color: var(--green-800); border: 1px solid var(--line); }

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}
.product-body .kicker {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.55rem;
}
.product-body h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}
.product-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.product-notes li {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--cream-200);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}
.product-foot {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- 12. Split feature ----------------------------------------- */
.split {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--cream-300);
}
/* For slots holding a portrait source, so it isn't cropped to a letterbox. */
.split-media--portrait { aspect-ratio: 3 / 4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}
.split-stack figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-300);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.split-stack figure:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
.split-stack img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { margin-top: 2rem; display: grid; gap: 1.15rem; }
.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.9rem;
  align-items: start;
}
.feature-list .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.section--green .feature-list .dot { background: rgba(250, 246, 237, 0.12); color: var(--brass-soft); }
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-900);
}
.section--green .feature-list strong { color: var(--cream-050); }
.feature-list p { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.15rem; }
.section--green .feature-list p { color: var(--green-200); }

/* ---------- 13. Quote band -------------------------------------------- */
.quote-band {
  position: relative;
  background: var(--green-900);
  color: var(--cream-100);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(185, 151, 91, 0.2), transparent 60%),
    radial-gradient(60% 100% at 50% 100%, rgba(51, 107, 81, 0.42), transparent 62%);
}
.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  line-height: 1.16;
  color: var(--cream-050);
  max-width: 20ch;
  margin-inline: auto;
}
.quote-band cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

/* ---------- 14. Value / info cards ------------------------------------ */
.info-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.info-card {
  background: var(--cream-050);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-200);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.info-card .icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.32rem; }
.info-card p { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.65rem; }

.section--green .info-card {
  background: rgba(250, 246, 237, 0.05);
  border-color: rgba(250, 246, 237, 0.12);
}
.section--green .info-card h3 { color: var(--cream-050); }
.section--green .info-card p { color: var(--green-200); }
.section--green .info-card .icon { background: rgba(250, 246, 237, 0.1); color: var(--brass-soft); }

/* ---------- 15. Collection cards (home) -------------------------------- */
/* Bento layout from the reference system: a 12-column bed with the four
   collection cards alternating 7 / 5 / 5 / 7. */
.collection-grid {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(12, 1fr); }
  .collection-card:nth-child(1),
  .collection-card:nth-child(4) { grid-column: span 7; }
  .collection-card:nth-child(2),
  .collection-card:nth-child(3) { grid-column: span 5; }
}
.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream-100);
  isolation: isolate;
  background: var(--green-800);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transition: transform 1s var(--ease);
}
.collection-card:hover img { transform: scale(1.07); }
/* Halftone print texture between the photograph and the scrim. */
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(11, 26, 19, 0.92) 8%, rgba(11, 26, 19, 0.35) 55%, rgba(11, 26, 19, 0.12) 100%);
}
.collection-card .num {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brass-soft);
  letter-spacing: 0.1em;
}
.collection-card h3 {
  color: var(--cream-050);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.collection-card .phrase {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass-soft);
  font-size: 1.02rem;
  margin-top: 0.4rem;
}
.collection-card p.desc {
  font-size: 0.9rem;
  color: var(--green-200);
  margin-top: 0.85rem;
  max-width: 34ch;
}
/* On hover the inline CTA becomes a pill with an animated accent-gradient
   border — the reference's "View — Title" treatment, kept as real copy. */
.collection-card .link-arrow {
  margin-top: 1.5rem;
  align-self: flex-start;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  background: rgba(250, 246, 237, 0.08);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    gap var(--dur) var(--ease);
}
.collection-card:hover .link-arrow {
  color: var(--green-900);
  background-image: linear-gradient(var(--cream-050), var(--cream-050)), var(--accent-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

/* ---------- 16. Editorial band ---------------------------------------- */
.editorial {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) { .editorial { grid-template-columns: 0.9fr 1.1fr; } }
.editorial-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-300);
  box-shadow: var(--shadow-md);
}
/* Matches the founder portrait's own 2:3 ratio so the shot isn't cropped. */
.editorial-figure--portrait { aspect-ratio: 2 / 3; }
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }

.founder-sign {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--green-800);
}
.founder-sign span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.35rem;
}
.editorial-body p + p { margin-top: 1.1rem; }
.editorial-body p {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: var(--ink-soft);
}
.editorial-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.28;
  color: var(--green-800);
  border-left: 2px solid var(--brass);
  padding-left: 1.35rem;
  margin-block: 1.9rem;
}

/* ---------- 17. Spec / detail table ------------------------------------ */
.spec-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line);
}
.spec-grid div {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec-grid dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.spec-grid dd {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--green-900);
}

/* ---------- 18. Coming soon strip -------------------------------------- */
.soon-grid {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.soon-card {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  background: var(--cream-050);
}
.soon-card span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass);
}
.soon-card h3 { font-size: 1.24rem; margin-top: 0.75rem; }
.soon-card p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ---------- 19. CTA band ----------------------------------------------- */
.cta-band {
  background: var(--cream-200);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 4rem);
  display: grid;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line-soft);
}
@media (min-width: 840px) { .cta-band { grid-template-columns: 1.25fr 0.75fr; } }
.cta-band h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); max-width: 20ch; }
.cta-band p { color: var(--ink-soft); margin-top: 1rem; max-width: 46ch; }
.cta-band .btn-row { margin-top: 0; justify-content: flex-start; }
@media (min-width: 840px) { .cta-band .btn-row { justify-content: flex-end; } }

/* ---------- 20. Cross-links -------------------------------------------- */
.crosslinks {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.crosslink {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 1.6rem;
  background: var(--cream-050);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.crosslink:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}
.crosslink span {
  font-size: 0.63rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass);
}
.crosslink strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-900);
}
.crosslink em {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* ---------- 21. Footer -------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: var(--green-200);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  font-size: 0.9rem;
}
.footer-top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(250, 246, 237, 0.12);
}
@media (min-width: 780px)  { .footer-top { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1060px) { .footer-top { grid-template-columns: 1.7fr 1fr 1fr 1.1fr; } }

.footer-brand img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 34ch; color: var(--green-200); }
.footer-brand .phrase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--brass-soft);
  margin-top: 1.1rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-100);
  margin-bottom: 1.15rem;
}
.footer-col li + li { margin-top: 0.7rem; }
.footer-col a {
  color: var(--green-200);
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--cream-050); }
.footer-col p { color: var(--green-200); }
.footer-col .btn { margin-top: 1.25rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem;
  font-size: 0.78rem;
  color: var(--green-300);
}
.footer-bottom a { color: var(--green-200); }
.footer-bottom a:hover { color: var(--cream-050); }
.footer-credit strong { color: var(--cream-100); font-weight: 500; }
.footer-credit a {
  color: var(--brass-soft);
  border-bottom: 1px solid rgba(217, 196, 154, 0.4);
  padding-bottom: 1px;
}
.footer-credit a:hover { color: var(--cream-050); border-color: var(--cream-050); }

.footer-note {
  font-size: 0.72rem;
  color: rgba(173, 194, 179, 0.65);
  padding-bottom: 1.75rem;
  max-width: 70ch;
}

/* ---------- 22. Scroll reveal ------------------------------------------- */
/* Content is visible by default. It is only hidden once site.js has confirmed
   it can observe and reveal it again, so a JS failure can never blank a page. */
/* The reference's blur-in: opacity + rise + a 10px defocus resolving to sharp. */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  will-change: opacity, transform, filter;
}
html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- 22b. Contact section ---------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.contact-form {
  background: var(--cream-050);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 620px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
}
.form-field label .req { color: var(--brass); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-faint); }
.contact-form .btn { width: 100%; margin-top: 0.4rem; }
@media (min-width: 620px) { .contact-form .btn { width: auto; } }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 1rem;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--green-700);
  background: var(--cream-200);
  border-left: 2px solid var(--brass);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}
.form-status[hidden] { display: none; }

.contact-details { display: grid; gap: 1.5rem; }
.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-200);
  color: var(--green-700);
  display: grid;
  place-items: center;
}
.contact-item .icon svg { width: 19px; height: 19px; }
.contact-item dt {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-item dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
}
.contact-item dd a { transition: color var(--dur) var(--ease); }
.contact-item dd a:hover { color: var(--brass); }
.contact-item dd span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- 22c. Coming soon panel --------------------------------------- */
.soon-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.6rem;
  background: var(--cream-200);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.soon-banner p { font-size: 0.92rem; color: var(--ink-soft); max-width: 58ch; }
.soon-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}

/* ---------- 22d. Loading screen ------------------------------------------ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-900);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }

/* The overlay is fixed and covers the viewport, so scroll is never locked —
   a JS failure can therefore never trap the visitor on a frozen page.
   Two further guards: the overlay is not rendered at all without JS, and a
   pure-CSS timer retires it even if the counter never finishes. */
html.no-js .loader { display: none; }
.loader { animation: loader-failsafe 0s linear 7s forwards; }
@keyframes loader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-300);
}
.loader-word {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  color: rgba(250, 246, 237, 0.82);
  line-height: 1;
}
/* Same reasoning as .hero-badge span — visible by default, animation optional. */
.loader-word span { animation: role-fade-in 0.4s var(--ease); }

.loader-foot {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.loader-count {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 8rem);
  line-height: 0.9;
  color: var(--cream-050);
  font-variant-numeric: tabular-nums;
}
.loader-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(250, 246, 237, 0.14);
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 8px rgba(185, 151, 91, 0.45);
}

/* ---------- 22e. Hero entrance + scroll cue ------------------------------ */
.name-reveal,
.blur-in { will-change: opacity, transform, filter; }

html.hero-ready .name-reveal {
  opacity: 0;
  transform: translateY(50px);
}
html.hero-ready .blur-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
}
html.hero-ready .hero-in .name-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s var(--ease) 0.1s, transform 1.2s var(--ease) 0.1s;
}
html.hero-ready .hero-in .blur-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition: opacity 1s var(--ease), filter 1s var(--ease), transform 1s var(--ease);
}
html.hero-ready .hero-in .blur-in:nth-of-type(1) { transition-delay: 0.3s; }
html.hero-ready .hero-in .blur-in:nth-of-type(2) { transition-delay: 0.4s; }
html.hero-ready .hero-in .blur-in:nth-of-type(3) { transition-delay: 0.5s; }
html.hero-ready .hero-in .blur-in:nth-of-type(4) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  html.hero-ready .name-reveal,
  html.hero-ready .blur-in { opacity: 1; transform: none; filter: none; }
}

.scroll-cue {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
@media (min-width: 900px) { .scroll-cue { display: flex; } }
.scroll-cue span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-300);
}
.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(250, 246, 237, 0.2);
  overflow: hidden;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brass-soft);
  animation: scroll-down 1.5s ease-in-out infinite;
}

/* Pulsing status dot on the announcement rail. */
.announce .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse-dot 2.4s ease-in-out infinite;
  vertical-align: middle;
}

/* ---------- 23. Helpers -------------------------------------------------- */
/* Sizing is !important so a more specific component rule (e.g. `.nav-toggle span`)
   can't inflate a screen-reader-only element and push the page wide. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap;
  border: 0;
}
.stack-sm > * + * { margin-top: 0.75rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }
