/* ============================================================
   SmartShade — base design system
   Mobile-first. Tokens → reset → layout → components.
   Theme files (theme-a/b/c.css) override tokens only.
   ============================================================ */

:root {
  /* brand */
  --ink:          #141414;
  --ink-soft:     #2A2724;
  --ochre:        #C7871D;
  --ochre-deep:   #8A5B10;
  --ochre-tint:   #F5E6CB;
  --cocoa:        #6F5146;
  --cocoa-dark:   #5A4336;

  /* neutrals */
  --white:        #FFFFFF;
  --sand:         #FAF6F0;
  --linen:        #F0E9DE;
  --line:         #E2D9CC;
  --muted:        #6E635D;
  --body:         #4A423E;

  /* semantic */
  --bg:           var(--white);
  --bg-alt:       var(--sand);
  --fg:           var(--ink);
  --accent:       var(--ochre);
  --accent-ink:   var(--ink);

  /* type */
  --font-display: "Ibarra Real Nova", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fs-hero:      clamp(2.1rem, 7.2vw, 4.4rem);
  --fs-h2:        clamp(1.65rem, 5vw, 2.75rem);
  --fs-h3:        clamp(1.15rem, 3.4vw, 1.5rem);
  --fs-body:      clamp(1rem, 2.9vw, 1.0625rem);
  --fs-small:     0.875rem;
  --fs-eyebrow:   0.75rem;

  /* space */
  --gap:          clamp(1rem, 3.5vw, 1.5rem);
  --section-y:    clamp(3.25rem, 9vw, 6.5rem);
  --radius:       4px;
  --radius-lg:    10px;
  --shadow:       0 1px 2px rgba(20,20,20,.05), 0 8px 28px rgba(20,20,20,.07);
  --shadow-lg:    0 24px 60px rgba(20,20,20,.14);
  --maxw:         1220px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fg);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p  { margin: 0 0 1em; }
a  { color: inherit; }
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.15rem; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 600; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4.5vw, 2.5rem); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: #C9C2BC; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin: 0 0 .9rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--ochre); flex: none; }
.section--ink .eyebrow { color: var(--ochre); }
.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 5vw, 3rem); }
.section-head p { font-size: clamp(1rem, 3vw, 1.125rem); color: var(--muted); margin-bottom: 0; }
.section--ink .section-head p { color: #A9A19B; }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); }
                             .grid--4 { grid-template-columns: repeat(4, 1fr); }
                             .grid--2-lg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) and (max-width: 899px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .85rem 1.6rem;
  font-family: var(--font-sans); font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; border: 1.5px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ochre); color: #1A1206; border-color: var(--ochre); }
.btn--primary:hover { background: var(--ochre-deep); border-color: var(--ochre-deep); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--cocoa-dark); border-color: var(--cocoa-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(20,20,20,.04); }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--on-dark:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--wide { width: 100%; }
@media (min-width: 560px) { .btn--wide { width: auto; } }
.btn-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 560px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9375rem; color: var(--ink);
  text-decoration: none; border-bottom: 1.5px solid var(--ochre); padding-bottom: 2px;
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  display: none;
  background: var(--ink); color: #BBB2AB;
  font-size: .8125rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--ochre); }
@media (min-width: 900px) { .topbar { display: block; } }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.brand__mark { width: 40px; color: var(--ink); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.05rem, 3.7vw, 1.3rem);
  letter-spacing: .14em; color: var(--ink); white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--ochre-deep); }
.brand__tag {
  font-size: .5625rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem; white-space: nowrap;
}
@media (min-width: 480px) { .brand__tag { font-size: .625rem; } }

.nav__links { display: none; }
@media (min-width: 1120px) {
  .nav__links { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.7rem); }
  .nav__links a {
    font-size: .9375rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
    padding: .4rem 0; border-bottom: 2px solid transparent; white-space: nowrap;
  }
  .nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ochre); }
}
.nav__cta { display: none; }
@media (min-width: 1120px) { .nav__cta { display: inline-flex; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer; flex: none;
}
@media (min-width: 1120px) { .burger { display: none; } }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100dvh - 70px);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 1120px) { .mobile-menu, .mobile-menu.is-open { display: none; } }
.mobile-menu ul { list-style: none; margin: 0; padding: .5rem 0 1rem; }
.mobile-menu li { margin: 0; }
.mobile-menu a {
  display: block; padding: .95rem .25rem; min-height: 48px;
  font-size: 1.0625rem; font-weight: 500; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--linen);
}
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- photo placeholder ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(180deg, rgba(20,20,20,.045) 0 1px, transparent 1px 13px),
    linear-gradient(150deg, var(--linen) 0%, var(--ochre-tint) 55%, #E6D9C4 100%);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  aspect-ratio: 4 / 3;
}
.ph--tall   { aspect-ratio: 3 / 4; }
.ph--wide   { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--hero   { aspect-ratio: 4 / 5; }
@media (min-width: 900px) { .ph--hero { aspect-ratio: 5 / 6; } }
.ph::before {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 34%;
  background: linear-gradient(to top, rgba(20,20,20,.42), transparent);
}
.ph__label {
  position: relative; z-index: 1;
  margin: 0; padding: .8rem 1rem;
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: #fff;
}
.ph__badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 1;
  background: rgba(20,20,20,.78); color: #fff;
  font-size: .5625rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: .3rem .55rem; border-radius: 2px;
}

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--ochre); }
.card__body { padding: clamp(1.1rem, 3.5vw, 1.5rem); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { color: var(--muted); font-size: .9375rem; margin-bottom: 1.1rem; }
.card__body .link-arrow { margin-top: auto; align-self: flex-start; }
.card__meta {
  display: flex; flex-wrap: wrap; gap: .35rem; margin: 0 0 1rem; padding: 0; list-style: none;
}
.card__meta li {
  margin: 0; font-size: .75rem; font-weight: 500; color: var(--cocoa);
  background: var(--sand); border: 1px solid var(--line); border-radius: 100px; padding: .2rem .6rem;
}

/* ---------- feature list ---------- */
.feature { display: flex; gap: .9rem; }
.feature__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ochre-tint); color: var(--ochre-deep);
  border: 1px solid var(--ochre);
}
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin-bottom: .3rem; letter-spacing: 0; }
.feature p { font-size: .9375rem; color: var(--muted); margin: 0; }
.section--ink .feature__icon { background: rgba(199,135,29,.16); border-color: rgba(199,135,29,.5); color: var(--ochre); }
.section--ink .feature p { color: #A9A19B; }

/* ---------- steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 1.4rem; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -.05rem; left: 0; transform: translateY(-50%);
  background: var(--bg); padding-right: .6rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ochre);
}
.section--alt .step::before { background: var(--bg-alt); }
.step h3 { font-family: var(--font-sans); font-size: 1.0625rem; font-weight: 600; letter-spacing: 0; margin-bottom: .35rem; }
.step p { font-size: .9375rem; color: var(--muted); margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: clamp(1.1rem, 3.5vw, 1.75rem); text-align: center; }
.section--alt .stat { background: var(--bg-alt); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.7rem, 5.5vw, 2.4rem); color: var(--ink); line-height: 1; margin-bottom: .35rem; }
.stat__label { font-size: .8125rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- reviews ---------- */
.review { background: #fff; border: 1px solid var(--line); padding: clamp(1.25rem, 4vw, 1.75rem); display: flex; flex-direction: column; }
.review__stars { color: var(--ochre); letter-spacing: .18em; font-size: .9rem; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.1rem; font-size: 1rem; color: var(--ink-soft); font-style: italic; line-height: 1.6; }
.review__who { margin-top: auto; font-size: .8125rem; color: var(--muted); }
.review__who strong { display: block; color: var(--ink); font-style: normal; font-size: .9375rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--font-sans); font-size: 1.0625rem; font-weight: 600; color: var(--ink); min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--ochre); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1.15rem; color: var(--muted); font-size: .9375rem; max-width: 60ch; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form--2col { grid-template-columns: repeat(2, 1fr); } .form__full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .8125rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.field label .req { color: var(--ochre-deep); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  min-height: 52px; padding: .8rem .9rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ochre); outline: none; box-shadow: 0 0 0 3px rgba(199,135,29,.18); }
.field--check { flex-direction: row; align-items: flex-start; gap: .6rem; }
.field--check input { width: 20px; height: 20px; min-height: 0; flex: none; margin-top: .15rem; accent-color: var(--ochre); }
.field--check label { font-weight: 400; font-size: .8125rem; color: var(--muted); line-height: 1.5; }
.field--check label a { color: var(--ink); }
.form__note { font-size: .75rem; color: var(--muted); margin: 0; }
.form-success {
  display: none; padding: 1rem 1.1rem; border-left: 3px solid var(--ochre);
  background: var(--ochre-tint); color: var(--ink-soft); font-size: .9375rem;
}
.form-success.is-visible { display: block; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #9A928C; font-size: .9375rem; padding-block: clamp(2.5rem, 7vw, 4rem) 0; }
.footer h3 { color: #fff; font-family: var(--font-sans); font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #C4BCB6; text-decoration: none; }
.footer a:hover { color: var(--ochre); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer__grid { display: grid; gap: clamp(1.75rem, 5vw, 2.5rem); }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__mark { color: #fff; }
.footer__brand p { color: #8E8680; font-size: .875rem; max-width: 32ch; margin-top: 1rem; }
.footer__bottom {
  margin-top: clamp(2rem, 6vw, 3rem); padding-block: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex; flex-direction: column; gap: .6rem;
  font-size: .8125rem; color: #7C736E;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 56px; text-decoration: none; font-size: .9375rem; font-weight: 600;
  background: #fff; color: var(--ink);
}
.mobile-cta a + a { background: var(--ochre); color: #1A1206; }
.mobile-cta svg { width: 17px; height: 17px; }
@media (min-width: 1120px) { .mobile-cta { display: none; } }
body { padding-bottom: 56px; }
@media (min-width: 1120px) { body { padding-bottom: 0; } }

/* ---------- notice ribbon (demo disclaimer) ---------- */
.demo-note {
  background: var(--cocoa-dark); color: #F3EBE1;
  font-size: .75rem; letter-spacing: .02em; text-align: center;
  padding: .5rem 1rem;
}
.demo-note strong { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- placeholder data marker ---------- */
.ph-data {
  border-bottom: 1px dashed var(--ochre);
  cursor: help;
}
.section--ink .ph-data { border-bottom-color: var(--ochre); }

/* ---------- hero (concept A) ---------- */
.hero { padding-block: clamp(2rem, 6vw, 4.5rem) clamp(2.5rem, 7vw, 5rem); }
.hero__grid { display: grid; gap: clamp(1.75rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: 1rem; }
.hero__lead { font-size: clamp(1.05rem, 3.2vw, 1.25rem); color: var(--body); max-width: 34ch; margin-bottom: 1.75rem; }
.hero__points { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .6rem; }
.hero__points li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9375rem; color: var(--ink-soft); margin: 0; }
.hero__points svg { width: 18px; height: 18px; flex: none; color: var(--ochre-deep); margin-top: .18rem; }
.hero__media { position: relative; }
.hero__badge {
  position: absolute; bottom: -1px; right: -1px; z-index: 2;
  background: var(--ink); color: #fff; padding: .9rem 1.1rem; max-width: 60%;
}
.hero__badge strong { display: block; color: var(--ochre); font-family: var(--font-display); font-size: 1.35rem; line-height: 1; margin-bottom: .25rem; }
.hero__badge span { font-size: .75rem; letter-spacing: .06em; color: #B7AFA9; }

/* ---------- product spotlight split ---------- */
.split { display: grid; gap: clamp(1.5rem, 5vw, 3.25rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--flip > *:first-child { order: 2; } }
.spec-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.spec-list li { margin: 0; background: var(--ink); padding: .85rem 1rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; }
.spec-list span:first-child { color: #fff; font-weight: 600; }
.spec-list span:last-child { color: #A9A19B; text-align: right; }

/* ---------- filter bar ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.25rem, 4vw, 2rem); }
.filters button {
  font-family: inherit; font-size: .875rem; font-weight: 500; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .55rem 1.05rem; min-height: 44px; cursor: pointer; transition: all .18s ease;
}
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters button:hover { border-color: var(--ochre); }

/* ---------- shop cards ---------- */
.price { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin: 0 0 .2rem; }
.price small { font-family: var(--font-sans); font-size: .75rem; color: var(--muted); font-weight: 500; }
.shop-note { font-size: .8125rem; color: var(--muted); margin-top: 1.25rem; }

/* ---------- service area ---------- */
.zips { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.zips li { margin: 0; font-size: .8125rem; color: var(--cocoa); background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: .35rem .7rem; }
.map-ph {
  aspect-ratio: 16 / 10; border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(199,135,29,.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #F3EEE6, #E6DCCC);
  display: grid; place-items: center; text-align: center; padding: 1.5rem;
}
.map-ph p { font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cocoa); margin: 0; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ochre); color: #1A1206; }
.cta-band h2 { color: #1A1206; }
.cta-band p { color: #3A2A0C; max-width: 46ch; }
.cta-band .btn--dark:hover { background: #000; border-color: #000; }

/* hero badge sits under the image on small screens so it never covers the caption */
@media (max-width: 639px) {
  .hero__badge {
    position: static; max-width: none; width: 100%;
    display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  }
  .hero__badge strong { margin-bottom: 0; }
}

/* ---------- contrast fixes on dark surfaces (WCAG 2.1 AA) ---------- */
.footer .brand__name em { color: var(--ochre); }
.footer .brand__tag { color: #9A928C; }
.footer__brand p { color: #9A928C; }
.footer__bottom { color: #948B85; }
.footer .btn--primary { color: #1A1206; }
.footer .btn--primary:hover { color: #fff; }
.section--ink .eyebrow,
[data-surface="ink"] .eyebrow { color: var(--ochre); }
