/* =====================================================================
   Continental Euro Auto — Design System (DARK PREMIUM)
   Palette: near-black base, antique-gold accent
   Display/headings: Oswald (strong automotive sans) · Body: Inter
   Mobile-first, conversion-focused
   ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* Surfaces (near-black, warm) */
  --bg: #0b0b0d;
  --bg-soft: #101013;
  --bg-deep: #070708;
  --panel: #151519;
  --panel-2: #1c1c21;
  --glass: rgba(255, 255, 255, 0.035);

  /* Lines */
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(212, 175, 90, 0.35);

  /* Gold accent */
  --gold: #c9a24b;
  --gold-bright: #e6c877;
  --gold-deep: #a67f2e;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --gold-glow: rgba(201, 162, 75, 0.35);

  /* Text */
  --heading: #f6f2e9;
  --text: #d9d5cc;
  --text-soft: #9c968b;
  --text-dim: #6f6a61;
  --on-gold: #14110a; /* dark text on gold buttons */

  /* Support */
  --green: #4c9a68;

  /* Typography */
  --font-body: "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-display: "Oswald", "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.65);

  --sticky-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* Sticky footer: on short pages (e.g. Thank You) push the footer to the bottom
     so no empty dark space shows below it. */
  display: flex; flex-direction: column; min-height: 100vh;
}
.site-footer { margin-top: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; color: var(--heading);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; }
p { color: var(--text-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 78px 0; background: var(--bg); position: relative; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--bg-deep); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-bottom: 14px;
}
.lead { font-size: 1.12rem; max-width: 640px; color: var(--text-soft); }
.center .lead { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 42px; }

/* Hairline gold divider under section headings (subtle premium touch) */
.center .eyebrow::after {
  content: ""; display: block; width: 46px; height: 2px; margin: 14px auto -2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; line-height: 1;
  letter-spacing: 0.02em; padding: 16px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  min-height: 52px; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--on-gold);
  box-shadow: 0 10px 26px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px var(--gold-glow); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--gold-bright); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--heading); border-color: rgba(255,255,255,0.28); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; min-height: 58px; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 9, 11, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--heading); }
.logo .mark {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--on-gold); display: grid; place-items: center; font-size: 1rem; font-weight: 900; font-family: var(--font-body);
  box-shadow: 0 4px 14px var(--gold-glow);
}
.logo small { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > li { position: relative; }
.nav a.nav-link {
  display: inline-flex; align-items: center; gap: 5px; padding: 8px 10px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem; color: var(--text); transition: background .15s, color .15s; white-space: nowrap;
}
.nav a.nav-link:hover { background: var(--gold-soft); color: var(--gold-bright); }
.nav .caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 244px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 9px; font-weight: 600; font-size: 0.92rem; color: var(--text); }
.dropdown a:hover { background: var(--gold-soft); color: var(--gold-bright); }
.dropdown .ico { font-size: 1.05rem; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.header-phone span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; }
.header-phone a { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--heading); white-space: nowrap; }
/* On mid-width desktops, drop the phone block so the CTA never crowds the nav. */
@media (min-width: 1051px) and (max-width: 1167px) {
  .header-phone { display: none; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--gold); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--heading); overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(201,162,75,0.16) 0%, transparent 42%),
    linear-gradient(160deg, #101012 0%, #0a0a0b 60%, #060607 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../assets/hero.svg");
  background-size: cover; background-position: center; opacity: 0.5; z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,6,7,0.9) 0%, rgba(6,6,7,0.55) 45%, rgba(6,6,7,0.2) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 44px; align-items: center; padding: 80px 0 56px; }
.hero h1 { color: var(--heading); }
.hero h1 em, .hero .accent { color: var(--gold-bright); font-style: normal; }
.hero .rating-inline { margin-bottom: 20px; }
.hero-sub { font-size: 1.16rem; color: var(--text-soft); margin-top: 20px; max-width: 560px; }
.hero .btn-row { margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 32px; }
.hero-badges .hb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.hero-badges .hb .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }

/* Hero side card (glass) */
.hero-card {
  background: var(--glass); color: var(--text); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px; border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: var(--heading); font-size: 1.3rem; }
.hero-card .form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 10px; text-align: center; }

/* ---------- Rating widget ---------- */
.rating-inline { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars { color: var(--gold-bright); font-size: 1.05rem; letter-spacing: 2px; }
.rating-inline b { font-weight: 800; color: var(--heading); }
.rating-inline .muted { color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; padding: 22px 0; }
.trustbar .ti { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.trustbar .ti .ico { font-size: 1.25rem; filter: saturate(0.6); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }

.service-card { display: flex; flex-direction: column; }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid var(--line-strong); font-size: 1.6rem; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; color: var(--heading); }
.service-card p { font-size: 0.95rem; }
.service-card .more { margin-top: auto; padding-top: 16px; color: var(--gold-bright); font-weight: 700; font-size: 0.9rem; display: inline-flex; gap: 6px; letter-spacing: 0.02em; }
.service-card:hover .more { gap: 10px; }

/* Benefits */
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit .ico {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--on-gold); font-size: 1.3rem;
  box-shadow: 0 6px 16px var(--gold-glow);
}
.benefit h3 { font-size: 1.12rem; margin-bottom: 4px; color: var(--heading); }
.benefit p { font-size: 0.94rem; }

/* Brands */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-chip {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--heading);
  transition: .16s; text-align: center;
}
.brand-chip:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.brand-chip .bmark {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-deep); border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 0.82rem; font-family: var(--font-body); font-weight: 700; color: var(--gold); flex: 0 0 auto;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { text-align: center; position: relative; }
.step .num {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  background: transparent; color: var(--gold-bright); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 6px var(--gold-soft);
}
.step h3 { font-size: 1.05rem; color: var(--heading); }
.step p { font-size: 0.88rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; position: relative;
}
.testi::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 4.5rem; color: var(--gold-soft); line-height: 1;
}
.testi .stars { margin-bottom: 14px; }
.testi p { color: var(--text); font-size: 1rem; position: relative; z-index: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi .avatar {
  width: 46px; height: 46px; border-radius: 50%; color: var(--on-gold); font-weight: 800; font-family: var(--font-body);
  display: grid; place-items: center; font-size: 1rem; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  overflow: hidden; flex: 0 0 auto;
}
.testi .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi .who b { display: block; color: var(--heading); font-size: 0.95rem; }
.testi .who span { font-size: 0.8rem; color: var(--text-dim); }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--gold-bright); letter-spacing: 0; }
.stat span { color: var(--text-soft); font-weight: 500; font-size: 0.9rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(201,162,75,0.16), transparent 60%),
    linear-gradient(120deg, #14120c, #1c1710 55%, #0e0d09);
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
}
.cta-band h2 { color: var(--heading); }
.cta-band h2 span, .cta-band .accent { color: var(--gold-bright); }
.cta-band p { color: var(--text-soft); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 15px; }
.form label { font-weight: 600; font-size: 0.86rem; color: var(--text); display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--heading); background: var(--bg-deep); transition: border-color .15s, box-shadow .15s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-dim); }
.form select { color: var(--text); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ---------- Contact / map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 11px; background: var(--gold-soft); border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 1.2rem; }
.info-item b { display: block; color: var(--heading); font-family: var(--font-body); }
.info-item a, .info-item span { color: var(--text-soft); }
.info-item a:hover { color: var(--gold-bright); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe, .map-placeholder { width: 100%; height: 340px; border: 0; }
.map-placeholder { background: var(--panel); display: grid; place-items: center; color: var(--text-dim); font-weight: 600; text-align: center; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 0.84rem; color: var(--text-dim); padding: 16px 0; }
.crumb a { color: var(--text-soft); font-weight: 600; }
.crumb a:hover { color: var(--gold-bright); }

/* Sub-hero (inner pages) */
.subhero {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,162,75,0.14), transparent 45%),
    linear-gradient(160deg, #101012, #070708);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
}
.subhero::after {
  content: ""; position: absolute; inset: 0; background-image: url("../assets/hero.svg");
  background-size: cover; background-position: center; opacity: 0.32;
}
.subhero .container { position: relative; z-index: 1; padding: 60px 20px; }
.subhero h1 { color: var(--heading); max-width: 800px; }
.subhero h1 em, .subhero .accent { color: var(--gold-bright); font-style: normal; }
.subhero p { color: var(--text-soft); max-width: 640px; margin-top: 16px; font-size: 1.08rem; }
.subhero .btn-row { margin-top: 28px; }

/* Checklist */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--text); }
.checklist li::before {
  content: "\2713"; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold); color: var(--gold-bright); font-weight: 800; display: grid; place-items: center; font-size: 0.75rem;
}

/* Two-col feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 70% 30%, rgba(201,162,75,0.14), transparent 55%),
    linear-gradient(135deg, #16161a, #0b0b0d);
  border: 1px solid var(--line); min-height: 330px;
  display: grid; place-items: center; color: var(--text-dim); position: relative;
}
.media-card .ph-label { font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; text-align: center; padding: 20px; }
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.media-card.photo { color: transparent; }

/* Video reels: compact horizontal swipe strip (auto-play, muted, looping) */
.reel-grid { display: flex; gap: 14px; margin: 26px auto 0; width: fit-content; max-width: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 14px; -webkit-overflow-scrolling: touch; }
.reel { flex: 0 0 auto; width: 150px; aspect-ratio: 9 / 16; scroll-snap-align: center; position: relative;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); background: var(--panel); }
.reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.reel::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,162,75,0.10); border-radius: 14px; }
/* slim gold scrollbar to hint it's swipeable */
.reel-grid::-webkit-scrollbar { height: 6px; }
.reel-grid::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 6px; }
@media (max-width: 560px) { .reel { width: 132px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: var(--text-soft); padding: 64px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.site-footer h4 { color: var(--gold); font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.14em; }
.site-footer a { color: var(--text-soft); font-size: 0.93rem; display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-brand .logo { color: var(--heading); margin-bottom: 16px; }
.footer-brand .logo small { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; color: var(--text-dim); }
.footer-nap { font-style: normal; font-size: 0.92rem; line-height: 1.95; color: var(--text-soft); }
.footer-pay { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; text-align: center; font-size: 0.8rem; color: var(--text-soft); letter-spacing: 0.02em; }
.footer-pay .pay-finance { color: var(--gold-bright); font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: var(--text-dim); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(9, 9, 11, 0.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr; gap: 10px;
}
.mobile-cta .btn { min-height: 50px; font-size: 0.95rem; padding: 12px; }
.mobile-cta .btn-call { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--on-gold); }

/* ---------- Brands marquee (auto-scroll carousel) ---------- */
.brand-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.brand-track { display: flex; width: max-content; gap: 20px; animation: brand-scroll 34s linear infinite; }
.brand-medallion {
  flex: 0 0 auto; width: 188px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 28px 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.brand-medallion:hover { border-color: var(--gold); box-shadow: var(--shadow); background: var(--panel-2); }
/* tighten the gap between the brands carousel and the stats strip */
#brands { padding-bottom: 44px; }
#brands + .section-navy { padding-top: 44px; }
.brand-medallion .ring {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--gold); color: var(--gold-bright);
  background: radial-gradient(circle at 50% 32%, rgba(201,162,75,0.20), transparent 70%);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.02em;
}
.brand-medallion .bname { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--heading); }
.brand-medallion .btag { font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.16em; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Protection Plan / Membership ---------- */
.plan-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
.plan-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-strong);
  border-radius: 22px; padding: 36px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.plan-card::before {
  content: ""; position: absolute; top: -40%; right: -25%; width: 75%; height: 85%;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%); pointer-events: none;
}
.plan-card > * { position: relative; z-index: 1; }
.plan-badge {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--on-gold);
  font-weight: 800; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px;
}
.plan-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 700; }
.plan-price { display: flex; align-items: flex-end; gap: 8px; margin: 8px 0 2px; }
.plan-price .amt { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.2rem); font-weight: 800; color: var(--gold-bright); line-height: 0.95; }
.plan-price .per { color: var(--text-soft); font-weight: 600; padding-bottom: 12px; }
.plan-save {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold-soft); border: 1px solid var(--line-strong);
  color: var(--gold-bright); font-weight: 700; font-size: 0.88rem; padding: 8px 14px; border-radius: 999px; margin-top: 10px;
}
.plan-scarcity { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 16px; background: var(--bg-deep); border: 1px solid var(--line); border-radius: 12px; font-size: 0.9rem; color: var(--text); }
.plan-scarcity b { color: var(--gold-bright); }
.plan-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 16px; }
.plan-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 8px; }
.plan-benefits li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.98rem; }
.plan-benefits li .bi {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold);
  color: var(--gold-bright); display: grid; place-items: center; font-size: 0.72rem; font-weight: 800;
}

/* Home plan teaser band */
.plan-teaser { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.plan-teaser > div:first-child { flex: 1 1 420px; }

@media (max-width: 960px) {
  .plan-wrap { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .plan-benefits { grid-template-columns: 1fr; }
  .brand-medallion { width: 158px; padding: 22px 14px; }
}

/* ---------- Icons (Font Awesome) ---------- */
.ico i { line-height: 1; color: var(--gold-bright); }
.service-card .ico i { font-size: 1.4rem; color: var(--gold-bright); }
.benefit .ico i { font-size: 1.25rem; color: var(--on-gold); }
.info-item .ico i { font-size: 1.1rem; color: var(--gold-bright); }
.trustbar .ti .ico i { font-size: 1.05rem; color: var(--gold); }
.dropdown .ico i { font-size: 0.9rem; color: var(--gold-bright); width: 18px; text-align: center; }
.btn i { font-size: 0.9em; }
.plan-scarcity i, .plan-save i { color: var(--gold-bright); }

/* ---------- Hero image (rectangular) ---------- */
.hero-media {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg); background: var(--bg-deep); aspect-ratio: 3 / 2;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Brand logos in marquee ---------- */
.brand-medallion .logo-box { height: 76px; display: grid; place-items: center; }
/* Base size (Audi & Jaguar keep this — Audi is width-capped so it stays put). */
.brand-medallion .blogo { height: auto; width: auto; max-height: 56px; max-width: 131px; object-fit: contain; display: block; }
/* Per-logo tuning: enlarge the rounder / narrower marks a bit. */
.brand-medallion .blogo[alt="BMW"],
.brand-medallion .blogo[alt="Mercedes-Benz"],
.brand-medallion .blogo[alt="Volkswagen"],
.brand-medallion .blogo[alt="Porsche"],
.brand-medallion .blogo[alt="Volvo"],
.brand-medallion .blogo[alt="Land Rover"] { max-height: 68px; }
.brand-medallion .blogo[alt="MINI"] { max-height: 62px; max-width: 150px; }

/* ---------- Header logo image ---------- */
/* Full transparent gold wordmark banner. flex-shrink:0 + width:auto keeps its
   aspect ratio so it never compresses; the adjacent text lockup stays hidden. */
.logo { flex-shrink: 0; gap: 12px; }
.logo .mark { width: auto; height: 52px; background: none; box-shadow: none; border-radius: 0; display: block; flex-shrink: 0; }
.logo .mark img { height: 52px; width: auto; display: block; border-radius: 0; }
.logo > span:not(.mark) { display: none; }
.site-footer .logo .mark, .site-footer .logo .mark img { height: 46px; }

/* ---------- Brand wordmarks (marquee) ---------- */
.brand-medallion .blogo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.04em;
  color: var(--heading); line-height: 1; white-space: nowrap;
}

/* ---------- Reviews slider ---------- */
.reviews-slider { position: relative; }
.reviews-viewport {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 8px; -ms-overflow-style: none; scrollbar-width: none;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-viewport .testi { flex: 0 0 clamp(280px, 88vw, 384px); scroll-snap-align: center; }
.reviews-nav { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.rev-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line-strong);
  background: var(--panel); color: var(--gold-bright); cursor: pointer; display: grid; place-items: center;
  font-size: 1rem; transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.rev-btn:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); transform: translateY(-2px); }
.testi .rv.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.readmore {
  margin-top: 10px; background: none; border: none; color: var(--gold-bright); font-weight: 700;
  font-size: 0.85rem; cursor: pointer; padding: 0; font-family: var(--font-body); align-self: flex-start;
}
.readmore:hover { text-decoration: underline; }

/* ---------- "Don't see your repair?" card ---------- */
.service-ask { background: transparent; border: 1.5px dashed var(--line-strong); }
.service-ask:hover { border-style: solid; border-color: var(--gold); background: var(--gold-soft); }
.service-ask .ico { background: transparent; border-color: var(--gold); }

/* ---------- Quick Q&A (accordion) ---------- */
.qa { max-width: 800px; margin-left: auto; margin-right: auto; display: grid; gap: 14px; }
.qa-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .15s; }
.qa-item[open] { border-color: var(--line-strong); }
.qa-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--heading);
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "+"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold);
  color: var(--gold-bright); display: grid; place-items: center; font-size: 1.15rem; line-height: 1; transition: transform .2s;
}
.qa-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.qa-body { padding: 0 22px 20px; }
.qa-body p { color: var(--text-soft); font-size: 0.98rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0 32px; gap: 28px; }
  .hero-card { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .contact-grid, .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Collapse the header to a hamburger whenever the full nav would crowd the row. */
@media (max-width: 1050px) {
  body { padding-bottom: var(--sticky-h); }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header .header-cta .btn { display: none; }
  .mobile-cta { display: grid; }
  /* backdrop-filter creates a containing block that traps position:fixed —
     drop it on mobile so the open menu can cover the full viewport */
  .site-header { background: #0b0b0d; backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.nav-open { overflow: hidden; }

  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; top: 76px; left: 0; right: 0; height: calc(100vh - 76px); background: var(--panel);
    border-top: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px 12px 48px; z-index: 120;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .nav.open > li { width: 100%; }
  .nav.open a.nav-link { padding: 14px; border-radius: 10px; font-size: 1rem; }
  .nav.open .has-dropdown > .nav-link { justify-content: space-between; }
  /* submenus collapsed by default on mobile; tap the parent to expand */
  .nav.open .has-dropdown .dropdown {
    position: static; visibility: visible; transform: none; box-shadow: none; border: 0;
    min-width: 0; background: transparent; margin: 0 0 4px 12px; padding: 0;
    max-height: 0; opacity: 0; overflow: hidden; transition: max-height .28s ease, opacity .2s ease;
  }
  .nav.open .has-dropdown.open .dropdown { max-height: 720px; opacity: 1; padding: 2px 0 8px; }
  .nav.open .caret { display: inline-block; transition: transform .2s ease; opacity: .7; }
  .nav.open .has-dropdown.open > .nav-link .caret { transform: rotate(-135deg) translateY(2px); }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .brand-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
}

/* =====================================================================
   PREMIUM POLISH — luxury micro-interactions & hierarchy
   (visual only; structure unchanged)
   ===================================================================== */
:root {
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.62);
  --gold-glow: rgba(201, 162, 75, 0.42);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Typography hierarchy: more impact, more breathing room ---- */
h1 { letter-spacing: -0.035em; line-height: 1.05; }
h2 { letter-spacing: -0.028em; }
.eyebrow { margin-bottom: 16px; }
.lead { line-height: 1.72; }
.section { padding: 88px 0; }
.center h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }

/* ---- Header fades in on load ---- */
@keyframes eaw-fade-down { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.site-header { animation: eaw-fade-down 0.6s var(--ease) both; }

/* ---- Buttons: gold glow, scale, shine sweep ---- */
.btn { position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.25s ease, border-color 0.25s ease; }
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn-primary { box-shadow: 0 8px 24px var(--gold-glow); }
.btn-primary:hover { box-shadow: 0 16px 40px var(--gold-glow), 0 0 24px var(--gold-glow); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -135%; width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease);
}
.btn-primary:hover::after { left: 140%; }

/* ---- Cards: bigger lift, softer shadow, icon pop ---- */
.card, .brand-medallion, .testi, .qa-item, .hero-card, .plan-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55); border-color: var(--line-strong); }
.brand-medallion:hover { transform: translateY(-6px); }
.service-card .ico, .benefit .ico { transition: transform 0.4s var(--ease), box-shadow 0.3s ease; }
.card:hover .ico { transform: translateY(-3px) scale(1.07); }

/* ---- Scroll reveal (progressive enhancement: only when JS adds .js-reveal) ---- */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
.js-reveal .hero-media.reveal img { transform: scale(1.06); transition: transform 1.1s var(--ease); }
.js-reveal .hero-media.reveal.in img { transform: none; }

/* =====================================================================
   LIVING DETAILS — subtle premium micro-touches (elegant, not flashy)
   ===================================================================== */
/* Pulsing gold halo on the hero trust-badge dots */
.hero-badges .hb .dot { position: relative; }
.hero-badges .hb .dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: eaw-pulse 2.4s ease-out infinite;
}
@keyframes eaw-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201, 162, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
}

/* Slow gold shimmer sweeping across key accents */
.hero h1 em, .subhero h1 em, .stat b {
  background: linear-gradient(100deg, var(--gold) 25%, var(--gold-bright) 44%, #fff4d6 50%, var(--gold-bright) 56%, var(--gold) 75%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: eaw-shine 7s linear infinite;
}
@keyframes eaw-shine { to { background-position: -220% center; } }

/* Soft glow behind the star ratings */
.rating-inline .stars, .testi .stars { text-shadow: 0 0 14px rgba(201, 162, 75, 0.35); }

/* Periodic light sweep. The logo IMAGE is never masked (always visible); only the
   moving SHINE overlay is masked to the logo shape, so the light touches only the logo. */
.logo .mark { position: relative; }
.logo .mark::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,0.95) 50%, transparent 68%);
  background-repeat: no-repeat; background-size: 300% 100%; background-position: 0 0;
  -webkit-mask-image: url(../assets/logo.png); mask-image: url(../assets/logo.png);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: 0 0; mask-position: 0 0;
  animation: eaw-logo-sheen 3.8s ease-in-out infinite;
}
@keyframes eaw-logo-sheen {
  0%   { background-position: 0 0; }
  35%  { background-position: 100% 0; }
  100% { background-position: 100% 0; }
}

/* =====================================================================
   POLISH v2 — depth, premium borders, soft section transitions
   ===================================================================== */
/* Soft section transitions: panels fade in/out of the base black instead of
   hard edges (fixes the visible line between sections). */
.section-soft {
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e12 13%, #0e0e12 87%, var(--bg) 100%);
}
.section-navy {
  background: linear-gradient(180deg, var(--bg) 0%, #050506 22%, #050506 78%, var(--bg) 100%);
}
/* faint ambient light behind key sections */
.cta-band { position: relative; }

/* Depth: cards float with layered + inner-highlight shadows and a premium hairline */
.card, .testi, .qa-item, .brand-medallion, .plan-card, .hero-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 10px 28px rgba(0, 0, 0, 0.35);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line-strong);
}
.service-card:hover, .brand-medallion:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 26px 52px rgba(0,0,0,0.5); }

/* Premium animated underline + active indicator on desktop nav */
.nav > li > a.nav-link { position: relative; }
.nav > li > a.nav-link::before {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav > li > a.nav-link:hover::before, .nav > li > a.nav-link.active::before { transform: scaleX(1); }
.nav.open > li > a.nav-link::before { display: none; }

/* Premium footer ending: soft gold hairline + faint top glow */
.site-footer { position: relative; border-top: 0; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.4), transparent);
}
.site-footer::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 160px; background: radial-gradient(ellipse at top, rgba(201, 162, 75, 0.06), transparent 70%);
  pointer-events: none;
}

/* ---- Cinematic full-width showcase band ---- */
.showcase { position: relative; width: 100%; height: clamp(300px, 40vw, 520px); overflow: hidden; background: var(--bg); }
/* Photo has a pure-black background: mix-blend lighten melts that black into the page
   background so there is no visible box — only the lit car shows, emerging from the dark. */
.showcase-img { width: 100%; height: 100%; object-fit: contain; object-position: center 46%; display: block; transform: scale(0.92); mix-blend-mode: lighten; }
.showcase-tint { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(150% 130% at 50% 46%, transparent 58%, var(--bg) 100%); }
.showcase-cap { position: absolute; left: 0; right: 0; bottom: clamp(24px, 5vw, 44px); text-align: center; z-index: 2; padding: 0 20px; }
.showcase-cap span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  color: var(--heading); letter-spacing: -0.02em; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}
.showcase-cap span em { color: var(--gold-bright); font-style: normal; }
/* Car emerges from the shadows: with mix-blend lighten, a slow fade from dark reads as
   the lit car materializing out of the black. No zoom/slide — just light rising. */
.js-reveal .showcase-img { opacity: 0; transform: translateX(60px) scale(0.92); transition: opacity 8.4s var(--ease), transform 3s var(--ease); }
.js-reveal .showcase-img.in { opacity: 1; transform: translateX(0) scale(0.92); }

/* ---- Quick-quote band + owner teaser ---- */
.quote-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.quote-form { background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 30px rgba(0, 0, 0, 0.4); backdrop-filter: blur(6px); }
.owner-strip { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: center; }
.owner-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--panel); border: 1px solid var(--line-strong); display: grid; place-items: center; text-align: center; }
.owner-photo .ph-label { color: var(--text-dim); font-weight: 600; font-size: 0.9rem; padding: 20px; }
.owner-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) { .quote-band, .owner-strip { grid-template-columns: 1fr; gap: 30px; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
  .js-reveal .showcase-img { opacity: 1 !important; transform: scale(0.92) !important; }
  .hero h1 em, .subhero h1 em, .stat b {
    background: none; -webkit-text-fill-color: var(--gold-bright); color: var(--gold-bright);
  }
  .hero-badges .hb .dot::after { display: none; }
}

/* Legal / article prose (Privacy Policy, Blog articles) */
.legal p, .article-body p { line-height: 1.8; margin-bottom: 1.1rem; color: var(--text); }
.legal h2, .article-body h2 { margin-top: 2.2rem; margin-bottom: 0.6rem; font-size: 1.35rem; color: var(--gold-bright); }
.legal ul, .article-body ul { margin-bottom: 1.1rem; }
.legal a, .article-body a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover, .article-body a:hover { color: var(--gold); }
.article-body { max-width: 760px; }
.article-body h2:first-of-type { margin-top: 0.5rem; }
.article-meta { color: var(--text-dim); font-size: 0.85rem; letter-spacing: 0.02em; margin-bottom: 1.6rem; }
.article-body .keytake { background: var(--gold-soft); border: 1px solid var(--line-strong); border-radius: 12px; padding: 18px 22px; margin: 1.6rem 0; }
.article-body .keytake p { margin: 0; }
.blog-card { display: flex; flex-direction: column; text-align: left; }
.blog-card .more { margin-top: auto; padding-top: 14px; color: var(--gold-bright); font-weight: 700; font-size: 0.9rem; }
.blog-card:hover { border-color: var(--gold); transform: translateY(-3px); }
