/* =========================================================================
   Classic Garage — Kielce | styles.css
   System: heritage garage / vintage motoring
   Display: Bricolage Grotesque · Body: Spline Sans · Spec/labels: Spline Sans Mono
   Palette: graphite-oil #15161A · paper #F4F1EA · brass #C8862F · oxide #B23A2E
   ========================================================================= */

/* -------- Design tokens -------- */
:root {
  --graphite:   #15161A;   /* near-black oil graphite */
  --graphite-2: #1B1D22;   /* raised dark surface */
  --graphite-3: #24262C;   /* card on dark */
  --steel:      #3A3E47;   /* hairlines on dark */
  --paper:      #F4F1EA;   /* warm off-white */
  --paper-2:    #ECE7DC;   /* warmer panel */
  --ink:        #1A1B1F;   /* body text on light */
  --ink-soft:   #4A4C53;   /* secondary text on light */
  --ink-faint:  #5E6068;   /* tertiary text on light */
  --brass:      #C8862F;   /* primary accent — brass */
  --brass-d:    #8A5A12;   /* brass for text on light (AA) */
  --brass-l:    #E8B873;   /* brass tint for text on dark */
  --oxide:      #B23A2E;   /* secondary spark — racing oxide red */
  --oxide-l:    #E2897F;   /* oxide tint on dark */
  --line:       #DBD4C5;   /* hairline on light */
  --paper-on-dark: #E7E2D6;
  --muted-on-dark: #A8AAB2;

  --shadow-sm: 0 1px 2px rgba(21,22,26,.06), 0 2px 6px rgba(21,22,26,.05);
  --shadow-md: 0 8px 24px rgba(21,22,26,.10), 0 2px 6px rgba(21,22,26,.06);
  --shadow-lg: 0 24px 60px rgba(21,22,26,.16);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3.25rem);

  --ff-display: "Bricolage Grotesque", Georgia, "Times New Roman", serif;
  --ff-body: "Spline Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Icon base size — safety net (lesson v5.2) */
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: -0.01em; }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-d);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--brass);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--brass-l); }
.on-dark .eyebrow::before { background: var(--brass); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }
.on-dark .lead { color: var(--paper-on-dark); }

.tabnum { font-variant-numeric: tabular-nums; }

/* -------- Layout -------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--graphite); color: var(--paper-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--paper); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-top: .9rem; }
.section-head .lead { margin-top: 1rem; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-height: 48px;
}
.btn--primary { background: var(--brass); color: #211606; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #d9962f; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--graphite); color: var(--paper); }
.btn--dark:hover { background: #25272d; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--graphite); background: rgba(21,22,26,.04); }
.on-dark .btn--ghost { color: var(--paper); border-color: rgba(244,241,234,.4); }
.on-dark .btn--ghost:hover { border-color: var(--brass); background: rgba(200,134,47,.12); }
.btn--lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }

/* -------- Focus visibility (a11y) -------- */
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 4px; }
.section--dark :focus-visible, .on-dark :focus-visible { outline-color: var(--brass-l); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--graphite); color: var(--paper);
  padding: .65rem 1.1rem; border-radius: var(--r-sm); z-index: 200;
  transition: top .18s ease;
}
.skip-link:focus { top: 1rem; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,22,26,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--steel);
}
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: 72px; }

.brand-logo { display: inline-flex; align-items: center; gap: .7rem; }
.brand-logo__mark { width: 40px; height: 40px; }
.brand-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-logo__name {
  font-family: var(--ff-display);
  font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em;
  color: var(--paper);
}
.brand-logo__tag {
  font-family: var(--ff-mono);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-l); margin-top: 2px;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 1.55rem; }
.main-nav a {
  font-size: .95rem; font-weight: 500; color: var(--paper-on-dark);
  white-space: nowrap; padding: .35rem 0; position: relative;
  transition: color .18s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--brass); transition: right .22s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--paper); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--paper); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-mono); font-weight: 500; font-size: .95rem;
  color: var(--paper); white-space: nowrap;
}
.header-phone .ico { color: var(--brass-l); }
.header-phone:hover { color: var(--brass-l); }

.nav-toggle {
  display: none; color: var(--paper);
  width: 48px; height: 48px; align-items: center; justify-content: center;
  margin-left: auto;
}
.nav-toggle .ico { width: 28px; height: 28px; }

/* Mobile nav drawer */
.nav-scrim {
  position: fixed; inset: 0; background: rgba(10,11,13,.6);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
  z-index: 110;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--graphite-2); border-left: 1px solid var(--steel);
  z-index: 120; padding: 5rem 1.6rem 2rem;
  display: flex; flex-direction: column; gap: .35rem;
  transform: translateX(105%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  color: var(--paper-on-dark); font-size: 1.1rem; font-weight: 500;
  padding: .8rem .25rem; border-bottom: 1px solid var(--steel);
}
.mobile-nav a[aria-current="page"] { color: var(--brass-l); }
.mobile-nav .btn { margin-top: 1rem; width: 100%; }
.mobile-nav__close {
  position: absolute; top: 1rem; right: 1rem; color: var(--paper);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}
.mobile-nav__close .ico { width: 26px; height: 26px; }

/* =========================================================================
   HERO — type-led, dark, brass accent, workshop texture (CSS only)
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(200,134,47,.18), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(178,58,46,.12), transparent 50%),
    var(--graphite);
  color: var(--paper-on-dark);
  border-bottom: 1px solid var(--steel);
}
/* subtle diamond-plate / grid texture */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(244,241,234,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(110% 80% at 60% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(110% 80% at 60% 30%, #000 30%, transparent 80%);
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero__copy { max-width: 56ch; }
.hero__title { color: var(--paper); margin-top: 1.1rem; }
.accent-word { color: var(--brass-l); }
.accent-underline {
  position: relative; white-space: nowrap;
}
.accent-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.08em; height: .12em;
  background: var(--brass); border-radius: 2px;
}
.hero__lead { margin-top: 1.4rem; max-width: 52ch; font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--paper-on-dark); }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2.2rem;
}
.ti {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,241,234,.06);
  border: 1px solid var(--steel);
  border-radius: var(--r-pill);
  padding: .5rem .95rem;
  font-size: .85rem; color: var(--paper-on-dark);
}
.ti .ico { width: 1.05em; height: 1.05em; color: var(--brass-l); }
.ti strong { color: var(--paper); font-weight: 600; }

/* odometer-style spec strip under hero */
.specstrip { background: var(--graphite-2); border-bottom: 1px solid var(--steel); }
.specstrip__inner {
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem);
  padding-block: 1.25rem; align-items: center;
}
.spec {
  display: flex; flex-direction: column; gap: .15rem;
}
.spec__k { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark); }
.spec__v { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--paper); }
.spec__v .ico { width: 1em; height: 1em; color: var(--brass-l); display: inline-block; vertical-align: -.12em; margin-right: .3rem; }

/* =========================================================================
   SERVICES
   ========================================================================= */
.svc-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brass); }
.svc-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--graphite); color: var(--brass-l); margin-bottom: 1.05rem;
}
.svc-card__icon .ico { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; }
.svc-card ul { margin-top: .9rem; display: grid; gap: .45rem; }
.svc-card li {
  font-size: .92rem; color: var(--ink-soft); display: flex; gap: .55rem; align-items: flex-start;
}
.svc-card li .ico { width: 1.05em; height: 1.05em; color: var(--brass-d); margin-top: .28em; }

/* =========================================================================
   WHY US (no fabrication — process & promise, not invented stats)
   ========================================================================= */
.why-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.why-card {
  background: var(--graphite-2); border: 1px solid var(--steel); border-radius: var(--r-lg);
  padding: 1.5rem 1.45rem;
}
.why-card__n {
  font-family: var(--ff-mono); font-size: .82rem; letter-spacing: .12em;
  color: var(--brass-l); margin-bottom: .9rem;
}
.why-card h3 { color: var(--paper); margin-bottom: .5rem; font-size: 1.22rem; }
.why-card p { color: var(--paper-on-dark); font-size: .96rem; }

/* process steps */
.steps { display: grid; gap: 1rem; counter-reset: step; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.step {
  position: relative; padding: 1.4rem 1.3rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-mono); font-size: .9rem; font-weight: 600;
  color: var(--brass-d); display: block; margin-bottom: .7rem;
  letter-spacing: .08em;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .94rem; color: var(--ink-soft); }

/* =========================================================================
   PHOTO PLACEHOLDER ZONE — intentional empty slots ("Tu trafia Twoje zdjecie")
   ========================================================================= */
.photo-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.photo-slot {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg);
  border: 2px dashed var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(21,22,26,.022) 0 12px, transparent 12px 24px),
    var(--paper-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .7rem; text-align: center; padding: 1.2rem; color: var(--ink-faint);
}
.photo-slot--wide { grid-column: 1 / -1; aspect-ratio: 21/8; }
@media (max-width: 640px) { .photo-slot--wide { aspect-ratio: 4/3; } }
.photo-slot__ico {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); color: var(--brass-d);
}
.photo-slot__ico .ico { width: 24px; height: 24px; }
.photo-slot strong { font-family: var(--ff-display); font-size: 1.05rem; color: var(--ink-soft); font-weight: 600; }
.photo-slot span { font-size: .85rem; max-width: 30ch; }
.photo-note {
  font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .08em;
  color: var(--ink-faint); margin-top: 1.2rem; display: flex; gap: .5rem; align-items: center;
}
.photo-note .ico { width: 1.1em; height: 1.1em; color: var(--brass-d); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }

.contact-card {
  background: var(--graphite-2); color: var(--paper-on-dark);
  border: 1px solid var(--steel); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-card h3 { color: var(--paper); }
.nap-list { display: grid; gap: 1.05rem; margin-top: 1.4rem; }
.nap-row { display: flex; gap: .85rem; align-items: flex-start; }
.nap-row__ico {
  flex: none; width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--graphite-3); color: var(--brass-l);
  display: flex; align-items: center; justify-content: center;
}
.nap-row__ico .ico { width: 20px; height: 20px; }
.nap-row__k { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); }
.nap-row__v { font-size: 1.02rem; color: var(--paper); }
.nap-row__v a { color: var(--paper); }
.nap-row__v a:hover { color: var(--brass-l); }
.contact-hours { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--steel); }
.contact-hours .nap-row__k { margin-bottom: .35rem; }
.hours-note { font-size: .92rem; color: var(--muted-on-dark); }
.fill-tag {
  display: inline-block; font-family: var(--ff-mono); font-size: .72rem;
  background: rgba(200,134,47,.16); color: var(--brass-l);
  border: 1px solid rgba(200,134,47,.4); border-radius: var(--r-sm);
  padding: .15rem .5rem; margin-left: .3rem;
}

/* form */
.contact-form { display: grid; gap: 1.05rem; }
.form-row { display: grid; gap: .4rem; }
.form-row label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.form-row .req { color: var(--oxide); }
.form-row input, .form-row textarea, .form-row select {
  font: inherit; font-size: 1rem; width: 100%;
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink); min-height: 48px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(200,134,47,.2);
}
.form-row input[aria-invalid="true"], .form-row textarea[aria-invalid="true"] { border-color: var(--oxide); }
.form-error { font-size: .85rem; color: var(--oxide); min-height: 1em; display: none; }
.form-error.is-shown { display: block; }
.form-hint { font-size: .82rem; color: var(--ink-faint); }
.form-note {
  font-size: .82rem; color: var(--ink-faint); display: flex; gap: .5rem; align-items: flex-start;
}
.form-note .ico { width: 1.1em; height: 1.1em; color: var(--brass-d); margin-top: .2em; flex: none; }
.form-status {
  display: none; align-items: center; gap: .6rem;
  background: var(--paper-2); border: 1px solid var(--brass);
  border-radius: var(--r-md); padding: .9rem 1.1rem; color: var(--ink);
  font-size: .95rem;
}
.form-status.is-shown { display: flex; }
.form-status .ico { color: var(--brass-d); }

/* map */
.map-frame {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--steel);
  margin-top: 1.6rem; aspect-ratio: 16/10; background: var(--graphite-3);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { text-align: center; }
.cta-band__inner { max-width: 60ch; margin-inline: auto; }
.cta-band h2 { margin-block: 1rem; }
.cta-band .btn-row { justify-content: center; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--graphite); color: var(--muted-on-dark); border-top: 1px solid var(--steel); }
.footer-grid {
  display: grid; gap: 2.2rem; padding-block: clamp(2.8rem, 6vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.4fr; } }
.footer-brand .brand-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .94rem; color: var(--muted-on-dark); max-width: 40ch; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--graphite-3); border: 1px solid var(--steel); color: var(--paper-on-dark);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.footer-social a:hover { background: var(--brass); color: #211606; border-color: var(--brass); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h3 { font-size: .8rem; font-family: var(--ff-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--brass-l); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .95rem; color: var(--muted-on-dark); }
.footer-col a:hover { color: var(--paper); }
.footer-nap { font-style: normal; font-size: .95rem; line-height: 1.85; color: var(--muted-on-dark); }
.footer-nap a { color: var(--paper-on-dark); }
.footer-nap a:hover { color: var(--brass-l); }
.footer-nap .label { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-on-dark); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  padding-block: 1.4rem; border-top: 1px solid var(--steel); font-size: .85rem;
}
.footer-bottom a { color: var(--brass-l); }
.footer-bottom a:hover { color: var(--paper); }

/* =========================================================================
   MOBILE STICKY CTA
   ========================================================================= */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .5rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(21,22,26,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--steel);
}
.mobile-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 50px; border-radius: var(--r-md); font-weight: 600; font-size: .98rem;
}
.mc-call { background: var(--brass); color: #211606; }
.mc-quote { background: var(--graphite-3); color: var(--paper); border: 1px solid var(--steel); }

/* =========================================================================
   REVEAL (enhancement only — content never permanently hidden)
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .main-nav, .header-phone { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .mobile-cta { display: flex; }
  main { padding-bottom: 4.5rem; }
  .brand-logo__tag { display: none; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .brand-logo__tag { display: block; }
}
