/* ============================================================
   ATD Detailing - Website styles
   Consumes design-system tokens from ../styles.css
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-400); text-decoration: none; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ---------- Header ---------- */
.site-header-group { position: sticky; top: 0; z-index: 50; }
.promo-banner {
  position: relative; z-index: 1;
  background: rgba(20,20,19,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  color: var(--gold-200);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  font-weight: 500;
}
.promo-banner strong { color: var(--gold-400); font-weight: 800; }
.promo-banner .dot { color: var(--gold-500); margin: 0 2px; }
.promo-banner .code {
  font-family: var(--font-mono, 'Courier New', monospace);
  background: rgba(198, 154, 62, 0.2);
  color: var(--gold-300);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 560px) {
  .promo-banner { font-size: 11.5px; padding: 8px 12px; line-height: 1.5; }
  .promo-banner .code { padding: 1px 6px; }
}
.promo-star { color: var(--gold-200); text-decoration: none; font-weight: 800; margin-left: 3px; }
.promo-star:hover { text-decoration: underline; }
.site-header {
  position: relative; z-index: 2;
  border-bottom: none;
  background: rgba(13, 13, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
}
.header-logo { flex: 0 0 auto; }
.header-logo img { height: 44px; width: auto; flex-shrink: 0; }
.site-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.site-nav a {
  color: var(--text-secondary);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color .18s;
}
.site-nav a:hover { color: var(--gold-300); }
.header-ctas { display: flex; gap: 12px; align-items: center; }
/* Instagram in the nav: icon only on desktop, labelled row in the mobile menu */
.site-nav a.nav-ig { display: inline-flex; align-items: center; gap: 10px; }
.nav-ig-icon { width: 21px; height: 21px; display: block; fill: currentColor; }
.nav-ig-label { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn-gold { position: relative; overflow: hidden; background: var(--gradient-gold); color: var(--text-on-gold); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); pointer-events: none;
  animation: btnShine 4.6s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -60%; }
  18%, 100% { left: 140%; }
}
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.09); color: var(--gold-200); }
.btn-gold:hover::after { animation: btnShineHover .72s ease-out; }
@keyframes btnShineHover {
  0% { left: -60%; }
  100% { left: 140%; }
}
@media (prefers-reduced-motion: reduce) { .btn-gold::after { animation: none; display: none; } .btn-gold:hover::after { animation: none; } }
.btn-outline { border-color: var(--border-gold); color: var(--gold-300); background: transparent; }
.btn-outline:hover { background: rgba(198, 154, 62, 0.10); color: var(--gold-200); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* Mobile nav */
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--border-strong); color: var(--text-primary); padding: 8px 12px; border-radius: 2px; font-size: 18px; line-height: 1; cursor: pointer; }

/* Services dropdown (click to open) */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger { display: inline-flex !important; align-items: center; gap: 7px; cursor: pointer; }
.nav-dd-trigger::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; transition: transform .2s ease;
}
.nav-dd.open .nav-dd-trigger { color: var(--gold-300); }
.nav-dd.open .nav-dd-trigger::after { transform: rotate(-135deg); margin-top: 2px; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px; padding: 6px;
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(18, 18, 18, 0.98); border: 1px solid var(--border-strong);
  border-radius: 5px; box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; z-index: 80;
}
.nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-menu::before {
  content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: rgba(18, 18, 18, 0.98);
}
.nav-dd-menu a { padding: 10px 14px !important; font-size: 12.5px !important; border-radius: 3px; white-space: nowrap; width: 100%; box-sizing: border-box; }
.nav-dd-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--gold-300); }

@media (max-width: 1020px) {
  .nav-dd { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dd-trigger::after { display: none; }
  .nav-dd-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: none; border: none; box-shadow: none; padding: 6px 0 0 16px; min-width: 0; gap: 4px;
  }
  .nav-dd-menu::before { display: none; }
  .nav-dd-menu a { padding: 8px 0 !important; font-size: 14px !important; color: var(--text-secondary); }
}
/* Between the mobile breakpoint and the wrap cap the row is tight: pull the gaps in rather than let the logo shrink */
@media (min-width: 1021px) and (max-width: 1254px) {
  .site-header .wrap { gap: 16px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 12px; letter-spacing: 0.04em; }
}
@media (max-width: 1020px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(13, 13, 13, 0.97); padding: 20px clamp(20px, 4vw, 48px) 26px;
    border-bottom: 1px solid var(--border); gap: 18px;
    /* Cap to the space below the sticky header and scroll internally, so the
       last item stays reachable on short viewports and in landscape. */
    max-height: calc(100dvh - 76px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  @supports not (height: 100dvh) { .site-nav.open { max-height: calc(100vh - 76px); } }
  .nav-toggle { display: block; order: 3; margin-left: 8px; }
  .header-ctas { margin-left: auto; order: 2; }
  .header-ctas .btn-outline { display: inline-flex; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section[id] { scroll-margin-top: 0; padding-top: clamp(34px, 4vw, 52px); }
.section-alt { background: var(--bg-base); }
.eyebrow {
  font-family: var(--font-wide); font-size: 15px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-gold);
  margin: 0 0 20px;
}
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px); line-height: 1.12;
  margin: 0 0 22px; color: var(--text-primary);
}
.section-lede { max-width: 60ch; color: var(--text-secondary); margin: 0 0 60px; font-size: clamp(16px, 2.2vw, 18px); line-height: 1.75; }
.center { text-align: center; }
.center .section-lede { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero-scrim { position: absolute; inset: 0; background:
  radial-gradient(125% 82% at 50% 60%, rgba(12,12,12,0.74) 0%, rgba(12,12,12,0.34) 44%, rgba(12,12,12,0) 76%),
  linear-gradient(180deg, rgba(13,13,13,0.60) 0%, rgba(13,13,13,0.30) 36%, rgba(13,13,13,0.92) 86%, #0d0d0d 100%); }
.hero-inner { position: relative; padding: 140px 0 clamp(64px, 8vw, 110px); width: 100%; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(42px, 6vw, 76px); line-height: 1.04;
  margin: 0 0 22px; max-width: 15ch; color: var(--text-primary);
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero-sub { max-width: 36ch; font-size: clamp(16px, 3vw, 18px); color: var(--text-secondary); margin: 0 0 34px; text-wrap: pretty; }
.hero-hook {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(198, 154, 62, 0.35); background: rgba(13, 13, 13, 0.4);
  color: var(--gold-200); font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 10px 18px; border-radius: 999px; margin: 0 0 28px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-hook .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); flex: none; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Centred hero + shield logo */
.hero-center { align-items: center; text-align: center; }
.hero-center .hero-inner { display: flex; flex-direction: column; align-items: center; padding: 130px 0; }
.hero-center h1 { margin-left: auto; margin-right: auto; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-center .hero-ctas { justify-content: center; }
.hero-logo { width: clamp(190px, 26vw, 340px); height: auto; margin: 0 0 26px; filter: drop-shadow(0 10px 34px rgba(0,0,0,0.55)); }

/* Hero load-in (same .in reveal pattern used across the site) */
@media (prefers-reduced-motion: no-preference) {
  .hero-rise { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1); }
  .hero-rise:nth-child(1) { transition-delay: 0.10s; }
  .hero-rise:nth-child(2) { transition-delay: 0.22s; }
  .hero-rise:nth-child(3) { transition-delay: 0.34s; }
  .hero-rise:nth-child(4) { transition-delay: 0.48s; }
  .hero-rise:nth-child(5) { transition-delay: 0.62s; }
  .hero-rise.in { opacity: 1; transform: none; }
}
@media (max-width: 620px) {
  .hero-ctas { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 12px; }
  .btn-sm { padding: 9px 16px; }
}

/* ---------- Brand strip ---------- */
.brands { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-deep); padding: 34px 0; }
.brands-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 22px; }
.brands-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.brand-bubble {
  display: flex; align-items: center; justify-content: center;
  width: 158px; height: 80px; padding: 16px 22px;
  background: #ffffff; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.34);
  outline: 1px solid transparent; outline-offset: 0;
  transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s cubic-bezier(.4,0,.2,1), outline-color .22s;
}
.brand-bubble img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.brand-bubble:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.46); outline-color: rgba(242,225,135,.55); }
@media (max-width: 560px) { .brand-bubble { width: 132px; height: 68px; padding: 13px 18px; } }

/* ---------- Icon glyphs (brand SVG line icons, tinted via mask) ---------- */
.glyph {
  display: inline-block; width: 64px; height: 64px;
  background-color: var(--gold-300);
  -webkit-mask: var(--i) center / contain no-repeat;
  mask: var(--i) center / contain no-repeat;
}
/* Full-colour gold icon set (baked gradient + accents) - used as images */
.svc-ico .svc-glyph { width: 42px; height: 42px; object-fit: contain; display: block; }
.outcome .oc-img { width: 34px; height: 34px; object-fit: contain; display: block; margin-bottom: 16px; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1020px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  border: 1px solid var(--border); background: var(--surface-1);
  padding: 40px 34px 36px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s;
}
.svc-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.svc-ring {
  width: 108px; height: 108px; border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: radial-gradient(circle at 50% 42%, rgba(198,154,62,0.16), rgba(13,13,13,0) 72%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.svc-card h3 { font-family: var(--font-wide); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; color: var(--gold-300); }
.svc-card p { margin: 0; color: var(--text-secondary); font-size: 15px; flex: 1; }
.svc-link { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); }
.svc-link:hover { color: var(--gold-200); }

.addons { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.addons-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-right: 8px; }
.chip {
  border: 1px solid var(--border-strong); color: var(--text-secondary);
  font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 999px;
}

/* ---------- Service accordion ---------- */
.svc-list { display: flex; flex-direction: column; gap: 20px; }
.svc-panel { border: 1px solid var(--border); background: var(--surface-1); transition: border-color .3s ease, box-shadow .3s ease; }
.svc-panel:hover { border-color: rgba(198, 154, 62, 0.4); }
.svc-panel[open] { border-color: var(--border-gold); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32); }
.svc-panel > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: clamp(16px,2.5vw,26px); padding: clamp(26px,3.4vw,36px) clamp(24px,3.4vw,40px); }
.svc-panel > summary::-webkit-details-marker { display: none; }
.svc-ico { flex: none; width: 62px; height: 62px; border-radius: 50%; border: 1.5px solid var(--border-gold); background: radial-gradient(circle at 50% 42%, rgba(198,154,62,0.16), rgba(13,13,13,0) 72%); display: flex; align-items: center; justify-content: center; }
.svc-ico .glyph { width: 42px; height: 42px; }
.svc-sum { flex: 1; }
.svc-sum h3 { font-family: var(--font-wide); font-size: clamp(19px,2.4vw,23px); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; margin: 0 0 6px; color: var(--gold-300); }
.svc-sum p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.svc-toggle { flex: none; position: relative; width: 24px; height: 24px; }
.svc-toggle::before, .svc-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold-400); transition: transform .3s ease, opacity .3s ease; }
.svc-toggle::before { width: 17px; height: 2px; transform: translate(-50%,-50%); }
.svc-toggle::after { width: 2px; height: 17px; transform: translate(-50%,-50%); }
.svc-panel[open] .svc-toggle::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.svc-body { padding: 0 clamp(24px,3.4vw,40px) clamp(30px,3.4vw,38px); }
.pkg-stack { display: flex; flex-direction: column; gap: 16px; }
.pkg-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0 16px; }
@media (max-width: 760px) { .pkg-grid-3 { grid-template-columns: 1fr; } }
.pkg { position: relative; border: 1px solid var(--border); background: var(--ink-950); padding: 22px 24px; }
.pkg-feat { border-color: var(--border-gold); background: linear-gradient(180deg, rgba(198,154,62,0.08), rgba(13,13,13,0) 55%), var(--ink-950); }
.pkg-badge { position: absolute; top: 16px; right: 18px; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.07em; font-size: 10.5px; color: var(--gold-200); background: rgba(198,154,62,0.14); border: 1px solid var(--gold-500); border-radius: 999px; padding: 5px 11px; }
.pkg-pop { box-shadow: 0 12px 34px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(198,154,62,0.5); }
/* In the 3-up paint-correction grid: badge is a ribbon on the top edge so every
   card's title starts at the same height; featured card keeps only the gold
   border (no fill/glow) so it doesn't read as a 'selected' state. */
.pkg-grid-3 .pkg { display: flex; flex-direction: column; padding-top: 38px; }
.pkg-grid-3 .pkg-badge { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); margin: 0; white-space: nowrap; z-index: 2; font-size: 10.5px; padding: 5px 13px; letter-spacing: 0.06em; line-height: 1; text-align: center; }
.pkg-grid-3 .pkg-feat { background: var(--surface-1); }
.pkg-grid-3 .pkg-pop { box-shadow: none; }
.pkg-top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.pkg-top h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0; color: var(--text-primary); }
.pkg-price { font-family: var(--font-display); font-size: 19px; color: var(--gold-400); }
.pkg-tag { font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.07em; font-size: 11px; color: var(--text-muted); margin-left: auto; }
.pkg-imp { display: block; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px; line-height: 1.25; color: var(--text-gold); margin-bottom: 8px; }
/* Narrower 3-up cards can't fit the stat on one line at that size - tighten so the wrap reads as an intentional 2-line stat, not a broken label */
.pkg-grid-3 .pkg-imp { font-size: 10.5px; letter-spacing: 0.02em; }
.pkg-desc { margin: 4px 0 0; font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.pkg-wide { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px,3vw,38px); align-items: center; margin-top: 14px; padding: clamp(22px,2.6vw,30px) clamp(24px,3vw,32px); }
.pkg-wide .pkg-desc { max-width: 52ch; }
.pkg-wide .comp-bar { margin-top: 0; }
@media (max-width: 760px) { .pkg-wide { grid-template-columns: 1fr; gap: 18px; } }
.pkg-opts { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.opt { font-size: 12.5px; color: var(--text-primary); border: 1px solid var(--border-gold); border-radius: 999px; padding: 6px 14px; }
.opt b { font-family: var(--font-display); color: var(--gold-400); margin-left: 4px; }
.opt-feat { background: var(--gradient-gold); border-color: var(--gold-500); color: var(--text-on-gold); font-weight: 600; }
.opt-feat b { color: var(--text-on-gold); }
.incl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; }
@media (max-width: 520px) { .incl-cols { grid-template-columns: 1fr; } }
.incl-h { display: block; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; color: var(--text-gold); margin-bottom: 8px; }
.incl { list-style: none; margin: 0; padding: 0; }
.incl li { position: relative; padding: 4px 0 4px 16px; font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.incl li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--gold-500); border-radius: 50%; }
.incl-gold { color: var(--gold-300); font-weight: 600; }
.incl-inline { display: flex; flex-wrap: wrap; gap: 6px 26px; margin: 14px 0 0; }
.svc-foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.svc-note { font-size: 12.5px; color: var(--text-muted); max-width: 46ch; line-height: 1.65; }

/* Interactive detailing tabs */
.detail-tabs { padding: 26px clamp(20px,3vw,28px) 28px; }
.dt-scope { display: block; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; color: var(--text-gold); margin-bottom: 12px; }
.dt-tabs { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.dtab { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text-secondary); background: transparent; border: 1px solid var(--border-strong); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: border-color .18s, color .18s, background .18s; display: inline-flex; align-items: center; gap: 8px; }
.dtab b { font-family: var(--font-display); color: var(--gold-400); font-weight: 700; }
.dtab:hover { border-color: var(--border-gold); color: var(--text-primary); }
.dtab.is-active { background: rgba(198,154,62,0.13); border-color: var(--gold-500); color: var(--gold-100); box-shadow: inset 0 0 0 1px rgba(198,154,62,0.45); }
.dtab.is-active b { color: var(--gold-300); }
.dt-panel { display: none; }
.dt-panel.is-active { display: block; animation: dtfade .25s ease; }
@keyframes dtfade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.dt-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.dt-top h4 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0; color: var(--text-primary); }
.dt-desc { margin: -6px 0 16px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; max-width: 76ch; }
@media (prefers-reduced-motion: reduce) { .dt-panel.is-active { animation: none; } }

/* Complimentary highlight bar */
.comp-bar { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin-top: 16px; padding: 14px 18px; border: 1px solid var(--border-gold); background: rgba(198,154,62,0.10); border-radius: 4px; font-size: 13.5px; color: var(--gold-100); line-height: 1.4; }
.comp-bar strong { color: var(--gold-200); font-weight: 700; }
.comp-text { line-height: 1.45; }
.comp-tag { flex: none; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.07em; font-size: 10.5px; color: var(--text-on-gold); background: var(--gradient-gold); border-radius: 999px; padding: 5px 11px; }
.svc-baseline { font-size: 12.5px; color: var(--text-secondary); margin: 14px 0 0; }

/* Add-on pill grid */
.addon-block { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.addon-h { display: block; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; color: var(--text-gold); margin-bottom: 13px; }
.addon-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.addon { font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; line-height: 1.2; }
.addon b { color: var(--gold-400); font-weight: 600; margin-left: 5px; }
/* Add-on block used inside the ceramic package stack (no divider, boxed) */
.addon-inset { margin-top: 0; padding: 18px 22px; border-top: none; border: 1px solid var(--border); background: var(--ink-950); }
/* Expanded ceramic add-on cards - name + price plus a durability/benefit caption */
.addon-coat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.addon-coat { border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px; }
.addon-coat-top { font-size: 13px; color: var(--text-secondary); display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.addon-coat-top b { color: var(--gold-400); font-weight: 600; flex: none; }
.addon-coat-sub { margin: 6px 0 0; font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Footer Instagram block */
.foot-iglabel { color: var(--text-secondary); font-weight: 600; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 1px solid var(--border-gold); padding: 22px 6px 0; }
.step-num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--gold-500); display: block; margin-bottom: 12px; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1, "onum" 0; }
.step h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 8px; color: var(--text-primary); }
.step p { margin: 0; font-size: 14px; color: var(--text-secondary); }

/* ---------- Before / After slider ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 1020px) { .ba-grid { grid-template-columns: 1fr; } }
.ba {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--border); background: var(--ink-850);
  --pos: 50%;
  min-height: 200px;
}
@media (max-width: 620px) {
  .ba { min-height: 240px; }
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--gold-400); transform: translateX(-1px); pointer-events: none;
}
.ba-divider::after {
  content: '\2194';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-500); color: var(--ink-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-tag {
  position: absolute; bottom: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(13,13,13,0.72); color: var(--gold-200);
  padding: 6px 12px; pointer-events: none;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }
.ba-caption { margin: 12px 2px 0; font-size: 13px; color: var(--text-muted); }

/* ---------- Comparison carousel ---------- */
.ba-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.ba-chip {
  font: inherit; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text-muted); background: transparent; border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: color .2s, background .2s, border-color .2s;
}
.ba-chip:hover { color: var(--text-primary); border-color: var(--gold-500); }
.ba-chip.is-active { color: var(--ink-900); background: var(--gold-400); border-color: var(--gold-400); }

.ba-carousel { position: relative; margin-top: 22px; }
.ba-track {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 4px 2px; scrollbar-width: none; -ms-overflow-style: none;
}
.ba-track::-webkit-scrollbar { display: none; }
.ba-card { flex: 0 0 auto; width: calc((100% - 18px) / 2); }
@media (max-width: 760px) { .ba-card { width: 100%; box-sizing: border-box; scroll-snap-align: start; } }
.ba-track .ba-card[hidden] { display: none; }

.ba-arrow {
  position: absolute; top: 47%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: rgba(32,32,32,0.86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--gold-300); font-size: 24px; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.ba-arrow:hover { background: var(--gold-400); color: var(--ink-900); border-color: var(--gold-400); }
.ba-arrow.prev { left: 10px; }
.ba-arrow.next { right: 10px; }
.ba-arrow:disabled { opacity: 0.28; cursor: default; pointer-events: none; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
@media (max-width: 1020px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; border: 1px solid var(--border); }

/* ---------- Rolling gallery (marquee) ---------- */
.gallery-head { text-align: center; margin-top: clamp(48px, 6vw, 72px); }
.gallery-title {
  font-family: var(--font-expanded, 'Zalando Sans Expanded', sans-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px); letter-spacing: 0.01em; margin: 0 0 8px;
}
.gallery-sub { margin: 0; font-size: 14px; color: var(--text-muted); }
.marquee { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.marquee-wrap {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-row { display: flex; gap: 16px; width: max-content; will-change: transform; }
.marquee-row.left { animation: marq-left 72s linear infinite; }
.marquee-row.right { animation: marq-right 88s linear infinite; }
@keyframes marq-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-item {
  flex: 0 0 auto; width: 340px; height: 234px; overflow: hidden;
  border: 1px solid var(--border); background: var(--ink-850); position: relative;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 620px) { .marquee-item { width: 260px; height: 182px; } }
@media (prefers-reduced-motion: reduce) { .marquee-row { animation: none; } }

/* ---------- Map ---------- */
.map-section {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--border);
}
.map-frame {
  height: 440px; overflow: hidden;
  border: 1px solid var(--border-gold); border-radius: 10px;
  background: var(--ink-950);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.map-frame iframe { display: block; }
@media (max-width: 620px) {
  .map-frame { height: 320px; }
}

/* ---------- Reviews ---------- */
.google-banner {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  border: 1px solid var(--border-gold); background: var(--surface-1);
  width: 100%; margin: 0 auto 40px; max-width: 640px;
  padding: clamp(16px, 4vw, 22px) clamp(16px, 4vw, 30px);
  font-size: clamp(12px, 2vw, 14px);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.google-banner:hover {
  border-color: var(--gold-300);
  background: rgba(198, 154, 62, 0.08);
}
@media (max-width: 520px) {
  .google-banner { gap: 8px 12px; padding: 16px 18px; }
  .google-banner .google-g { font-size: 22px; }
  .google-banner .score { font-size: 20px; }
  .google-banner .stars { font-size: 17px; letter-spacing: 2px; }
  .google-banner .count { flex-basis: 100%; text-align: center; margin-top: 2px; }
}
.google-g { font-family: var(--font-sans); font-weight: 800; font-size: 30px; color: var(--gold-400); }
.stars { color: var(--gold-400); font-size: 19px; letter-spacing: 3px; }
.google-banner .score { font-weight: 800; font-size: 22px; color: var(--text-primary); }
.google-banner .count { font-size: 14px; color: var(--text-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1020px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { border: 1px solid var(--border); background: var(--surface-1); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; }
.review-card blockquote { margin: 0; font-size: 15px; color: var(--text-secondary); flex: 1; }
.review-who { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 14px; }
.review-name { font-weight: 700; color: var(--text-primary); font-size: 15px; }
.review-car { font-size: 13px; color: var(--text-gold); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.sample-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 26px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 1020px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { border: 1px solid var(--border-gold); padding: 10px; background: var(--ink-950); overflow: hidden; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 27 / 40; object-fit: cover; object-position: center 38%; display: block; }
.about-copy p { color: var(--text-secondary); margin: 0 0 18px; }
.about-copy p strong { color: var(--gold-300); }
.about-copy p.eyebrow { color: var(--text-gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
@media (max-width: 1020px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--border); background: var(--surface-1);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px); text-align: center;
  min-height: 230px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.contact-card h3 { font-family: var(--font-wide); font-size: 17px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-300); margin: 0; }
.contact-card p { margin: 0; font-size: 14px; color: var(--text-secondary); }
.contact-card .big { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.03em; margin-top: 4px; }
.contact-card a.big[href^="mailto:"] { font-size: clamp(16px, 1.55vw, 19px); letter-spacing: 0.01em; }

.hours-areas { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(30px, 5vw, 70px); }
@media (max-width: 1020px) { .hours-areas { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.hours-table td:last-child { text-align: right; color: var(--text-primary); font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--text-muted); font-weight: 400; }
.block-title { font-family: var(--font-wide); font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 18px; }
.areas p { color: var(--text-secondary); font-size: 15px; margin: 0 0 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(70px, 9vw, 110px) 0; }
.cta-band .hero-bg { object-position: center 60%; }
.cta-band .hero-scrim { background: rgba(13, 13, 13, 0.82); }
.cta-band .wrap { position: relative; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-size: 18px; font-weight: 600; color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-size: 26px; color: var(--gold-400); flex: none; transition: transform .2s; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-a { padding: 0 4px 26px; color: var(--text-secondary); font-size: 15px; max-width: 68ch; }
.faq-item .faq-a p { margin: 0 0 12px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: clamp(70px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--border); background: var(--bg-base); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5vw, 58px); margin: 0 0 14px; }
.page-hero p { max-width: 62ch; color: var(--text-secondary); margin: 0; }

/* ---------- Terms (light paper panel) ---------- */
.paper-panel { background: var(--paper); color: var(--text-on-light); }
.paper-panel .doc { max-width: 860px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px); }
.paper-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.2; color: var(--text-on-light); margin: 0 0 14px; padding-top: 22px; border-top: 1px solid var(--border-on-light); }
.paper-panel h2 .num { display: inline-block; color: var(--gold-700); font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; vertical-align: middle; margin-right: 10px; }
.paper-panel p { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: var(--text-on-light); margin: 0 0 14px; }
.paper-panel table { width: 100%; border-collapse: collapse; margin: 4px 0 18px; font-size: 14px; }
.paper-panel th { text-align: left; padding: 10px 14px; border-bottom: 2px solid var(--gold-700); color: var(--text-on-light); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
.paper-panel th:first-child, .paper-panel td:first-child { padding-left: 0; }
.paper-panel td { padding: 10px 14px; border-bottom: 1px solid var(--border-on-light); color: var(--text-on-light); }
.paper-panel td + td { color: var(--text-on-light-2); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--ink-950); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); margin-bottom: 44px; }
@media (max-width: 1020px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid p { font-size: 14px; color: var(--text-muted); margin: 16px 0 0; max-width: 42ch; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-gold); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--text-secondary); }
.footer-col a:hover { color: var(--gold-300); }
.foot-ig { display: flex; flex-direction: column; gap: 3px; }
.foot-sub { font-size: 12px; color: var(--text-muted); font-style: italic; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }

/* Reveal on scroll (subtle, respects reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   V2 - NEUTRAL DARK THEME
   Charcoal / near-black / greys + gold accents (no navy). Overrides
   the design-system aliases for THIS page only (site-v2.css). The
   design system itself is untouched. Light text on dark for easy
   reading; gold stays the accent.
   ============================================================ */
:root {
  --bg-deep:        #0d0d0d;             /* page backdrop (near-black) */
  --bg-base:        #161616;             /* alt sections (charcoal) */
  --surface-1:      #242424;             /* cards */
  --text-primary:   #f4f3f1;             /* warm white */
  --text-secondary: #c3c1bd;             /* body grey */
  --text-muted:     #9d9b97;             /* meta grey (AA on #242424 cards) */
  --text-gold:      var(--gold-500);     /* bright gold for text on dark */
  --border:         rgba(255, 255, 255, 0.10);
  --border-strong:  rgba(255, 255, 255, 0.17);
  --border-gold:    rgba(198, 154, 62, 0.45);
}
body { background: #0d0d0d; }

/* Header */
.site-header { background: rgba(13, 13, 13, 0.86); border-bottom: none; }
.site-nav a { color: #cdcbc7; }
.site-nav a:hover { color: var(--gold-300); }
.nav-toggle { border-color: rgba(255, 255, 255, 0.22); color: #fff; }
@media (max-width: 1020px) {
  .site-nav.open { background: rgba(13, 13, 13, 0.98); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}

/* Hero - dark photo island */
.hero h1 { color: #ffffff; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.55); }
.hero h1 em { color: var(--gold-300); }
.hero-sub { color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6); }

/* Brand strip - a toned-down lift above the near-black sections, so the strip
   reads as its own band without jumping to the full charcoal alt tone. */
.brands { background: #161616; }

/* Icons (bright gold on dark) */
.glyph { background-color: var(--gold-300); }

/* Service accordion */
.svc-panel { background: #242424; box-shadow: none; }
.svc-panel:hover { border-color: rgba(198, 154, 62, 0.4); }
.svc-panel[open] { border-color: var(--border-gold); box-shadow: 0 20px 46px rgba(0, 0, 0, 0.35); }
.svc-sum h3 { color: var(--gold-300); }

/* Package cards */
.pkg { background: #242424; border-color: var(--border); }
.pkg-feat { background: linear-gradient(180deg, rgba(198, 154, 62, 0.10), rgba(255, 255, 255, 0) 58%), #242424; border-color: var(--border-gold); }
.pkg-pop { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(198, 154, 62, 0.45); }
.pkg-price { color: var(--gold-400); }
.pkg-badge { color: var(--gold-200); background: rgba(198, 154, 62, 0.14); border: 1px solid var(--gold-500); }

/* Detailing tabs */
.dtab { color: #c3c1bd; border-color: rgba(255, 255, 255, 0.18); }
.dtab b { color: var(--gold-400); }
.dtab:hover { border-color: var(--gold-600); color: #fff; }
.dtab.is-active { background: rgba(198, 154, 62, 0.14); border-color: var(--gold-500); color: var(--gold-100); box-shadow: inset 0 0 0 1px rgba(198, 154, 62, 0.45); }
.dtab.is-active b { color: var(--gold-300); }

/* Complimentary bar + inclusions */
.comp-bar { background: rgba(198, 154, 62, 0.10); border-color: var(--border-gold); color: var(--gold-100); }
.comp-bar strong { color: var(--gold-200); }
.incl-gold { color: var(--gold-300); }
.addon { border-color: rgba(255, 255, 255, 0.12); }
.addon b { color: var(--gold-400); }
.addon-inset { background: #242424; border-color: var(--border); }
.addon-coat { border-color: rgba(255, 255, 255, 0.12); }

/* Before/after + gallery */
.ba { background: #242424; border-color: var(--border); }

/* Reviews */
.google-banner { background: #242424; box-shadow: none; }
.google-g { color: var(--gold-400); }
.stars { color: var(--gold-400); }
.review-card { background: #242424; box-shadow: none; }
.review-car { color: var(--text-gold); }

/* About */
.about-photo { background: #242424; border-color: var(--border-gold); }
.about-copy p strong { color: var(--gold-300); }

/* Contact */
.contact-card { background: #242424; box-shadow: none; }
.contact-card h3 { color: var(--gold-300); }
.block-title { color: var(--gold-300); }

/* Map */
.map-section { background: var(--bg-deep); }
.map-frame { filter: grayscale(0.25) contrast(1.05); }

/* Footer */
.site-footer { background: #0b0b0b; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid p { color: #9d9b96; }
.footer-col h4 { color: var(--gold-400); }
.footer-col a, .footer-col li { color: #c6c4bf; }
.footer-col a:hover { color: var(--gold-300); }
.foot-iglabel { color: #e9e8e4; }
.foot-sub { color: #8e8c87; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); color: #8e8c87; }

/* ---------- Instagram section ---------- */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.ig-head .section-title { margin-bottom: 14px; }
.ig-follow { align-items: center; gap: 10px; }
.ig-glyph { width: 18px; height: 18px; flex: none; border: 2px solid currentColor; border-radius: 6px; position: relative; }
.ig-glyph::before { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 50%; transform: translate(-50%, -50%); }
.ig-glyph::after { content: ''; position: absolute; top: 2px; right: 2px; width: 2.5px; height: 2.5px; border-radius: 50%; background: currentColor; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 1020px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--border); background: #242424; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1); }
.ig-tile:hover img { transform: scale(1.06); }
.ig-ov { position: absolute; inset: 0; background: rgba(20, 20, 25, 0); transition: background .3s; }
.ig-tile:hover .ig-ov { background: rgba(150, 100, 20, 0.22); }
.ig-note { text-align: center; font-size: 13px; color: var(--text-muted); margin: 26px 0 0; }

/* ---------- "Click to expand" cue on service panels ---------- */
.svc-cue { display: none; font-family: var(--font-wide); text-transform: uppercase; letter-spacing: 0.07em; font-size: 11px; color: var(--gold-400); white-space: nowrap; }
@media (min-width: 640px) { .svc-cue { display: inline-block; } }
.svc-cue .cue-close { display: none; }
.svc-panel[open] .svc-cue .cue-open { display: none; }
.svc-panel[open] .svc-cue .cue-close { display: inline; }

/* ---------- Back-to-top button ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-gold); background: rgba(32, 32, 32, 0.82);
  color: var(--gold-300); font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .2s, color .2s;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gradient-gold); color: var(--text-on-gold); border-color: var(--gold-500); }
@media (max-width: 620px) { .to-top { right: 16px; bottom: 16px; } }

/* ---------- Interior pages (FAQ / Terms): centre the hero for alignment ---------- */
.page-hero .wrap { text-align: center; }
.page-hero p { margin-left: auto; margin-right: auto; }

/* ============================================================================
   V3 label typeface - reserve AKONY (--font-wide) for the LARGE service
   headers only. Small eyebrows and stat/accent labels switch to the brand's
   designated label face: Zalando Sans Expanded (--font-expanded) - wide, on
   brand, but far taller / more legible than AKONY at small sizes. Tracking is
   pulled in a touch since the expanded sans is already wide.
   ============================================================================ */
.eyebrow,
.pkg-badge,
.pkg-tag,
.pkg-imp,
.incl-h,
.dt-scope,
.comp-tag,
.addon-h,
.svc-cue,
.contact-card h3,
.block-title {
  font-family: var(--font-expanded);
  font-weight: 500;
}
.eyebrow { letter-spacing: 0.14em; }
.pkg-badge,
.comp-tag { letter-spacing: 0.06em; }
.pkg-tag,
.pkg-imp,
.svc-cue { letter-spacing: 0.05em; }
.incl-h,
.dt-scope,
.addon-h { letter-spacing: 0.06em; }
.contact-card h3,
.block-title { letter-spacing: 0.06em; }
.pkg-grid-3 .pkg-imp { letter-spacing: 0.02em; }

/* ============================================================================
   V3 tweaks - spacing, hero fine print
   ============================================================================ */
/* Tighter vertical rhythm on Process & Reviews (less wasted top/bottom space) */
#process, #reviews { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
/* Pull the step rows closer to the lede on the Process section */
#process .section-lede { margin-bottom: 40px; }

/* Hero fine print + promo asterisk */
.hook-ast { color: var(--gold-300); font-size: 0.72em; font-weight: 700; margin-left: 1px; }
.hero-fine { font-size: 12.5px; color: rgba(255, 255, 255, 0.58); letter-spacing: 0.02em; margin: 16px 0 0; }

/* ============================================================================
   V3 mobile hardening - tight-width fixes
   ============================================================================ */
/* Header: keep logo + Enquire + Book + menu on one line on small phones */
@media (max-width: 480px) {
  .site-header .wrap { gap: 10px; }
  .header-logo img { height: 32px; }
  .header-ctas { gap: 8px; }
  .header-ctas .btn-sm { padding: 8px 12px; font-size: 10.5px; letter-spacing: 0.03em; }
  .nav-toggle { padding: 7px 10px; font-size: 16px; margin-left: 6px; }
}
@media (max-width: 360px) {
  .header-logo img { height: 28px; }
  .header-ctas { gap: 6px; }
  .header-ctas .btn-sm { padding: 7px 9px; font-size: 10px; }
  .nav-toggle { padding: 6px 8px; }
}

/* Hero promo pill: wrap into a neat rounded tag rather than a stretched oval */
@media (max-width: 560px) {
  .hero-hook { font-size: 12px; line-height: 1.5; padding: 9px 15px; border-radius: 16px; gap: 9px; text-align: left; }
}

/* Contact: never let a long email push past the card edge */
.contact-card .big { max-width: 100%; overflow-wrap: anywhere; }
@media (max-width: 380px) { .contact-card .big { font-size: 18px; } }

/* Paint-correction cards stack on mobile - drop the "Most Popular" flag into
   normal flow at the top of its own card so it can't float over the card above. */
@media (max-width: 760px) {
  .pkg-grid-3 { margin-top: 16px; }
  .pkg-grid-3 .pkg-badge { position: static; transform: none; margin: 0 0 12px; align-self: flex-start; }
}

/* Terms surcharge table: keep all three columns readable on narrow screens */
@media (max-width: 480px) {
  .paper-panel table { font-size: 12.5px; }
  .paper-panel th, .paper-panel td { padding: 8px; }
}

/* ============================================================================
   MOBILE HARDENING (July build) - defensive safety net
   ============================================================================ */
/* Larger, thumb-friendly tap targets in the open mobile menu (>=44px) */
@media (max-width: 1020px) {
  .site-nav.open a { padding: 8px 0; font-size: 16px; width: 100%; }
  .site-nav.open a.nav-ig { min-height: 44px; }
  .site-nav.open .nav-ig-label { display: inline; }
  .site-nav.open .nav-ig-icon { width: 19px; height: 19px; }
}

/* Trim the tall centred-hero padding on phones + add a little side breathing room
   so the intro copy isn't tight to the screen edges. */
@media (max-width: 620px) {
  .hero-center .hero-inner { padding: 92px 10px; }
  .hero-inner { padding: 108px 0 clamp(48px, 8vw, 90px); }
}

/* Service accordion headings: AKONY is very wide - shrink on phones so long words
   like CORRECTION don't run into the card edge. */
@media (max-width: 560px) {
  .svc-panel > summary { gap: 12px; padding-left: 18px; padding-right: 18px; }
  .svc-ico { width: 48px; height: 48px; }
  .svc-ico .glyph { width: 32px; height: 32px; }
  .svc-ico .svc-glyph { width: 32px; height: 32px; }
  .svc-sum h3 { font-size: 15px; letter-spacing: 0; }
}
@media (max-width: 380px) {
  .svc-panel > summary { gap: 10px; padding-left: 16px; padding-right: 16px; }
  .svc-ico { width: 44px; height: 44px; }
  .svc-ico .glyph { width: 30px; height: 30px; }
  .svc-ico .svc-glyph { width: 30px; height: 30px; }
  .svc-sum h3 { font-size: 14px; }
}

/* Featured package badge (New Car Protection): on phones the title wraps and the
   absolute badge would sit on top of it - drop it into flow above the title. */
@media (max-width: 620px) {
  .pkg-stack .pkg-feat .pkg-badge {
    position: static; display: inline-block; margin: 0 0 14px; white-space: nowrap;
  }
}

/* Before/after carousel on phones: no finger-swiping (it stops half-way); arrows
   only. Move the two arrows into a centred pair BELOW the image so they never
   cover the Before/After labels. */
@media (max-width: 760px) {
  .ba-track { overflow-x: hidden; scroll-snap-type: x mandatory; }
  .ba-carousel { padding-bottom: 64px; }
  .ba-arrow {
    top: auto; bottom: 0; transform: none;
    width: 46px; height: 46px; font-size: 22px;
  }
  .ba-arrow.prev { left: calc(50% - 54px); right: auto; }
  .ba-arrow.next { right: calc(50% - 54px); left: auto; }
}

/* ============================================================================
   LEAD CAPTURE (July 2026) - trust bar + native on-site quote form
   The conversion path: a low-friction quote form captured on-page (Netlify
   Forms -> email + dashboard), sitting high up for cold ad traffic. Urable
   "Book Now" stays for visitors who are ready to book + pay a deposit.
   ============================================================================ */

/* ---- Trust bar (thin proof strip under the hero) ---- */
.trust-bar { background: #111111; border-bottom: 1px solid var(--border); }
.trust-bar .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 30px; padding-top: 16px; padding-bottom: 16px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.01em; white-space: nowrap;
}
.trust-item strong { color: var(--text-primary); font-weight: 700; }
.trust-item .ti-stars { color: var(--gold-400); letter-spacing: 2px; font-size: 13px; }
.trust-item .ti-g { font-family: var(--font-sans); font-weight: 800; color: var(--gold-400); font-size: 15px; }
.trust-item .ti-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); flex: none; }
.trust-sep { width: 1px; height: 18px; background: var(--border-strong); }
@media (max-width: 760px) {
  .trust-sep { display: none; }
  .trust-bar .wrap { gap: 10px 20px; }
  .trust-item { font-size: 12.5px; }
}

/* ---- Quote band (primary conversion block) ---- */
.quote-band { position: relative; scroll-margin-top: 76px; padding: clamp(52px, 6.5vw, 84px) 0; background:
  radial-gradient(120% 90% at 82% 12%, rgba(198,154,62,0.10), rgba(13,13,13,0) 58%), var(--bg-base); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; gap: 34px; } }

.quote-copy .eyebrow { margin-bottom: 16px; }
.quote-copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.12; margin: 0 0 18px; color: var(--text-primary);
}
.quote-copy h2 em { font-style: italic; color: var(--gold-300); }
.quote-copy > p { color: var(--text-secondary); font-size: clamp(15px, 2vw, 17px); margin: 0 0 26px; max-width: 46ch; }
.quote-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.quote-points li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text-primary); line-height: 1.5; }
.quote-points li::before {
  content: ''; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--gradient-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.quote-points li strong { color: var(--gold-300); font-weight: 700; }

/* ---- The form card ---- */
.quote-card {
  border: 1px solid var(--border-gold); background: var(--surface-1);
  border-radius: 6px; padding: clamp(26px, 3.4vw, 38px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.42);
}
.quote-card-head { margin: 0 0 20px; }
.quote-card-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 23px; margin: 0 0 6px; color: var(--text-primary); }
.quote-card-head p { margin: 0; font-size: 13.5px; color: var(--text-muted); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.qf-field { display: flex; flex-direction: column; gap: 7px; }
.qf-field.qf-full { grid-column: 1 / -1; }
.qf-field label {
  font-family: var(--font-expanded); font-weight: 500; font-size: 11px;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-gold);
}
.qf-field label .req { color: var(--gold-500); }
.qf-field input, .qf-field select, .qf-field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--text-primary);
  background: var(--ink-950); border: 1px solid var(--border-strong); border-radius: 3px;
  padding: 12px 14px; width: 100%; transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.qf-field textarea { resize: vertical; min-height: 84px; line-height: 1.55; }
.qf-field input::placeholder, .qf-field textarea::placeholder { color: var(--ink-500); }
.qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(198,154,62,0.18);
}
.qf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23c69a3e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
  color: var(--text-primary);
}
.qf-field select:invalid { color: var(--ink-500); }
.qf-submit { grid-column: 1 / -1; width: 100%; margin-top: 4px; padding: 16px 28px; font-size: 14px; }
.qf-fine { grid-column: 1 / -1; margin: 4px 0 0; font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; }
.qf-fine strong { color: var(--gold-300); font-weight: 700; }
.qf-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 460px) {
  .quote-form { grid-template-columns: 1fr; }
}

/* Quote band variant when it sits on the near-black base (contact placement) */
.quote-band-alt { background:
  radial-gradient(120% 90% at 18% 10%, rgba(198,154,62,0.08), rgba(13,13,13,0) 56%), var(--bg-deep); }

/* ============================================================================
   SERVICE LANDING PAGES (July 2026) - dedicated pages for Google ads / SEO
   ============================================================================ */

/* Breadcrumb */
.crumb { padding: 96px 0 0; font-size: 13px; color: var(--text-muted); }
.crumb a { color: var(--text-muted); }
.crumb a:hover { color: var(--gold-300); }
.crumb span { color: var(--gold-400); }

/* Split hero: copy + supporting photo */
.svc-hero { position: relative; padding: clamp(30px, 4vw, 48px) 0 clamp(48px, 6vw, 78px); overflow: hidden; }
.svc-hero::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(90% 70% at 88% 8%, rgba(198,154,62,0.12), rgba(13,13,13,0) 55%); pointer-events: none; }
.svc-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
@media (max-width: 900px) { .svc-hero-grid { grid-template-columns: 1fr; gap: 34px; } }
.svc-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5.2vw, 62px); line-height: 1.05; margin: 16px 0 20px; color: var(--text-primary);
}
.svc-hero h1 em { font-style: italic; color: var(--gold-300); }
.svc-hero-lede { font-size: clamp(16px, 2.2vw, 18.5px); color: var(--text-secondary); line-height: 1.7; margin: 0 0 30px; max-width: 52ch; }
.svc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.svc-hero-fine { margin: 20px 0 0; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.svc-hero-fine .ti-stars { color: var(--gold-400); letter-spacing: 2px; }
.svc-hero-media { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--border-gold); box-shadow: 0 30px 70px rgba(0,0,0,0.5); aspect-ratio: 4/3.2; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 12px; margin: 0;
  font-size: 12px; color: rgba(255,255,255,0.9); text-align: center;
  background: linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.78) 100%);
}

/* Outcomes: what you actually get */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
@media (max-width: 820px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { border: 1px solid var(--border); background: var(--surface-1); border-radius: 6px; padding: 26px 24px; }
.outcome .oc-ico { width: 30px; height: 30px; margin-bottom: 16px; display: block;
  background: var(--gradient-gold); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.outcome h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 9px; color: var(--text-primary); }
.outcome p { margin: 0; font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }

/* Prose intro block */
.svc-prose { max-width: 62ch; }
.svc-prose p { color: var(--text-secondary); font-size: clamp(15.5px, 2vw, 17px); line-height: 1.8; margin: 0 0 20px; }
.svc-prose strong { color: var(--gold-100); font-weight: 700; }

/* Single before/after feature (per service) */
.ba-feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.ba-feature .ba-card { width: 100%; flex: 1 1 auto; }
@media (max-width: 760px) { .ba-feature { grid-template-columns: 1fr; } }

/* Mini FAQ */
.faq-mini { max-width: none; }
.faq-mini details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.faq-mini summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--font-sans); font-weight: 600; font-size: 18px; color: var(--text-primary); }
.faq-mini summary::-webkit-details-marker { display: none; }
.faq-mini summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--gold-400); font-weight: 300; }
.faq-mini details[open] summary::after { content: '\2013'; }
.faq-mini .faq-a { padding: 0 40px 22px 0; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-mini .faq-a p { margin: 0 0 12px; }

/* Related services strip */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card { display: block; border: 1px solid var(--border); background: var(--surface-1); border-radius: 6px; padding: 24px 26px; transition: border-color .2s, transform .2s; }
.rel-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.rel-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 8px; color: var(--text-primary); }
.rel-card p { margin: 0 0 14px; font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.rel-card .rel-go { font-family: var(--font-expanded); font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-300); }

/* Homepage area links as gold chips */
.area-links a {
  display: inline-block; padding: 7px 14px; border: 1px solid var(--border-gold);
  border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--gold-200);
  text-decoration: none; transition: background .18s, color .18s;
}
.area-links a:hover { background: var(--gradient-gold); color: var(--text-on-gold); }

/* ============================================================================
   BLOG (July 2026) - index grid + article layout
   ============================================================================ */
.blog-hero { padding: 120px 0 10px; }
.blog-hero .eyebrow { margin-bottom: 14px; }
.blog-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.06; margin: 0 0 18px; color: var(--text-primary); }
.blog-hero h1 em { font-style: italic; color: var(--gold-300); }
.blog-hero p { max-width: 60ch; color: var(--text-secondary); font-size: clamp(16px, 2.2vw, 18px); line-height: 1.7; margin: 0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--border); background: var(--surface-1); border-radius: 6px; overflow: hidden; text-decoration: none; transition: border-color .2s, transform .2s; }
.post-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.post-card-img { aspect-ratio: 16/10; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-family: var(--font-expanded); font-weight: 500; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-gold); margin-bottom: 12px; }
.post-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.2; margin: 0 0 10px; color: var(--text-primary); }
.post-card p { margin: 0 0 18px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }
.post-card .post-more { margin-top: auto; font-family: var(--font-expanded); font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-300); }

/* Article */
.article-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.2) 40%, rgba(13,13,13,0.92) 100%); }
.article-hero-inner { position: relative; padding-top: 130px; padding-bottom: 44px; width: 100%; }
.article-hero .post-cat { color: var(--gold-300); }
.article-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.1; margin: 8px 0 16px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.article-meta { font-size: 13.5px; color: rgba(255,255,255,0.82); }
.article-body { max-width: none; margin: 0; padding: clamp(48px, 6vw, 76px) 0; }
.article-body p, .article-body li { color: var(--text-secondary); font-size: 17px; line-height: 1.8; }
.article-body p { margin: 0 0 22px; }
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--text-primary); margin: 44px 0 16px; line-height: 1.2; }
.article-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--text-primary); margin: 32px 0 12px; }
.article-body strong { color: var(--gold-100); font-weight: 700; }
.article-body ul { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--gold-300); }
.article-lead { font-size: 19px !important; color: var(--text-primary) !important; line-height: 1.7 !important; }
.article-cta { border: 1px solid var(--border-gold); background: rgba(198,154,62,0.08); border-radius: 6px; padding: 28px 30px; margin: 40px 0 8px; }
.article-cta h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 8px; color: var(--text-primary); }
.article-cta p { margin: 0 0 18px; font-size: 15px; color: var(--text-secondary); }
.article-cta .btn { margin-right: 10px; }
.article-cta .btn-gold { color: var(--text-on-gold); }
.article-cta .btn-gold:hover { color: var(--gold-200); }
.article-cta .btn-outline { color: var(--gold-300); }


/* ============================================================================
   V5 - low-friction landing pass
   Hero: one action, proof up front, no legalese. Services: price + fit visible
   before any click. Quote form: chips instead of a dropdown, note collapsed.
   ============================================================================ */

/* Hero rating chip */
.hero-rating { display:inline-flex; align-items:center; gap:9px; margin:0 0 20px; padding:7px 16px; border-radius:999px; border:1px solid rgba(198,154,62,0.34); background:rgba(13,13,13,0.42); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); font-family:var(--font-expanded,inherit); font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.86); text-decoration:none; transition:border-color .3s ease, background .3s ease; }
.hero-rating:hover { border-color:var(--gold-400); background:rgba(13,13,13,0.62); }
.hero-rating .hr-stars { color:var(--gold-400); letter-spacing:0.08em; font-size:13px; }
.hero-rating strong { color:#fff; font-weight:700; }
.hero-rating .hr-txt { color:rgba(255,255,255,0.66); }
.hero-rating .hr-txt-sm { display:none; color:rgba(255,255,255,0.66); }

/* Hero single action + quiet alternative */
.btn-lg { padding:19px 42px; font-size:14px; letter-spacing:0.14em; }
.hero-assure { margin:18px 0 0; font-size:13.5px; color:rgba(255,255,255,0.72); letter-spacing:0.01em; }
.hero-alt { display:inline-block; margin:22px 0 0; font-size:13px; letter-spacing:0.05em; color:rgba(255,255,255,0.6); text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.22); padding-bottom:2px; transition:color .25s ease, border-color .25s ease; }
.hero-alt:hover { color:var(--gold-300); border-color:var(--gold-400); }
@media (prefers-reduced-motion:no-preference) {
  .hero-rise:nth-child(6) { transition-delay:0.74s; }
  .hero-rise:nth-child(7) { transition-delay:0.86s; }
}
@media (max-width:620px) {
  .hero-rating { font-size:11px; padding:6px 13px; gap:6px; }
  .hero-rating .hr-txt { display:none; }
  .hero-rating .hr-txt-sm { display:inline; }
  .hero-rating .hr-stars { font-size:11px; }
  .btn-lg { padding:16px 30px; font-size:13px; }
  .hero-assure { font-size:12.5px; }
}

/* Service summary: price + who it suits, visible while closed */
.svc-meta { display:flex; flex-wrap:wrap; align-items:center; gap:10px 14px; margin-top:12px; }
.svc-price { font-family:var(--font-expanded,inherit); font-size:12px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-300); border:1px solid rgba(198,154,62,0.4); border-radius:999px; padding:5px 13px; white-space:nowrap; }
.svc-best { font-size:13px; color:var(--text-secondary); opacity:0.82; }
@media (max-width:560px) { .svc-best { font-size:12.5px; } }

/* Quote form: service chips */
.qf-legend { display:block; font-family:var(--font-expanded,inherit); font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-secondary); margin:0 0 11px; }
.qf-chips { display:flex; flex-wrap:wrap; gap:9px; }
.qf-chip { position:relative; }
.qf-chip input { position:absolute; opacity:0; width:0; height:0; }
.qf-chip span { display:block; cursor:pointer; padding:10px 16px; border-radius:999px; border:1px solid var(--border); background:rgba(255,255,255,0.02); font-size:13.5px; color:var(--text-secondary); transition:border-color .2s ease, color .2s ease, background .2s ease; }
.qf-chip span:hover { border-color:rgba(198,154,62,0.5); color:var(--text-primary); }
.qf-chip input:checked + span { border-color:var(--gold-400); background:rgba(198,154,62,0.13); color:var(--gold-300); font-weight:600; }
.qf-chip input:focus-visible + span { outline:2px solid var(--gold-400); outline-offset:2px; }

/* Quote form: optional note, collapsed by default */
.qf-note { grid-column:1 / -1; }
.qf-note > summary { list-style:none; cursor:pointer; display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--text-secondary); padding:4px 0; transition:color .2s ease; }
.qf-note > summary::-webkit-details-marker { display:none; }
.qf-note > summary::before { content:'+'; color:var(--gold-400); font-size:15px; line-height:1; }
.qf-note[open] > summary::before { content:'\2212'; }
.qf-note > summary:hover { color:var(--gold-300); }
.qf-note textarea { margin-top:10px; }

/* V5 hero: pull the stack up so the single action sits on the first screen.
   V4's fixed 130px padding + full-size logo pushed it to 795px. */
.hero-center { min-height:min(88vh,860px); }
.hero-center .hero-inner { padding:clamp(78px,10vh,112px) 0 clamp(52px,6vh,76px); }
.hero-center .hero-logo { width:clamp(150px,19vw,250px); margin-bottom:14px; }
.hero-center .hero-rating { margin-bottom:16px; }
.hero-center h1 { margin-bottom:16px; }
.hero-center .hero-sub { margin-bottom:26px; }
.hero-center .hero-assure { margin-top:15px; }
.hero-center .hero-alt { margin-top:15px; }
@media (max-width:620px) {
  .hero-center .hero-inner { padding:74px 10px 54px; }
  .hero-center .hero-logo { width:clamp(132px,34vw,180px); }
}

/* Chips read as options, not labels */
.qf-chip span { text-transform:none; font-family:var(--font-sans,inherit); letter-spacing:0; }

/* V5 hero, second pass: the header already carries the wordmark, so the shield
   shrinks to a mark rather than a lockup, and the headline is allowed to run
   wider so it sets in two lines instead of three. Target: CTA fully visible on
   a 1280x720 window. */
.hero-center .hero-inner { padding:clamp(64px,9vh,104px) 0 clamp(48px,6vh,72px); }
.hero-center .hero-logo { width:clamp(112px,min(15vw,19vh),182px); margin-bottom:14px; }
.hero-center .hero-rating { margin-bottom:12px; }
.hero-center h1 { max-width:24ch; font-size:clamp(38px,min(5.4vw,9vh),66px); line-height:1.02; margin-bottom:14px; }
.hero-center .hero-sub { max-width:43ch; margin-bottom:22px; text-wrap:balance; }
@media (max-width:620px) {
  .hero-center .hero-inner { padding:66px 10px 48px; }
  .hero-center .hero-logo { width:clamp(104px,30vw,140px); }
  .hero-center h1 { max-width:20ch; font-size:clamp(32px,8.4vw,42px); }
}

/* V5: service fine print broken into labelled lines instead of one run-on
   sentence, so the size surcharge and the POI meaning can be found at a glance. */
.svc-notes { display:grid; grid-template-columns:max-content 1fr; gap:7px 12px; max-width:62ch; }
.svc-note-line { display:grid; grid-template-columns:subgrid; grid-column:1/-1; margin:0; font-size:13px; line-height:1.55; color:var(--text-secondary); opacity:0.86; }
.svc-note-line b { padding-top:2px; font-family:var(--font-expanded,inherit); font-size:10.5px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-400); vertical-align:baseline; }
.svc-actions { display:flex; gap:10px; flex-wrap:wrap; margin-left:auto; align-self:flex-end; }
@media (max-width:700px) {
  .svc-notes { display:block; }
  .svc-note-line { display:block; margin-bottom:7px; }
  .svc-note-line b { display:block; margin:0 0 2px; padding-top:0; }
  .svc-actions { margin-left:0; align-self:stretch; }
}

/* V5: the guarantee. Its own band directly under the hero, before anything is
   asked for. Deliberately quiet type on a dark ground so it reads as a
   statement of fact rather than a promotion. */
.guarantee-band { padding:clamp(34px,4vw,50px) 0; background:var(--ink-950,#0d0d0d); border-top:1px solid rgba(198,154,62,0.22); border-bottom:1px solid rgba(198,154,62,0.22); text-align:center; }
.gb-eyebrow { margin:0 0 14px; font-family:var(--font-expanded,inherit); font-size:14px; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-400); }
.gb-line { margin:0 auto 14px; max-width:26ch; font-family:var(--font-display,Georgia,serif); font-weight:400; font-size:clamp(30px,4.4vw,52px); line-height:1.08; color:#fff; text-wrap:balance; }
.gb-line em { display:block; font-style:italic; color:var(--gold-300); }
.gb-sub { margin:0 auto; max-width:60ch; font-size:15px; line-height:1.72; color:rgba(255,255,255,0.68); text-wrap:pretty; }
@media (max-width:620px) { .guarantee-band { padding:30px 0; } .gb-eyebrow { font-size:12px; margin-bottom:12px; } .gb-line { font-size:clamp(26px,7.4vw,34px); } .gb-sub { font-size:14px; } }

/* V5: free guide band. Sits after Contact, aimed at the visitor who is not
   ready to enquire yet, so it is deliberately quieter than the quote form. */
.guide-band{padding:clamp(46px,5.5vw,70px) 0;background:var(--ink-950,#0d0d0d);border-top:1px solid var(--border)}
.fg-grid{display:grid;grid-template-columns:auto minmax(0,1fr);gap:clamp(28px,4.5vw,56px);align-items:center;max-width:920px;margin-inline:auto}
.fg-cover{display:block;flex:none;width:clamp(132px,15vw,186px);border:1px solid var(--border);border-radius:6px;overflow:hidden;box-shadow:0 20px 46px rgba(0,0,0,.5);transition:transform .35s ease,border-color .35s ease}
.fg-cover:hover{transform:translateY(-4px);border-color:var(--gold-400)}
.fg-cover img{display:block;width:100%;height:auto}
.fg-eyebrow{margin:0 0 14px;font-family:var(--font-expanded,inherit);font-size:11px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-400)}
.guide-band h2{margin:0 0 16px;font-family:var(--font-display,Georgia,serif);font-weight:400;font-size:clamp(28px,3.6vw,44px);line-height:1.1;color:var(--text-primary);text-wrap:balance}
.guide-band h2 em{font-style:italic;color:var(--gold-300)}
.fg-sub{margin:0 0 24px;max-width:54ch;font-size:15.5px;line-height:1.7;color:var(--text-secondary);text-wrap:pretty}
.fg-ctas{display:flex;flex-wrap:wrap;align-items:center;gap:16px 22px}
.fg-meta{font-size:13px;letter-spacing:.03em;color:var(--text-muted)}
@media (max-width:760px){
  .fg-grid{display:block;max-width:none}
  .fg-cover{float:left;width:112px;margin:4px 18px 14px 0;box-shadow:0 12px 28px rgba(0,0,0,.5)}
  .fg-eyebrow{margin-bottom:10px;overflow:hidden}
  /* Give the eyebrow and heading their own block context so they sit in one
     even column beside the cover instead of wrapping around it, which left a
     one-word stub line under the image. */
  .guide-band h2{font-size:clamp(23px,6.4vw,30px);overflow:hidden;text-wrap:balance}
  .fg-sub{clear:both;font-size:14.5px;margin-top:18px}
  .fg-ctas .btn{width:100%;justify-content:center;text-align:center}
  .fg-meta{font-size:12.5px}
}

/* V5: inline guide promo inside an article. Quieter than .article-cta so the
   quote CTA below it still reads as the primary action. */
.guide-inline{display:grid;grid-template-columns:auto 1fr;gap:24px;align-items:center;margin:38px 0;padding:26px 28px;border:1px solid var(--border);border-left:3px solid var(--gold-400);background:var(--surface-1);border-radius:6px}
.gi-cover{display:block;width:104px;flex:none;border:1px solid var(--border);border-radius:4px;overflow:hidden;transition:transform .3s ease,border-color .3s ease}
.gi-cover:hover{transform:translateY(-3px);border-color:var(--gold-400)}
.gi-cover img{display:block;width:100%;height:auto}
.gi-eyebrow{margin:0 0 9px;font-family:var(--font-expanded,inherit);font-size:10.5px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-400)}
.guide-inline h3{margin:0 0 9px;font-family:var(--font-display,Georgia,serif);font-weight:400;font-size:clamp(19px,2.2vw,24px);line-height:1.2;color:var(--text-primary)}
.gi-sub{margin:0 0 14px;font-size:14.5px;line-height:1.66;color:var(--text-secondary)}
.gi-link{font-size:14px;font-weight:600;letter-spacing:.02em;color:var(--gold-300);text-decoration:none;border-bottom:1px solid rgba(198,154,62,.4);padding-bottom:2px}
.gi-link:hover{color:var(--gold-200,#e6cd8c);border-color:var(--gold-400)}
@media (max-width:640px){
  .guide-inline{grid-template-columns:1fr;gap:18px;padding:22px 20px}
  .gi-cover{width:88px}
}

/* V5: quiet guide link under the quote form. For the visitor who scrolled to
   the form and hesitated. Deliberately understated so it never competes with
   the submit button above it. */
.qf-guide{display:block;grid-column:1/-1;margin:18px 0 0;padding-top:18px;border-top:1px solid var(--border);text-align:center;font-size:13.5px;line-height:1.65;color:var(--text-muted);text-decoration:none;transition:color .25s ease}
.qf-guide strong{font-weight:600;color:var(--gold-300);white-space:nowrap}
.qf-guide:hover{color:var(--text-secondary)}
.qf-guide:hover strong{color:var(--gold-200,#e6cd8c)}

/* Mobile: iOS Safari zooms the viewport on focus for any input under 16px, which
   throws the user out of the form. Also lifts service chips to a 44px tap target. */
@media (max-width:640px){
  .qf-field input, .qf-field select, .qf-field textarea { font-size:16px; }
  .qf-chip span { padding:13px 16px; min-height:44px; box-sizing:border-box; display:inline-flex; align-items:center; }
  .qf-note > summary { padding:10px 0; }
}

/* Mobile tap targets. The 620px rule tightens .btn padding for fit, which drops
   real button height to ~38px; min-height restores the 44px minimum without
   changing how the buttons look. Same for the nav toggle and the quiet text links. */
@media (max-width:620px){
  .btn { min-height:44px; }
  .btn-sm { min-height:44px; }
  .nav-toggle { min-width:44px; min-height:44px; display:inline-flex; align-items:center; justify-content:center; }
  .hero-alt { padding-top:11px; padding-bottom:11px; }
  .hero-rating { min-height:44px; }
  .gi-link { display:inline-block; padding:11px 0; }
  .header-logo { display:inline-flex; align-items:center; min-height:44px; }
}

/* Mobile tap targets, second pass: the service tabs, the review link and the
   optional-note toggle are all real actions that landed under 44px on a phone. */
@media (max-width:620px){
  .dtab { min-height:44px; display:inline-flex; align-items:center; }
  .trust-item { min-height:44px; }
  .qf-note > summary { padding:12px 0; }
  .promo-star { display:inline-block; padding:16px 11px; margin:-16px 0 -16px -5px; line-height:1; }
  .contact-card a.big { display:inline-flex; align-items:center; min-height:44px; }
  .area-links a { display:inline-flex; align-items:center; min-height:44px; }
  .ba-chip { min-height:44px; }
}

/* Multi-select hint on the service chips */
.qf-legend i { font-style:normal; font-weight:500; letter-spacing:0.04em; text-transform:none; color:var(--text-muted); margin-left:7px; }

/* ---------- V6: simplified service scan cards ---------- */
.sv3-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.sv3{display:flex;flex-direction:column;background:#242424;border:1px solid var(--border);padding:22px 22px 20px;transition:border-color .3s ease}
.sv3:hover{border-color:rgba(198,154,62,.45)}
.sv3-ico{width:60px;height:60px;border-radius:50%;border:1.5px solid var(--border-gold);background:radial-gradient(circle at 50% 42%,rgba(198,154,62,.16),rgba(13,13,13,0) 72%);display:grid;place-items:center}
.sv3-ico img{width:40px;height:40px;object-fit:contain;display:block}
.sv3 h3{font-family:var(--font-wide);font-size:clamp(19px,2.2vw,22px);font-weight:700;letter-spacing:.02em;text-transform:uppercase;line-height:1.2;margin:13px 0 0;color:var(--gold-300)}
.sv3-what{margin:7px 0 0;color:var(--text-secondary);font-size:14px;line-height:1.5}
.sv3-price{display:grid;grid-template-columns:auto 1fr;align-items:baseline;column-gap:9px;margin-top:15px;padding-top:13px;border-top:1px solid var(--border)}
.sv3-from{grid-column:1;font-family:var(--font-expanded,inherit);font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-secondary);opacity:.7}
.sv3-num{grid-column:2;justify-self:start;font-family:var(--font-wide);font-size:28px;font-weight:700;color:var(--gold-300);line-height:1}
.sv3-unit{grid-column:1/-1;margin-top:5px;font-size:12.5px;line-height:1.4;color:var(--text-secondary);opacity:.85}
.sv3-tiers{list-style:none;margin:11px 0 0;padding:0}
.sv3-tiers li{display:flex;justify-content:space-between;align-items:center;gap:14px;min-height:28px;padding:4px 0;font-size:13.5px;line-height:1.4;color:var(--text-secondary);border-top:1px solid rgba(255,255,255,.055)}
.sv3-tiers li:first-child{border-top:0}
.sv3-tiers li>span{min-width:0}
.sv3-tiers b{color:#efe9e0;font-weight:600;white-space:nowrap;text-align:right}
.sv3-free{flex:none;font-family:var(--font-expanded,inherit);font-size:9.5px!important;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-300)!important;border:1px solid rgba(198,154,62,.45);background:rgba(198,154,62,.1);border-radius:2px;padding:3px 7px;line-height:1}
.sv3-addons{margin:12px 0 0;padding:10px 12px;background:rgba(198,154,62,.07);border:1px solid rgba(198,154,62,.2);font-size:12.5px;line-height:1.55;color:#cfc7ba;opacity:1}
.sv3-addons span{display:block;font-family:var(--font-expanded,inherit);font-size:10px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-300);opacity:1;margin-bottom:3px}
.sv3-addons-plain{background:rgba(255,255,255,.03);border-color:rgba(255,255,255,.09);color:var(--text-secondary)}
.sv3-addons-plain span{color:var(--text-secondary);opacity:.75}
.sv3-best{margin:13px 0 0;font-size:13px;line-height:1.5;color:var(--text-secondary);opacity:.9;text-wrap:pretty}
.sv3-acts{display:flex;flex-wrap:wrap;gap:9px;margin-top:auto;padding-top:16px}
.sv3-acts .btn{flex:1 1 130px;min-width:0;min-height:44px;display:inline-flex;align-items:center;justify-content:center;text-align:center}
.sv3-gtee{font-style:normal;color:var(--gold-300);opacity:.95}
.sv3-note{margin:22px auto 0;max-width:640px;font-size:13px;line-height:1.65;color:var(--text-secondary);opacity:.75;text-align:center;text-wrap:pretty}
/* Align every row of the three cards to a shared baseline grid */
@supports (grid-template-rows:subgrid){
  @media (min-width:1041px){
    .sv3-grid{grid-template-rows:repeat(8,auto);column-gap:22px;row-gap:0}
    .sv3{grid-row:span 8;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:subgrid;align-content:start}
    .sv3-ico{grid-row:1}
    .sv3 h3{grid-row:2}
    .sv3-what{grid-row:3}
    .sv3-price{grid-row:4}
    .sv3-tiers{grid-row:5}
    .sv3-addons{grid-row:6}
    .sv3-best{grid-row:7}
    .sv3-acts{grid-row:8;margin-top:0}
  }
}
@media (max-width:1040px){.sv3-grid{grid-template-columns:1fr;gap:14px}.sv3-acts .btn{flex:1 1 auto}}
@media (max-width:560px){.sv3{padding:19px 18px 18px}.sv3-ico{width:54px;height:54px}.sv3-ico img{width:35px;height:35px}.sv3 h3{margin-top:12px}.sv3-what{font-size:13.5px}.sv3-num{font-size:27px}.sv3-acts{flex-direction:column;gap:8px;padding-top:15px}.sv3-note{margin-top:20px;text-align:left}}
