/* ==========================================================================
   AUTO MEDICS — "Carbon & Copper" brand system
   Exotic atelier / Pagani-workshop mood: warm graphite surfaces that sit
   exactly between dark and light, copper-bronze metallic accents, a subtle
   carbon-fiber weave on the near-black frame (header, hero, CTA, footer),
   and the signature red reserved for the glowing logo + primary CTA.
   ========================================================================== */
:root {
  /* Warm graphite base — the mid-tone */
  --bg: #26282d;
  --bg-warm: #2b2d33;
  --surface: #303339;
  --surface-2: #383b42;
  --ink: #f2eee5;
  --body: #c7c2b6;
  --muted: #a6a094; /* ≥4.5:1 on --surface for WCAG AA */
  --line: #3c3f46;
  --line-2: #4b4f57;

  /* Signature red — logo + primary CTA only */
  --red: #c01730;
  --red-bright: #e02540;
  --red-deep: #8c0e22;
  --red-soft: rgba(224, 37, 64, 0.12);
  --red-glow: rgba(224, 37, 64, 0.45);

  /* Copper & bronze — the metal of this design */
  --copper: #d08a52;
  --copper-bright: #e8a76f;
  --copper-deep: #a5602f;
  --copper-soft: rgba(208, 138, 82, 0.14);
  --gold: #d08a52; /* review stars ride the copper */
  --copper-grad: linear-gradient(180deg, #f0b57e 0%, #cd8449 45%, #a05e2c 78%, #c98950 100%);
  --chrome-grad: linear-gradient(180deg, #ffffff 0%, #e7ecf1 26%, #9aa3ad 52%, #d7dde3 74%, #767e88 100%);

  /* Near-black carbon frame (header / hero / CTA / footer) */
  --d-bg: #101114;
  --d-bg-2: #131519;
  --d-panel: #16181d;
  --d-card: #1b1e24;
  --d-line: #2a2d34;
  --d-text: #f2efe8;
  --d-muted: #a29a8c;

  --radius: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 4px 18px -8px rgba(0, 0, 0, 0.45);
  --shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.65);
  --shadow-red: 0 16px 40px -16px rgba(192, 23, 48, 0.5);
  --shadow-copper: 0 14px 36px -16px rgba(208, 138, 82, 0.35);

  --maxw: 1240px;
  --font-display: "Marcellus", "Times New Roman", serif;
  --font-cond: "Jost", system-ui, sans-serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  font-size: 1.04rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Warm copper workshop light */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 520px at 85% -5%, rgba(208, 138, 82, 0.07), transparent 60%),
    radial-gradient(760px 620px at -5% 8%, rgba(120, 110, 95, 0.09), transparent 60%);
}

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

.container { width: 100%; max-width: 940px; margin-inline: auto; padding-inline: 1.4rem; }
.container--wide { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.4rem; }
.center { text-align: center; }
.text-red { color: var(--red-bright); }

/* ---------- Type — stately roman display ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.14; letter-spacing: 0.015em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.65rem); }
h3 { font-size: 1.24rem; line-height: 1.3; }
p { color: var(--body); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #beb9ac; font-family: var(--font-body); font-weight: 400; line-height: 1.72; max-width: 46rem; }
/* Copper flourish on the accent word */
h1 .text-red, h2 .text-red { color: var(--copper-bright); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.3em;
  font-weight: 500; font-size: 0.76rem; color: var(--copper);
}
/* Copper hairline kicker */
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: linear-gradient(90deg, var(--copper), rgba(208, 138, 82, 0.2)); flex: none; }
.eyebrow .icon { width: 0.95rem; height: 0.95rem; }
.icon { width: 1.25rem; height: 1.25rem; flex: none; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.6rem; }
.prose p, .prose ul { margin-bottom: 0.8rem; }
.prose a { color: var(--copper-bright); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 500; font-size: 0.84rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--ink); background: var(--surface);
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  box-shadow: var(--shadow-sm);
}
.btn .icon { width: 1.05rem; height: 1.05rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.9rem; }
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: linear-gradient(180deg, #d31f3a, var(--red));
  border-color: var(--red-bright); color: #fff; box-shadow: var(--shadow-red);
}
.btn--solid:hover { box-shadow: 0 22px 52px -16px rgba(224, 37, 64, 0.6); filter: brightness(1.07); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); box-shadow: none; }
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-bright); background: var(--surface); }
.arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Buttons inside the near-black frame */
.hero .btn--ghost, .page-head .btn--ghost, .cta-band .btn--ghost {
  background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.24); color: #fff; box-shadow: none; backdrop-filter: blur(4px);
}
.hero .btn--ghost:hover, .page-head .btn--ghost:hover, .cta-band .btn--ghost:hover { border-color: var(--copper); background: rgba(255, 255, 255, 0.08); color: #fff; }

/* ==========================================================================
   THE GLOWING LOGO (unchanged — still the centerpiece)
   ========================================================================== */
.brand-lockup { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-lockup--stacked { flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.brand-lockup--img { line-height: 0; }
.am-emblem { width: 3rem; height: 3rem; flex: none; animation: emblem-glow 3.6s ease-in-out infinite; }
.am-emblem__gear { transform-origin: 100px 100px; animation: gear-spin 26s linear infinite; }
.am-emblem__mark { filter: drop-shadow(0 0 4px var(--red-glow)); }
@keyframes emblem-glow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(224, 37, 64, 0.32)) drop-shadow(0 0 8px rgba(224, 37, 64, 0.16)); }
  50% { filter: drop-shadow(0 0 7px rgba(224, 37, 64, 0.55)) drop-shadow(0 0 20px rgba(224, 37, 64, 0.36)); }
}
@keyframes gear-spin { to { transform: rotate(360deg); } }
.brand-word { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; letter-spacing: 0.02em; white-space: nowrap; line-height: 1; color: var(--ink); }
.brand-word__auto { background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-word__medics { color: var(--red-bright); text-shadow: 0 0 10px rgba(224, 37, 64, 0.4), 0 0 2px rgba(224, 37, 64, 0.5); }
.brand-lockup--stacked .brand-word { font-size: 2rem; }
.brand:hover .am-emblem { animation-duration: 1.8s; }

/* Real logo PNG — glows like the emblem */
.brand-logo-img { width: auto; object-fit: contain; filter: drop-shadow(0 0 4px rgba(224, 37, 64, 0.3)); animation: emblem-glow 3.6s ease-in-out infinite; }
.site-header .brand-logo-img { height: 4rem; }
.site-footer .brand-logo-img { height: 4.6rem; }
.brand:hover .brand-logo-img { animation-duration: 1.8s; }
@media (prefers-reduced-motion: reduce) {
  .am-emblem, .am-emblem__gear, .brand-logo-img { animation: none; }
  .am-emblem { filter: drop-shadow(0 0 6px rgba(224, 37, 64, 0.4)); }
  .brand-logo-img { filter: drop-shadow(0 0 6px rgba(224, 37, 64, 0.36)); }
}

/* ==========================================================================
   TOPBAR — slim hours strip above the header
   ========================================================================== */
.topbar { background: #0b0c0f; border-bottom: 1px solid rgba(208, 138, 82, 0.22); }
.topbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.3rem 1.4rem; padding-block: 0.42rem; }
.topbar__hours { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; font-weight: 500; color: var(--copper-bright); }
.topbar__hours .icon { width: 0.9rem; height: 0.9rem; }
.topbar__meta { display: inline-flex; align-items: center; gap: 1.4rem; font-family: var(--font-cond); letter-spacing: 0.08em; font-size: 0.78rem; color: #b3ac9e; }
.topbar__meta a:hover { color: var(--copper-bright); }
@media (max-width: 700px) {
  .topbar__inner { justify-content: center; }
  .topbar__meta { display: none; }
}

/* ==========================================================================
   HEADER — carbon bar, copper hairline when scrolled
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(16, 17, 20, 0.9); backdrop-filter: blur(12px) saturate(1.1); transition: background 0.3s, box-shadow 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(13, 14, 17, 0.97); backdrop-filter: blur(16px) saturate(1.2); border-bottom-color: rgba(208, 138, 82, 0.22); box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.85); }
.site-header__inner { display: flex; align-items: center; gap: 1.2rem; padding-block: 0.7rem; }
.brand { flex: none; }
.brand .am-emblem { width: 2.7rem; height: 2.7rem; }
.brand .brand-word { font-size: 1.5rem; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 0.25rem; }
.nav__link { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500; font-size: 0.8rem; color: #d3cec3; padding: 0.55rem 0.8rem; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, 0.05); }
.header-call { display: inline-flex; align-items: center; gap: 0.45rem; margin-left: 0.3rem; font-family: var(--font-cond); font-weight: 500; letter-spacing: 0.08em; font-size: 0.9rem; color: #fff; padding: 0.5rem 0.7rem; border-radius: 8px; }
.header-call .icon { width: 1rem; height: 1rem; color: var(--copper); }
.header-call:hover { color: var(--copper-bright); }
.nav__cta { margin-left: 0.4rem; }
.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 470px; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem;
  background: var(--d-panel); border: 1px solid rgba(208, 138, 82, 0.26); border-radius: var(--radius-sm); padding: 0.7rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.85); opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; z-index: 70;
}
.nav__item--dropdown:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a { display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 0.75rem; border-radius: 8px; font-family: var(--font-cond); font-weight: 400; letter-spacing: 0.05em; color: #d3cec3; font-size: 0.95rem; }
.nav__dropdown a .icon { width: 1.1rem; height: 1.1rem; color: var(--copper); }
.nav__dropdown a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.nav-toggle { display: none; }

/* ==========================================================================
   HERO — carbon-weave stage for the glowing logo
   ========================================================================== */
.hero, .page-head { color: var(--d-text); position: relative; overflow: hidden; background: radial-gradient(130% 130% at 74% -10%, #191b20 0%, #0f1013 62%); }
/* Subtle carbon-fiber weave */
.hero::after, .page-head::after, .cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.016) 0 3px, transparent 3px 7px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.016) 0 3px, transparent 3px 7px);
}
.hero { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: 1.4rem; }
.hero h1, .page-head h1, .hero h2 { color: #f6f2ea; }
.hero p, .page-head p, .hero .lede, .page-head .lede { color: #c9c2b3; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* Faint copper drafting grid */
.hero__grid {
  position: absolute; inset: -2px;
  background-image: linear-gradient(rgba(208, 138, 82, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(208, 138, 82, 0.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 70% 20%, #000 20%, transparent 75%);
}
.hero__glow { position: absolute; top: -20%; right: -5%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle, rgba(224, 154, 99, 0.16) 0%, rgba(224, 37, 64, 0.07) 45%, transparent 68%); filter: blur(10px); animation: glow-pulse 6s ease-in-out infinite; }
@keyframes glow-pulse { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center; padding-block: clamp(2rem, 5vw, 4.2rem); }
.hero__title { font-size: clamp(2.9rem, 6.6vw, 5.1rem); line-height: 1.08; }
.hero__title--sm { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.hero__content > * + * { margin-top: 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__actions.center { justify-content: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; color: #a89e8d; font-family: var(--font-cond); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta .icon { color: var(--copper); width: 1rem; height: 1rem; }
.hero__meta-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--copper-bright); border-bottom: 1px solid rgba(232, 167, 111, 0.4); padding-bottom: 1px; transition: border-color 0.2s, color 0.2s; }
.hero__meta-link:hover { color: #fff; border-color: #fff; }
.hero__mark { display: grid; place-items: center; text-align: center; gap: 1rem; }
.hero__emblem-wrap { position: relative; display: grid; place-items: center; width: min(30rem, 70vw); aspect-ratio: 1; }
.hero__emblem-wrap::before { content: ""; position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(circle, rgba(224, 37, 64, 0.16), transparent 66%); filter: blur(30px); animation: glow-pulse 5s ease-in-out infinite; }
.hero__mark .brand-logo-img { width: min(30rem, 74vw); height: auto; position: relative; z-index: 1; filter: drop-shadow(0 0 10px rgba(224, 37, 64, 0.36)); animation: emblem-glow 4s ease-in-out infinite, emblem-float 7s ease-in-out infinite; }
.hero__lockup .am-emblem { width: min(24rem, 58vw); height: auto; animation: emblem-glow 4s ease-in-out infinite, emblem-float 7s ease-in-out infinite; }
@keyframes emblem-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__mark-caption { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.72rem; color: var(--d-muted); }

/* Trust bar (in the hero) — copper vitrine */
.trust-bar { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.9rem; padding: 1.05rem 1.4rem; margin-top: 0.5rem; border: 1px solid rgba(208, 138, 82, 0.24); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)); }
.trust-bar span, .trust-bar a { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-cond); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.76rem; color: #d8d1c2; }
.trust-bar a:hover { color: var(--copper-bright); }
.trust-bar__icon { width: 1rem; height: 1rem; color: var(--copper); }

/* ==========================================================================
   PROMO BAND — the big offer, unmissable but on-brand
   ========================================================================== */
.promo-band { position: relative; overflow: hidden; background: linear-gradient(120deg, #8c0e22 0%, #c01730 55%, #8c0e22 100%); border-block: 1px solid rgba(208, 138, 82, 0.45); padding-block: clamp(1.8rem, 3.5vw, 2.6rem) 1rem; }
.promo-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 120% at 85% 0%, rgba(255, 255, 255, 0.1), transparent 60%); }
.promo-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; }
.promo-band__kicker { color: #ffd9a8; }
.promo-band__kicker::before { background: linear-gradient(90deg, #ffd9a8, rgba(255, 217, 168, 0.25)); }
.promo-band__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; line-height: 1.08; margin-top: 0.35rem; }
.promo-band__includes { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 0.92rem; color: #fff; margin-top: 0.4rem; }
.promo-band__sub { color: #ffd6cf; margin-top: 0.45rem; max-width: 34rem; }
.promo-band__act { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; }
.btn--promo { background: #fff; border-color: #fff; color: #8c0e22; font-weight: 600; box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5); }
.btn--promo:hover { filter: none; background: #ffe9df; border-color: #ffe9df; color: #8c0e22; }
.promo-band .btn--ghost { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.4); color: #fff; box-shadow: none; }
.promo-band .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }
.promo-band__fine { position: relative; z-index: 1; margin-top: 1rem; font-size: 0.78rem; line-height: 1.5; color: #ffc9c0; font-family: var(--font-cond); letter-spacing: 0.04em; }
.promo-band__checkin { flex-basis: 100%; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; font-weight: 600; color: #ffd9a8; border: 1px dashed rgba(255, 217, 168, 0.55); border-radius: 8px; padding: 0.4rem 0.8rem; width: fit-content; }

/* ==========================================================================
   SECTIONS (warm graphite)
   ========================================================================== */
.section { padding-block: clamp(3.6rem, 7vw, 6.4rem); position: relative; }
.section--warm { background: var(--bg-warm); border-block: 1px solid var(--line); }
.section--panel { background: linear-gradient(180deg, var(--bg-warm), #292b31); border-block: 1px solid var(--line); }
.section--promise { background: var(--bg); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: 2.8rem; }
.section-head.center, .section.center .section-head { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 0.8rem; }
.section-head p { margin-top: 0.9rem; color: var(--muted); font-size: 1.06rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }

/* ---------- Stat band — engraved copper plaque ---------- */
.stat-band { border-block: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-warm), var(--bg)); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 2.8rem; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -0.5rem; top: 16%; height: 68%; width: 1px; background: linear-gradient(180deg, transparent, rgba(208, 138, 82, 0.35), transparent); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.2vw, 3rem); color: var(--ink); line-height: 1; }
.stat__num [data-count] { color: var(--copper-bright); }
.stat__label { display: block; margin-top: 0.55rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--muted); }

/* ---------- Service cards — machined graphite ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.service-card { position: relative; display: flex; flex-direction: column; gap: 0.75rem; padding: 1.8rem 1.5rem 1.5rem; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), #2c2f35); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
/* copper accent stripe — reveals on approach */
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--copper-deep), var(--copper-bright)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(208, 138, 82, 0.45); box-shadow: var(--shadow), var(--shadow-copper); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(208, 138, 82, 0.08); border: 1px solid rgba(208, 138, 82, 0.35); color: var(--copper); transition: border-color 0.3s, color 0.3s, background 0.3s; }
.service-card:hover .service-card__icon { border-color: var(--copper); color: var(--copper-bright); background: var(--copper-soft); }
.service-card__icon .icon { width: 1.4rem; height: 1.4rem; }
.service-card h3 { color: var(--ink); }
.service-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.service-card__cta { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500; color: var(--copper-bright); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; }

/* ---------- Pillars (why us) ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.pillar { padding: 1.8rem 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pillar__icon { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(208, 138, 82, 0.08); border: 1px solid rgba(208, 138, 82, 0.35); color: var(--copper); margin-bottom: 1.1rem; }
.pillar__icon .icon { width: 1.4rem; height: 1.4rem; }
.pillar h3 { color: var(--ink); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Our Promise (trust centerpiece) ---------- */
.promise-head { max-width: 50rem; margin-bottom: 2.8rem; }
.promise-head h2 { margin: 0.8rem 0 1rem; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.promise-card { display: flex; gap: 1.05rem; padding: 1.6rem 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(208, 138, 82, 0.45); }
.promise-card__icon { display: grid; place-items: center; width: 2.9rem; height: 2.9rem; flex: none; border-radius: 50%; background: var(--copper-grad); color: #241407; box-shadow: var(--shadow-copper); }
.promise-card__icon .icon { width: 1.35rem; height: 1.35rem; }
.promise-card h3 { color: var(--ink); margin-bottom: 0.35rem; }
.promise-card p { font-size: 0.94rem; color: var(--muted); }
.promise-sign { margin-top: 2.6rem; padding: 2rem 2.2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--copper); box-shadow: var(--shadow-sm); }
.promise-sign blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.2rem, 2.3vw, 1.6rem); color: var(--ink); line-height: 1.45; }
.promise-sign figcaption { margin-top: 1rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.22em; color: var(--copper); font-weight: 500; font-size: 0.78rem; }

/* ---------- Steps ---------- */
.step-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.step { position: relative; padding: 1.8rem 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; color: var(--copper); display: block; margin-bottom: 0.55rem; line-height: 1; }
.step h3 { color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Makes marquee ---------- */
.makes { padding-block: 2.6rem; border-block: 1px solid var(--line); overflow: hidden; background: var(--bg-warm); }
.makes__label { text-align: center; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.28em; color: var(--copper); font-size: 0.74rem; margin-bottom: 1.5rem; }
.makes__track { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.makes__row { display: flex; gap: 2.6rem; width: max-content; animation: marquee 44s linear infinite; }
.makes__row span { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.05em; color: var(--muted); font-size: 1.18rem; white-space: nowrap; transition: color 0.2s; }
.makes:hover .makes__row { animation-play-state: paused; }
.makes__row span:hover { color: var(--copper-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Certifications — chrome medallions on graphite ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.cert-card { text-align: center; padding: 2rem 1.4rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.cert-card__badge { display: inline-grid; place-items: center; width: 4.2rem; height: 4.2rem; border-radius: 50%; font-family: var(--font-cond); font-weight: 600; letter-spacing: 0.04em; font-size: 1.02rem; color: #23282f; background: var(--chrome-grad); border: 2px solid #f5f2ea; outline: 1px solid rgba(208, 138, 82, 0.4); outline-offset: 3px; margin-bottom: 1.1rem; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.6), inset 0 -2px 6px rgba(0, 0, 0, 0.14); }
/* Real certification-mark logos — presented on a porcelain plaque so the
   official colors read correctly on the graphite card */
.cert-card__logo { display: inline-grid; place-items: center; width: 7.4rem; height: 5rem; padding: 0.65rem 0.9rem; border-radius: 12px; background: #fdfcf9; border: 1px solid rgba(208, 138, 82, 0.35); margin-bottom: 1.1rem; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.55); }
.cert-card__logo img { width: 100%; height: 3.7rem; object-fit: contain; }
.cert-card h3 { color: var(--ink); margin-bottom: 0.4rem; }
.cert-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Reviews ---------- */
.rating-badge { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 0.8rem; margin: -1rem auto 2.2rem; }
.rating-badge__stars { color: var(--copper-bright); font-size: 1.35rem; letter-spacing: 0.14em; }
.rating-badge__num { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--ink); }
.rating-badge__by { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-size: 0.78rem; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.quote-card { padding: 1.9rem 1.7rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.85rem; }
.quote-card__stars { color: var(--copper-bright); letter-spacing: 0.18em; font-size: 1rem; }
.quote-card blockquote { font-family: var(--font-body); color: #cfcabd; font-size: 1.02rem; line-height: 1.66; flex: 1; }
.quote-card figcaption { font-family: var(--font-cond); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; color: var(--ink); }
.quote-card figcaption span { display: block; text-transform: none; letter-spacing: 0; font-weight: 400; font-family: var(--font-body); color: var(--muted); font-size: 0.86rem; margin-top: 0.2rem; }

/* ---------- Service areas / chip links ---------- */
.area-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.4rem; }
.area-links span, a.area-links__chip { font-family: var(--font-cond); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: var(--ink); padding: 0.55rem 1.1rem; border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.area-links span:hover, a.area-links__chip:hover { border-color: var(--copper); color: var(--copper-bright); background: var(--surface-2); }
/* chips on the near-black page-head */
.page-head a.area-links__chip { background: rgba(255, 255, 255, 0.04); border-color: rgba(208, 138, 82, 0.32); color: #d8d1c2; }
.page-head a.area-links__chip:hover { border-color: var(--copper); color: var(--copper-bright); background: rgba(255, 255, 255, 0.07); }

/* ---------- CTA band (carbon punch) ---------- */
.cta-band { position: relative; overflow: hidden; padding-block: clamp(3.8rem, 7vw, 6.2rem); background: radial-gradient(130% 130% at 50% -10%, #191b20, #0f1013); color: var(--d-text); text-align: center; }
.cta-band h2 { color: #f6f2ea; }
.cta-band .lede { color: #c9c2b3; }
.cta-band__glow { position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 120%, rgba(208, 138, 82, 0.2), transparent 60%); pointer-events: none; }
.cta-band::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(208, 138, 82, 0.55), transparent); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { margin-block: 0.8rem 0.9rem; }
.cta-band .lede { margin-inline: auto; }
.cta-band .hero__actions { margin-top: 1.9rem; }

/* ---------- Page head (near-black mini-hero) ---------- */
.page-head { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.4rem); }
.page-head--tight { padding-bottom: 1rem; }
.page-head .container--wide, .page-head .container { position: relative; z-index: 2; }
.page-head h1 { margin-block: 0.8rem 1rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-block: 0.9rem; border-bottom: 1px solid var(--line); background: var(--bg-warm); font-size: 0.78rem; }
.breadcrumbs .container--wide { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.14em; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--copper-bright); }
.breadcrumbs [aria-current] { color: var(--ink); }
.breadcrumbs__sep { color: var(--line-2); }

/* ---------- Panel / signs cards ---------- */
.panel-card { padding: 1.9rem 1.7rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.panel-card h3 { color: var(--ink); display: flex; align-items: center; gap: 0.5rem; }
.checklist { list-style: none; padding: 0; margin-top: 0.9rem; display: grid; gap: 0.6rem; }
.checklist li { position: relative; padding-left: 1.7rem; color: var(--body); font-size: 0.97rem; }
.checklist li::before { content: ""; position: absolute; left: 0.05rem; top: 0.4em; width: 0.72rem; height: 0.4rem; border-left: 2px solid var(--copper); border-bottom: 2px solid var(--copper); transform: rotate(-45deg); }
.checklist--warn li::before { border: 0; left: 0.1rem; top: 0; width: auto; height: auto; content: "!"; color: var(--copper-bright); font-weight: 600; font-family: var(--font-display); transform: none; }
.signs-card { margin-top: 1.7rem; padding: 1.4rem 1.5rem; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line-2); }
.signs-card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; color: var(--ink); }
.signs-card__icon { display: inline-grid; place-items: center; color: var(--copper); }
.signs-card__icon .icon { width: 1.2rem; height: 1.2rem; }

/* ---------- Related strip ---------- */
.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.related-card { display: flex; flex-direction: column; gap: 0.65rem; padding: 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), border-color 0.25s; }
.related-card:hover { transform: translateY(-4px); border-color: rgba(208, 138, 82, 0.45); }
.related-card__icon { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: rgba(208, 138, 82, 0.08); border: 1px solid rgba(208, 138, 82, 0.35); color: var(--copper); }
.related-card h3 { color: var(--ink); font-size: 1.1rem; }
.text-link { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 500; color: var(--copper-bright); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.75rem; background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color 0.25s; }
.faq[open] { border-color: rgba(208, 138, 82, 0.5); }
.faq summary { cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 400; color: var(--ink); font-size: 1.1rem; line-height: 1.35; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--copper); transition: transform 0.25s; flex: none; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.25rem; }
.faq__a p { color: var(--body); font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-list { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list__ico { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex: none; border-radius: 50%; background: rgba(208, 138, 82, 0.08); border: 1px solid rgba(208, 138, 82, 0.35); color: var(--copper); }
.contact-list .label { display: block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem; color: var(--copper); }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--copper-bright); }
.hours-table { width: 100%; margin-top: 1rem; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-body); letter-spacing: 0.02em; }
.hours-table th { color: var(--body); font-weight: 500; }
.hours-table td { text-align: right; color: var(--ink); }
.hours-table .is-closed td { color: var(--muted); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); aspect-ratio: 16 / 7; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Booking ---------- */
.booking-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); background: #fff; min-height: 720px; }
.booking-embed iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.booking-form-card__note { display: flex; gap: 0.6rem; align-items: flex-start; padding: 1rem 1.1rem; margin-bottom: 1.5rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line-2); color: var(--body); font-size: 0.95rem; }
.booking-form-card__note .icon { color: var(--copper); flex: none; margin-top: 0.15rem; }
.booking-form-card__note a { color: var(--copper-bright); font-weight: 500; }
.booking-assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; color: var(--muted); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; }
.booking-assure span { display: inline-flex; align-items: center; gap: 0.45rem; }
.booking-assure .icon { color: var(--copper); width: 1rem; height: 1rem; }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { position: relative; margin-bottom: 1rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 1.15rem 1rem 0.5rem; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--ink); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.form-field textarea { min-height: 120px; resize: vertical; padding-top: 1.25rem; }
.form-field select { appearance: none; color: var(--body); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-soft); background: #3c3f46; }
.form-field label { position: absolute; left: 1rem; top: 0.95rem; color: var(--muted); pointer-events: none; transition: transform 0.18s, font-size 0.18s, color 0.18s; font-family: var(--font-body); letter-spacing: 0.02em; }
.form-field label.label--static, .form-field input:focus + label, .form-field input:not(:placeholder-shown) + label, .form-field textarea:focus + label, .form-field textarea:not(:placeholder-shown) + label { transform: translateY(-0.62rem); font-size: 0.66rem; color: var(--copper); text-transform: uppercase; letter-spacing: 0.18em; }
.form-status { margin-top: 1rem; font-family: var(--font-body); letter-spacing: 0.02em; }
.form-consent { margin-top: 0.9rem; font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.form-consent a { color: var(--copper-bright); text-decoration: underline; }

/* ==========================================================================
   FOOTER (carbon, copper hairline)
   ========================================================================== */
.site-footer { border-top: 1px solid rgba(208, 138, 82, 0.3); background: linear-gradient(180deg, #131519, #0b0c0f); color: var(--d-muted); margin-top: 0; }
.site-footer h2, .footer-heading { color: #f2efe8; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-block: 3.2rem 2rem; }
.footer-brand p { color: var(--d-muted); margin-top: 0.9rem; max-width: 22rem; font-size: 0.95rem; }
.footer-badges { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.cert-chip { display: grid; place-items: center; min-width: 3rem; padding: 0.32rem 0.65rem; border-radius: 999px; font-family: var(--font-cond); font-weight: 600; letter-spacing: 0.06em; font-size: 0.78rem; color: #23282f; background: var(--chrome-grad); }
/* Real certification logos in the footer — small porcelain plaques */
.cert-chip--logo { background: #fdfcf9; border: 1px solid rgba(208, 138, 82, 0.3); border-radius: 8px; padding: 0.3rem 0.55rem; height: 2.4rem; min-width: 3.6rem; }
.cert-chip--logo img { height: 1.7rem; width: auto; max-width: 4.6rem; object-fit: contain; display: block; }
.footer-heading { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.74rem; margin-bottom: 1.1rem; font-weight: 500; color: var(--copper); }
.footer-links { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a, .footer-links li { color: var(--d-muted); font-size: 0.94rem; }
.footer-links a:hover { color: var(--copper-bright); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; padding-block: 1.3rem; border-top: 1px solid var(--d-line); color: #8d877a; font-size: 0.82rem; font-family: var(--font-cond); letter-spacing: 0.06em; }
.footer-legal a { color: var(--d-muted); }
.footer-legal a:hover { color: var(--copper-bright); }

/* ==========================================================================
   BOOKING OVERLAY
   ========================================================================== */
.book-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; }
.book-overlay.is-open { opacity: 1; visibility: visible; }
.book-overlay__scrim { position: absolute; inset: 0; background: rgba(8, 9, 11, 0.78); backdrop-filter: blur(6px); }
.book-overlay__panel { position: relative; width: min(920px, 94vw); height: min(88vh, 900px); background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(208, 138, 82, 0.6); transform: translateY(18px) scale(0.98); transition: transform 0.35s var(--ease); }
.book-overlay.is-open .book-overlay__panel { transform: none; }
.book-overlay__panel iframe { width: 100%; height: 100%; border: 0; display: block; }
.book-overlay__close { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: #16181d; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.book-overlay__close:hover { background: var(--red); }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta { display: none; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__lockup .am-emblem, .hero__mark .brand-logo-img, .hero__glow, .hero__emblem-wrap::before, .makes__row { animation: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .services-grid, .pillar-grid, .step-grid, .cert-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid, .related-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; margin-left: auto; width: 2.8rem; height: 2.8rem; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 10px; cursor: pointer; position: relative; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; width: 1.2rem; height: 2px; background: #fff; transition: transform 0.25s, opacity 0.25s; }
  .nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(6px); }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: rotate(45deg); } body.nav-open .nav-toggle span::after { transform: rotate(-45deg); }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); margin: 0; flex-direction: column; align-items: stretch; gap: 0.2rem; background: var(--d-panel); border-left: 1px solid var(--d-line); padding: 5.5rem 1.4rem 2rem; transform: translateX(100%); transition: transform 0.35s var(--ease); overflow-y: auto; z-index: 65; }
  body.nav-open .nav { transform: translateX(0); }
  .nav__link, .header-call { padding: 0.9rem 0.8rem; font-size: 0.95rem; }
  .nav__cta { margin: 0.6rem 0 0; }
  .nav__item--dropdown { display: flex; flex-direction: column; }
  .nav__dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; grid-template-columns: 1fr; background: transparent; border: 0; box-shadow: none; padding: 0.2rem 0 0.4rem 0.8rem; display: none; }
  .nav__item--dropdown.is-open .nav__dropdown { display: grid; }
  .header-call { order: 5; }
  .hero__inner { grid-template-columns: 1fr; gap: 1rem; }
  .hero__mark { order: -1; }
  .hero__emblem-wrap { width: min(28rem, 88vw); aspect-ratio: 16 / 10; }
  .hero__mark .brand-logo-img { width: 100%; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .sticky-cta { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 0.5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom)); background: rgba(13, 14, 17, 0.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(208, 138, 82, 0.28); }
  .sticky-cta a { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.75rem; border-radius: 999px; border: 1px solid var(--d-line); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; font-size: 0.8rem; color: #fff; }
  .sticky-cta a .icon { width: 1rem; height: 1rem; color: var(--copper); }
  .sticky-cta__book { background: linear-gradient(180deg, #d31f3a, var(--red)); border-color: var(--red-bright); }
  .sticky-cta__book .icon { color: #fff; }
  main { padding-bottom: 4.5rem; }
}
@media (max-width: 560px) {
  .services-grid, .pillar-grid, .step-grid, .cert-grid, .quotes-grid, .related-strip, .stat-grid, .form-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .brand .brand-word { font-size: 1.25rem; }
  .brand .am-emblem { width: 2.3rem; height: 2.3rem; }
  .site-header .brand-logo-img { height: 3rem; }
  .promise-card { flex-direction: column; gap: 0.7rem; }
}
