/* ==========================================================================
   Highway Dispos: Component library
   Depends on colors_and_type.css
   ========================================================================== */

/* ==========================================================================
   Accessibility skip link — visually hidden until focused
   ========================================================================== */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip:focus,
.skip:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--hd-forest);
  color: var(--hd-cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
  border-radius: var(--radius-md);
  outline: 2px solid var(--hd-gold);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   Hit target: 44x44 min. Icon + label always, never icon-only.
   ========================================================================== */
.hd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--hit-min);
  min-width: var(--hit-min);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: var(--bw-rule) solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-default),
              color var(--dur-fast) var(--ease-default),
              border-color var(--dur-fast) var(--ease-default),
              transform var(--dur-fast) var(--ease-default);
  user-select: none;
  white-space: nowrap;
}
.hd-btn:focus-visible {
  outline: 3px solid var(--hd-blue);
  outline-offset: 2px;
}
.hd-btn:active {
  transform: translateY(1px);
}
.hd-btn svg,
.hd-btn .hd-btn-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

/* Primary: sunrise gold on cream pages */
.hd-btn--primary {
  background: var(--hd-gold);
  color: var(--hd-forest);
  border-color: var(--hd-gold);
}
.hd-btn--primary:hover { background: var(--hd-gold-ink); border-color: var(--hd-gold-ink); }

/* Secondary: forest outline on cream */
.hd-btn--secondary {
  background: transparent;
  color: var(--hd-forest);
  border-color: var(--hd-forest);
}
.hd-btn--secondary:hover { background: var(--hd-forest); color: var(--hd-cream); }

/* Tertiary: text link in forest green */
.hd-btn--tertiary {
  background: transparent;
  color: var(--hd-forest);
  border-color: transparent;
  padding: 10px 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--hd-green);
}
.hd-btn--tertiary:hover { color: var(--hd-green); }

.hd-btn--lg { padding: 14px 28px; font-size: var(--fs-lg); }
.hd-btn--sm { padding: 8px 14px;  font-size: var(--fs-sm); min-height: 40px; }
.hd-btn[disabled], .hd-btn[aria-disabled="true"] {
  opacity: 0.5; pointer-events: none;
}

/* ----------------------------------------------------------------------------
   Mobile tap polish (2026-04-29 forensic audit fix).

   1. iOS Safari and Chromium Mobile default `-webkit-tap-highlight-color`
      to `rgba(51, 181, 229, 0.4)` - a translucent blue overlay that
      flashes on every touch. Branden flagged this as buttons "changing
      colors on mobile." Fix: suppress the default highlight on every
      interactive surface; rely on the existing :active transform + :hover
      state for feedback.

   2. Anchor-as-button elements need a :visited rule per-variant so they
      don't fall back to the browser-default purple after the user clicks
      a link, particularly the tertiary text-link CTAs ("Read our story",
      "See all FAQ"). Each :visited restates the same color token its
      base rule uses; we cannot use `color: inherit` because :visited's
      restricted property set treats `inherit` as the unstyled default.
   ---------------------------------------------------------------------------- */

a, button, summary, [role="button"],
.hd-btn, .zipfind__btn, .zipfind__row__cta, .zipfind__input,
.age-gate-fullscreen__btn,
.hero--split__cta, .hero--editorial__cta, .wrong-turn__cta,
.nav-menu-btn, .bottom-tab a, .lift-link {
  -webkit-tap-highlight-color: transparent;
}

/* Each anchor-as-button restates its own color in :visited so the browser's
   default purple never wins. The selectors mirror the base rules exactly. */
a.hd-btn--primary:visited   { color: var(--hd-forest); }
a.hd-btn--secondary:visited { color: var(--hd-forest); }
a.hd-btn--tertiary:visited  { color: var(--hd-forest); }
a.hero--split__cta:visited       { color: var(--hd-cream); }
a.hero--editorial__cta:visited   { color: var(--hd-ink); }
a.wrong-turn__cta:visited        { color: var(--hd-forest); }
a.zipfind__row__cta:visited      { color: var(--hd-forest); }
.bottom-tab a:visited            { color: var(--hd-forest); }

/* ==========================================================================
   Cards
   Warm cream page, white card, forest hairline, 12px radius, 24px padding.
   ========================================================================== */
.hd-card {
  background: var(--bg-card);
  border: var(--bw-hair) solid var(--hd-forest);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-1);
}
.hd-card__eyebrow { 
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--hd-green);
  margin: 0 0 var(--sp-2);
}
.hd-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--hd-forest);
  margin: 0 0 var(--sp-2);
}
.hd-card__body {
  color: var(--fg-2);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  margin: 0;
}

/* Product card variant */
.hd-card--product {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hd-card--product .hd-card__media {
  position: relative;
  background: var(--hd-cream-2);
  aspect-ratio: 4 / 3;
  border-bottom: var(--bw-hair) solid var(--border-hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
}
.hd-card--product .hd-card__stamp {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--hd-cream);
  border: var(--bw-hair) solid var(--hd-forest);
  color: var(--hd-forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hd-card--product .hd-card__body-wrap {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hd-card--product .hd-card__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--hd-forest);
}
.hd-card--product .hd-card__meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Top navigation
   ========================================================================== */
.hd-nav {
  background: var(--hd-cream);
  border-bottom: var(--bw-hair) solid var(--border-hair);
  padding: var(--sp-3) var(--sp-5);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  font-family: var(--font-body);
}
.hd-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--hd-forest);
}
.hd-nav__brand-mark { width: 56px; height: 56px; }

/* Dual brand mark: HW-61 + HW-23 side-by-side with slight overlap, signaling
   "system of locations" on umbrella pages. Single-shield variants (Standish,
   Au Gres) use the default .hd-nav__brand-mark above.
   Selectors use .site-nav prefix to win over per-page rules at @media 1023px
   that set the base brand-mark to 48x48 (those rules also use .site-nav). */
.hd-nav__brand-mark.hd-nav__brand-mark--dual,
.site-nav .hd-nav__brand-mark.hd-nav__brand-mark--dual {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  height: 56px !important;
  flex-shrink: 0;
}
.hd-nav__brand-mark--dual > [data-hd-shield]:nth-child(1) {
  position: relative;
  z-index: 2;
  display: inline-block;
  flex: 0 0 auto;
}
.hd-nav__brand-mark--dual > [data-hd-shield]:nth-child(2) {
  position: relative;
  z-index: 1;
  display: inline-block;
  flex: 0 0 auto;
  margin-left: -10px;
  transform: rotate(4deg) translateY(4px);
  transform-origin: 50% 50%;
}
@media (max-width: 1023px) {
  .site-nav .hd-nav__brand-mark.hd-nav__brand-mark--dual {
    height: 48px !important;
  }
}
@media (max-width: 480px) {
  .site-nav .hd-nav__brand-mark.hd-nav__brand-mark--dual {
    height: 44px !important;
  }
  .hd-nav__brand-mark--dual > [data-hd-shield]:nth-child(2) {
    margin-left: -8px;
  }
}
.hd-nav__brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xl);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hd-nav__center {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
.hd-nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--sp-4);
  flex-wrap: nowrap;
}
.hd-nav__links li { white-space: nowrap; }
.hd-nav__links a {
  color: var(--hd-forest);
  font-weight: 600;
  font-size: var(--fs-md);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-default);
}
.hd-nav__links a:hover,
.hd-nav__links a[aria-current="page"] {
  border-bottom-color: var(--hd-green);
}
.hd-nav__right { display: flex; align-items: center; gap: var(--sp-3); }

/* Location picker (used inside nav or as standalone) */
.hd-locpicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--hd-cream-2);
  border: var(--bw-hair) solid var(--hd-forest);
  color: var(--hd-forest);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  min-height: 40px;
  cursor: pointer;
}
.hd-locpicker__label { 
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}
.hd-locpicker__value { font-weight: 700; }
.hd-locpicker__tabs {
  display: inline-flex;
  background: var(--hd-cream-2);
  border: var(--bw-hair) solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 2px;
}
.hd-locpicker__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--hd-forest);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}
.hd-locpicker__tab[aria-pressed="true"],
.hd-locpicker__tab[aria-current="page"] {
  background: var(--hd-forest);
  color: var(--hd-cream);
}
.hd-locpicker__tab:hover:not([aria-current="page"]) {
  background: rgba(15, 61, 35, 0.08);
}

/* Mobile menu button — hidden by default at desktop, shown on narrow viewports */
.nav-menu-btn {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--hd-forest);
  color: var(--hd-forest);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  align-items: center;
  gap: 6px;
  cursor: pointer;
  min-height: 40px;
}

/* Tablet — tighten link gap further at intermediate widths */
@media (max-width: 1023px) and (min-width: 768px) {
  .hd-nav__links { gap: var(--sp-3); font-size: var(--fs-sm); }
  .hd-nav__brand-word { font-size: var(--fs-md); }
}

/* Mobile nav collapse — hide center links + show menu button below 768px */
@media (max-width: 767px) {
  .hd-nav {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "center center"
      "right right";
    row-gap: var(--sp-3);
  }
  .hd-nav__brand  { grid-area: brand; }
  .hd-nav__center { grid-area: center; justify-content: flex-start; display: none; }
  .hd-nav__right  { grid-area: right; }
  .hd-nav__links {
    flex-wrap: wrap;
    gap: var(--sp-3);
  }
  /* Show menu button + show links when nav has .is-open */
  .nav-menu-btn { display: inline-flex; grid-area: toggle; justify-self: end; }
  .site-nav.is-open .hd-nav__center { display: flex; }
  .site-nav.is-open .hd-nav__links { flex-direction: column; align-items: flex-start; width: 100%; gap: var(--sp-2); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hd-footer {
  background: var(--hd-forest);
  color: var(--hd-cream);
  padding: var(--sp-9) var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
}
.hd-footer a { color: var(--hd-cream); text-decoration: underline; text-underline-offset: 3px; }
.hd-footer__grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-wide);
  margin: 0 auto;
}
.hd-footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--hd-gold);
  margin: 0 0 var(--sp-3);
}
.hd-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.hd-footer__license {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hd-cream);
  opacity: 0.9;
}
.hd-footer__location h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-md);
  margin: 0 0 var(--sp-2);
  color: var(--hd-cream);
}
.hd-footer__hours {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--hd-cream);
  line-height: 1.7;
}
.hd-footer__bottom {
  max-width: var(--container-wide);
  margin: var(--sp-7) auto 0;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(250, 246, 237, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(250, 246, 237, 0.8);
}
.hd-footer__socials {
  display: flex; gap: var(--sp-3);
}
.hd-footer__socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(250, 246, 237, 0.3);
  border-radius: var(--radius-full);
  text-decoration: none;
}
@media (max-width: 1023px) {
  .hd-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .hd-footer__grid { grid-template-columns: 1fr; }
  .hd-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.hd-faq { display: flex; flex-direction: column; gap: 0; }
.hd-faq__item {
  border-bottom: var(--bw-hair) solid var(--border-hair);
}
.hd-faq__item:first-child { border-top: var(--bw-hair) solid var(--border-hair); }
.hd-faq__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--hd-forest);
  min-height: var(--hit-min);
}
.hd-faq__summary::-webkit-details-marker { display: none; }
.hd-faq__chev {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--hd-forest);
  transition: transform var(--dur-med) var(--ease-default);
}
.hd-faq__item[open] .hd-faq__chev { transform: rotate(180deg); }
.hd-faq__item[open] .hd-faq__summary { color: var(--hd-green); }
.hd-faq__body {
  padding: 0 0 var(--sp-5);
  color: var(--fg-2);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  max-width: 72ch;
}

/* ==========================================================================
   Dutchie iframe wrapper
   ========================================================================== */
.hd-dutchie {
  background: var(--hd-cream);
  border: var(--bw-hair) solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.hd-dutchie__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
}
.hd-dutchie__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--hd-forest);
  margin: 0;
}
.hd-dutchie__meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hd-dutchie__frame {
  background: var(--hd-white);
  border: var(--bw-hair) solid var(--border-hair);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
}
.hd-dutchie__cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Age-gate modal
   ========================================================================== */
.hd-agegate {
  position: fixed;
  inset: 0;
  background: var(--hd-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  z-index: 9999;
}
.hd-agegate[hidden] { display: none; }
.hd-agegate__inner {
  width: 100%;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.hd-agegate__shield { width: 160px; height: 160px; }
.hd-agegate__q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--hd-forest);
  margin: 0;
}
.hd-agegate__sub {
  font-size: var(--fs-md);
  color: var(--fg-2);
  max-width: 40ch;
  margin: 0;
}
.hd-agegate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  max-width: 320px;
}
.hd-agegate__fine {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   Stat box
   ========================================================================== */
.hd-stat {
  background: var(--hd-cream);
  border: var(--bw-hair) solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.hd-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-5xl);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--hd-forest);
}
.hd-stat__cap {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--hd-ink);
  line-height: var(--lh-snug);
}
.hd-stat__sub {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   Mobile refinements (added 2026-04-24, post-launch QA pass)
   These use body-prefix specificity (0,0,1,1) to win over
   per-page <style> declarations (0,0,1,0) without !important.
   ============================================================ */
@media (max-width: 767px) {
  /* Section padding: trim from sp-11 (96px) to sp-9 (64px) */
  body .section,
  body .photos,
  body .locations,
  body .values,
  body .scr,
  body .story,
  body .why,
  body .menu,
  body .legal-toc,
  body .faq__index,
  body .faq__cats {
    padding-top: var(--sp-9);
    padding-bottom: var(--sp-9);
  }
  /* Hero: tighter at mobile, less than 100vh dominance */
  body .hero {
    min-height: auto;
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-8);
  }
  /* All CTA row containers stack to column at phone widths.
     Defense in depth - also covers .actions__row, .visit__ctas, .closer__ctas,
     .scr__inner, .scr__wrap, .hero__cta-row in addition to .hero__ctas. */
  body .hero__ctas,
  body .hero__cta-row,
  body .actions__row,
  body .visit__ctas,
  body .closer__ctas,
  body .scr__inner > .scr__cta,
  body .scr__wrap > .scr__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  body .hero__ctas .hd-btn,
  body .hero__cta-row .hd-btn,
  body .actions__row .hd-btn,
  body .visit__ctas .hd-btn,
  body .closer__ctas .hd-btn,
  body .scr__inner > .hd-btn,
  body .scr__wrap > .hd-btn,
  body .scr__cta .hd-btn {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }
  /* Generic 4-up tile grids drop to 2-up on phones (not 1-up).
     !important wins over per-page @media rules that set 1fr at <=639px. */
  body .values__grid,
  body .why__grid,
  body .gmp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--sp-3);
  }
  /* Compact location cards */
  body .loc-card {
    padding: var(--sp-5);
  }
  body .loc-card__shield {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 480px) {
  /* At smallest sizes, value tiles can keep 2-up but tighter */
  body .values__grid,
  body .why__grid,
  body .gmp__grid {
    gap: 8px;
  }
}

/* ============================================================================
   GDP TIER 2 BRAND ELEVATION - appended 2026-04-27
   New global components: editorial typography defaults, mile-marker dividers,
   trust strip, founder note, weather strip, custom 404 styles, age-gate panel,
   letter-reveal animation, hover-lift links.
   ============================================================================ */

/* ---- Editorial typography defaults (Fraunces variable) ---- */
.editorial {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 50, "WONK" 0;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.editorial--display {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 700, "SOFT" 0, "WONK" 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
}

/* Override hero__h1 + section__title to use Fraunces with optical sizing. */
.hero__h1,
.section__title,
.h2.editorial,
.origin__pull,
.locheader__title,
.tl-item__title,
.story__title {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 96, "wght" 600;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.hero__h1 {
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

/* ---- Letter-reveal animation on hero h1 (first paint, prefers-reduced-motion respected) ---- */
@media (prefers-reduced-motion: no-preference) {
  .hero__h1 .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: reveal-word 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .hero__h1 .reveal-word:nth-child(1) { animation-delay: 0ms; }
  .hero__h1 .reveal-word:nth-child(2) { animation-delay: 90ms; }
  .hero__h1 .reveal-word:nth-child(3) { animation-delay: 180ms; }
  .hero__h1 .reveal-word:nth-child(4) { animation-delay: 270ms; }
  .hero__h1 .reveal-word:nth-child(5) { animation-delay: 360ms; }
  .hero__h1 .reveal-word:nth-child(6) { animation-delay: 450ms; }
}
@keyframes reveal-word {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Hover-lift + underline-draw on link rows (Aesop language) ---- */
@media (hover: hover) {
  .lift-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .lift-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transition: right 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .lift-link:hover {
    transform: translateY(-1px);
  }
  .lift-link:hover::after {
    right: 0;
  }
  .lift-link:focus-visible {
    outline: 2px solid var(--hd-forest);
    outline-offset: 4px;
    border-radius: 2px;
  }
}

/* ---- Mile-marker SVG section divider (HW-shield-as-divider) ---- */
.mile-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-7) var(--sp-5);
  margin: 0;
  border: 0;
}
.mile-marker__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hd-forest) 50%, transparent 100%);
  opacity: 0.35;
  max-width: 220px;
}
.mile-marker__shield {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mile-marker__shield svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mile-marker__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--hd-forest);
  opacity: 0.7;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .mile-marker__line { max-width: 80px; }
  .mile-marker__label { display: none; }
  .mile-marker__shield { width: 44px; height: 44px; }
}

/* ---- Place-bound trust strip ---- */
.trust-strip {
  background: var(--hd-cream-2);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding: var(--sp-5) var(--sp-5);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--hd-forest);
}
.trust-strip__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3) var(--sp-5);
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.trust-strip__sep {
  color: var(--hd-gold);
  font-weight: 800;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .trust-strip { padding: var(--sp-4) var(--sp-3); font-size: 11px; letter-spacing: 0.05em; }
  .trust-strip__inner { gap: 8px var(--sp-3); }
}

/* ---- Founder note (signed handwritten) ---- */
.founder-note {
  background: var(--hd-cream);
  padding: var(--sp-11) var(--sp-5);
}
.founder-note__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  align-items: stretch;
}
.founder-note__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hd-forest);
  box-shadow: var(--shadow-2);
  background: var(--hd-cream-2);
}
.founder-note__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 817 / 401;
  object-fit: cover;
  display: block;
}
.founder-note__copy {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 36, "wght" 400;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--hd-ink);
  text-wrap: pretty;
}
.founder-note__copy p { margin: 0 0 var(--sp-4); }
.founder-note__sig {
  margin-top: var(--sp-5);
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 12, "wght" 500, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--hd-forest);
}
.founder-note__signature-svg {
  display: block;
  margin-top: var(--sp-2);
  width: 180px;
  height: auto;
  color: var(--hd-forest);
}

/* ---- Weather strip (sunrise + temp at top of header) ---- */
.weather-strip {
  background: var(--hd-forest);
  color: var(--hd-cream);
  padding: 6px var(--sp-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}
.weather-strip__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3);
}
.weather-strip__sep {
  color: var(--hd-gold);
  opacity: 0.6;
}
.weather-strip__loading {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .weather-strip { font-size: 11px; padding: 4px var(--sp-3); letter-spacing: 0.02em; }
  .weather-strip__inner { gap: var(--sp-2); }
}

/* ---- Custom 404 / wrong-turn aesthetic ---- */
.wrong-turn {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-11) var(--sp-5);
  text-align: center;
  background: var(--hd-cream);
}
.wrong-turn__shield {
  width: 180px;
  height: 180px;
  margin-bottom: var(--sp-6);
}
.wrong-turn__h1 {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 700;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--hd-forest);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
.wrong-turn__sub {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 var(--sp-6);
  max-width: 56ch;
}
.wrong-turn__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--hd-forest);
  text-decoration: none;
  border: 2px solid var(--hd-forest);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  transition: background 180ms ease, color 180ms ease;
}
.wrong-turn__cta:hover {
  background: var(--hd-forest);
  color: var(--hd-cream);
}

/* ---- Age-gate full-screen branded panel (replaces light modal) ---- */
.age-gate-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--hd-forest);
  color: var(--hd-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
}
.age-gate-fullscreen__shield {
  width: 120px;
  height: 120px;
  margin-bottom: var(--sp-6);
}
.age-gate-fullscreen__h1 {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 600;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-3);
  color: var(--hd-cream);
}
.age-gate-fullscreen__sub {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.5;
  margin: 0 0 var(--sp-7);
  color: color-mix(in srgb, var(--hd-cream) 88%, transparent);
  max-width: 50ch;
}
.age-gate-fullscreen__buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
.age-gate-fullscreen__btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid var(--hd-cream);
  background: transparent;
  color: var(--hd-cream);
  transition: background 180ms ease, color 180ms ease;
  min-width: 200px;
  min-height: 50px;
}
.age-gate-fullscreen__btn--primary {
  background: var(--hd-gold);
  color: var(--hd-ink);
  border-color: var(--hd-gold);
}
.age-gate-fullscreen__btn--primary:hover {
  background: var(--hd-cream);
  border-color: var(--hd-cream);
}
.age-gate-fullscreen__btn--secondary:hover {
  background: var(--hd-cream);
  color: var(--hd-forest);
}
.age-gate-fullscreen__compliance {
  margin-top: var(--sp-7);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--hd-cream) 65%, transparent);
  max-width: 50ch;
}

/* ---- Mobile bottom-anchored nav (3-tab) ---- */
.bottom-tab {
  display: none; /* desktop hidden */
}
@media (max-width: 1023px) {
  .bottom-tab {
    display: grid;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    grid-template-columns: repeat(3, 1fr);
    background: color-mix(in srgb, var(--hd-cream) 96%, transparent);
    backdrop-filter: saturate(1.4) blur(12px);
    -webkit-backdrop-filter: saturate(1.4) blur(12px);
    border-top: 1px solid var(--border-hair);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .bottom-tab__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 10px 6px;
    text-decoration: none;
    color: var(--hd-forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--ls-caps);
    text-transform: uppercase;
    min-height: 56px;
    transition: background 180ms ease;
  }
  .bottom-tab__item:active,
  .bottom-tab__item:focus-visible {
    background: color-mix(in srgb, var(--hd-forest) 8%, transparent);
    outline: none;
  }
  .bottom-tab__icon {
    width: 22px; height: 22px;
    display: block;
  }
  /* Padding so page content doesn't sit under the bottom tab */
  body { padding-bottom: 76px; }
  body.no-bottom-tab { padding-bottom: 0; }
}

/* ---- Sunrise Coast Relief sister-brand register ---- */
body.scr-register {
  background: var(--hd-cream);
}
.scr-section {
  background: linear-gradient(180deg, var(--hd-cream) 0%, color-mix(in srgb, var(--hd-cream) 80%, var(--hd-gold)) 100%);
  padding: var(--sp-11) var(--sp-5);
}
.scr-section .editorial,
.scr-section .h2,
.scr-section .section__title,
.scr-section .hero__h1 {
  color: var(--hd-ink);
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 80;
  letter-spacing: -0.01em;
}
.scr-section p,
.scr-section .scr-body {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 24, "wght" 400;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--hd-ink);
}
.scr-section .hd-btn--primary {
  background: var(--hd-ink);
  color: var(--hd-cream);
}

/* ---- Hand-drawn signature SVG default sizing ---- */
.handsig {
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  height: auto;
  color: var(--hd-forest);
}

/* ---- Editorial hero (full-bleed photo background, single CTA) ---- */
.hero--editorial {
  position: relative;
  min-height: 86vh;
  min-height: 86dvh;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-9) var(--sp-5);
  overflow: hidden;
  background: var(--hd-forest);
}
.hero--editorial__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--editorial__bg picture,
.hero--editorial__bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero--editorial__bg img {
  object-fit: cover;
  object-position: center 35%;
  transition: transform 14s ease-out;
}
.hero--editorial:hover .hero--editorial__bg img {
  transform: scale(1.04);
}
.hero--editorial__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 30, 22, 0.10) 0%,
      rgba(15, 30, 22, 0.05) 35%,
      rgba(15, 30, 22, 0.55) 75%,
      rgba(15, 30, 22, 0.85) 100%
    );
  pointer-events: none;
}
.hero--editorial__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  width: 100%;
  color: var(--hd-cream);
  text-align: left;
  padding: 0 var(--sp-2);
}
.hero--editorial__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hd-gold);
  margin: 0 0 var(--sp-4);
  opacity: 0.95;
}
.hero--editorial__h1 {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 30;
  font-weight: 600;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--hd-cream);
  margin: 0 0 var(--sp-5);
  max-width: 16ch;
  text-wrap: balance;
}
.hero--editorial__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  color: color-mix(in srgb, var(--hd-cream) 88%, transparent);
  margin: 0 0 var(--sp-7);
  max-width: 48ch;
  text-wrap: pretty;
}
.hero--editorial__cta {
  background: var(--hd-gold);
  color: var(--hd-ink);
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 18px 32px;
  font-size: var(--fs-md);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
  box-shadow: 0 4px 14px rgba(10, 30, 18, 0.25);
}
.hero--editorial__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 30, 18, 0.35);
  background: color-mix(in srgb, var(--hd-gold) 92%, white);
}
.hero--editorial__cta .hd-btn-ico {
  width: 18px;
  height: 18px;
  animation: cta-down 1.6s ease-in-out infinite;
}
@keyframes cta-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
@media (max-width: 768px) {
  .hero--editorial { min-height: 78vh; min-height: 78dvh; padding: var(--sp-7) var(--sp-4); }
  .hero--editorial__h1 { font-size: clamp(44px, 13vw, 84px); max-width: 14ch; }
  .hero--editorial__sub { font-size: 17px; }
  .hero--editorial__cta { width: 100%; max-width: 320px; justify-content: center; }
}

/* ---- Location-page cinematic NB2 hero band ---- */
.loc-cinema {
  position: relative;
  aspect-ratio: 21/9;
  max-width: var(--container-wide);
  margin: 0 auto var(--sp-7);
  overflow: hidden;
  border-bottom: 4px solid var(--hd-gold);
  background: var(--hd-forest);
}
.loc-cinema picture,
.loc-cinema img {
  width: 100%;
  height: 100%;
  display: block;
}
.loc-cinema img {
  object-fit: cover;
  object-position: center 45%;
}
.loc-cinema__caption {
  position: absolute;
  left: var(--sp-5);
  bottom: var(--sp-5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hd-cream);
  text-shadow: 0 2px 8px rgba(10, 30, 18, 0.6);
  background: rgba(15, 30, 22, 0.55);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(2px);
}
@media (max-width: 640px) {
  .loc-cinema { aspect-ratio: 16/9; margin-bottom: var(--sp-5); }
  .loc-cinema__caption { font-size: 11px; left: var(--sp-3); bottom: var(--sp-3); padding: 4px 10px; }
}

/* ---- Contrast fixes for text on dark forest backgrounds (.nearby section) ---- */
.nearby .lede,
.nearby p,
.nearby__head .lede {
  color: color-mix(in srgb, var(--hd-cream) 92%, transparent);
}
.nearby .h2,
.nearby__head .h2,
.nearby .eyebrow {
  color: var(--hd-cream);
}
.nearby .eyebrow {
  color: var(--hd-gold);
}

/* ---- Branded Static Maps embed (PNG via /api/staticmap, server-side proxied) ---- */
.gmap-embed {
  margin: var(--sp-7) auto;
  max-width: var(--container-wide);
  padding: 0 var(--sp-5);
}
.gmap-embed__link {
  display: block;
  border: 2px solid var(--hd-forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--hd-cream-2);
  box-shadow: var(--shadow-2);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
  position: relative;
}
.gmap-embed__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}
.gmap-embed__link::after {
  content: "Open in Google Maps \2192";
  position: absolute;
  right: var(--sp-3);
  top: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-cream);
  background: var(--hd-forest);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.gmap-embed__link:hover::after,
.gmap-embed__link:focus-visible::after {
  opacity: 1;
}
.gmap-embed__static {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.gmap-embed__caption {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--hd-forest);
  text-align: center;
  opacity: 0.85;
}
.gmap-embed__caption a {
  color: var(--hd-gold-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.gmap-embed__caption a:hover { color: var(--hd-forest); }
@media (max-width: 640px) {
  .gmap-embed { padding: 0 var(--sp-3); margin: var(--sp-5) auto; }
  .gmap-embed__static { aspect-ratio: 2 / 1; }
}

/* ---- Open-now hours pill (data-driven) ---- */
.open-dot[data-status="open"] { color: var(--hd-green-ink); }
.open-dot[data-status="open"]::before { background: var(--hd-green); box-shadow: 0 0 0 3px rgba(0,166,82,0.2); }
.open-dot[data-status="closed"] { color: #b04030; }
.open-dot[data-status="closed"]::before { background: #b04030; box-shadow: 0 0 0 3px rgba(176,64,48,0.2); }
.open-dot[data-status="loading"] { color: var(--fg-3); opacity: 0.6; }
.open-dot[data-status="loading"]::before { background: var(--fg-3); box-shadow: none; }

/* ---- ZIP routing widget (on home + locations index) ---- */
.zipfind {
  background: var(--hd-cream-2);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding: var(--sp-9) var(--sp-5);
}
.zipfind__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.zipfind__h {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 96, "wght" 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hd-forest);
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
.zipfind__sub {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 var(--sp-5);
}
.zipfind__form {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}
.zipfind__input {
  flex: 1 1 200px;
  min-height: 48px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: var(--fg-1);
  background: var(--hd-white);
  border: 2px solid var(--hd-forest);
  border-radius: var(--radius-md);
  text-align: center;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.zipfind__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hd-forest) 25%, transparent);
}
.zipfind__btn {
  min-height: 48px;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 22px;
  font-size: var(--fs-md);
  background: var(--hd-forest);
  color: var(--hd-cream);
  border: 2px solid var(--hd-forest);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 180ms ease;
}
.zipfind__btn:hover { background: var(--hd-ink); }
.zipfind__btn[data-loading="true"] { opacity: 0.7; cursor: progress; }
.zipfind__results {
  margin-top: var(--sp-6);
  display: none;
  text-align: left;
}
.zipfind__results[data-state="ok"],
.zipfind__results[data-state="error"] { display: block; }
.zipfind__row {
  background: var(--hd-white);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-3);
}
.zipfind__row[data-closer="true"] {
  border-color: var(--hd-gold);
  background: color-mix(in srgb, var(--hd-cream) 80%, var(--hd-gold));
}
.zipfind__row__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--hd-forest);
  margin: 0;
}
.zipfind__row__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-2);
  margin: 2px 0 0;
}
.zipfind__row__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hd-forest);
  text-decoration: none;
  border: 2px solid var(--hd-forest);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.zipfind__row__cta:hover {
  background: var(--hd-forest);
  color: var(--hd-cream);
}
.zipfind__error {
  color: #b04030;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  margin: var(--sp-3) 0 0;
}
@media (max-width: 480px) {
  .zipfind { padding: var(--sp-7) var(--sp-4); }
  .zipfind__form { gap: var(--sp-2); }
  .zipfind__btn { width: 100%; }
}

/* ---- Lead form ZIP hint (set by hours-and-routing.js after submit) ---- */
.leadcap__zip-hint {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--hd-forest);
  font-weight: 600;
  min-height: 18px;
  padding-top: 14px;
}

/* ---- Editorial split hero (text-left + framed-photo-right) ---- */
/* Replaces the full-bleed editorial hero with a more honest treatment that
   doesn't pixel-stretch a 820x393 source. Photo presented at native aspect
   in a properly framed slot, alongside big editorial type. */
.hero--split {
  background: var(--hd-cream);
  padding: clamp(40px, 6vw, 88px) var(--sp-5);
  border-bottom: 1px solid var(--border-hair);
}
.hero--split__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero--split__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
}
.hero--split__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.hero--split__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hd-gold-ink);
  margin: 0;
}
.hero--split__h1 {
  font-family: var(--font-editorial);
  font-variation-settings: "opsz" 144, "wght" 600, "SOFT" 30;
  font-weight: 600;
  font-size: clamp(48px, 7.5vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--hd-forest);
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.hero--split__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--fg-1);
  margin: 0;
  max-width: 44ch;
  text-wrap: pretty;
}
.hero--split__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-2);
}
.hero--split__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--hd-forest);
  color: var(--hd-cream);
  border-color: var(--hd-forest);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  font-size: var(--fs-md);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero--split__cta:hover {
  background: var(--hd-ink);
  transform: translateY(-1px);
}
.hero--split__cta .hd-btn-ico {
  width: 18px; height: 18px;
  animation: cta-down 1.6s ease-in-out infinite;
}
.hero--split__shoplink {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--hd-forest);
  text-decoration: none;
}
.hero--split__photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hero--split__photo picture {
  display: block;
  border: 1px solid var(--hd-forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--hd-cream-2);
  box-shadow: var(--shadow-2);
}
.hero--split__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 820 / 393;
  display: block;
  object-fit: cover;
}
.hero--split__caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hd-forest);
  opacity: 0.7;
  text-align: right;
}
@media (max-width: 640px) {
  .hero--split__ctas { flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .hero--split__cta { justify-content: center; width: 100%; }
  .hero--split__shoplink { text-align: center; padding-top: 6px; }
  .hero--split__caption { text-align: left; }
}
