/* =========================================================
   Leadr Group, ad landing
   Dark-first hybrid palette, premium luxury automotive feel
   ========================================================= */

:root {
  /* Brand */
  --bg:           #212737;
  --bg-deep:      #1a1f2c;
  --bg-deeper:    #141823;
  --card:         #2a3047;
  --card-border:  rgba(204, 209, 224, 0.10);
  --card-border-strong: rgba(204, 209, 224, 0.22);

  --text:         #ffffff;
  --text-muted:   #ccd1e0;
  --text-soft:    rgba(204, 209, 224, 0.65);
  --text-faint:   rgba(204, 209, 224, 0.45);

  --accent:       #ccd1e0;
  --accent-warm:  #e8ebf2;
  --gold-star:    #F5A524;

  /* Type */
  --font-head:  'Questrial', 'Inter', system-ui, sans-serif;
  --font-body:  'Figtree', 'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw:        1240px;
  --pad-x-d:     32px;
  --pad-x-m:     20px;
  --sec-pad-d:   120px;
  --sec-pad-m:   72px;
  --radius:      8px;
  --radius-lg:   16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, iframe, video, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* Containers */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x-d);
}
@media (max-width: 760px) {
  .wrap { padding: 0 var(--pad-x-m); }
}

/* =========================================================
   Reveal system, hooked from main.js (no FOUC)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}
.btn--solid:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--card-border-strong);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: rgba(204, 209, 224, 0.05);
}

.btn--lg { height: 60px; padding: 0 36px; font-size: 15px; }

/* =========================================================
   Eyebrow + section heads
   ========================================================= */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
}
.section-head__body {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 600px;
}
.section-head--center .section-head__body { margin-left: auto; margin-right: auto; }

/* =========================================================
   SECTION 1, HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deeper);
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.22;
  filter: blur(2px);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 0%, rgba(20, 24, 35, 0.4) 60%, rgba(20, 24, 35, 0.95) 100%),
    linear-gradient(180deg, rgba(20, 24, 35, 0.55) 0%, rgba(20, 24, 35, 0.30) 30%, rgba(20, 24, 35, 0.85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 76px var(--pad-x-d) 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 760px) {
  .hero__inner { padding: 58px var(--pad-x-m) 76px; }
}
@media (min-width: 900px) {
  .hero__inner {
    align-items: flex-start;
    text-align: left;
    padding: 54px var(--pad-x-d) 66px;
  }
}

.hero__logo {
  margin-bottom: 26px;
  opacity: 0;
  animation: heroLogoIn .9s .15s ease-out forwards;
}
.hero__logo img {
  width: 170px;
  height: auto;
}
@media (max-width: 760px) {
  .hero__logo { margin-bottom: 20px; }
  .hero__logo img { width: 152px; }
}
@media (min-width: 900px) {
  /* margin-left offsets the logo PNG's ~16.5% transparent left padding
     so the visible mark is flush with the headline + copy. */
  .hero__logo { margin-bottom: 14px; margin-left: -28px; }
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Wrappers are transparent on mobile (original stacked, centered layout).
   On desktop they form a two-column grid: copy left, VSL right. The empty
   "sp" row absorbs extra height so the copy hugs the logo (no floating gap). */
.hero__main, .hero__lead, .hero__actions { display: contents; }

@media (min-width: 900px) {
  .hero__main {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      ".       vsl"
      "logo    vsl"
      "lead    vsl"
      "actions vsl"
      ".       vsl";
    grid-template-rows: 1fr auto auto auto 1fr;
    column-gap: 56px;
    align-items: start;
  }
  .hero__logo    { grid-area: logo; }
  .hero__lead    { display: block; grid-area: lead; }
  .hero__actions { display: block; grid-area: actions; }
  .hero__vsl     { grid-area: vsl; align-self: center; justify-self: center; }
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
@media (min-width: 900px) {
  .hero__headline {
    font-size: clamp(3rem, 4.4vw, 4.6rem);
    margin: 0 0 14px;
  }
}
.hero__sub {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
@media (min-width: 900px) {
  .hero__sub { max-width: 460px; margin: 0 0 22px; }
}

/* VSL, 4:5 frame on desktop and mobile, portrait 9:16 source cropped center */
.hero__vsl {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 44px;
}
@media (min-width: 900px) {
  .hero__vsl { max-width: 560px; margin: 0; }
}
.hero__vsl .vsl__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg-deeper);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
}
/* Desktop: 5:6 frame, tall enough that Anthony's head clears at the end of his
   piece (verified against the source frames). Mobile keeps portrait 4:5. */
@media (min-width: 900px) {
  .hero__vsl .vsl__frame { aspect-ratio: 5 / 6; }
}
.hero__vsl .vsl__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;   /* {{ adjust to "center top" or "center 30%" if face crops awkwardly }} */
  background: var(--bg-deeper);
  display: block;
}
@media (max-width: 640px) {
  .hero__vsl {
    max-width: 360px;
    margin: 0 auto 40px;
  }
}

.hero__services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 32px;
  margin: 0 auto 40px;
  justify-content: center;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.hero__services li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
@media (min-width: 900px) {
  .hero__services { margin: 0 0 26px; justify-content: start; }
}
@media (max-width: 560px) {
  .hero__services {
    grid-template-columns: 1fr;
    text-align: center;
    font-size: 11px;
  }
  .hero__services li { justify-content: center; }
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .hero__cta { justify-content: flex-start; margin-bottom: 28px; }
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.rating__score { font-weight: 700; }
.rating__count { color: var(--text-soft); font-weight: 600; margin-left: -6px; }
.rating__stars { display: inline-flex; gap: 2px; }
.rating__stars svg { width: 16px; height: 16px; }
.rating__source { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); }

/* =========================================================
   SECTION 2, BRAND MARQUEE
   ========================================================= */
.marquee {
  background: var(--bg-deeper);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 36px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee__inner { overflow: hidden; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 88px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee__track img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity .3s ease;
  flex-shrink: 0;
}
.marquee__track img:hover { opacity: 1; }
@media (max-width: 760px) {
  .marquee { padding: 24px 0; }
  .marquee__track { gap: 56px; }
  .marquee__track img { height: 28px; max-width: 120px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION 3, FORM
   ========================================================= */
.form-section {
  padding: var(--sec-pad-d) 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(204, 209, 224, 0.06), transparent),
    var(--bg);
}
@media (max-width: 760px) {
  .form-section { padding: var(--sec-pad-m) 0; }
}

/* ----- Quiz (multi-step questionnaire) ----- */
.quiz {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.quiz__body {
  padding: 36px 40px 30px;
  min-height: 300px;
}
@media (max-width: 640px) {
  .quiz__body { padding: 28px 22px 24px; min-height: 280px; }
}

.step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
}
.step[data-active] { display: block; animation: stepIn .35s ease-out; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step__heading {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  display: block;
  padding: 0;
}

.opt-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 4px;
  cursor: pointer;
  user-select: none;
  transition: opacity .2s ease;
}
.opt:hover .opt__box,
.opt:hover .opt__dot { border-color: var(--text-muted); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__label { font-size: 1.05rem; color: var(--text); }

.opt__box,
.opt__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--card-border-strong);
  background: var(--bg-deeper);
  transition: border-color .2s ease, background .2s ease;
}
.opt__box { border-radius: 4px; }
.opt__dot { border-radius: 50%; }

.opt input:checked ~ .opt__box {
  background: var(--accent);
  border-color: var(--accent);
}
.opt input:checked ~ .opt__box::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  transform: translateY(-1px) rotate(-45deg);
}
.opt input:checked ~ .opt__dot { border-color: var(--accent); }
.opt input:checked ~ .opt__dot::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.quiz__input {
  width: 100%;
  border: 0;
  background: transparent;
  border-bottom: 2px solid var(--card-border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  padding: 12px 0;
  outline: none;
  transition: border-color .2s ease;
}
.quiz__input::placeholder { color: var(--text-faint); }
.quiz__input:focus { border-bottom-color: var(--accent); }

.quiz__privacy {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}

.quiz__error {
  margin-top: 16px;
  font-size: 13px;
  color: #FCA5A5;
  min-height: 1.4em;
}

.quiz__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 16px;
  gap: 12px;
}
.quiz__btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--bg);
  border: 0;
  border-radius: var(--radius);
  padding: 10px 18px;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease, transform .15s ease;
}
.quiz__btn:hover:not(:disabled) { background: var(--accent-warm); transform: translateY(-1px); }
.quiz__btn:disabled { opacity: 0.25; cursor: not-allowed; }
.quiz__count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bg);
}

/* ----- Success state ----- */
.quiz-success {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.quiz-success__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 26px;
  font-weight: 700;
}
.quiz-success h3 {
  font-size: 1.6rem;
  font-family: var(--font-head);
  margin-bottom: 10px;
}
.quiz-success p { color: var(--text-soft); }

/* =========================================================
   SECTION 4, INVENTORY
   ========================================================= */
.inventory {
  padding: var(--sec-pad-d) 0;
  background: var(--bg-deep);
}
@media (max-width: 760px) {
  .inventory { padding: var(--sec-pad-m) 0; }
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .inv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .inv-grid { grid-template-columns: 1fr; }
}

.inv-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--card);
  isolation: isolate;
  cursor: pointer;
}
.inv-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16 / 13;
}
@media (max-width: 920px) {
  .inv-card--feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .inv-card--feature { grid-column: span 1; }
}

.inv-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.inv-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 24, 35, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.inv-card:hover img { transform: scale(1.04); }

.inv-card__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.inv-card__model {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  color: var(--text);
}
.inv-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  background: rgba(20, 24, 35, 0.4);
  backdrop-filter: blur(4px);
}
.inv-card__tag--available {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
}

.inv-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* =========================================================
   SECTION 5, REVIEWS
   ========================================================= */
.reviews {
  padding: var(--sec-pad-d) 0;
  background: var(--bg);
}
@media (max-width: 760px) {
  .reviews { padding: var(--sec-pad-m) 0; }
}
.reviews__topline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 8px 18px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-size: 13px;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rev-grid { grid-template-columns: 1fr; } }

.rev-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease;
}
.rev-card:hover { border-color: var(--card-border-strong); transform: translateY(-2px); }
.rev-card__stars { color: var(--gold-star); font-size: 16px; letter-spacing: 2px; }
.rev-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}
.rev-card__name { font-weight: 700; color: var(--text); font-size: 14px; margin-top: auto; }
.rev-card__src { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); }

/* =========================================================
   SECTION 6, WHAT WE DO
   ========================================================= */
.services {
  padding: var(--sec-pad-d) 0;
  background: var(--bg-deep);
}
@media (max-width: 760px) {
  .services { padding: var(--sec-pad-m) 0; }
}

.promises {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  max-width: 900px;
  margin: 0 auto 80px;
}
@media (max-width: 760px) {
  .promises { grid-template-columns: 1fr; gap: 12px; margin-bottom: 56px; }
}
.promises li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
}
.promises__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--card) 0%, rgba(42, 48, 71, 0.4) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.feature:hover {
  border-color: var(--card-border-strong);
  transform: translateY(-2px);
}
.feature__icon {
  width: 28px; height: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.feature p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   SECTION 7, FAQ
   ========================================================= */
.faq {
  padding: var(--sec-pad-d) 0;
  background: var(--bg);
}
@media (max-width: 760px) {
  .faq { padding: var(--sec-pad-m) 0; }
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item[open] {
  border-color: var(--card-border-strong);
  background: linear-gradient(180deg, var(--card) 0%, rgba(42, 48, 71, 0.6) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--card-border-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.faq-item[open] .faq-item__chev {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--bg);
}
.faq-item__body {
  padding: 0 26px 26px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}

/* =========================================================
   SECTION 8, ABOUT + MAP
   ========================================================= */
.about {
  padding: var(--sec-pad-d) 0;
  background: var(--bg-deep);
}
@media (max-width: 760px) {
  .about { padding: var(--sec-pad-m) 0; }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

.about__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.about__copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about__cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}
@media (max-width: 560px) { .locations { grid-template-columns: 1fr; } }
.location__city {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.location__addr { font-size: 14px; color: var(--text-soft); margin-bottom: 4px; }
.location__contact { font-size: 14px; color: var(--text-muted); }
.location__contact a { border-bottom: 1px solid var(--card-border-strong); }
.location__contact a:hover { color: var(--text); border-color: var(--text); }

.about__map {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.about__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.7) contrast(1.1);
}
@media (max-width: 920px) {
  .about__map { aspect-ratio: 4 / 3; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 48px 0;
  background: var(--bg-deeper);
  border-top: 1px solid var(--card-border);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer__logo img { margin: 0 auto; }
}
.footer__logo img { width: 120px; height: auto; }
.footer__meta { font-size: 12px; color: var(--text-faint); }
.footer__meta p:first-child { margin-bottom: 4px; }
.footer__meta p:last-child { letter-spacing: 0.2em; color: var(--text-muted); }
.footer__social {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 760px) { .footer__social { justify-content: center; } }
.footer__social a { transition: color .2s ease; }
.footer__social a:hover { color: var(--text); }

/* =========================================================
   FLOATING CTA
   ========================================================= */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  transition: transform .25s ease, background .25s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .float-cta {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 12px;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__img { animation: none; transform: none; }
}
