/* ============================================================
   GB Auto Repair & Service — design system
   Palette: Racing Red #E10600 · Ink #0C0C0D · Paper #F6F5F3
   Display: Saira Condensed (heavy italic) · Body: Barlow
   Signature: red angular slash + checkered-flag strip
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0b0b0b;
  --ink-2:      #121314;
  --graphite:   #18191a;
  --graphite-2: #1e2021;
  --line:       #282a2c;
  --line-soft:  #c9c5c1;

  --red:        #9e2b28;
  --red-deep:   #7c211f;
  --red-glow:   rgba(158, 43, 40, 0.55);

  --paper:      #dbd8d4;
  --paper-2:    #d1cec9;
  --white:      #e0e0e0;

  --on-dark:      #d8d6d2;
  --on-dark-mut:  #888b90;
  --on-light:     #141516;
  --on-light-mut: #535558;

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --head-h: 92px;

  --radius: 4px;
  --radius-lg: 8px;

  --shadow: 0 18px 40px -22px rgba(0, 0, 0, .65);
  --shadow-red: 0 16px 34px -18px var(--red-glow);

  --ease: cubic-bezier(.4, .01, .2, 1);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-label: "Barlow Semi Condensed", "Barlow", sans-serif;
}

/* ---------- 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; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--on-light);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -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; cursor: pointer; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.container--wide { --container: 1340px; }
.section { padding-block: clamp(2.6rem, 5vw, 4.6rem); position: relative; }
.section--tight { padding-block: clamp(1.9rem, 3.6vw, 2.9rem); }
.bg-ink    { background: var(--ink);     color: var(--on-dark); }
.bg-ink-2  { background: var(--ink-2);   color: var(--on-dark); }
.bg-paper  { background: var(--paper);   color: var(--on-light); }
.bg-paper-2{ background: var(--paper-2); color: var(--on-light); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: .96; text-transform: uppercase; letter-spacing: .005em; }
h1 { font-style: italic; }
p { text-wrap: pretty; }

.display {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: .9; letter-spacing: .004em;
  font-size: clamp(2.7rem, 3rem + 4.4vw, 5.6rem);
}
.h2 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.35rem); }
.h3 { font-size: clamp(1.35rem, 1.2rem + .7vw, 1.7rem); }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem); line-height: 1.55; color: inherit; }
.muted { color: var(--on-light-mut); }
.bg-ink .muted, .bg-ink-2 .muted, .footer .muted { color: var(--on-dark-mut); }

/* Eyebrow + checkered signature */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; font-size: .78rem; color: var(--red);
}
.eyebrow::before {
  content: ""; width: 30px; height: 12px; flex: none;
  background:
    conic-gradient(var(--red) 90deg, transparent 0 180deg, var(--red) 0 270deg, transparent 0)
    0 0 / 6px 6px;
  transform: skewX(-14deg);
}
.eyebrow--center { justify-content: center; }
.eyebrow--dark { color: var(--red); }

/* Checkered divider strip */
.checkers {
  height: 12px; width: 100%;
  background:
    conic-gradient(#b1b1b1 90deg, #1f2124 0 180deg, #b1b1b1 0 270deg, #1f2124 0)
    0 0 / 12px 12px;
  opacity: .9;
}
.bg-paper .checkers, .bg-paper-2 .checkers {
  background:
    conic-gradient(#0f0f0f 90deg, #bdbbb6 0 180deg, #0f0f0f 0 270deg, #bdbbb6 0)
    0 0 / 12px 12px;
}

/* Red slash rule under headings */
.slash-rule { display: inline-block; width: 62px; height: 6px; background: var(--red); transform: skewX(-24deg); margin-top: 1.1rem; }
.slash-rule--center { margin-inline: auto; }

.section-head { max-width: 62ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: .55rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #e0e0e0; --btn-bd: var(--red);
  /* solid red buttons hover to white with black text */
  --btn-bg-h: #fff; --btn-fg-h: #000000; --btn-bd-h: #000000;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bd); border-radius: var(--radius);
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; font-size: .92rem; line-height: 1;
  padding: .92rem 1.5rem; transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--btn-bg-h); color: var(--btn-fg-h); border-color: var(--btn-bd-h); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 1.05em; height: 1.05em; }
/* Non-red buttons (outline / dark / phone) hover to the light Book-Now red */
.btn--ghost { --btn-bg: transparent; --btn-fg: #e0e0e0; --btn-bd: rgba(224, 224, 224, .5); --btn-bg-h: var(--red); --btn-fg-h: #e0e0e0; --btn-bd-h: var(--red); }
.btn--dark { --btn-bg: var(--ink); --btn-fg:#e0e0e0; --btn-bd: var(--ink); --btn-bg-h: var(--red); --btn-fg-h:#e0e0e0; --btn-bd-h: var(--red); }
.btn[href^="tel:"] { --btn-bg:#000000; --btn-fg:#e0e0e0; --btn-bd:#000000; --btn-bg-h: var(--red); --btn-fg-h:#e0e0e0; --btn-bd-h: var(--red); }
.btn--lg { padding: 1.08rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--red); }
.link-arrow .ic { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 11, 11, .92);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}
.header__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 1.4rem; height: var(--head-h); }
.brand { display: flex; align-items: center; gap: .7rem; grid-column: 1; justify-self: start; }
.brand img { height: 78px; width: auto; }
.nav { display: flex; align-items: center; gap: .3rem; grid-column: 2; justify-self: center; }
.nav a {
  font-family: var(--font-label); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: .86rem; color: var(--on-dark);
  padding: .6rem .8rem; border-radius: 3px; position: relative;
  transition: color .16s var(--ease);
}
.nav a::after { content:""; position:absolute; left:.8rem; right:.8rem; bottom:.35rem; height:2px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .2s var(--ease); }
.nav a:hover { color:#e0e0e0; }
.nav a:hover::after, .nav a[aria-current="page"]::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }
.nav a[aria-current="page"], .nav a[aria-current="true"] { color:#e0e0e0; }

/* Services dropdown */
.nav__group { position: relative; display: flex; align-items: center; }
.nav__group > a { padding-right: .3rem; }
.nav__caret { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--on-dark); padding: .45rem .55rem .45rem .15rem; border-radius: 3px; }
.nav__caret .ic { width: .9rem; height: .9rem; transition: transform .2s var(--ease); }
.nav__group:hover .nav__caret .ic, .nav__group:focus-within .nav__caret .ic, .nav__group.open .nav__caret .ic { transform: rotate(180deg); }
.nav__sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 258px; z-index: 70;
  background: var(--ink-2); border: 1px solid var(--line); border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow);
  padding: .5rem; display: grid;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
}
.nav__sub::before { content: ""; position: absolute; top: -13px; left: 0; right: 0; height: 13px; }
.nav__group:hover .nav__sub, .nav__group:focus-within .nav__sub, .nav__group.open .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.nav__sub a { display: block; padding: .62rem .8rem; font-size: .84rem; border-radius: 4px; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: rgba(158, 43, 40, .12); color: #e0e0e0; }
.nav__sub a[aria-current="page"] { background: rgba(158, 43, 40, .12); box-shadow: inset 3px 0 0 var(--red); }
.header__cta { display: flex; align-items: center; gap: .8rem; grid-column: 3; justify-self: end; }
/* phone + book button inside the nav are mobile-panel items only */
.nav .header__phone--mobile, .nav > .btn { display: none; }
.header__phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--on-dark); font-family: var(--font-label); font-weight: 700; letter-spacing: .04em; }
.header__phone .ic { width: 1.15em; height: 1.15em; color: var(--red); }
.header__phone span { font-size: 1.02rem; }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 4px; width: 46px; height: 42px; position: relative; grid-column: 3; justify-self: end; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:50%; top:50%; width:20px; height:2px; background:#e0e0e0; transform: translate(-50%,-50%); transition: .2s var(--ease); }
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after { transform: translate(-50%,5px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translate(-50%,-50%) rotate(-45deg); }

/* Backdrop behind the open mobile nav — tap to close */
.nav-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(5, 5, 6, .55); opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility 0s linear .28s; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; transition-delay: 0s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9, 9, 10, .94) 0%, rgba(9, 9, 10, .78) 42%, rgba(9, 9, 10, .28) 78%, rgba(9, 9, 10, .55) 100%),
    radial-gradient(120% 80% at 8% 110%, var(--red-glow) 0%, transparent 46%);
}
.hero__inner { padding-block: clamp(4rem, 9vw, 8rem); max-width: 46rem; }
.hero h1 { font-size: clamp(2.9rem, 2.4rem + 5.4vw, 6.1rem); margin-top: 1.1rem; }
.hero h1 .accent { color: var(--red); -webkit-text-stroke: 0; }
.hero__sub { margin-top: 1.4rem; max-width: 40ch; color: #bfbfbc; font-size: clamp(1.05rem,1rem + .5vw,1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Sub-page compact hero */
.pagehero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.pagehero__media { position:absolute; inset:0; z-index:-2; }
.pagehero__media img { width:100%; height:100%; object-fit:cover; opacity:.5; }
.pagehero__scrim { position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(9, 9, 10, .72), rgba(9, 9, 10, .86)), radial-gradient(90% 120% at 100% 0%, var(--red-glow) 0%, transparent 42%); }
.pagehero__inner { padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.pagehero h1 { font-size: clamp(2.4rem, 1.9rem + 3.8vw, 4.4rem); margin-top: .8rem; }
.pagehero .crumbs { margin-top: 1.1rem; font-family: var(--font-label); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-mut); }
.pagehero .crumbs a:hover { color:#e0e0e0; }
.pagehero .crumbs span { color: var(--red); }

/* ============================================================
   Trust bar (icon strip)
   ============================================================ */
.trustbar { border-block: 1px solid var(--line); background: var(--ink-2); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__item { display: flex; align-items: center; gap: .9rem; padding: 1.5rem clamp(.8rem,2vw,1.6rem); }
.trustbar__item + .trustbar__item { border-left: 1px solid var(--line); }
.trustbar__item .ic { width: 2rem; height: 2rem; color: var(--red); flex: none; }
.trustbar__item b { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.06rem; letter-spacing: .01em; color:#e0e0e0; line-height: 1.05; }
.trustbar__item small { display:block; color: var(--on-dark-mut); font-size: .8rem; margin-top: .25rem; }

/* ============================================================
   Service cards
   ============================================================ */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 2.6rem; }
.card {
  position: relative; background: var(--graphite); color: var(--on-dark);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.bg-paper .card, .bg-paper-2 .card { background: #e0e0e0; color: var(--on-light); border-color: var(--line-soft); box-shadow: 0 10px 30px -24px rgba(0, 0, 0, .4); }
.card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__title { font-size: 1.34rem; }
.card__body p { font-size: .96rem; line-height: 1.55; }
.bg-paper .card__body p { color: var(--on-light-mut); }
.card__body p:not(.card__body .link-arrow) { color: var(--on-dark-mut); }
.bg-paper .card .card__body p { color: var(--on-light-mut); }
.card__foot { margin-top: auto; padding-top: .4rem; }

/* Icon service cards (no image) */
.icards { display:grid; gap:1.2rem; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); margin-top: 2.4rem; }
.icard {
  background: #e0e0e0; border:1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem; position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.bg-ink .icard, .bg-ink-2 .icard { background: var(--graphite); border-color: var(--line); }
.icard::before { content:""; position:absolute; top:0; left:0; width:100%; height:4px; background: var(--red); transform: scaleX(0); transform-origin:left; transition: transform .25s var(--ease); }
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red); }
.icard:hover::before { transform: scaleX(1); }
.icard__ic { width: 3rem; height: 3rem; display:grid; place-items:center; background: rgba(158, 43, 40, .1); border-radius: 8px; color: var(--red); margin-bottom: 1rem; }
.icard__ic .ic { width: 1.6rem; height: 1.6rem; }
.icard h3 { font-size: 1.28rem; }
.icard p { margin-top: .5rem; font-size: .95rem; color: var(--on-light-mut); line-height: 1.55; }
.bg-ink .icard p, .bg-ink-2 .icard p { color: var(--on-dark-mut); }

/* ============================================================
   Feature band (Body repair / insurance)
   ============================================================ */
.feature { position: relative; background: var(--red); color: #e0e0e0; overflow: hidden; isolation: isolate; }
.feature::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(115deg, var(--red-deep), var(--red) 60%); }
.feature__wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; border: 3px solid rgba(224, 224, 224, .85); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.feature__media img { width:100%; height:100%; object-fit: cover; }
.feature h2 { color:#e0e0e0; }
.feature .eyebrow { color: #e0e0e0; }
.feature .eyebrow::before { background: conic-gradient(#e0e0e0 90deg, transparent 0 180deg, #e0e0e0 0 270deg, transparent 0) 0 0/6px 6px; transform: skewX(-14deg); }
.feature__list { display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.feature__list li { display:flex; gap:.7rem; align-items:flex-start; font-weight: 500; }
.feature__list .ic { width:1.3em; height:1.3em; flex:none; margin-top:.2rem; }
.feature .btn--ghost { --btn-bd: #e0e0e0; --btn-bg-h:#e0e0e0; --btn-fg-h:#000000; --btn-bd-h:#000000; }

/* ============================================================
   Split (about teaser / why choose)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.split__media img, .split__media video { width:100%; height:auto; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
.split__media::before { content:""; position:absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--red); border-radius: var(--radius-lg); z-index:-1; }
.checklist { display: grid; gap: .8rem; margin-top: 1.5rem; }
.checklist li { display:flex; gap:.75rem; align-items:flex-start; }
.checklist .ic { width: 1.35em; height: 1.35em; color: var(--red); flex:none; margin-top:.18rem; }
.checklist b { font-weight: 700; }
.split--values { align-items: center; }
.split--values .checklist { margin-top: 1.8rem; }
.fb-frame { position: relative; width: 100%; max-width: 500px; min-width: 0; justify-self: center; }
.fb-frame::before { content:""; position:absolute; inset:14px -14px -14px 14px; border:2px solid var(--red); border-radius:var(--radius-lg); z-index:-1; }
.fb-frame__card { position: relative; background:#e0e0e0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 640px; line-height: 0; }
.fb-frame .fb-page, .fb-frame .fb-page > span, .fb-frame iframe { width:100% !important; }
/* .fb-page sits above the fallback; when the plugin loads its iframe covers the fallback, otherwise the fallback shows through */
.fb-frame .fb-page { position: relative; z-index: 1; }
.fb-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2.4rem 1.8rem; line-height: 1.5;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(54, 109, 180, .16) 0%, transparent 55%),
    var(--graphite);
  color: var(--on-dark);
}
.fb-fallback__badge { display:grid; place-items:center; width:64px; height:64px; border-radius:50%; background:#366db4; box-shadow: var(--shadow); }
.fb-fallback__badge svg { width:34px; height:34px; color:#e0e0e0; }
.fb-fallback strong { font-family: var(--font-display); text-transform: uppercase; font-size: 1.55rem; line-height: 1.02; letter-spacing:.01em; }
.fb-fallback__text { color: var(--on-dark-mut); max-width: 32ch; font-size: .95rem; }
.fb-fallback__btn {
  margin-top: .35rem; display:inline-flex; align-items:center; gap:.55rem;
  background: var(--red); color:#e0e0e0;
  font-family: var(--font-label); font-weight:700; text-transform:uppercase; letter-spacing:.07em; font-size:.85rem;
  padding:.8rem 1.35rem; border-radius: var(--radius); transition: background .18s var(--ease), transform .18s var(--ease);
}
.fb-fallback__btn svg { width:1.05em; height:1.05em; }
.fb-fallback:hover .fb-fallback__btn { background: var(--red-deep); transform: translateY(-2px); }

.statline { display:flex; flex-wrap:wrap; gap: 2.4rem; margin-top: 2rem; }
.stat b { display:block; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(2.2rem,1.6rem+2vw,3rem); color: var(--red); line-height: 1; }
.stat span { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--on-light-mut); }
.bg-ink .stat span, .bg-ink-2 .stat span { color: var(--on-dark-mut); }

/* ============================================================
   Pricing cards (poster-style)
   ============================================================ */
.price-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 2.6rem; }
.price-card { background: #e0e0e0; border:1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 14px 34px -26px rgba(0, 0, 0, .5); }
.bg-ink .price-card, .bg-ink-2 .price-card { background: var(--graphite); border-color: var(--line); }
.price-card__head { display:flex; align-items:center; gap:.8rem; background: var(--ink); color:#e0e0e0; padding: 1rem 1.3rem; position: relative; }
.price-card__head::after { content:""; position:absolute; right:0; top:0; height:100%; width:44px; background: var(--red); clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%); }
.price-card__head .ic { width: 1.5rem; height:1.5rem; color: var(--red); }
.price-card__head h3 { font-size: 1.24rem; }
.price-card__body { padding: .5rem 1.3rem 1.4rem; }
.price-row { display:flex; align-items:baseline; gap:.6rem; padding: .85rem 0; border-bottom: 1px dashed var(--line-soft); }
.bg-ink .price-row, .bg-ink-2 .price-row { border-color: var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-weight: 600; }
.price-row__name small { display:block; font-weight:500; font-size:.78rem; color: var(--on-light-mut); text-transform: uppercase; letter-spacing:.04em; }
.bg-ink .price-row__name small, .bg-ink-2 .price-row__name small { color: var(--on-dark-mut); }
.price-row__leader { flex:1; border-bottom: 2px dotted #b1aeaa; transform: translateY(-3px); }
.bg-ink .price-row__leader, .bg-ink-2 .price-row__leader { border-color: #343639; }
.price-row__val { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.5rem; color: var(--red); line-height:1; white-space: nowrap; }
.price-row__val small { font-family: var(--font-label); font-style: normal; font-weight:700; font-size:.62rem; color: var(--on-light-mut); display:block; text-align:right; letter-spacing:.06em; text-transform: uppercase; }
.bg-ink .price-row__val small, .bg-ink-2 .price-row__val small { color: var(--on-dark-mut); }
.price-note { margin-top: 2rem; display:flex; gap:1rem; align-items:flex-start; background: rgba(158, 43, 40, .07); border:1px solid rgba(158, 43, 40, .25); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.price-note .ic { width:1.5rem; height:1.5rem; color: var(--red); flex:none; margin-top:.1rem; }
.price-note p { font-size:.98rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.quote { background: var(--graphite); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; display:flex; flex-direction:column; gap: .9rem; }
.bg-paper .quote, .bg-paper-2 .quote { background:#e0e0e0; border-color: var(--line-soft); box-shadow: 0 10px 30px -24px rgba(0, 0, 0, .4); }
.quote__stars { display:flex; gap:.15rem; color: var(--red); }
.quote__stars .ic { width:1.15rem; height:1.15rem; }
.quote p { font-size: 1.02rem; line-height:1.6; }
.quote__by { margin-top:auto; display:flex; align-items:center; gap:.7rem; padding-top:.5rem; }
.quote__by b { font-family: var(--font-label); font-weight:700; letter-spacing:.02em; }
.quote__by span { display:block; font-size:.78rem; color: var(--on-dark-mut); text-transform: uppercase; letter-spacing:.08em; }
.bg-paper .quote__by span, .bg-paper-2 .quote__by span { color: var(--on-light-mut); }

/* Testimonials carousel */
.quotes-carousel { margin-top: 2.6rem; }
.quotes-viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.quotes-viewport::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .quotes-viewport { scroll-behavior: auto; } }
.quotes-track { display: flex; gap: 1.4rem; --per-view: 3; }
.quotes-track .quote { flex: 0 0 calc((100% - (var(--per-view) - 1) * 1.4rem) / var(--per-view)); scroll-snap-align: start; }
@media (max-width: 980px) { .quotes-track { --per-view: 2; } }
@media (max-width: 620px) { .quotes-track { --per-view: 1; } }
.quotes-controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2rem; }
.quotes-arrow { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid var(--line-soft); background: #e0e0e0; color: var(--on-light); cursor: pointer; flex: none; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.quotes-arrow .ic { width: 1.15rem; height: 1.15rem; }
.quotes-arrow[data-dir="-1"] .ic { transform: scaleX(-1); }
.quotes-arrow:hover, .quotes-arrow:focus-visible { background: var(--red); border-color: var(--red); color: #e0e0e0; }
.quotes-dots { display: flex; align-items: center; gap: .5rem; }
.quotes-dots button { width: .55rem; height: .55rem; border-radius: 50%; border: none; padding: 0; background: var(--line-soft); cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease); }
.quotes-dots button.is-active { background: var(--red); transform: scale(1.3); }

.rating-summary { display:flex; align-items:center; justify-content:center; gap:.5rem; margin-top:1.1rem; }
.rating-summary .ic:first-child { width:1.3rem; height:1.3rem; flex:none; }
.rating-summary__score { font-family: var(--font-display); font-weight:800; font-size:1.3rem; }
.rating-summary__stars { display:flex; gap:.1rem; color: var(--red); }
.rating-summary__stars .ic { width:1.05rem; height:1.05rem; }
.rating-summary__label { font-family: var(--font-label); font-size:.82rem; letter-spacing:.04em; color: var(--on-light-mut); }

.reviews-cta { margin-top:2.6rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:1rem; }
.reviews-cta p { font-size:1rem; color: var(--on-light-mut); }

/* ============================================================
   CTA band
   ============================================================ */
.cta { position: relative; color:#e0e0e0; overflow:hidden; isolation:isolate; text-align:center; }
.cta__media { position:absolute; inset:0; z-index:-2; }
.cta__media img { width:100%; height:100%; object-fit:cover; }
.cta__scrim { position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(9, 9, 10, .82), rgba(9, 9, 10, .9)), radial-gradient(80% 120% at 50% 120%, var(--red-glow), transparent 55%); }
.cta h2 { font-size: clamp(2.1rem,1.6rem+2.6vw,3.6rem); }
.cta p { max-width: 52ch; margin: 1rem auto 0; color:#c7c7c4; }
.cta__actions { display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center; margin-top:2rem; }

/* ============================================================
   Contact / booking
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items:start; }
.info-list { display:grid; gap: 1.4rem; margin-top: 1.8rem; }
.info-item { display:flex; gap: 1rem; align-items:flex-start; }
.info-item__ic { width:2.9rem; height:2.9rem; flex:none; display:grid; place-items:center; background: var(--red); color:#e0e0e0; border-radius: 8px; }
.info-item__ic .ic { width:1.4rem; height:1.4rem; }
.info-item h3 { font-size: 1.12rem; margin-bottom:.15rem; }
.info-item a:hover { color: var(--red); }
.info-item p, .info-item address { font-style: normal; color: var(--on-light-mut); }
.bg-ink .info-item p, .bg-ink .info-item address { color: var(--on-dark-mut); }

.booking { background: var(--graphite); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; }
.booking__head { padding: 1.2rem 1.4rem; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:.7rem; }
.booking__head .ic { color: var(--red); width:1.4rem; height:1.4rem; }
.booking__head h3 { color:#e0e0e0; font-size:1.3rem; }
.booking__frame { width:100%; min-height: 640px; border:0; display:block; background:#e0e0e0; }
.booking__fallback { padding: 1rem 1.4rem; font-size:.86rem; color: var(--on-dark-mut); border-top:1px solid var(--line); }
.booking__fallback a { color: var(--red); }

.map-embed { border:0; width:100%; height: 340px; border-radius: var(--radius-lg); filter: grayscale(.25) contrast(1.05); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #060607; color: var(--on-dark); }
.footer__top { display:grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-block: clamp(2.8rem,5vw,4rem); align-items: start; }
.footer__brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer__brand p { color: var(--on-dark-mut); font-size:.95rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-display); font-weight:700; text-transform:uppercase; font-size:1.05rem; letter-spacing:.03em; color:#e0e0e0; margin-bottom: 1.1rem; }
.footer__col ul { list-style:none; display:grid; gap:.6rem; padding-left: 0; }
.footer__col a, .footer__col p { color: var(--on-dark-mut); font-size:.94rem; }
.footer__col a:hover { color: var(--red); }
.footer address { font-style: normal; color: var(--on-dark-mut); font-size:.94rem; line-height:1.7; }
.footer__badges { display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1.1rem; }
.badge { font-family: var(--font-label); font-weight:700; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:#e0e0e0; border:1px solid var(--line); border-radius:4px; padding:.4rem .6rem; }
.badge b { color: var(--red); }
.socials { display:flex; gap:.6rem; margin-top:1.2rem; }
.socials a { width:40px; height:40px; border:1px solid var(--line); border-radius:6px; display:grid; place-items:center; color:var(--on-dark); transition:.18s var(--ease); }
.socials a:hover { background: var(--red); border-color: var(--red); color:#e0e0e0; }
.socials .ic { width:1.15rem; height:1.15rem; }
.footer__certs { display:flex; align-items:center; gap:.6rem; margin-top:1rem; flex-wrap:wrap; }
.footer__certs img { height:46px; width:auto; border-radius:4px; display:block; }
.footer__bottom { border-top:1px solid var(--line); padding-block: 1.3rem; display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; align-items:center; justify-content:space-between; }
.footer__bottom p { color: var(--on-dark-mut); font-size:.84rem; }
.footer__bottom nav { display:flex; gap:1.2rem; flex-wrap:wrap; }
.footer__bottom a { color: var(--on-dark-mut); font-size:.84rem; }
.footer__bottom a:hover { color:#e0e0e0; }

/* ============================================================
   Reveal animation
   ============================================================ */
/* reveal is gated behind .js so content is fully visible without JavaScript (SEO + no-JS safe) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .js .reveal { opacity:1 !important; transform:none !important; } }

.skip { position:absolute; left:-999px; top:0; background:var(--red); color:#e0e0e0; padding:.7rem 1.1rem; z-index:100; }
.skip:focus { left:.5rem; top:.5rem; }

/* Prose (about/legal) */
.prose { max-width: 68ch; }
.prose p { margin-top: 1.1rem; color: var(--on-light-mut); }
.bg-ink .prose p, .bg-ink-2 .prose p { color: var(--on-dark-mut); }
.prose p:first-child { margin-top: 0; }
.prose .lead { color: inherit; }

/* Inline "book" links in body copy — red accent on light, white w/ red underline on dark CTA/feature sections */
.book-link { color: var(--red); font-weight: 600; }
.book-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.cta .book-link, .feature .book-link, .pagehero .book-link, .hero .book-link, .bg-ink .book-link, .bg-ink-2 .book-link { color: #e0e0e0; text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.cta .book-link:hover, .feature .book-link:hover, .pagehero .book-link:hover, .hero .book-link:hover, .bg-ink .book-link:hover, .bg-ink-2 .book-link:hover { text-decoration-color: #e0e0e0; }

/* FAQ accordion */
.prose details { border-bottom: 1px solid var(--line-soft); }
.prose details:first-of-type { border-top: 1px solid var(--line-soft); }
.prose details summary { list-style: none; cursor: pointer; position: relative; padding: 1.2rem 2.6rem 1.2rem 0; font-size: 1.14rem; color: var(--on-light); }
.prose details summary::-webkit-details-marker { display: none; }
.prose details summary strong { font-weight: 700; }
.prose details summary::after { content: "+"; position: absolute; right: .1rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--red); transition: transform .2s var(--ease); }
.prose details[open] summary::after { content: "\2013"; }
.prose details > p { margin: -.2rem 0 1.3rem; color: var(--on-light-mut); }
.prose details > p:first-child { margin-top: -.2rem; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .feature__wrap, .split, .contact-grid { grid-template-columns: 1fr; }
  .feature__media, .split__media { max-width: 560px; }
  .split__media::before, .fb-frame::before { inset: 10px -10px -10px 10px; }
  .split--values .fb-frame { order: 2; margin-top: 1rem; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(3) { border-left: 0; }
  .trustbar__item:nth-child(odd) { border-left: 0; }
  .trustbar__item:nth-child(even) { border-left: 1px solid var(--line); }
  .trustbar__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --head-h: 66px; }
  /* Solid header on mobile: drops the backdrop-filter so the fixed nav panel is positioned against the viewport, not the header */
  .header { background: rgba(11, 11, 11, .98); backdrop-filter: none; }
  .brand img { height: 46px; }
  .nav, .header__phone { display: none; }
  .nav-toggle { display: block; grid-row: 1; }
  /* empty on mobile (phone + book button are hidden); removing it stops the toggle being pushed to a 2nd grid row below the header */
  .header__cta { display: none; }
  .nav {
    /* grid-column/justify-self reset: otherwise the fixed panel uses its desktop grid area as its containing block and collapses to a narrow centered box */
    position: fixed; top: var(--head-h); left: 0; right: 0; bottom: auto; z-index: 58;
    grid-column: auto; justify-self: stretch;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.4rem; transform: translateY(-140%); transition: transform .28s var(--ease);
    max-height: calc(100vh - var(--head-h)); max-height: calc(100dvh - var(--head-h)); overflow:auto; box-shadow: var(--shadow);
  }
  body.nav-open .nav { transform: translateY(0); display: flex; }
  .nav a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display:none; }
  .nav > .btn { display: inline-flex; margin-top: 1rem; border-bottom: 0; }
  .nav .header__phone--mobile { display:flex; padding: .95rem .4rem; }

  /* Services dropdown becomes an accordion inside the mobile panel */
  .nav__group { display: grid; grid-template-columns: 1fr auto; align-items: center; position: static; }
  .nav__group > a { grid-column: 1; }
  .nav__caret { grid-column: 2; width: 42px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 4px; margin: .35rem 0; }
  .nav__sub {
    grid-column: 1 / -1; position: static; min-width: 0;
    opacity: 1; visibility: visible; transform: none; transition: none;
    background: transparent; border: 0; border-left: 2px solid var(--line); border-radius: 0;
    box-shadow: none; padding: 0 0 0 .9rem; margin: 0 0 .5rem .3rem;
    display: none;
  }
  .nav__group.open .nav__sub { display: grid; }
  .nav__sub::before { display: none; }
  .nav__sub a { padding: .8rem .4rem; font-size: .95rem; border-radius: 0; }
  .nav__sub a:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-left: 0 !important; }
  .trustbar__item + .trustbar__item { border-top: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__bottom { justify-content:flex-start; }
  .hero__actions .btn { flex: 1 1 auto; }
}
