:root{
  --accent:#CC8A2E;
  --dark:#262422;
  --light:#F7F3EC;
  --font:'Source Serif 4',system-ui,sans-serif;
  --radius:2px;
  --heading-transform:none;
  --heading-spacing:normal;
}
/* pipeline typographic safety */
img,svg,video,canvas{max-width:100%;height:auto;}
h1,h2,h3,h4,h5,h6,.footer-mark,.footer-wordmark,.footer-brand{text-wrap:balance;overflow-wrap:break-word;}
p,li,blockquote,figcaption,dd,dt{text-wrap:pretty;}
body{overflow-wrap:break-word;}
a,cite,code,.label{overflow-wrap:anywhere;}
main :where(section,article,div,ul,ol,li){min-width:0;}
/* Bold Slab — a punchy storefront system for shops and boutiques.
   Palette, font and corner radius arrive as CSS custom properties injected at
   render time (:root block prepended above this file). Everything here is
   static and palette-agnostic.

   Signature moves: a full-bleed --accent hero carrying a marker-highlighted
   slab headline, a heavy tracked-uppercase LABEL ROLE (the storefront signage
   voice), full-width TINTED service bands, and chunky OFFSET-SHADOW cards.

   Contrast note: the hero is a full-bleed --accent field of unknown lightness
   (retail brand colors run anywhere from safety yellow to deep forest green),
   so hero copy and buttons never derive color from --accent's neighborhood.
   Every hero element rides a fixed, guaranteed-AA --dark or --light chip
   instead of guessing which reads better on top of the accent. */

:root {
  --line: color-mix(in srgb, var(--dark) 16%, transparent);
  --line-strong: color-mix(in srgb, var(--dark) 34%, transparent);
  --band-tint: color-mix(in srgb, var(--accent) 13%, var(--light));
  --proof-tint: color-mix(in srgb, var(--dark) 6%, var(--light));
  --ink-soft: color-mix(in srgb, var(--dark) 62%, var(--light));
  --on-dark: color-mix(in srgb, var(--light) 74%, var(--dark));
  --shadow: 7px 7px 0 var(--dark);
  --shadow-lg: 9px 9px 0 var(--dark);
  --dots: radial-gradient(color-mix(in srgb, var(--dark) 26%, transparent) 2.4px, transparent 2.4px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }

/* ── Type ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.04;
  text-transform: var(--heading-transform);
  letter-spacing: var(--heading-spacing);
  margin: 0;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1; }

/* Heavy tracked-uppercase LABEL ROLE — one consistent signage voice used
   everywhere small text appears: eyebrow, nav, section labels, the service
   index, stat units, review bylines, footer column heads and legal line. */
.eyebrow, .nav-links a, .section-label, .service-index, .stat-label,
.trust-ticker .chip, .trust-stat .unit, .review-card cite, .about-badge,
.footer-col h4, .footer-legal {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before { content: ""; width: 22px; height: 3px; background: var(--accent); }

/* Guaranteed-contrast chip system: never derived from --accent. */
.chip {
  display: inline-block;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 6px 13px;
  border-radius: var(--radius);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 3px solid transparent;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn-lg { min-height: 56px; padding: 17px 34px; font-size: 0.92rem; }
.btn-accent { background: var(--accent); color: var(--light); border-color: var(--accent); }
.btn-accent:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--accent) 84%, black); }
.btn-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn-ghost:hover { transform: translateY(-2px); background: color-mix(in srgb, currentColor 12%, transparent); }
:where(a, button):focus-visible { outline: 3px solid var(--dark); outline-offset: 3px; }

/* Hero buttons ride the unpredictable accent field, so they take fixed
   dark/light chip treatments with a hard offset shadow (storefront signage). */
.hero .btn-accent { background: var(--dark); color: var(--light); border-color: var(--dark); box-shadow: 5px 5px 0 color-mix(in srgb, var(--dark) 55%, black); }
.hero .btn-accent:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 color-mix(in srgb, var(--dark) 55%, black); background: var(--dark); }
.hero .btn-ghost { background: var(--light); color: var(--dark); border-color: var(--dark); box-shadow: 5px 5px 0 var(--dark); }
.hero .btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--dark); background: var(--light); }

/* ── Header / nav ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 42px; /* the publisher pins a 42px banner above the page */
  z-index: 900;
  background: var(--light);
  border-bottom: 3px solid var(--dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.wordmark { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.02em; text-transform: uppercase; text-decoration: none; }
.nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 0.76rem; padding: 6px 0; transition: color 160ms ease; }
.nav-links a:hover { color: var(--accent); }
.nav-cta-li a { color: var(--light); letter-spacing: 0.06em; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; width: 24px; background: var(--dark); transition: transform 200ms ease, opacity 200ms ease; }

section { scroll-margin-top: 128px; } /* banner + sticky header */

/* ── Hero (full-bleed accent field, poster composition) ───────────── */
.hero { background: var(--accent); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--dots);
  background-size: 26px 26px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(125% 120% at 100% 0%, #000 30%, transparent 72%);
  mask-image: radial-gradient(125% 120% at 100% 0%, #000 30%, transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; right: -8%; top: -34%;
  width: 54%; height: 150%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--dark) 18%, transparent), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: block; padding: clamp(58px, 9vw, 116px) 0 clamp(52px, 7vw, 92px); }
.hero--split .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 68px); align-items: center; }
.hero-copy { max-width: 940px; }
.hero--split .hero-copy { max-width: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 0.74rem;
  background: var(--dark);
  color: var(--light);
  padding: 8px 14px;
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; background: var(--accent); flex: 0 0 auto; }

/* Marker-highlight headline: each visual line rides its own solid --dark chip
   so the type reads as painted "on" the accent field with fixed contrast. */
.hero-title {
  display: inline;
  font-size: clamp(2.3rem, 6.4vw, 4.6rem);
  background: var(--dark);
  color: var(--light);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.09em 0.26em;
  line-height: 1.46;
  max-width: 15ch;
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 3px solid color-mix(in srgb, var(--dark) 34%, transparent);
}
.hero--split .hero-foot { flex-direction: column; align-items: flex-start; }
.hero-subline {
  display: inline-block;
  max-width: 40ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 600;
  background: var(--light);
  color: var(--dark);
  padding: 0.5em 0.72em;
  margin: 0;
  line-height: 1.5;
  box-shadow: 5px 5px 0 var(--dark);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; flex: 0 0 auto; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; border: 4px solid var(--dark); box-shadow: var(--shadow-lg); }

/* ── Trust (a ticker of tags — distinct from the proof band) ──────── */
.trust { padding: clamp(26px, 3.4vw, 38px) 0; background: var(--light); border-bottom: 3px solid var(--dark); }
.trust-ticker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin: 0; }
.trust-ticker .chip { background: var(--light); color: var(--dark); border: 2px solid var(--dark); }
.trust-stats { display: flex; flex-wrap: wrap; gap: 22px 52px; }
.trust-stat { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 800; line-height: 1; }
.trust-proof {
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 30ch;
  margin: 0;
  text-transform: var(--heading-transform);
  letter-spacing: var(--heading-spacing);
}
.trust-proof::after { content: ""; display: block; width: 72px; height: 6px; background: var(--accent); margin-top: 20px; }
.trust-checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px 30px; list-style: none; margin: 0; padding: 0; }
.trust-checklist li { position: relative; padding-left: 34px; font-weight: 700; min-height: 24px; display: flex; align-items: center; }
.trust-checklist li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: var(--accent); border: 2px solid var(--dark); border-radius: 4px; }
.trust-checklist li::after { content: ""; position: absolute; left: 6px; top: 50%; margin-top: -3px; width: 10px; height: 6px; border-left: 3px solid var(--dark); border-bottom: 3px solid var(--dark); transform: rotate(-45deg); }

/* ── Services (full-width tinted bands — no card grid) ────────────── */
.services { padding: clamp(60px, 8vw, 104px) 0 0; }
.services-head { margin-bottom: clamp(28px, 3.6vw, 44px); }
.service-bands { border-top: 3px solid var(--dark); }
.service-band { width: 100%; border-bottom: 3px solid var(--dark); transition: background-color 200ms ease; }
.service-band:nth-child(even) { background: var(--band-tint); }
.service-band:hover { background: color-mix(in srgb, var(--accent) 22%, var(--light)); }
.service-band-inner { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 44px; padding: clamp(22px, 2.8vw, 32px) 0; }
.service-name-wrap { display: flex; align-items: baseline; gap: 16px; }
.service-index { font-size: 0.82rem; color: var(--accent); align-self: flex-start; padding-top: 0.5em; }
.service-name { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.service-descriptor { margin: 0; max-width: 46ch; color: var(--ink-soft); }

/* ── Events (chunky offset-shadow cards, tinted band — In-Store calendar) ── */
.events { padding: clamp(60px, 8vw, 104px) 0; background: var(--band-tint); border-top: 3px solid var(--dark); border-bottom: 3px solid var(--dark); }
.events-head { margin-bottom: clamp(28px, 3.6vw, 44px); }
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.event-card { display: flex; flex-direction: column; gap: 14px; background: var(--light); border: 3px solid var(--dark); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.event-when { align-self: flex-start; background: var(--accent); color: var(--light); }
.event-title { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.event-note { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.5; }

/* ── Hours & find us (tag-chip day labels, offset card) ────────────── */
.hours { padding: clamp(60px, 8vw, 104px) 0; background: var(--light); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.hours-address { margin: 18px 0 6px; font-size: 1.1rem; font-weight: 800; }
.hours-note { margin: 0; color: var(--ink-soft); max-width: 36ch; }
.hours-rows { list-style: none; margin: 0; padding: 24px; display: grid; gap: 14px; background: var(--light); border: 3px solid var(--dark); border-radius: var(--radius); box-shadow: var(--shadow); }
.hours-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { background: var(--light); color: var(--dark); border: 2px solid var(--dark); }
.hours-time { font-weight: 800; }
@media (max-width: 640px) { .hours-inner { grid-template-columns: 1fr; } }

/* ── Proof (chunky offset-shadow cards — the template signature) ──── */
.proof { padding: clamp(60px, 8vw, 104px) 0; background: var(--proof-tint); border-top: 3px solid var(--dark); }
.proof-title { margin-bottom: clamp(30px, 4vw, 48px); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat-block { background: var(--light); border: 3px solid var(--dark); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); }
.stat-value { display: block; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { display: block; margin-top: 10px; font-size: 0.74rem; color: var(--ink-soft); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.review-card { margin: 0; background: var(--light); border: 3px solid var(--dark); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.review-card p { margin: 0 0 18px; font-size: 1.06rem; font-weight: 600; line-height: 1.45; }
.review-card cite { font-style: normal; font-size: 0.74rem; color: var(--accent); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.photo-frame { background: var(--light); border: 3px solid var(--dark); border-radius: var(--radius); padding: 9px; box-shadow: var(--shadow); }
.photo-frame img { border-radius: calc(var(--radius) - 3px); aspect-ratio: 4 / 3; object-fit: cover; }

/* ── About (editorial lead + offset badge) ───────────────────────── */
.about { padding: clamp(60px, 8vw, 104px) 0; }
.about-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-body { font-size: clamp(1.1rem, 1.7vw, 1.3rem); font-weight: 500; max-width: 46ch; margin: 18px 0 0; line-height: 1.45; }
.about-badge {
  justify-self: end;
  background: var(--dark);
  color: var(--light);
  padding: 22px 26px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--accent);
}

/* ── Final CTA (reserved dark moment, asymmetric) ─────────────────── */
.final-cta { background: var(--dark); color: var(--light); padding: clamp(64px, 9vw, 116px) 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(color-mix(in srgb, var(--light) 16%, transparent) 2.4px, transparent 2.4px);
  background-size: 26px 26px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(80% 130% at 8% 100%, #000, transparent 66%);
  mask-image: radial-gradient(80% 130% at 8% 100%, #000, transparent 66%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "title buttons" "text buttons"; column-gap: clamp(32px, 5vw, 72px); align-items: end; }
.final-title { grid-area: title; font-size: clamp(2rem, 4.8vw, 3.4rem); max-width: 18ch; }
.final-sentence { grid-area: text; margin: 18px 0 0; max-width: 46ch; font-size: 1.12rem; color: var(--on-dark); }
.final-buttons { grid-area: buttons; align-self: end; display: flex; flex-wrap: wrap; gap: 14px; }
.final-cta .btn-accent { background: var(--accent); color: var(--light); border-color: var(--accent); }
.final-cta .btn-ghost { color: var(--light); border-color: color-mix(in srgb, var(--light) 40%, transparent); }
.final-cta .btn-ghost:hover { border-color: var(--light); }

/* ── Footer (big slab wordmark — bookends the hero) ───────────────── */
.site-footer { background: color-mix(in srgb, var(--dark) 94%, black); color: var(--light); padding: clamp(56px, 7vw, 88px) 0 28px; overflow: hidden; }
.footer-wordmark { font-size: clamp(2.6rem, 12vw, 7.5rem); font-weight: 800; line-height: 0.9; text-transform: uppercase; letter-spacing: -0.01em; color: color-mix(in srgb, var(--light) 92%, var(--dark)); word-break: break-word; }
.footer-tagline { margin: 20px 0 clamp(36px, 5vw, 56px); max-width: 40ch; color: var(--on-dark); font-size: 0.98rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: clamp(28px, 4vw, 44px); border-top: 1px solid color-mix(in srgb, var(--light) 16%, transparent); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 15px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { text-decoration: none; color: var(--on-dark); font-size: 0.95rem; transition: color 160ms ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { color: var(--on-dark); font-size: 0.95rem; }
.footer-legal { margin-top: clamp(34px, 4vw, 48px); padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--light) 12%, transparent); font-size: 0.72rem; letter-spacing: 0.1em; color: color-mix(in srgb, var(--light) 52%, var(--dark)); }

/* ── Reveal + orchestrated page-load (hidden state added by JS only) ─ */
.reveal-init { opacity: 0; transform: translateY(14px); }
.reveal-in { opacity: 1; transform: none; transition: opacity 600ms ease, transform 600ms ease; }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: pop 0.6s cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
  .hero-media { animation: pop 0.7s cubic-bezier(.2,.7,.2,1) 0.2s both; }
}
@keyframes pop { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero--split .hero-inner { grid-template-columns: 1fr; }
  .hero--split .hero-media { order: -1; max-width: 460px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { justify-self: start; }
  .final-inner { grid-template-columns: 1fr; grid-template-areas: "title" "text" "buttons"; }
  .final-buttons { margin-top: 30px; }
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--light);
    border-bottom: 3px solid var(--dark);
    padding: 8px 24px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 6px 0; }
  .nav-links a { display: block; padding: 12px 0; min-height: 44px; }
  .nav-cta-li a { display: inline-flex; margin-top: 8px; }
  .header-inner { position: relative; }

  .hero-foot { flex-direction: column; align-items: flex-start; }
  .service-band-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .final-buttons .btn { width: 100%; }
  .hero-subline { display: block; }
}
