/* ═══════════════ ICON Details — design system ═══════════════ */
:root {
  --navy-950: #04070f;
  --navy-900: #070d1d;
  --navy-800: #0b1430;
  --navy-700: #122048;
  --ink: #eef1f8;
  --muted: #9aa3b8;
  --gold: #e6b64c;
  --gold-bright: #ffc107;
  --blue: #1565c0;
  --blue-light: #4a8fdd;
  --line: rgba(230, 182, 76, 0.22);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.45rem; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

.accent { color: var(--gold); font-style: italic; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #c9962e 100%);
  color: var(--navy-950);
}
.btn--gold:hover { box-shadow: 0 8px 30px rgba(230, 182, 76, 0.35); transform: translateY(-2px); }
.btn--ghost {
  border-color: rgba(238, 241, 248, 0.25);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--xl { padding: 1.15rem 3.2rem; font-size: 0.85rem; }
.btn--nav { padding: 0.6rem 1.4rem; font-size: 0.7rem; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 7, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(4, 7, 15, 0.85); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav__brand { justify-self: start; }
.nav__cta { justify-self: end; }
.nav__cta--menu { display: none; }
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__wordmark em { color: var(--gold); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav__links a:not(.btn):hover { color: var(--gold); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(21, 101, 192, 0.30), transparent),
    linear-gradient(180deg, rgba(4, 7, 15, 0.72) 0%, rgba(4, 7, 15, 0.82) 60%, var(--navy-950) 100%),
    url("assets/hero.jpg") center 38% / cover no-repeat var(--navy-950);
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 32% at 50% 88%, rgba(230, 182, 76, 0.10), transparent);
  pointer-events: none;
}
.hero__inner { max-width: 860px; position: relative; }
.hero__sub {
  max-width: 560px;
  margin: 1.6rem auto 2.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 3.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Marques strip ─── */
.marques {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--navy-900);
}
.marques__track {
  display: flex;
  gap: 2.4rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(154, 163, 184, 0.75);
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section { padding: 6.5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section--alt {
  max-width: none;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  border-top: 1px solid rgba(230, 182, 76, 0.10);
  border-bottom: 1px solid rgba(230, 182, 76, 0.10);
}
.section--alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 3.6rem; }
.section__sub { max-width: 540px; margin: 1.2rem auto 0; color: var(--muted); }

/* ─── Services ─── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(230, 182, 76, 0.14);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 182, 76, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.card--featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, #16234f, var(--navy-800));
}
.card__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.card__price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  margin: 0.5rem 0 0.9rem;
}
.card__desc { color: var(--muted); font-size: 0.92rem; flex: 1; }
.card__link {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.card__link:hover { color: var(--gold-bright); }
.services--packages { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card__tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
.card__sizes {
  list-style: none;
  margin: 0 0 1.1rem;
  border-top: 1px solid var(--line);
}
.card__sizes li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(230, 182, 76, 0.10);
  font-size: 0.85rem;
  color: var(--muted);
}
.card__sizes li span:last-child { color: var(--ink); font-weight: 500; white-space: nowrap; }
.services__note {
  text-align: center;
  max-width: 640px;
  margin: 2.2rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Add-ons ─── */
.addons { max-width: 760px; margin: 4rem auto 0; }
.addons__title {
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
}
.addons__list {
  list-style: none;
  columns: 2;
  column-gap: 2.5rem;
}
.addons__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(230, 182, 76, 0.14);
  break-inside: avoid;
  font-size: 0.9rem;
}
.addons__list em {
  font-style: normal;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}
.addons__note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 640px) {
  .addons__list { columns: 1; }
}

/* ─── Pillars ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.6rem 2rem;
  padding-bottom: 1rem;
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.1em;
}
.pillar h3 { margin-bottom: 0.6rem; }
.pillar p { color: var(--muted); font-size: 0.93rem; }

/* ─── Before / after compare ─── */
.compare {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.compare__pane { position: absolute; inset: 0; }
.compare__pane img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare__pane--after { clip-path: inset(0 0 0 50%); }
.compare__tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(4, 7, 15, 0.7);
  border: 1px solid var(--line);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}
.compare__tag--right { left: auto; right: 1rem; color: var(--gold); }
.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__grip {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1100px;
  margin: 2.6rem auto 0;
}
.gallery figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  background: var(--navy-800);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 15, 0.85));
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
@media (max-width: 780px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Reviews ─── */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
  padding-bottom: 1rem;
}
.review {
  background: rgba(11, 20, 48, 0.55);
  border: 1px solid rgba(230, 182, 76, 0.14);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.review__stars { color: var(--gold); letter-spacing: 0.25em; margin-bottom: 1rem; font-size: 0.9rem; }
.review p { color: var(--ink); font-size: 0.95rem; }
.review footer {
  margin-top: 1.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Area ─── */
.area {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 760px;
  margin: 0 auto;
}
.area li {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.55rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: 0.3s;
}
.area li:hover { color: var(--gold); border-color: var(--gold); }
.area__note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: 0.9rem; }

/* ─── Booking form ─── */
.book { max-width: 760px; margin: 0 auto; text-align: center; }
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  text-align: left;
  margin-bottom: 2.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: rgba(4, 7, 15, 0.6);
  border: 1px solid rgba(238, 241, 248, 0.16);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(154, 163, 184, 0.5); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23e6b64c'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field input[type="date"] { color-scheme: dark; }
.book__fine { margin-top: 1.4rem; font-size: 0.8rem; color: var(--muted); max-width: 520px; margin-left: auto; margin-right: auto; }
.book__confirm {
  margin-top: 1.6rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.field input.is-invalid, .field select.is-invalid { border-color: #d9534f; }

/* ─── FAQ ─── */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(230, 182, 76, 0.14);
  padding: 1.2rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.9rem; color: var(--muted); font-size: 0.95rem; max-width: 640px; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--navy-900);
  padding: 4rem 1.5rem 2rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.footer__brand .footer__mark {
  width: 210px;
  height: auto;
}
.footer__tag {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact { color: var(--muted); font-size: 0.9rem; }
.footer__contact p { margin-bottom: 0.5rem; }
.footer__legal {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 241, 248, 0.07);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(154, 163, 184, 0.6);
}

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marques__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Mobile ─── */
@media (max-width: 780px) {
  .nav__toggle { display: block; justify-self: end; }
  .nav__inner { display: flex; justify-content: space-between; }
  .nav__cta { display: none; }
  .nav__cta--menu { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: 57px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(4, 7, 15, 0.97);
    padding: 2rem 1.5rem 2.5rem;
    gap: 1.6rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .nav__links.is-open { transform: translateY(0); }
  .book__grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 1.25rem; }
  .hero__trust { gap: 1.1rem 1.8rem; }
}

/* ═══════════════ VEHICLE QUOTE BUILDER ═══════════════ */
.quote {
  max-width: 980px;
  margin: 0 auto 3.4rem;
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(230, 182, 76, 0.05) 0%, rgba(4, 7, 15, 0.45) 100%);
}
.quote__head { text-align: center; margin-bottom: 2rem; }
.quote__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-top: 0.5rem;
}
.quote__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}
.quote .field select:disabled { opacity: 0.45; cursor: not-allowed; }
.quote__reset {
  display: block;
  margin: 1.4rem auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.quote__reset:hover { color: var(--gold); border-bottom-color: var(--gold); }
.quote__result {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.quote__vehicle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}
.quote__vehicle-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.quote__class {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  white-space: nowrap;
}
.quote__class--exotic,
.quote__class--concours {
  background: var(--gold);
  color: #04070f;
  border-color: var(--gold);
}
.quote__factors {
  display: grid;
  gap: 0.6rem;
  max-width: 620px;
  margin: 0 auto;
  list-style: none;
}
.quote__factors li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.quote__factors li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.15rem;
}

/* Package cards in quoted state */
.card__quote {
  margin: 1.1rem 0 0.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card__quote-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.card__quote-note { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.card--quoted { border-color: rgba(230, 182, 76, 0.4); }
.card--bespoke .card__price {
  font-family: var(--font-display);
  font-style: italic;
}

/* ═══════════════ FOOTER LEGAL NAV ═══════════════ */
.footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.6rem 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__legal-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer__legal-nav a:hover { color: var(--gold); }

/* ═══════════════ LEGAL DOCUMENT PAGES ═══════════════ */
.legal { max-width: 800px; margin: 0 auto; padding: 9rem 1.5rem 5rem; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.legal__meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 3rem; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2.8rem 0 0.9rem;
}
.legal h3 { font-size: 0.95rem; font-weight: 600; margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }
.legal p { margin-bottom: 1rem; }
.legal ul, .legal ol { margin: 0 0 1.2rem 1.3rem; display: grid; gap: 0.5rem; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__back { display: inline-block; margin-top: 3rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 680px) {
  .quote { padding: 1.8rem 1.2rem; }
  .quote__grid { grid-template-columns: 1fr; }
}

/* ═══════════════ BEFORE/AFTER PANEL SWITCHER ═══════════════ */
.angles { max-width: 900px; margin: 1.4rem auto 0; text-align: center; }
.angles__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.angles__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.angles__btn {
  appearance: none;
  background: rgba(4, 7, 15, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}
.angles__btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.angles__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.angles__btn.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, #c9962e 100%);
  border-color: var(--gold);
  color: #04070f;
}
.compare__pane img { transition: opacity 0.2s ease; }

@media (max-width: 560px) {
  .angles__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.2rem 1rem 0.6rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .angles__row::-webkit-scrollbar { display: none; }
  .angles__btn { padding: 0.55rem 1.15rem; font-size: 0.68rem; }
}
