/* ============================================================
   NEATH QUAIL — design system v2
   Light, classy country/farm. Warm ivory, deep valley green,
   soft ochre. Elegant serif display (Fraunces) + Inter.
   ============================================================ */

/* ---- Fonts (self-hosted) ---- */
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/fraunces-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/fraunces-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../assets/fonts/fraunces-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/fraunces-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }

/* ---- Tokens ---- */
:root {
  --paper: #FBF9F4;        /* warm ivory ground (matches the logo) */
  --paper-dim: #F1ECDF;    /* deeper cream */
  --sage-tint: #EDF0E2;    /* soft sage wash */
  --card: #FFFFFF;

  --ink: #2E3423;          /* deep olive-ink for headings */
  --body: #4A4C3F;         /* body text */
  --green: #40522A;        /* deep valley green (primary) */
  --green-deep: #2F3A1F;   /* footer / hover */
  --sage: #7E9159;         /* soft sage */
  --ochre: #A87C24;        /* warm harvest gold (readable on ivory) */
  --amber: var(--ochre);   /* legacy alias used in templates */
  --brown: #6B4A2B;
  --steel: #8B8B7C;
  --steel-dark: #636553;

  --hairline: rgba(46, 52, 35, .14);
  --hairline-soft: rgba(46, 52, 35, .09);
  --hairline-dark: rgba(46, 52, 35, .14);   /* legacy alias */
  --hairline-light: rgba(46, 52, 35, .14);  /* legacy alias */
  --accent: var(--green);                   /* legacy aliases */
  --accent-deep: var(--green-deep);
  --accent-soft: var(--sage);
  --coal: var(--paper-dim);
  --coal-2: var(--sage-tint);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --pad: clamp(20px, 5vw, 96px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --r: 16px;                /* card radius */
  --shadow: 0 14px 34px rgba(46, 52, 35, .09);
}

::selection { background: var(--green); color: var(--paper); }

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--body); background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--green); color: var(--paper); padding: 10px 18px;
  font-weight: 600; text-decoration: none; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ---- Type helpers ---- */
.kicker {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before {
  content: ''; width: 26px; height: 1px; background: var(--ochre); flex: 0 0 auto;
}
.kicker--amber { color: var(--ochre); }
.display {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: -.015em; line-height: 1.04; text-transform: none;
}
.display em, .display i { font-style: italic; font-weight: 400; color: var(--green); }
h1.display { font-size: clamp(40px, 6.6vw, 88px); }
h2.display { font-size: clamp(30px, 4.2vw, 56px); }
.section-head { margin-bottom: clamp(18px, 2.6vw, 34px); }
.section-head .kicker { display: inline-flex; margin-bottom: 16px; }
.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--body); max-width: 62ch; }

/* ---- Sections ---- */
.section { padding: clamp(42px, 6vw, 88px) var(--pad); position: relative; }
.section--light { background: var(--paper); }
.section--dim { background: var(--paper-dim); }
.section--sage { background: var(--sage-tint); }
.section--green { background: var(--green-deep); color: #EFEDE2; }
.section--green h1, .section--green h2, .section--green h3 { color: #F6F3E8; }
.section--green .kicker { color: #C9BC8B; }
/* legacy class from v1 markup — now a soft light treatment */
.section--dark { background: var(--sage-tint); }

/* ---- Buttons: soft, rounded, quietly confident ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; text-decoration: none;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border: 1.5px solid transparent; border-radius: 999px; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(46, 52, 35, .14); }

/* Quail-egg speckle texture — dark speckles on both the deep-green and
   the pale "eggshell" buttons, like the shells themselves */
.btn--accent, .btn--amber, .btn--ghost {
  position: relative; overflow: hidden; isolation: isolate;
}
.btn--accent::before, .btn--amber::before, .btn--ghost::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='70' viewBox='0 0 140 70'%3E%3Cg fill='%23201a10'%3E%3Cellipse cx='12' cy='14' rx='3.2' ry='2.1' transform='rotate(24 12 14)'/%3E%3Cellipse cx='38' cy='8' rx='1.6' ry='1.1' transform='rotate(-18 38 8)'/%3E%3Cellipse cx='60' cy='20' rx='2.6' ry='1.7' transform='rotate(40 60 20)'/%3E%3Cellipse cx='88' cy='10' rx='1.3' ry='.9'/%3E%3Cellipse cx='112' cy='18' rx='3.4' ry='2.2' transform='rotate(-30 112 18)'/%3E%3Cellipse cx='24' cy='34' rx='1.4' ry='1' transform='rotate(12 24 34)'/%3E%3Cellipse cx='50' cy='42' rx='3' ry='1.9' transform='rotate(-42 50 42)'/%3E%3Cellipse cx='76' cy='34' rx='1.8' ry='1.2' transform='rotate(60 76 34)'/%3E%3Cellipse cx='100' cy='44' rx='1.2' ry='.8'/%3E%3Cellipse cx='128' cy='38' rx='2.2' ry='1.5' transform='rotate(20 128 38)'/%3E%3Cellipse cx='10' cy='54' rx='2.4' ry='1.6' transform='rotate(-24 10 54)'/%3E%3Cellipse cx='36' cy='60' rx='1.2' ry='.8'/%3E%3Cellipse cx='64' cy='56' rx='2.8' ry='1.8' transform='rotate(34 64 56)'/%3E%3Cellipse cx='92' cy='62' rx='1.6' ry='1.1' transform='rotate(-50 92 62)'/%3E%3Cellipse cx='120' cy='58' rx='1.1' ry='.7'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(120% 160% at 30% 0%, rgba(255, 255, 255, .16), transparent 55%);
  background-size: 140px 70px, 100% 100%;
  opacity: .35;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.btn--accent:hover::before, .btn--amber:hover::before { opacity: .5; }
/* Pale eggshell variant: cream shell, dark speckles */
.btn.btn--ghost { background: #FFFCF1; }
.btn--ghost::before { opacity: .16; }
.btn--ghost:hover::before { opacity: .26; }
.btn--accent, .btn--amber { background: var(--green); color: #F6F3E8; }
.btn--accent:hover, .btn--amber:hover { background: var(--green-deep); color: #F6F3E8; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); box-shadow: none; }
.section--green .btn--ghost { color: var(--ink); border-color: rgba(46, 52, 35, .18); }
.section--green .btn--ghost:hover { border-color: var(--green); color: var(--green); }
.section--green .btn--amber, .section--green .btn--accent { background: var(--ochre); color: #fff; }
.section--green .btn--amber:hover { background: #8f6a1e; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.is-scrolled,
body.header-solid .site-header {
  background: var(--paper); /* opaque — the logo's own ground blends invisibly */
  box-shadow: 0 1px 0 var(--hairline-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px var(--pad);
}
.site-header__brand { display: flex; align-items: center; text-decoration: none; }
.site-header__logo { height: 52px; width: auto; display: block; transition: height .45s var(--ease); }
/* Homepage: logo starts double-size over the hero, eases back once you scroll */
body:not(.header-solid) .site-header:not(.is-scrolled) .site-header__logo { height: 104px; }
@media (max-width: 700px) {
  body:not(.header-solid) .site-header:not(.is-scrolled) .site-header__logo { height: 76px; }
}
.site-header__nav { display: flex; gap: 26px; }
.site-header__nav a {
  color: var(--body); text-decoration: none; font-weight: 500; font-size: 14.5px;
  transition: color .3s;
}
.site-header__nav a:hover, .site-header__nav a[aria-current="page"] { color: var(--green); }
.site-header__nav a[aria-current="page"] { font-weight: 600; }
.site-header__actions { display: flex; align-items: center; gap: 16px; }
.site-header__phone { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; }
.site-header__phone:hover { color: var(--green); }

.burger { display: none; background: none; border: 0; width: 40px; height: 34px; position: relative; }
.burger span {
  position: absolute; left: 7px; right: 7px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease);
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 23px; }
.burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* ---- Mobile nav ---- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--pad) 40px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav nav a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 7vw, 42px); color: var(--ink); text-decoration: none;
  padding: 7px 0; display: flex; align-items: baseline; gap: 16px;
  border-bottom: 1px solid var(--hairline-soft);
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  transition-delay: calc(var(--i) * 55ms);
}
.mobile-nav.is-open nav a { opacity: 1; transform: none; }
.mobile-nav nav a:hover { color: var(--green); }
.mobile-nav__num { font-size: 12px; letter-spacing: .2em; color: var(--ochre); font-weight: 600; }
.mobile-nav__meta { margin-top: 36px; color: var(--steel-dark); font-size: 14px; }
.mobile-nav__meta a { color: var(--green); text-decoration: none; font-weight: 600; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 86svh;
  background:
    radial-gradient(900px 460px at 108% -10%, rgba(126, 145, 89, .16), transparent 65%),
    radial-gradient(700px 400px at -12% 108%, rgba(168, 124, 36, .10), transparent 60%),
    var(--paper);
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center; gap: clamp(28px, 5vw, 72px);
  padding: 128px var(--pad) 84px;
  overflow: hidden;
}
.hero__meta {
  position: absolute; top: 96px; left: var(--pad); right: var(--pad);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11.5px; letter-spacing: .2em; font-weight: 600;
  text-transform: uppercase; color: var(--steel);
}
.hero__meta .live { color: var(--ochre); }
.hero__title { margin: 20px 0 24px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.hero__title .accented { font-style: italic; font-weight: 400; color: var(--green); }
.hero__lede { max-width: 54ch; color: var(--body); font-size: clamp(15.5px, 1.5vw, 18px); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__figure { position: relative; justify-self: center; width: min(100%, 520px); }
.hero__figure img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 400px 400px var(--r) var(--r);   /* soft farmhouse arch */
  box-shadow: var(--shadow);
}
.hero__figure::before {
  content: ''; position: absolute; inset: -14px;
  border: 1px solid var(--hairline);
  border-radius: 420px 420px calc(var(--r) + 10px) calc(var(--r) + 10px);
  pointer-events: none;
}
.hero__stamp { display: none; }   /* retired */

/* Ticker — quiet strip */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--hairline-soft);
  background: rgba(251, 249, 244, .8);
  overflow: hidden; white-space: nowrap; padding: 12px 0;
}
.ticker__track {
  display: inline-block; white-space: nowrap;
  font-size: 11.5px; letter-spacing: .22em; font-weight: 600;
  text-transform: uppercase; color: var(--steel-dark);
  animation: nq-marquee 38s linear infinite;
}
.ticker__track b { color: var(--ochre); font-weight: 600; }
@keyframes nq-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Answer block (AEO) ---- */
.answer-block { border-top: 1px solid var(--hairline-soft); }
.answer-block__answer {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2.5vw, 30px); line-height: 1.45; color: var(--ink);
  max-width: 34em;
}
.answer-block__answer strong { color: var(--green); font-weight: 600; }
.facts {
  margin-top: clamp(20px, 3vw, 34px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  background: var(--card); border: 1px solid var(--hairline-soft);
  border-radius: var(--r); overflow: hidden;
}
.facts__cell { padding: 20px 22px; border-right: 1px solid var(--hairline-soft); }
.facts__cell:last-child { border-right: 0; }
.facts__label {
  font-size: 10.5px; letter-spacing: .2em; font-weight: 600;
  text-transform: uppercase; color: var(--sage); margin-bottom: 7px;
}
.facts__value { font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* ---- Story rail ---- */
.story { overflow: clip; }
.story__wrap { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: clamp(16px, 3vw, 48px); }
.story__rail { position: relative; }
.story__rail::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: var(--hairline);
}
.story__progress {
  position: absolute; left: 50%; top: 0; width: 3px; transform: translateX(-1px);
  background: linear-gradient(var(--ochre), var(--green));
  border-radius: 3px; height: 0%;
}
.story__stops { display: flex; flex-direction: column; gap: clamp(36px, 5.5vw, 76px); }
.stop { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: center; }
.stop:nth-child(even) .stop__media { order: 2; }
.stop__media { overflow: hidden; clip-path: inset(0 0 100% 0 round var(--r)); }
.stop.is-shown .stop__media { clip-path: inset(0 round var(--r)); transition: clip-path 1s var(--ease); }
.stop__media img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow);
}
.stop__num { font-size: 11.5px; letter-spacing: .22em; font-weight: 600; text-transform: uppercase; color: var(--ochre); }
.stop__body h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.8vw, 36px); margin: 10px 0 12px; letter-spacing: -.01em; }
.stop__body p { color: var(--body); max-width: 48ch; }
.stop__body { opacity: 0; transform: translateY(26px); }
.stop.is-shown .stop__body { opacity: 1; transform: none; transition: opacity .8s var(--ease) .15s, transform .8s var(--ease) .15s; }

/* ---- Horizontal showcase ---- */
.showcase { padding-left: 0; padding-right: 0; }
.showcase .section-head { padding: 0 var(--pad); display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.showcase__hint { font-size: 11.5px; letter-spacing: .2em; font-weight: 600; text-transform: uppercase; color: var(--steel); }
.showcase__viewport { overflow: hidden; }
.showcase__track {
  display: flex; gap: clamp(16px, 2.5vw, 30px);
  padding: 6px var(--pad) 30px;
  will-change: transform;
}
.card {
  flex: 0 0 clamp(270px, 30vw, 400px);
  background: var(--card); color: var(--body);
  border: 1px solid var(--hairline-soft); border-radius: var(--r);
  text-decoration: none; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(251, 249, 244, .92); color: var(--green);
  font-size: 10.5px; letter-spacing: .16em; font-weight: 600; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: -.01em; }
.card__body p { color: var(--body); font-size: 14.5px; flex: 1; }
.card__cta { font-size: 11.5px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase; color: var(--ochre); }
.showcase { padding-top: clamp(40px, 5vw, 66px); padding-bottom: clamp(32px, 4vw, 54px); }
.showcase--native .showcase__viewport,
.showcase .showcase__viewport--native { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.showcase--native .showcase__viewport::-webkit-scrollbar { display: none; }
.showcase--native .showcase__track { width: max-content; }
@media (max-width: 900px) {
  .showcase__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .showcase__viewport::-webkit-scrollbar { display: none; }
  .showcase__track { width: max-content; }
}

/* ---- Bento ---- */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
}
.bento__cell {
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.bento__cell:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.bento__cell--large { grid-column: span 2; grid-row: span 2; background: var(--green); border: 0; }
.bento__cell--large .bento__title, .bento__cell--large p { color: #F3F1E4; }
.bento__cell--large p { opacity: .85; }
.bento__cell--large .bento__title { font-size: clamp(24px, 2.6vw, 34px); }
.bento__cell--large::after {
  content: ''; position: absolute; top: -40px; right: -40px; width: 190px; height: 190px;
  border: 1px solid rgba(243, 241, 228, .22); border-radius: 50%;
}
.bento__cell--wide { grid-column: span 2; background: var(--paper-dim); }
.bento__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.bento__cell p { font-size: 14px; color: var(--body); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell, .bento__cell--large, .bento__cell--wide { grid-column: span 1; }
}

/* ---- Coverage ---- */
.coverage__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.coverage__sticky { position: sticky; top: 110px; }
.coverage__text { color: var(--body); max-width: 52ch; margin-top: 16px; }
.coverage__map { margin-top: 22px; background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r); padding: 18px; }
.coverage__map svg { width: 100%; height: auto; }
.coverage__map .route { stroke: var(--sage); stroke-width: 1.6; fill: none; stroke-linecap: round; }
.coverage__map .node { fill: var(--ochre); }
.coverage__map .hub { fill: var(--green); stroke: rgba(64, 82, 42, .18); stroke-width: 10; }
.coverage__map text {
  font-family: var(--font-body); font-size: 11px; letter-spacing: .08em; font-weight: 600;
  fill: var(--steel-dark); text-transform: uppercase;
}
.coverage__map .hub-label { fill: var(--green-deep); font-size: 13px; }
.coverage__steps { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.step {
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r);
  padding: 26px 28px;
}
.step__num { font-size: 11px; letter-spacing: .22em; font-weight: 600; text-transform: uppercase; color: var(--ochre); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 8px 0 8px; letter-spacing: -.01em; }
.step p { color: var(--body); font-size: 14.5px; }
.coverage__towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: 12px; letter-spacing: .06em; font-weight: 600;
  padding: 8px 16px; border: 1px solid var(--hairline); color: var(--steel-dark);
  border-radius: 999px; background: var(--card);
}
.chip--solid { background: var(--green); border-color: transparent; color: #F3F1E4; }

/* ---- Stats ---- */
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.stat {
  border: 1px solid var(--hairline-soft); background: var(--card); border-radius: var(--r);
  padding: 30px 26px;
}
.stat__value {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 4.4vw, 56px); color: var(--green);
  letter-spacing: -.02em; line-height: 1;
}
.stat__value .suffix { font-size: .45em; color: var(--ochre); font-style: italic; font-weight: 400; margin-left: 2px; }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--steel-dark); }
.stats__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ---- Testimonials ---- */
.quote-card {
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r); padding: 30px;
}
.quote-card blockquote { font-family: var(--font-display); font-weight: 400; font-size: 17.5px; line-height: 1.6; color: var(--ink); }
.quote-card cite { display: block; margin-top: 16px; font-style: normal; font-size: 11.5px; letter-spacing: .16em; font-weight: 600; color: var(--sage); text-transform: uppercase; }

/* ---- Shop ---- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(18px, 2.5vw, 30px); }
.product {
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .4s var(--ease);
}
.product:hover { box-shadow: var(--shadow); }
.product__media { position: relative; overflow: hidden; }
.product__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease); }
.product:hover .product__media img { transform: scale(1.04); }
.product__badge {
  position: absolute; top: 14px; left: 14px; background: rgba(251, 249, 244, .93); color: var(--green);
  font-size: 10.5px; letter-spacing: .14em; font-weight: 600; text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
}
.product__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product__body h2, .product__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.product__desc { font-size: 14.5px; color: var(--body); flex: 1; }
.product__price-row { display: flex; align-items: baseline; gap: 8px; }
.product__price { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--green); }
.product__unit { font-size: 13px; color: var(--steel-dark); }
.product__qty { display: flex; align-items: center; border: 1px solid var(--hairline); border-radius: 999px; width: max-content; overflow: hidden; }
.product__qty button { width: 40px; height: 40px; background: none; border: 0; font-size: 18px; color: var(--green); }
.product__qty button:hover { background: var(--sage-tint); }
.product__qty input { width: 44px; height: 40px; border: 0; text-align: center; font: inherit; font-weight: 600; -moz-appearance: textfield; background: transparent; color: var(--ink); }
.product__qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product__note { font-size: 12px; color: var(--brown); font-weight: 600; letter-spacing: .04em; }

/* Cart bar */
.cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(251, 249, 244, .95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  display: none; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px var(--pad);
  box-shadow: 0 -1px 0 var(--hairline-soft), 0 -12px 30px rgba(46, 52, 35, .06);
}
.cartbar.is-active { display: flex; }
.cartbar__summary { font-size: 14.5px; font-weight: 500; letter-spacing: .02em; }
.cartbar__summary b { color: var(--green); font-family: var(--font-display); font-size: 17px; }
.cartbar__err { color: #9c4038; font-size: 12.5px; }

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label.f-label { display: block; font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase; color: var(--sage); margin-bottom: 7px; }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 15px;
  border: 1px solid var(--hairline); border-radius: 12px; background: var(--card); color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(126, 145, 89, .18); }
.f-textarea { min-height: 130px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; align-items: center; }
.form-hint { font-size: 13px; color: var(--steel-dark); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.contact-panel {
  padding: clamp(24px, 3vw, 42px);
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: calc(var(--r) + 6px);
  box-shadow: 0 8px 26px rgba(46, 52, 35, .05);
}
.contact-panel--light { background: var(--card); }
.contact-panel .kicker { margin-bottom: 4px; }
.contact-panel p.intro { color: var(--body); font-size: 14.5px; }
.contact-meta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; font-size: 14.5px; color: var(--body); }
.contact-meta a { color: var(--green); font-weight: 600; }

/* ---- FAQ ---- */
.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--hairline-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: clamp(16.5px, 1.7vw, 20px); letter-spacing: -.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--ochre); font-size: 24px; font-weight: 400;
  transition: transform .35s var(--ease); flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 24px; color: var(--body); max-width: 68ch; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-grid figure {
  position: relative; overflow: hidden; margin: 0; border-radius: var(--r);
  border: 1px solid var(--hairline-soft);
}
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(transparent, rgba(46, 52, 35, .72));
  color: #F6F3E8; font-size: 13px; letter-spacing: .03em;
}

/* ---- Blog ---- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(18px, 2.5vw, 30px); }
.post-card {
  background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r);
  text-decoration: none; color: inherit; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__date { font-size: 11px; letter-spacing: .18em; font-weight: 600; text-transform: uppercase; color: var(--sage); }
.post-card__body h2 { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: -.01em; }
.post-card__body p { font-size: 14.5px; color: var(--body); flex: 1; }

.article { max-width: 760px; margin: 0 auto; }
.article__hero { margin: 26px 0 34px; }
.article__hero img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.prose { font-size: 16.5px; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; font-size: clamp(23px, 2.6vw, 30px); margin-top: 1.7em; }
.prose h3 { font-size: 19px; margin-top: 1.5em; }
.prose a { color: var(--green); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose blockquote { border-left: 3px solid var(--ochre); padding: 6px 0 6px 20px; color: var(--steel-dark); font-style: italic; }
.prose strong { color: var(--green-deep); }
.table-wrap { overflow-x: auto; }
.prose table { border-collapse: collapse; width: 100%; font-size: 14.5px; background: var(--card); border-radius: 12px; }
.prose th, .prose td { border: 1px solid var(--hairline-soft); padding: 10px 14px; text-align: left; }
.prose th { background: var(--sage-tint); font-size: 12px; letter-spacing: .08em; font-weight: 600; text-transform: uppercase; color: var(--green-deep); }

/* ---- Page hero (interior pages) ---- */
.page-hero {
  background:
    radial-gradient(760px 360px at 100% -20%, rgba(126, 145, 89, .18), transparent 62%),
    var(--paper-dim);
  color: var(--ink);
  padding: 126px var(--pad) 52px;
  border-bottom: 1px solid var(--hairline-soft);
}
.page-hero .kicker { display: inline-flex; margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; line-height: 1.05; }
.page-hero p.lede { color: var(--body); margin-top: 18px; }
.page-hero a { color: var(--green); }
.breadcrumbs { font-size: 11px; letter-spacing: .16em; font-weight: 600; text-transform: uppercase; color: var(--steel); margin-bottom: 22px; }
.breadcrumbs a { color: var(--steel); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green); }

/* ---- CTA band (the one deep-green moment) ---- */
.cta-band { text-align: center; background: var(--green-deep); color: #EFEDE2; }
.cta-band .kicker { color: #C9BC8B; }
.cta-band .display { margin: 14px 0 14px; color: #F6F3E8; }
.cta-band .lede { color: rgba(246, 243, 232, .8); }
.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cta-band .btn--amber, .cta-band .btn--accent { background: var(--ochre); color: #fff; }
.cta-band .btn--amber:hover { background: #8f6a1e; }
.cta-band .btn--ghost { color: var(--ink); border-color: rgba(46, 52, 35, .18); }
.cta-band .btn--ghost:hover { border-color: #fff; color: var(--green); }
.cta-band a[style] { color: var(--ochre); }

/* ---- Footer (deep valley green, classy) ---- */
.site-footer { background: var(--green-deep); color: #E8E5D6; padding: clamp(44px, 6vw, 76px) var(--pad) 30px; }
.site-footer__signoff { border-bottom: 1px solid rgba(246, 243, 232, .16); padding-bottom: clamp(30px, 5vw, 56px); }
.site-footer .kicker { color: #C9BC8B; }
.site-footer__big {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  letter-spacing: -.01em; color: #F6F3E8;
  font-size: clamp(38px, 7vw, 104px); line-height: 1.02; margin-top: 16px;
}
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(26px, 4vw, 70px); padding: clamp(30px, 5vw, 52px) 0; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.site-footer__col a { color: rgba(246, 243, 232, .85); text-decoration: none; width: max-content; }
.site-footer__col a:hover { color: #C9BC8B; }
.site-footer__col .kicker { margin-bottom: 8px; }
.site-footer__col p { color: rgba(232, 229, 214, .65); }
.site-footer__logo { width: min(250px, 70%); height: auto; border-radius: 10px; }
.site-footer__col--brand p { max-width: 40ch; }
.site-footer__social { display: flex; gap: 18px; margin-top: 6px; }
.site-footer__legal {
  border-top: 1px solid rgba(246, 243, 232, .16); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(232, 229, 214, .6);
}
.site-footer__links a { color: rgba(232, 229, 214, .75); text-decoration: none; }
.site-footer__links a:hover { color: #C9BC8B; }
.site-footer__made a { color: rgba(232, 229, 214, .75); text-decoration: none; font-weight: 600; }
.site-footer__made a:hover { color: #C9BC8B; }

/* ---- Dock (mobile) ---- */
.dock {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 85;
  display: none; gap: 8px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.dock.is-visible { transform: none; }
.dock__item {
  flex: 1; text-align: center; padding: 14px 8px;
  background: var(--card); color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 13.5px; border-radius: 999px;
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 10px 30px rgba(46, 52, 35, .18);
}
.dock__item--shop { background: var(--green); color: #F6F3E8; border-color: transparent; }

/* ---- Designed fallback panel (missing photos) ---- */
.ghost-panel {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--hairline-soft);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(126, 145, 89, .22), transparent 65%),
    linear-gradient(150deg, var(--paper-dim), var(--sage-tint));
}
.ghost-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(64, 82, 42, .14) 1px, transparent 1px);
  background-size: 16px 16px;
}
.ghost-panel::after {
  content: attr(data-ghost); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(32px, 5.5vw, 72px); letter-spacing: .02em;
  color: rgba(46, 52, 35, .1);
}

/* ---- Reveal utility ---- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ---- Alerts ---- */
.notice { padding: 15px 20px; border: 1px solid rgba(126, 145, 89, .5); border-radius: 12px; background: var(--sage-tint); margin-bottom: 20px; font-size: 14.5px; color: var(--green-deep); }
.notice a { color: var(--green); font-weight: 600; }
.notice--err { border-color: #b3554d; background: #f3e3e1; color: #7c2d25; }

/* ---- Responsive ---- */
@media (max-width: 1060px) {
  .site-header__nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 900px) {
  /* Dock covers the shop CTA on mobile — keep the header clear for the logo */
  .site-header__actions .btn { display: none; }
  .site-header__phone { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; min-height: auto; padding-bottom: 130px; }
  .hero__meta { top: 84px; }
  .hero__figure { max-width: 440px; }
  .story__wrap { grid-template-columns: 26px 1fr; }
  .stop { grid-template-columns: 1fr; }
  .stop:nth-child(even) .stop__media { order: 0; }
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__sticky { position: static; }
  .contact-split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .dock { display: flex; }
}
@media (max-width: 700px) {
  .hero__meta { display: none; }
  .hero { padding-top: 118px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal, .stop__body { opacity: 1; transform: none; }
  .stop__media { clip-path: inset(0 round var(--r)); }
}
