/* ============================================================
   AQ Autopleje — styles
   Light & clean premium detailing. Cormorant (display) + Inter (UI).
   ============================================================ */

:root {
  /* Palette — warm paper, near-black ink, champagne accent */
  --paper:      #F7F5F1;
  --paper-2:    #F1EEE7;
  --surface:    #FFFFFF;
  --ink:        #16150F;
  --ink-soft:   #45433B;
  --muted:      #7E7B70;
  --line:       #E6E1D7;
  --line-2:     #D9D3C6;
  --dark:       #100F0C;   /* header / footer / dark bands */
  --dark-soft:  #1B1A15;
  --on-dark:    #F4F1EA;
  --on-dark-mut:#A9A498;

  --gold:       #A67C34;   /* decorative */
  --gold-ink:   #7C5C22;   /* gold text on light (AA) */
  --gold-soft:  #C9A968;

  --ok:         #2F7D46;
  --danger:     #B23A2E;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale (8pt) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,19,12,.05), 0 2px 8px rgba(20,19,12,.05);
  --shadow-md: 0 10px 30px -12px rgba(20,19,12,.22), 0 4px 12px rgba(20,19,12,.06);
  --shadow-lg: 0 30px 60px -24px rgba(20,19,12,.30);

  --maxw: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(64px, 10vw, 128px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-soft); }
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after { content: ""; width: 26px; height: 1px; background: var(--gold-soft); }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: var(--s3); }
.section-lead { color: var(--ink-soft); font-size: 1.075rem; max-width: 62ch; margin-top: var(--s4); }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .i { width: 19px; height: 19px; }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bd: var(--ink); background: rgba(0,0,0,.02); }
.btn--gold { --bg: var(--gold); --bd: var(--gold); --fg: #1c1608; }
.btn--gold:hover { --bg: var(--gold-soft); --bd: var(--gold-soft); }
.btn--light { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--wa { --bg: #1FA855; --bd: #1FA855; --fg: #fff; }
.btn--wa:hover { --bg: #199a4c; --bd: #199a4c; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.nav { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px);
  display: flex; align-items: center; gap: var(--s5); }

/* Wordmark (CSS re-creation of the AQ / AUTOPLEJE mark) */
.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; padding: 2px 4px; }
.brand__aq { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: .04em; color: var(--ink); }
.brand__sub { font-size: 8.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); margin-top: 3px; padding-left: .42em; }
.site-header:not(.scrolled) .brand--hero-invert .brand__aq { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: var(--s5); margin-left: auto; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: var(--s3); }

/* Language toggle */
.lang { display: inline-flex; border: 1.5px solid var(--line-2); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang button { padding: 7px 12px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--muted); min-height: 38px; }
.lang button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.nav__cta { display: inline-flex; }

/* Mobile nav */
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line-2); align-items: center; justify-content: center; background: var(--surface); }
.nav__burger .i { width: 22px; height: 22px; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--paper);
  transform: translateY(-100%); transition: transform .4s var(--ease); visibility: hidden;
  display: flex; flex-direction: column; padding: calc(var(--nav-h) + 24px) 28px 40px;
  gap: 6px; overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-actions { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(24px, 6vw, 60px)); padding-bottom: clamp(40px, 7vw, 80px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__eyebrow { margin-bottom: var(--s4); }
.hero__title { font-size: clamp(2.9rem, 7vw, 5.4rem); }
.hero__title .line2 { display: block; font-style: italic; color: var(--ink-soft); }
.hero__lead { margin-top: var(--s5); font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3) var(--s5); margin-top: var(--s6);
  padding-top: var(--s5); border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); }
.hero__meta strong { color: var(--ink); font-weight: 600; }
.hero__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.hero__phone .i { width: 17px; height: 17px; color: var(--gold-ink); }

.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; left: -18px; bottom: 26px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.hero__badge .star-row { color: var(--gold); display: flex; gap: 2px; }
.hero__badge .star-row .i { width: 15px; height: 15px; }
.hero__badge .b-title { font-weight: 700; font-size: .9rem; }
.hero__badge .b-sub { font-size: .78rem; color: var(--muted); }

.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s5); }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--surface); font-size: .85rem; font-weight: 500; color: var(--ink-soft);
}
.chip .i { width: 15px; height: 15px; color: var(--gold-ink); }

/* ============================================================
   TRANSFORMATION VIDEO
   ============================================================ */
.transformation { position: relative; overflow: hidden; background: var(--dark); color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 104px); }
.tv__glow { position: absolute; z-index: 0; width: 60vw; max-width: 720px; aspect-ratio: 1; border-radius: 50%;
  right: -8%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,169,104,.20), rgba(201,169,104,0) 62%); filter: blur(10px); pointer-events: none; }
.transformation .container { position: relative; z-index: 1; }
.tv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.tv__text .eyebrow { color: var(--gold-soft); }
.tv__text h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); color: #fff; margin-top: var(--s3); }
.tv__lead { color: var(--on-dark-mut); font-size: 1.08rem; margin-top: var(--s4); max-width: 46ch; }
.tv__pills { display: inline-flex; align-items: center; gap: 12px; margin-top: var(--s6); }
.tv__pill { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); color: var(--on-dark); }
.tv__pill--after { background: var(--gold); border-color: var(--gold); color: #1c1608; }
.tv__arrow { width: 20px; height: 20px; color: var(--gold-soft); }
.tv__text .btn { margin-top: var(--s6); display: inline-flex; }

.tv__stage { display: flex; justify-content: center; }
.tv__frame { position: relative; width: 100%; max-width: 360px; aspect-ratio: 720 / 1178;
  border-radius: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 8px rgba(255,255,255,.02); background: #000; }
.tv__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tv__sound { position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(16,15,12,.55); backdrop-filter: blur(6px); color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); transition: background .2s, transform .18s var(--ease); }
.tv__sound:hover { background: rgba(16,15,12,.8); transform: scale(1.06); }
.tv__sound .i { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .tv__grid { grid-template-columns: 1fr; gap: var(--s6); text-align: center; }
  .tv__text .eyebrow { justify-content: center; }
  .tv__lead { margin-inline: auto; }
  .tv__stage { order: -1; }
  .tv__glow { right: 50%; transform: translate(50%, -50%); top: 40%; width: 90vw; }
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.usp { background: var(--dark); color: var(--on-dark); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.usp__item { display: flex; gap: 14px; align-items: flex-start; }
.usp__item .ico { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(201,169,104,.14); color: var(--gold-soft); border: 1px solid rgba(201,169,104,.25); }
.usp__item .ico .i { width: 21px; height: 21px; }
.usp__item h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.usp__item p { font-size: .88rem; color: var(--on-dark-mut); line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); margin-top: var(--s8); }
.service {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px 26px;
  display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.service__num { font-family: var(--font-display); font-size: 1rem; color: var(--gold-ink); letter-spacing: .1em; }
.service__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin: 10px 0 18px;
  background: var(--paper-2); color: var(--ink); border: 1px solid var(--line); }
.service__ico .i { width: 26px; height: 26px; }
.service h3 { font-size: 1.6rem; margin-bottom: 8px; }
.service p { font-size: .93rem; color: var(--ink-soft); }
.service ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
.service li { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.service li .i { width: 16px; height: 16px; color: var(--gold-ink); flex: none; margin-top: 3px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--paper-2); }
/* Unified passenger-car price matrix */
.ptable { margin-top: var(--s8); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ptable__head, .ptable__row { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.1fr; align-items: center; }
.ptable__head { padding: 15px 28px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.ptable__head span { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ptable__head span:not(:first-child) { text-align: right; }
.ptable__row { padding: 20px 28px; border-bottom: 1px solid var(--line); transition: background .2s var(--ease); }
.ptable__row:last-child { border-bottom: none; }
.ptable__row:hover { background: var(--paper); }
.ptable__cat { display: flex; align-items: center; gap: 15px; padding-right: 24px; }
.ptable__cat .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink); }
.ptable__cat .ico .i { width: 24px; height: 24px; }
.ptable__cat .cname { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.ptable__cat .models { display: block; font-size: .76rem; color: var(--muted); line-height: 1.45; margin-top: 4px; }
.ptable__price { text-align: right; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink);
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.ptable__price small { font-family: var(--font-sans); font-size: .7rem; color: var(--muted); font-weight: 500; margin-left: 2px; }
.ptable__price .plabel { display: none; }
.ptable__price.is-both { color: var(--gold-ink); }
/* Cabin-only rows (van / truck) inside the same table */
.ptable__span { grid-column: 2 / -1; display: flex; align-items: baseline; justify-content: flex-end; gap: 34px; flex-wrap: wrap; }
.ponly { display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.ponly .pl { font-size: .82rem; color: var(--ink-soft); }
.ponly b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.ponly.is-both b { color: var(--gold-ink); }
.ponly b small { font-family: var(--font-sans); font-size: .7rem; color: var(--muted); font-weight: 500; margin-left: 2px; }

/* Commercial (cabin-only) cards */
.pcommercial { margin-top: var(--s5); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.pcard__head { display: flex; align-items: center; gap: 15px; }
.pcard__head .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); }
.pcard__head .ico .i { width: 24px; height: 24px; }
.pcard__head .cname { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.1; }
.pcard__head .models { display: block; font-size: .76rem; color: var(--muted); line-height: 1.45; margin-top: 4px; }
.pcard__prices { margin-top: 18px; border-top: 1px solid var(--line); }
.pcard__price { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.pcard__price:last-child { border-bottom: none; }
.pcard__price .pl { font-size: .92rem; color: var(--ink-soft); }
.pcard__price b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.pcard__price b small { font-family: var(--font-sans); font-size: .7rem; color: var(--muted); font-weight: 500; margin-left: 2px; }
.price-note {
  margin-top: var(--s6); display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px;
  background: rgba(178,58,46,.06); border: 1px solid rgba(178,58,46,.16); border-radius: var(--radius); font-size: .9rem; color: var(--ink-soft);
}
.price-note .i { width: 20px; height: 20px; color: var(--danger); flex: none; margin-top: 2px; }
.price-cta { margin-top: var(--s6); text-align: center; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-showcase { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s5); margin-top: var(--s8); }
.ba-card {
  flex: 1 1 340px; max-width: 400px; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.ba-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.ba-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.ba-card:hover .ba-card__media img { transform: scale(1.05); }
.ba-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(16,15,12,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ba-card__badge .i { width: 13px; height: 13px; color: var(--gold-soft); }
.ba-card__cap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; font-size: .95rem; font-weight: 600; color: var(--ink);
}
.ba-card__zoom { width: 18px; height: 18px; color: var(--gold-ink); flex: none;
  transition: transform .25s var(--ease); }
.ba-card:hover .ba-card__zoom { transform: translate(2px, -2px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--dark); color: var(--on-dark); position: relative; overflow: hidden; }
.process__bg { position: absolute; inset: 0; opacity: .16; }
.process__bg img { width: 100%; height: 100%; object-fit: cover; }
.process .container { position: relative; z-index: 2; }
.process .eyebrow { color: var(--gold-soft); }
.process .section-title { color: #fff; }
.process .section-lead { color: var(--on-dark-mut); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); margin-top: var(--s8); counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.step__n { font-family: var(--font-display); font-size: 3rem; color: var(--gold-soft); line-height: 1; }
.step h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; color: #fff; margin: 14px 0 8px; }
.step p { font-size: .9rem; color: var(--on-dark-mut); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--s4); margin-top: var(--s8); }
.gitem { position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; background: var(--paper-2); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(16,15,12,.4)); opacity: 0; transition: opacity .3s; }
.gitem:hover::after { opacity: 1; }
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

/* ============================================================
   REVIEWS + COVERAGE
   ============================================================ */
/* Reviews header + Google summary */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; }
.reviews-head .eyebrow { margin-bottom: 0; }
.reviews-head .section-title { margin-top: var(--s2); }
.reviews-google { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-sm); }
.g-logo { width: 30px; height: 30px; flex: none; }
.g-meta .g-rate { display: flex; align-items: center; gap: 8px; line-height: 1; }
.g-meta .g-rate strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.g-stars { color: var(--gold); display: inline-flex; gap: 1px; }
.g-stars .i { width: 15px; height: 15px; }
.g-meta .g-sub { font-size: .78rem; color: var(--muted); margin-top: 3px; }

.g-widget-mount { margin-top: var(--s7); }

/* Horizontal review rail */
.reviews-rail-wrap { position: relative; margin-top: var(--s7); }
.reviews-rail {
  display: flex; gap: var(--s5); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 20px; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-rail::-webkit-scrollbar { display: none; }
.reviews-rail .review { scroll-snap-align: start; flex: 0 0 clamp(280px, 82vw, 372px); }
.rail-btn {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--line-2);
  display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--ink);
  transition: transform .18s var(--ease), background .2s, border-color .2s;
}
.rail-btn:hover { border-color: var(--ink); transform: translateY(-50%) scale(1.06); }
.rail-btn .i { width: 20px; height: 20px; }
.rail-btn.prev { left: -20px; } .rail-btn.next { right: -20px; }
.reviews-cta { text-align: center; margin-top: var(--s5); }

.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; }
.review .stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 14px; }
.review .stars .i { width: 17px; height: 17px; }
.review blockquote { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.4; color: var(--ink); }
.review .who { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; color: var(--gold-ink); border: 1px solid var(--line); }
.review .who .n { font-weight: 600; font-size: .92rem; }
.review .who .l { font-size: .8rem; color: var(--muted); }
.review .g-badge { width: 20px; height: 20px; margin-left: auto; flex: none; align-self: center; }

.coverage { margin-top: var(--s8); background: var(--dark); color: var(--on-dark); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; }
.coverage__text { padding: clamp(28px, 4vw, 48px); }
.coverage__text .eyebrow { color: var(--gold-soft); }
.coverage__text h3 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: #fff; margin: 12px 0 14px; }
.coverage__text p { color: var(--on-dark-mut); max-width: 46ch; }
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.areas span { font-size: .82rem; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); color: var(--on-dark); }
.areas span.hq { background: var(--gold); border-color: var(--gold); color: #1c1608; font-weight: 600; }
.coverage__media { position: relative; min-height: 260px; }
.coverage__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--paper-2); }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); margin-top: var(--s7); align-items: start; }
.booking__panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.booking__panel h3 { font-size: 1.7rem; margin-bottom: 6px; }
.booking__panel .sub { font-size: .92rem; color: var(--ink-soft); margin-bottom: 20px; }
.calendly-inline-widget { min-width: 280px; height: 640px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.calendly-fallback { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); font: inherit; font-size: .95rem; transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(166,124,52,.16); }
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-alt { display: flex; align-items: center; gap: 14px; margin: 4px 0 20px; color: var(--muted); font-size: .82rem; }
.form-alt::before, .form-alt::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.direct-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status { margin-top: 14px; font-size: .9rem; padding: 12px 14px; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(47,125,70,.1); color: var(--ok); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; margin-top: var(--s8); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 4px; top: 26px; width: 12px; height: 12px;
  border-right: 2px solid var(--gold-ink); border-bottom: 2px solid var(--gold-ink); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding: 0 0 22px; color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--dark); color: var(--on-dark); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-band p { color: var(--on-dark-mut); margin: var(--s4) auto 0; max-width: 50ch; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; margin-top: var(--s6); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-soft); color: var(--on-dark); padding-block: clamp(48px, 7vw, 80px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s6); }
.footer .brand__aq { color: #fff; }
.footer .brand__sub { color: var(--on-dark-mut); }
.footer__about { color: var(--on-dark-mut); font-size: .9rem; margin-top: 16px; max-width: 34ch; }
.footer h4 { font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-soft); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer a, .footer li { color: var(--on-dark-mut); font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .i { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; }
.footer__social a:hover { background: rgba(255,255,255,.08); }
.footer__social .i { width: 19px; height: 19px; }
.footer__bottom { margin-top: var(--s7); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; color: var(--on-dark-mut); font-size: .82rem; }
.note-badge { font-size: .72rem; background: rgba(201,169,104,.14); color: var(--gold-soft); border: 1px solid rgba(201,169,104,.3); padding: 4px 10px; border-radius: 999px; }

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.callbar .btn { flex: 1; min-height: 48px; }
@media (max-width: 900px) { body { padding-bottom: 74px; } }

/* Skip link */
.skip-link:focus { left: 16px !important; top: 12px !important; box-shadow: var(--shadow-md); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,11,8,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 96vw); max-height: 90vh; width: auto; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox__close .i { width: 24px; height: 24px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox__nav.prev { left: 20px; } .lightbox__nav.next { right: 20px; }
.lightbox__nav .i { width: 26px; height: 26px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .service:hover, .gitem:hover img, .ba:hover img { transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 11; }
  .hero__badge { left: auto; right: 14px; }
  .coverage { grid-template-columns: 1fr; }
  .coverage__media { min-height: 220px; order: -1; }
  .booking__grid { grid-template-columns: 1fr; gap: var(--s6); }
  .price-grid { grid-template-columns: 1fr; }
  .price-wide-cols { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .callbar { display: flex; }
  .rail-btn { display: none; }
  .reviews-google { width: 100%; justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .field-row, .direct-actions { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .lightbox__nav { display: none; }
  .price-wide-cols { display: block; }
}

/* ============================================================
   MOBILE FIXES — pricing matrix, photo sections
   ============================================================ */
@media (max-width: 760px) {
  /* Price matrix → stacked, category on top, 3 price chips below */
  .ptable__head { display: none; }
  .ptable__row { grid-template-columns: repeat(3, 1fr); gap: 14px 10px; padding: 20px 16px; }
  .ptable__cat { grid-column: 1 / -1; padding-right: 0; }
  .ptable__price { text-align: left; display: flex; flex-direction: column; gap: 3px;
    background: var(--paper-2); border-radius: 10px; padding: 10px 12px; font-size: 1.25rem; }
  .ptable__price .plabel { display: block; font-family: var(--font-sans); font-size: .62rem; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
  .ptable__price.is-both { background: linear-gradient(rgba(201,169,104,.18), rgba(201,169,104,.05)); color: var(--gold-ink); }
  .ptable__span { grid-column: 1 / -1; display: flex; gap: 10px; }
  .ponly { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--paper-2); border-radius: 10px; padding: 10px 12px; white-space: normal; }
  .ponly.is-both { background: linear-gradient(rgba(201,169,104,.18), rgba(201,169,104,.05)); }
  .ponly .pl { font-size: .62rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; color: var(--muted); line-height: 1.25; }
  .ponly b { font-size: 1.25rem; }
  .pcommercial { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  /* Before/after: one clean full-width card per row */
  .ba-showcase { gap: 14px; }
  .ba-card { flex: 1 1 100%; max-width: 100%; }
  /* Gallery: uniform 2-col grid, no odd spans */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 46vw; gap: 10px; }
  .gitem--tall, .gitem--wide { grid-row: span 1; grid-column: span 1; }
}

@media (max-width: 400px) {
  .ptable__price { font-size: 1.1rem; padding: 9px 9px; }
  .ptable__price .plabel { font-size: .58rem; }
}
