/* ==========================================================================
   Pumpkin Fairy Colorado - pumpkinfairyco.com
   Boulder County and Denver metro

   TYPE: single family, Hanken Grotesk, weight contrast only. No serif
   anywhere. The earlier serif display read as "fancy"; this is plainer and
   more direct, which is what a local service should sound like.

   COLOUR: light page, committed oxblood brand colour. The surface is white
   so it never drifts into the cream/parchment band; the autumn lives in the
   brand colours and the photography. Two drenched oxblood bands break the
   scroll so the page still carries fall weight without being a dark site.
   ========================================================================== */

:root {
  --paper:      oklch(1 0 0);
  --panel:      oklch(0.962 0.012 45);
  --line:       oklch(0.888 0.016 45);
  --line-soft:  oklch(0.932 0.012 45);

  --oxblood:    oklch(0.345 0.115 25);

  --ember:      oklch(0.560 0.180 42);
  --ember-deep: oklch(0.470 0.160 38);
  --gold:       oklch(0.760 0.135 82);
  --sage:       oklch(0.470 0.075 150);

  --ink:        oklch(0.215 0.028 30);
  --ink-soft:   oklch(0.375 0.026 32);
  --ink-muted:  oklch(0.468 0.024 32);

  --on-dark:        oklch(0.985 0.008 60);
  --on-dark-soft:   oklch(0.905 0.020 62);
  --on-dark-muted:  oklch(0.845 0.026 62);

  --sans: "Hanken Grotesk", ui-sans-serif, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --t-xs: 0.8rem;
  --t-sm: 0.915rem;
  --t-base: 1.0625rem;
  --t-md: 1.18rem;
  --t-lg: clamp(1.3rem, 1.1rem + 0.85vw, 1.65rem);
  --t-xl: clamp(1.7rem, 1.35rem + 1.7vw, 2.5rem);
  --t-2xl: clamp(1.95rem, 1.5rem + 2vw, 2.9rem);
  --t-hero: clamp(2.2rem, 1.5rem + 3vw, 3.5rem);

  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec: clamp(3.5rem, 7vw, 7rem);
  --max: 1240px;

  --out: cubic-bezier(0.16, 1, 0.3, 1);
  --out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 200;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
  color: var(--oxblood);
}
h3 { font-weight: 700; letter-spacing: -0.015em; }

p { text-wrap: pretty; margin: 0; }
a { color: inherit; }

::selection { background: var(--gold); color: var(--oxblood); }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ember); color: #fff;
  padding: 0.75rem 1.15rem; font-weight: 700; z-index: 999;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* ---------------------------------------------------------------- nav ---- */

.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem var(--gut);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}

.mark {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em;
  text-decoration: none; white-space: nowrap; color: var(--oxblood); line-height: 1.12;
}
.mark img { width: 32px; height: auto; flex: none; }
.mark small {
  display: block; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.17em; color: var(--ember); text-transform: uppercase;
}

.nav-links { display: flex; gap: clamp(0.9rem, 2.2vw, 1.8rem); align-items: center; }
 /* :not(.btn) matters: a bare `.nav-links a` rule outranks `.btn-ember` on
    specificity and was repainting the CTA label dark on its dark fill. */
.nav-links a:not(.btn) {
  font-size: var(--t-sm); font-weight: 500; color: var(--ink-soft); text-decoration: none;
  transition: color 0.25s var(--out);
}
.nav-links a:not(.btn):hover { color: var(--oxblood); }
@media (max-width: 900px) { .nav-links a:not(.btn) { display: none; } }
@media (max-width: 520px) {
  .nav { padding-inline: 1rem; }
  .mark { font-size: 0.92rem; }
  .mark img { width: 27px; }
  .nav-links .btn { font-size: var(--t-xs); padding: 0.65em 1em; }
}

/* -------------------------------------------------------------- button --- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6ch;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 700;
  padding: 0.72em 1.35em; border-radius: 100px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.35s var(--out), background-color 0.3s var(--out),
              border-color 0.3s var(--out), color 0.3s var(--out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Deep enough against white that the white label clears 4.5:1 comfortably. */
.btn-ember { background: var(--ember-deep); color: #fff; }
.btn-ember:hover { background: oklch(0.400 0.145 34); }

.btn-ghost { border-color: var(--line); color: var(--oxblood); background: transparent; }
.btn-ghost:hover { border-color: var(--oxblood); background: var(--panel); }

.band .btn-ghost { border-color: color-mix(in oklab, var(--on-dark) 50%, transparent); color: var(--on-dark); }
.band .btn-ghost:hover { border-color: var(--on-dark); background: color-mix(in oklab, #000 18%, transparent); }
.band .btn-ember { background: var(--gold); color: oklch(0.24 0.06 40); }
.band .btn-ember:hover { background: oklch(0.83 0.135 84); }

.btn-lg { font-size: var(--t-base); padding: 0.85em 1.7em; }

/* ---------------------------------------------------------------- hero --- */

.hero { position: relative; background: var(--panel); border-bottom: 1px solid var(--line); }

/* Photo-led: the image takes the larger share, the copy is trimmed to suit. */
.hero-grid {
  display: grid; gap: clamp(1.5rem, 3.5vw, 3rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  padding-block: clamp(2.25rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.25rem);
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: var(--t-hero); letter-spacing: -0.035em; margin-bottom: 0.85rem; }
.hero h1 em { font-style: normal; color: var(--ember-deep); }

.hero-sub { font-size: var(--t-md); color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.4rem; }

.local {
  display: inline-flex; align-items: center; gap: 0.55ch;
  font-size: var(--t-xs); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: oklch(0.30 0.09 40);
  background: color-mix(in oklab, var(--gold) 45%, var(--paper));
  border: 1px solid color-mix(in oklab, var(--gold) 80%, var(--oxblood));
  padding: 0.4em 0.9em; border-radius: 100px; margin-bottom: 0.95rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }



.hero-media img { border-radius: 14px; width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* ------------------------------------------------------------- section --- */

.sec { padding-block: var(--sec); }
.sec-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: var(--t-2xl); margin-bottom: 0.85rem; }
.sec-head p { color: var(--ink-soft); font-size: var(--t-md); }
.sec-head-sm h2 { font-size: var(--t-xl); }

.lede { font-size: var(--t-md); color: var(--ink-soft); }

.band { background: var(--oxblood); color: var(--on-dark); }
.band h2, .band h3 { color: var(--on-dark); }
.band .sec-head p, .band .lede { color: var(--on-dark-soft); }
.band p { color: var(--on-dark-muted); }

/* --------------------------------------------------------------- steps --- */

.steps {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step; list-style: none; margin: 0; padding: 0;
}
.step { counter-increment: step; }
.step::before {
  content: counter(step);
  font-size: 2.1rem; font-weight: 800; line-height: 1;
  color: var(--gold); display: block; margin-bottom: 0.45rem;
}
.step h3 { font-size: var(--t-lg); margin-bottom: 0.4rem; }
.step p { font-size: var(--t-sm); }

/* ------------------------------------------------------------ packages --- */
/* stretch, not start, so all three cards are exactly the same height */
.pkgs { display: grid; gap: clamp(1.4rem, 2.4vw, 2rem); grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width: 1000px) { .pkgs { grid-template-columns: 1fr; max-width: 30rem; } }

.pkg {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.4s var(--out), transform 0.5s var(--out), box-shadow 0.5s var(--out);
}
.pkg:hover {
  border-color: var(--oxblood); transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px color-mix(in oklab, var(--oxblood) 55%, transparent);
}
.pkg.featured { border-color: var(--ember); border-width: 2px; }

.pkg-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--panel); flex: none; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--out-soft); }
.pkg:hover .pkg-media img { transform: scale(1.045); }

.pkg-flag {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--ember-deep); color: #fff;
  font-size: var(--t-xs); font-weight: 700; padding: 0.3em 0.75em; border-radius: 100px;
}

.pkg-body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; gap: 0.6rem; }
.pkg-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.7rem; }
.pkg-top h3 { font-size: var(--t-md); }
.pkg-price { font-weight: 800; font-size: var(--t-md); color: var(--oxblood); white-space: nowrap; }

.pkg-count { font-size: var(--t-sm); font-weight: 700; color: var(--ember-deep); }
.pkg-desc { font-size: var(--t-sm); color: var(--ink-muted); }

.pkg-spec { list-style: none; margin: 0.1rem 0 0; padding: 0; font-size: var(--t-sm); color: var(--ink-soft); flex: 1; }
.pkg-spec li { padding: 0.28em 0; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 1rem; }
.pkg-spec li:last-child { border-bottom: 0; }
.pkg-spec b { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

.pkg-actions { display: flex; gap: 0.5rem; margin-top: 0.45rem; }
.pkg-actions .btn { flex: 1; padding-inline: 0.9em; }

/* -------------------------------------------------------------- addons --- */

.addons { display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem); grid-template-columns: repeat(4, 1fr); align-items: stretch; }
@media (max-width: 1000px) { .addons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addons { grid-template-columns: 1fr; } }
.addon {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; height: 100%;
}
.addon h3 { font-size: var(--t-md); }
.addon p { font-size: var(--t-sm); color: var(--ink-muted); flex: 1; }
.addon .price { color: var(--ember-deep); font-weight: 800; font-size: var(--t-lg); }

.wide-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); margin-top: clamp(1.25rem, 2.5vw, 2rem); align-items: stretch; }
.addon-wide {
  display: grid; grid-template-columns: minmax(130px, 34%) 1fr; gap: 1.3rem; align-items: center;
  padding: 0; overflow: hidden; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; height: 100%;
}
.addon-wide img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.addon-wide .addon-body { padding: 1.2rem 1.35rem 1.2rem 0; display: flex; flex-direction: column; gap: 0.35rem; }
@media (max-width: 560px) {
  .addon-wide { grid-template-columns: 1fr; }
  .addon-wide img { aspect-ratio: 16/9; }
  .addon-wide .addon-body { padding: 0 1.25rem 1.25rem; }
}

/* ----------------------------------------------------------------- zip --- */

.zip-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.zip-form { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.3rem; }

input[type="text"], input[type="email"] {
  font-family: var(--sans); font-size: var(--t-base);
  padding: 0.78em 1.05em;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink); min-width: 0; flex: 1 1 11rem;
  transition: border-color 0.25s var(--out);
}
input::placeholder { color: var(--ink-muted); opacity: 1; }
input:focus { border-color: var(--ember); outline: none; }
input:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }

.zip-result { margin-top: 1rem; font-size: var(--t-sm); min-height: 1.5rem; color: var(--ink-soft); }
.zip-result[data-state="yes"]  { color: var(--sage); font-weight: 700; }
.zip-result[data-state="edge"] { color: var(--ember-deep); font-weight: 700; }

.zone-list { font-size: var(--t-sm); color: var(--ink-muted); margin: 0; }
.zone-list dt { font-weight: 700; color: var(--oxblood); margin-top: 1rem; }
.zone-list dt:first-child { margin-top: 0; }
.zone-list dd { margin: 0.2rem 0 0; }

/* --------------------------------------------------------------- story --- */

.story { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; }
.story-copy p + p { margin-top: 1rem; }
.story-copy p { color: var(--ink-soft); }
.story figure { margin: 0; }
.story img { border-radius: 14px; }
.story figcaption { margin-top: 0.75rem; font-size: var(--t-xs); color: var(--ink-muted); }
.story-h { font-size: var(--t-2xl); margin-bottom: 1.2rem; }

.pull {
  font-size: var(--t-lg); font-weight: 700; color: var(--oxblood);
  line-height: 1.3; margin-block: 1.4rem; padding-left: 1.05rem;
  border-left: 1px solid var(--ember);
}

/* ------------------------------------------------------------ promises --- */

.promises { display: grid; gap: clamp(1.6rem, 3.2vw, 2.75rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.promise h3 { font-size: var(--t-md); margin-bottom: 0.4rem; }
.promise p { font-size: var(--t-sm); }
.promise-rule { width: 2.1rem; height: 2px; background: var(--gold); margin-bottom: 0.85rem; border-radius: 2px; }

/* ----------------------------------------------------------------- faq --- */

.faq { max-width: 74ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 2.5rem 1.05rem 0;
  font-size: var(--t-md); font-weight: 700; color: var(--oxblood);
  position: relative; transition: color 0.25s var(--out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.4rem; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ember); border-bottom: 2px solid var(--ember);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.4s var(--out);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--ember-deep); }
.faq .answer { padding-bottom: 1.2rem; color: var(--ink-muted); font-size: var(--t-sm); max-width: 66ch; }
.faq .answer p + p { margin-top: 0.75rem; }

/* --------------------------------------------------------------- terms --- */

.terms { max-width: 72ch; }
.terms h3 { font-size: var(--t-md); margin-top: 1.9rem; margin-bottom: 0.4rem; }
.terms h3:first-child { margin-top: 0; }
.terms p { color: var(--ink-soft); font-size: var(--t-sm); }

/* -------------------------------------------------------------- signup --- */

.signup { text-align: center; }
.signup .sec-head { margin-inline: auto; text-align: center; }
.signup-form { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; max-width: 30rem; margin-inline: auto; }
.signup-note { margin-top: 0.9rem; font-size: var(--t-xs); }
.signup-result { margin-top: 0.9rem; font-size: var(--t-sm); min-height: 1.4rem; color: var(--gold); font-weight: 700; }
.band input[type="email"] { background: var(--paper); border-color: transparent; }

/* -------------------------------------------------------------- footer --- */

.foot { background: var(--panel); border-top: 1px solid var(--line); padding-block: clamp(2.25rem, 4.5vw, 3.5rem); font-size: var(--t-sm); color: var(--ink-muted); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 1.4rem 3rem; justify-content: space-between; align-items: flex-start; }
.foot a { color: var(--ink-soft); text-decoration: none; }
.foot a:hover { color: var(--ember-deep); }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.foot-mark { font-size: 0.98rem; }
.foot-mark img { width: 28px; }
.foot-place { margin-top: 0.45rem; }
.foot-note { margin-top: 1.8rem; padding-top: 1.35rem; border-top: 1px solid var(--line); font-size: var(--t-xs); max-width: 78ch; }
.foot-towns { margin-top: 0.8rem; font-size: var(--t-xs); max-width: 78ch; }

/* -------------------------------------------------------------- motion --- */

.js-motion [data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--out), transform 0.8s var(--out);
  transition-delay: var(--d, 0ms);
}
.js-motion [data-reveal].in { opacity: 1; transform: none; }

.js-motion .hero h1, .js-motion .hero-sub, .js-motion .hero-cta,
.js-motion .hero-foot, .js-motion .local {
  opacity: 0; animation: rise 0.9s var(--out) forwards;
}
.js-motion .local     { animation-delay: 0.05s; }
.js-motion .hero h1   { animation-delay: 0.13s; }
.js-motion .hero-sub  { animation-delay: 0.24s; }
.js-motion .hero-cta  { animation-delay: 0.35s; }
.js-motion .hero-foot { animation-delay: 0.46s; }

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .js-motion [data-reveal] { opacity: 1; transform: none; transition: opacity 0.2s linear; }
  .js-motion .hero h1, .js-motion .hero-sub, .js-motion .hero-cta,
  .js-motion .hero-foot, .js-motion .local {
    animation: fade 0.3s linear forwards; animation-delay: 0s !important;
  }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
  .pkg:hover, .btn:hover { transform: none; }
  .pkg:hover .pkg-media img { transform: none; }
}

/* ====================================================== product pages ==== */

.crumb { padding-block: 1.4rem 0; font-size: var(--t-sm); color: var(--ink-muted); }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--ember-deep); }
.crumb span { margin-inline: 0.4rem; opacity: 0.5; }
.crumb b { color: var(--oxblood); font-weight: 700; }

.product {
  display: grid; gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.75rem) clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 940px) { .product { grid-template-columns: 1fr; } }

.product-media img { border-radius: 16px; width: 100%; }

.product-info h1 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.2rem); margin: 0.35rem 0 0.7rem; }
.product-price { font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem); font-weight: 800; color: var(--ember-deep); line-height: 1; }
.product-count { font-size: var(--t-md); font-weight: 700; color: var(--oxblood); margin-top: 0.4rem; }
.product-lede { color: var(--ink-soft); font-size: var(--t-md); margin-top: 0.9rem; max-width: 46ch; }
.product-cta { margin-top: 1.5rem; }

.product-includes { list-style: none; margin: 1.6rem 0 0; padding: 1.3rem 0 0; border-top: 1px solid var(--line); font-size: var(--t-sm); color: var(--ink-soft); }
.product-includes li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; }
.product-includes li::before {
  content: ""; position: absolute; left: 0; top: 0.52em;
  width: 8px; height: 5px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.prod-h2 { font-size: var(--t-xl); margin-bottom: 0.85rem; }

.product-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: start; }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }
.product-grid p { font-size: var(--t-sm); max-width: 50ch; }

.spec-big { font-size: var(--t-base); }
.band .spec-big { color: var(--on-dark-soft); }
.band .spec-big li { border-bottom-color: color-mix(in oklab, var(--on-dark) 20%, transparent); padding: 0.55em 0; }
.band .spec-big b { color: var(--on-dark); }

.prose-2 { max-width: 68ch; }
.prose-2 p { color: var(--ink-soft); margin-top: 0.9rem; }

.fact-row {
  margin: clamp(2rem, 4vw, 3rem) 0 0; padding: 0;
  display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid var(--line);
}
.fact-row > div { padding: 1.1rem 1.25rem 1.1rem 0; border-bottom: 1px solid var(--line); }
.fact-row dt { font-size: var(--t-xs); font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ember-deep); }
.fact-row dd { margin: 0.3rem 0 0; font-size: var(--t-sm); color: var(--ink-soft); }

.mini-grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.mini {
  display: grid; grid-template-columns: 96px 1fr; gap: 1rem; align-items: center;
  text-decoration: none; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s var(--out), transform 0.4s var(--out);
}
.mini:hover { border-color: var(--oxblood); transform: translateY(-3px); }
.mini img { width: 96px; height: 100%; object-fit: cover; aspect-ratio: 1; }
.mini-body { padding: 0.9rem 1rem 0.9rem 0; }
.mini h3 { font-size: var(--t-md); }
.mini-count { font-size: var(--t-xs); color: var(--ink-muted); margin-top: 0.15rem; }
.mini-price { font-size: var(--t-sm); font-weight: 800; color: var(--ember-deep); margin-top: 0.3rem; }

/* card media is now a link */
a.pkg-media { display: block; }
.pkg-top h3 a { text-decoration: none; }
.pkg-top h3 a:hover { color: var(--ember-deep); }

/* hay bale add-on card carries a photo */
.addon-photo { padding: 0; overflow: hidden; }
.addon-photo picture { display: block; }
.addon-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.addon-photo .addon-body { padding: 1.15rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }

/* ==================================================== hero trust strip ==== */
/* Single centred row of three proof points under the hero. Icons are inline
   SVG so they inherit currentColor and cost no extra request. */
.trust-strip {
  list-style: none; margin: 0; padding: 0 var(--gut) clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex; flex-wrap: nowrap; justify-content: center;
  gap: clamp(0.75rem, 3vw, 2.75rem);
  max-width: var(--max); margin-inline: auto;
}
.trust-strip li {
  display: flex; align-items: center; gap: 0.5ch;
  font-size: clamp(0.72rem, 0.55rem + 0.5vw, 0.94rem);
  font-weight: 650; color: var(--oxblood); white-space: nowrap;
}
.trust-strip .pk { width: 1.25em; height: 1.25em; fill: var(--ember-deep); flex: none; }

@media (max-width: 620px) {
  .trust-strip { gap: 0.6rem; padding-inline: 0.75rem; }
  .trust-strip li { font-size: 0.66rem; }
  .trust-strip .pk { width: 0.95em; height: 0.95em; }
}

/* Below ~430px the three nowrap items are wider than the viewport and push the
   whole page into horizontal scroll. Wrap them rather than let that happen. */
@media (max-width: 430px) {
  .trust-strip { flex-wrap: wrap; row-gap: 0.5rem; column-gap: 1.1rem; }
  .trust-strip li { font-size: 0.72rem; }
}

/* hero buttons stay on one row */
.hero-cta { flex-wrap: nowrap; }
@media (max-width: 420px) { .hero-cta { flex-wrap: wrap; } }
.hero-cta .btn { flex: 0 1 auto; min-width: 0; }

/* ======================================================= checkout pages ==== */
.checkout-wrap { padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); max-width: 720px; }
.checkout-h1 { font-size: var(--t-2xl); margin-bottom: 0.6rem; }
.checkout-sub { color: var(--ink-soft); font-size: var(--t-md); }
.stripe-mount { margin-top: clamp(1.5rem, 3vw, 2.25rem); min-height: 420px; }
.checkout-note { margin-top: 1.25rem; color: var(--ember-deep); font-weight: 650; font-size: var(--t-sm); }

/* ===================================================== glossary + towns ==== */
.gloss-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gloss { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem 1.35rem; }
.gloss h2 { font-size: var(--t-md); margin-bottom: 0.5rem; }
.gloss p { font-size: var(--t-sm); color: var(--ink-soft); }
.gloss-where { margin-top: 0.7rem; color: var(--ink-muted); font-size: var(--t-xs); }
.gloss-where b { color: var(--ember-deep); }

.town-grid { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.town-card {
  display: flex; flex-direction: column; gap: 0.15rem; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border-color 0.3s var(--out), transform 0.35s var(--out);
}
.town-card:hover { border-color: var(--oxblood); transform: translateY(-2px); }
.town-card b { color: var(--oxblood); font-size: var(--t-base); font-weight: 700; }
.town-card span { color: var(--ink-muted); font-size: var(--t-xs); }

.town-links { gap: 0.6rem; flex-wrap: wrap; }
.town-links a {
  font-size: var(--t-sm); font-weight: 650; color: var(--oxblood); text-decoration: none;
  border: 1px solid var(--line); border-radius: 100px; padding: 0.45em 1em;
  transition: border-color 0.3s var(--out), background-color 0.3s var(--out);
}
.town-links a:hover { border-color: var(--oxblood); background: var(--panel); }

.fact-row dd a { color: var(--ember-deep); font-weight: 650; }
.prose-2 a { color: var(--ember-deep); font-weight: 650; }

/* ---- location pages: the town copy leads, packages sit below it ---- */
.loc-hero {
  display: grid; gap: clamp(1.5rem, 3.5vw, 3rem);
  grid-template-columns: 1.05fr 1fr; align-items: center;
  padding-block: clamp(1.75rem, 4vw, 3.25rem) clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 900px) { .loc-hero { grid-template-columns: 1fr; } }
.loc-hero h1 { margin: .35rem 0 0; font-size: clamp(1.95rem, 4.2vw, 3.1rem); line-height: 1.08;
  letter-spacing: -.02em; text-wrap: balance; }
.loc-lede { margin: .9rem 0 1.4rem; font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }
.loc-hero-media img { width: 100%; height: auto; border-radius: var(--r);
  box-shadow: 0 18px 44px -22px rgba(63, 20, 14, .45); }

.loc-body { padding-block: clamp(.5rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem); }
.loc-sec { max-width: 72ch; }
.loc-sec + .loc-sec { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.loc-sec h2 {
  margin: 0 0 .55rem; font-size: clamp(1.28rem, 2.1vw, 1.65rem); line-height: 1.22;
  letter-spacing: -.015em; color: var(--oxblood); text-wrap: balance;
}
.loc-sec p { margin: 0; line-height: 1.72; color: var(--ink-2); text-wrap: pretty; }
.loc-note { max-width: 68ch; margin: clamp(1.1rem, 2vw, 1.6rem) auto 0; text-align: center;
  color: var(--ink-2); font-size: .96rem; }
