/* ==========================================================================
   The Wax Shack Auto Detailing Austin — main stylesheet
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES --------------------------------------------------
     Swap any file in assets/ and update the matching line below.          */
  --img-hero: url("assets/hero-corvette.jpg");
  --img-band-paint: url("assets/services-banner-hood.jpg");
  --img-band-polish: url("assets/polisher-black.jpg");
  /* -------------------------------------------------------------------- */

  --ink:      #0d1116;
  --ink-2:    #161d26;
  --ink-3:    #222c38;
  --paper:    #f4f6f8;
  --paper-2:  #e9eef2;
  --white:    #ffffff;

  --cyan:     #04defe;
  --cyan-deep:#0b8ba8;
  --cyan-ink: #076e86;
  --amber:    #fdb800;
  --amber-2:  #ffc933;

  --text:     #1b232c;
  --text-mut: #55626f;
  --text-inv: #eef4f8;
  --text-inv-mut: #a8b8c6;

  --line:     #dde4ea;
  --line-dark:rgba(255,255,255,.14);

  --ff: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --r: 6px;
  --r-lg: 14px;

  --s1: .5rem; --s2: .75rem; --s3: 1rem; --s4: 1.5rem;
  --s5: 2rem; --s6: 3rem; --s7: 4.5rem; --s8: 6rem;

  --shadow-sm: 0 1px 2px rgba(13,17,22,.06), 0 2px 8px rgba(13,17,22,.05);
  --shadow-md: 0 4px 10px rgba(13,17,22,.07), 0 14px 34px rgba(13,17,22,.09);
  --shadow-lg: 0 10px 24px rgba(13,17,22,.12), 0 30px 70px rgba(13,17,22,.16);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { max-width: 100%; }
img { height: auto; display: block; border: 0; }
a { color: var(--cyan-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { margin: 0 0 var(--s3); line-height: 1.14; letter-spacing: -.015em; font-weight: 800; }
p, ul, ol { margin: 0 0 var(--s3); }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s6) 0; }
strong { font-weight: 700; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--cyan-deep);
  outline-offset: 2px;
  border-radius: 3px;
}
.dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible {
  outline-color: var(--cyan);
}

/* ---------- type scale ---------- */
h1 { font-size: clamp(2.1rem, 1.25rem + 3.4vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.15rem + 1.9vw, 2.4rem); }
h3 { font-size: clamp(1.26rem, 1.1rem + .6vw, 1.42rem); }
h4 { font-size: 1.0625rem; }

.eyebrow {
  display: block;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cyan-ink);
  margin: 0 0 var(--s2);
}
.dark .eyebrow { color: var(--cyan); }
.lede { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); color: var(--text-mut); line-height: 1.6; }
.dark .lede { color: var(--text-inv-mut); }
.measure { max-width: 68ch; }
.center { text-align: center; }
.center .measure { margin-inline: auto; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.wrap--narrow { max-width: 820px; }
section { padding-block: clamp(2.75rem, 6vw, 5.5rem); }
.band-paper { background: var(--paper); }
.band-ink, .dark { background: var(--ink); color: var(--text-inv); }
.dark h1, .dark h2, .dark h3, .dark strong { color: var(--white); }
.dark a { color: var(--cyan); }
.dark a:hover { color: var(--white); }
.section-head { margin-bottom: clamp(1.75rem, 3.5vw, 3rem); }
.section-head p { margin-bottom: 0; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--ink); padding: .7rem 1.1rem; font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 800; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 6px 18px rgba(253,184,0,.28); }
.btn--primary:hover { background: var(--amber-2); color: var(--ink); box-shadow: 0 10px 26px rgba(253,184,0,.38); }
.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.dark .btn--ghost, .site-header .btn--ghost { color: var(--white); }
.dark .btn--ghost:hover, .site-header .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--sm { padding: .6em 1.1em; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); align-items: center; }
.center .btn-row { justify-content: center; }

.tel-icon { width: 1.05em; height: 1.05em; flex: none; fill: currentColor; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,17,22,.97);
  color: var(--text-inv);
  border-bottom: 1px solid var(--line-dark);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header { background: rgba(13,17,22,.88); backdrop-filter: blur(10px) saturate(140%); }
}
.header-inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); min-height: 66px; }
.brand { display: flex; align-items: center; margin-right: auto; flex: none; text-decoration: none; }
.brand img { width: 178px; height: auto; }
.brand-tag { display: none; }

.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; gap: .5em;
  background: transparent; border: 1px solid var(--line-dark); color: var(--text-inv);
  border-radius: var(--r); padding: .5rem .7rem; font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-toggle[aria-expanded="true"] .i-open { display: none; }
.nav-toggle[aria-expanded="false"] .i-close { display: none; }

.header-cta { display: none; }

.nav a { color: var(--text-inv); text-decoration: none; }
.nav > ul { list-style: none; margin: 0; padding: 0; }

/* Mobile, no JS: the full menu sits in normal flow under the bar, so the
   site is completely usable with scripting turned off.                    */
.nav { display: block; width: 100%; order: 99; border-top: 1px solid var(--line-dark); padding: var(--s3) 0 var(--s4); }
/* Mobile, JS on: same menu collapses behind the Menu button. */
.js .nav {
  position: absolute; left: 0; right: 0; top: 100%; width: auto; order: 0;
  background: var(--ink-2); border-top: 0; border-bottom: 1px solid var(--line-dark);
  max-height: calc(100vh - 66px); overflow-y: auto;
  padding: var(--s3) clamp(1rem, 4vw, 2rem) var(--s5);
  box-shadow: var(--shadow-lg);
}
.js .nav:not([data-open]) { display: none; }

.nav > ul > li { border-bottom: 1px solid var(--line-dark); }
.nav > ul > li:last-child { border-bottom: 0; }
.nav > ul > li > a, .nav .submenu-label { display: block; padding: .8rem 0; font-weight: 700; }
.nav .submenu { list-style: none; margin: 0 0 .9rem; padding: 0; columns: 2; column-gap: var(--s3); }
.nav .submenu a { display: block; padding: .38rem 0; font-size: .95rem; color: var(--text-inv-mut); }
.nav .submenu a:hover, .nav a[aria-current] { color: var(--cyan); }
.nav .nav-phone { margin-top: var(--s3); padding-top: var(--s3); }
.nav .nav-phone .btn { width: 100%; }

.nav .sub-head {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); padding: .6rem 0 .15rem; margin: 0; break-inside: avoid;
}

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .nav, .js .nav, .js .nav:not([data-open]) {
    display: block; position: static; width: auto; order: 0;
    max-height: none; overflow: visible; background: transparent;
    border: 0; padding: 0; box-shadow: none;
  }
  .nav > ul { display: flex; align-items: center; gap: .1rem; }
  .nav > ul > li { position: relative; border-bottom: 0; }
  .nav > ul > li > a, .nav .submenu-label {
    padding: .55rem .68rem; border-radius: var(--r);
    font-size: .92rem; font-weight: 700;
  }
  .nav > ul > li > a:hover, .nav .submenu-label:hover { background: rgba(255,255,255,.09); color: var(--cyan); }
  .nav .has-sub > .submenu-label::after {
    content: ""; display: inline-block; width: .4em; height: .4em; margin-left: .42em; vertical-align: .16em;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px,-2px);
  }
  .nav .submenu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
    padding: var(--s4) var(--s3); margin: 0; list-style: none;
    width: 480px; columns: 2; column-gap: var(--s4);
    box-shadow: var(--shadow-lg);
  }
  .nav .has-sub:hover > .submenu,
  .nav .has-sub:focus-within > .submenu { display: block; }
  .nav .submenu a { padding: .38rem .5rem; border-radius: var(--r); font-size: .9rem; }
  .nav .submenu a:hover { background: rgba(255,255,255,.09); color: var(--cyan); }
  .nav .sub-head { padding: .55rem .5rem .15rem; }
  .nav .nav-phone { display: none; }
}

/* ---------- hero ---------- */
.hero { background: var(--ink); color: var(--text-inv); position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 460px at 78% 8%, rgba(4,222,254,.16), transparent 62%),
    radial-gradient(760px 420px at 4% 92%, rgba(253,184,0,.10), transparent 60%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.02fr 1fr; } }
.hero h1 { margin-bottom: var(--s3); text-wrap: balance; }
.hero h1 .hl { color: var(--cyan); }
.hero .lede { margin-bottom: var(--s4); max-width: 40ch; }
.hero-figure { margin: 0; }
.hero-figure img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1);
}
.hero-figure figcaption { margin-top: .7rem; font-size: .85rem; color: var(--text-inv-mut); }

.trust-strip { border-top: 1px solid var(--line-dark); margin-top: clamp(2rem,4vw,3rem); padding-top: var(--s4); position: relative; }
.trust-strip ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s2) var(--s4); grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 760px) { .trust-strip ul { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.trust-strip li { margin: 0; font-size: .95rem; color: var(--text-inv-mut); display: flex; gap: .55em; align-items: flex-start; }
.trust-strip b { display: block; color: var(--white); font-size: 1.02rem; }
.trust-strip .tick { color: var(--cyan); font-weight: 800; }

/* page header (inner pages) */
.page-head { background: var(--ink); color: var(--text-inv); padding-block: clamp(2.25rem, 5vw, 3.75rem); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 340px at 84% 0%, rgba(4,222,254,.15), transparent 60%);
}
.page-head .wrap { position: relative; }
.page-head h1 { margin-bottom: var(--s2); text-wrap: balance; }
.page-head .lede { margin-bottom: 0; max-width: 62ch; }
.page-head .btn-row { margin-top: var(--s4); }

.crumbs { font-size: .85rem; color: var(--text-inv-mut); margin-bottom: var(--s3); }
.crumbs a { color: var(--text-inv-mut); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); text-decoration: underline; }
.crumbs span { opacity: .5; margin-inline: .4em; }

.banner-figure { margin: 0 0 clamp(1.5rem,3vw,2.25rem); }
.banner-figure img, .banner-figure svg {
  width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
.banner-figure figcaption { margin-top: .6rem; font-size: .85rem; color: var(--text-mut); }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--text-mut); font-size: .98rem; margin-bottom: var(--s3); }
.card p:last-child { margin-bottom: 0; }
.card .card-link { margin-top: auto; font-weight: 700; text-decoration: none; font-size: .95rem; }
.card .card-link::after { content: " →"; transition: opacity .15s; }
a.card { text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--cyan-deep); color: inherit; }
a.card h3 { color: var(--ink); }
a.card:hover h3 { color: var(--cyan-ink); }

.feature { display: flex; flex-direction: column; gap: .5rem; }
.feature .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--cyan); color: var(--ink); font-weight: 800; font-size: 1.05rem; flex: none;
}
.dark .feature .num { background: var(--cyan); color: var(--ink); }

/* checklists */
.checks { list-style: none; padding: 0; margin: 0 0 var(--s3); }
.checks li { position: relative; padding-left: 1.75rem; margin-bottom: .55rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: .72rem; height: .38rem; border-left: 2.5px solid var(--cyan-deep); border-bottom: 2.5px solid var(--cyan-deep);
  transform: rotate(-45deg);
}
.dark .checks li::before { border-color: var(--cyan); }
.checks--tight li { margin-bottom: .3rem; }

.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-text { grid-template-columns: 1.25fr 1fr; } }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
.split figure { margin: 0; }
.split figcaption { margin-top: .6rem; font-size: .86rem; color: var(--text-mut); }
.dark .split figcaption { color: var(--text-inv-mut); }
@media (min-width: 880px) { .split--rev > *:first-child { order: 2; } }

/* photo strip */
.strip { display: grid; gap: var(--s2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip figure { margin: 0; }
.strip img { border-radius: var(--r); box-shadow: var(--shadow-sm); width: 100%; }
.strip figcaption { margin-top: .4rem; font-size: .8rem; color: var(--text-mut); }

/* ---------- quotes ---------- */
.quote {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--cyan);
  border-radius: var(--r-lg); padding: clamp(1.15rem, 2.2vw, 1.6rem);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote blockquote { margin: 0 0 var(--s3); font-size: 1.02rem; color: var(--text); }
.quote blockquote p:last-child { margin-bottom: 0; }
.quote figcaption, .quote .who { margin-top: auto; font-size: .9rem; font-weight: 700; color: var(--ink); }
.quote .role { display: block; font-weight: 500; color: var(--text-mut); }
.dark .quote { background: var(--ink-2); border-color: var(--line-dark); }
.dark .quote blockquote { color: var(--text-inv); }
.dark .quote .who { color: var(--white); }
.dark .quote .role { color: var(--text-inv-mut); }

.stars { color: var(--amber); letter-spacing: .1em; font-size: .95rem; margin-bottom: .5rem; }

/* ---------- hours ---------- */
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; flex-wrap: wrap; gap: .25rem .75rem; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px dashed var(--line); margin: 0;
}
.dark .hours-list li { border-bottom-color: var(--line-dark); }
.hours-list .day { font-weight: 700; }
.hours-list .time { font-variant-numeric: tabular-nums; }
.hours-list .note { flex-basis: 100%; font-size: .85rem; color: var(--text-mut); }
.dark .hours-list .note { color: var(--text-inv-mut); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: var(--s3) 0; }
.dark .faq-item { border-bottom-color: var(--line-dark); }
.faq-item h3 { font-size: clamp(1.2rem, 1.08rem + .4vw, 1.32rem); margin-bottom: .4rem; }
.faq-item p { margin-bottom: 0; color: var(--text-mut); }
.dark .faq-item p { color: var(--text-inv-mut); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-2); color: var(--text-inv); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.75rem); }
.cta-band h2 { margin-bottom: .5rem; }
.cta-band p { color: var(--text-inv-mut); margin-bottom: var(--s4); }
.cta-band .btn-row { margin: 0; }
.band-ink .cta-band { background: var(--ink-3); }

/* ---------- forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--s3); }
.field > label, .fieldset-legend { display: block; font-weight: 700; font-size: .93rem; margin-bottom: .35rem; color: var(--ink); }
.field .hint { font-weight: 500; color: var(--text-mut); font-size: .85rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--white); transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--cyan-deep); box-shadow: 0 0 0 3px rgba(11,139,168,.16); outline: none; }
textarea { min-height: 8rem; resize: vertical; }
fieldset { border: 0; margin: 0 0 var(--s3); padding: 0; }
legend { padding: 0; }
.radios { display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.radios label {
  display: inline-flex; align-items: center; gap: .45em;
  border: 1.5px solid var(--line); border-radius: 100px; padding: .45rem .9rem;
  font-size: .93rem; cursor: pointer; background: var(--white);
}
.radios label:hover { border-color: var(--cyan-deep); }
.radios input { accent-color: var(--cyan-deep); margin: 0; }
.radios input:checked + span { font-weight: 700; }
.field-row { display: grid; gap: var(--s3); }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.cf-turnstile { margin-bottom: var(--s3); }
.form-note { font-size: .87rem; color: var(--text-mut); }
.form-msg { margin-top: var(--s3); padding: .9rem 1.1rem; border-radius: var(--r); font-size: .95rem; }
.form-msg[data-state="ok"] { background: #e7f8ee; border: 1px solid #9fd9b8; color: #14542f; }
.form-msg[data-state="err"] { background: #fdeceb; border: 1px solid #f2b4ae; color: #7a2119; }
.form-msg[hidden] { display: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--text-inv-mut); padding-block: clamp(2.5rem, 5vw, 4rem) var(--s5); font-size: .95rem; }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: var(--s2); }
.footer-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.site-footer a { color: var(--text-inv-mut); text-decoration: none; }
.site-footer a:hover { color: var(--cyan); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.footer-brand img { width: 168px; margin-bottom: var(--s2); }
.footer-brand p { max-width: 34ch; }
.footer-contact a[href^="tel"] { color: var(--white); font-weight: 800; font-size: 1.18rem; letter-spacing: .01em; }
.footer-contact address { font-style: normal; margin-bottom: var(--s2); }
.social { display: flex; gap: .6rem; margin-top: var(--s2); }
.social a {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid var(--line-dark); border-radius: 50%;
}
.social a:hover { background: var(--cyan); border-color: var(--cyan); }
.social svg { width: 18px; height: 18px; fill: var(--text-inv-mut); }
.social a:hover svg { fill: var(--ink); }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: var(--s4);
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .5rem var(--s4); justify-content: space-between;
  font-size: .84rem; color: #7f8e9c;
}
.footer-bottom p { margin: 0; }
[data-ss-credit] a { color: #7f8e9c; text-decoration: underline; }
[data-ss-credit] a:hover { color: var(--cyan); }

/* sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .5rem; padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(13,17,22,.96); border-top: 1px solid var(--line-dark);
}
.callbar .btn { flex: 1; padding: .7em 1em; font-size: .95rem; }
@media (min-width: 1000px) { .callbar { display: none; } }
@media (max-width: 999px) { body { padding-bottom: 4.25rem; } }

/* misc */
.badge-yelp { max-width: 160px; }
.tag {
  display: inline-block; background: rgba(4,222,254,.14); color: var(--cyan-ink);
  border: 1px solid rgba(4,222,254,.4); border-radius: 100px;
  padding: .2rem .7rem; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.dark .tag { color: var(--cyan); }
[data-ss-empty] { color: var(--text-mut); font-style: italic; }
.note-box { background: var(--paper); border-left: 4px solid var(--amber); border-radius: var(--r); padding: var(--s3) var(--s4); }
.dark .note-box { background: var(--ink-3); border-left-color: var(--amber); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed a { display: block; }

/* ---------- final tuning ---------- */
@media (max-width: 899px) {
  .hero { padding-block: 1.75rem 2.25rem; }
  .hero .lede { font-size: 1.02rem; max-width: none; }
  .hero-grid { gap: 1.5rem; }
  .hero h1 { font-size: clamp(1.95rem, 1.1rem + 3.6vw, 2.6rem); }
}
/* amber is decorative-only on dark; darken it where it sits on white */
.stars { color: #b07a00; }
.dark .stars { color: var(--amber); }

/* ==========================================================================
   Dark-surface contrast guarantees (authoritative)

   .hero, .page-head, .cta-band, .callbar, .site-header and .site-footer all
   paint a near-black background but do not carry the .dark class, so the
   earlier .dark overrides never reached them. Contextual rules such as
   `.nav a`, `.site-footer a` and `.dark a` also out-specify the (0,1,0)
   `.btn--*` colour rules, which could tint a button label to the section's
   link colour. Everything below is declared last and with enough
   specificity to settle both cases for good.
   ========================================================================== */

/* Primary button: always ink on amber, whatever the surrounding link colour. */
.btn--primary, a.btn--primary,
.nav a.btn--primary, .dark a.btn--primary, .site-footer a.btn--primary { color: var(--ink); }
.btn--primary:hover, a.btn--primary:hover,
.nav a.btn--primary:hover, .dark a.btn--primary:hover, .site-footer a.btn--primary:hover { color: var(--ink); }

/* Ghost button on light surfaces: ink label and ink hairline. */
.btn--ghost, a.btn--ghost { color: var(--ink); border-color: currentColor; }
.btn--ghost:hover, a.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Ghost button on every dark surface: white label, visible hairline. */
.dark .btn--ghost, .site-header .btn--ghost, .hero .btn--ghost, .page-head .btn--ghost,
.cta-band .btn--ghost, .callbar .btn--ghost, .site-footer .btn--ghost,
.dark a.btn--ghost, .site-header a.btn--ghost, .hero a.btn--ghost, .page-head a.btn--ghost,
.cta-band a.btn--ghost, .callbar a.btn--ghost, .site-footer a.btn--ghost {
  color: var(--white); border-color: rgba(255, 255, 255, .62); background: transparent;
}
.dark .btn--ghost:hover, .site-header .btn--ghost:hover, .hero .btn--ghost:hover,
.page-head .btn--ghost:hover, .cta-band .btn--ghost:hover, .callbar .btn--ghost:hover,
.site-footer .btn--ghost:hover,
.dark a.btn--ghost:hover, .site-header a.btn--ghost:hover, .hero a.btn--ghost:hover,
.page-head a.btn--ghost:hover, .cta-band a.btn--ghost:hover, .callbar a.btn--ghost:hover,
.site-footer a.btn--ghost:hover {
  background: var(--white); color: var(--ink); border-color: var(--white);
}

/* Supporting text on the dark hero and page heads. */
.hero .eyebrow, .page-head .eyebrow { color: var(--cyan); }
.hero .lede, .page-head .lede, .hero .form-note, .page-head .form-note { color: var(--text-inv-mut); }
.hero strong, .page-head strong, .cta-band strong, .site-footer strong { color: var(--white); }

/* Footer hours list sits on near-black. */
.site-footer .hours-list li { border-bottom-color: var(--line-dark); }
.site-footer .hours-list .note { color: var(--text-inv-mut); }

/* Keyboard focus ring stays bright on every dark surface. */
.hero :focus-visible, .page-head :focus-visible,
.cta-band :focus-visible, .callbar :focus-visible { outline-color: var(--cyan); }

/* print: keep the phone number and address useful on paper */
@media print {
  .site-header, .callbar, .nav, .btn, .cta-band { display: none !important; }
  body { color: #000; background: #fff; padding-bottom: 0; }
  .band-ink, .dark, .site-footer { background: #fff !important; color: #000 !important; }
  .dark h1, .dark h2, .dark h3, .site-footer h2 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
