/* ==========================================================
   PCO Car Rental London — stylesheet
   Black / gold / neutral system. Sora for headings, Inter for text.
   ========================================================== */

:root {
  --navy: #14161c;
  --navy-deep: #0b0c10;
  --navy-soft: #23262f;
  --green: #d9a52b;
  --green-dark: #b8871a;
  --green-tint: #fbf3df;
  --ink: #14161c;
  --ink-2: #454a56;
  --ink-3: #737a88;
  --line: #e6e7eb;
  --bg: #ffffff;
  --bg-tint: #f6f5f1;

  --font-head: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(20,22,28,.05), 0 12px 32px rgba(20,22,28,.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: -999px; top: 0; background: var(--green); color: #14161c; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: var(--radius);
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s, box-shadow .15s, transform .15s;
  white-space: nowrap;
}
.btn-sm { padding: .55rem 1rem; font-size: .95rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-primary { background: linear-gradient(180deg, #e8b53a, #d19a1f); color: #14161c; box-shadow: 0 6px 16px rgba(217,165,43,.35); }
.btn-primary:hover { background: linear-gradient(180deg, #f0c04a, #d9a52b); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(217,165,43,.45); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-soft); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,12,16,.94);
  backdrop-filter: blur(8px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-logo { height: 54px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; line-height: 1.1; }
.brand-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .75rem; color: var(--green); letter-spacing: .18em; text-transform: uppercase; }

.nav { display: flex; gap: 1.6rem; }
.nav a { color: #cfd2d9; text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; }

@media (max-width: 960px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--navy-deep); flex-direction: column; gap: 0; padding: .5rem var(--gutter) 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
}
@media (max-width: 480px) { .brand-logo { height: 46px; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/cars/niro-black.jpg") center 45% / cover no-repeat;
  opacity: .6;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 50%, rgba(217,165,43,.16) 0%, rgba(217,165,43,0) 70%),
    linear-gradient(100deg, rgba(11,12,16,.97) 0%, rgba(11,12,16,.88) 45%, rgba(11,12,16,.4) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 80%);
}
.hl { color: var(--green); }
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .9fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.hero-kicker { color: var(--green); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.hero h1 { color: #fff; max-width: 15ch; font-size: clamp(2.4rem, 5.4vw, 4rem); }
.lead { font-size: 1.15rem; color: #cfd2d9; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.rate-card {
  background: rgba(255,255,255,.97); color: var(--ink);
  border-radius: 20px; padding: 1.75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.4) inset;
  transform: rotate(-1deg);
}
.rate-card:hover { transform: rotate(0); transition: transform .3s; }
.rate-card h2 { font-size: 1.15rem; color: var(--ink-3); font-weight: 600; margin-bottom: .75rem; }
.rate-card ul { list-style: none; margin: 0; padding: 0; }
.rate-card li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 0; border-top: 1px solid var(--line);
}
.rate-card li span { font-weight: 500; color: var(--ink-2); }
.rate-card li strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.rate-card li.best { background: var(--green-tint); margin: 0 -1.75rem; padding: .9rem 1.75rem; border-top-color: transparent; }
.rate-card li.best strong { color: #a8790f; }
.rate-card li em { font-style: normal; display: inline-block; margin-left: .5rem; background: var(--green); color: #14161c; font-size: .7rem; font-weight: 600; padding: .15rem .5rem; border-radius: 999px; vertical-align: middle; }
.rate-card p { margin: 1rem 0 0; font-size: .9rem; color: var(--ink-3); }

@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(90deg, #c8931f, #e8b53a); color: #14161c; }
.stats ul { list-style: none; margin: 0; padding: 1.5rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem 2rem; }
.stats li { display: flex; flex-direction: column; padding-left: 1rem; border-left: 3px solid rgba(20,22,28,.35); }
.stats strong { font-family: var(--font-head); font-size: 1.6rem; color: #14161c; line-height: 1.2; }
.stats span { color: rgba(20,22,28,.75); font-size: .9rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { max-width: 64ch; margin-bottom: 2.75rem; }
.section-head h2::before { content: ""; display: block; width: 56px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--green-dark), #f0c04a); margin-bottom: 1rem; }
.section-dark .section-head h2::before { background: linear-gradient(90deg, var(--green), #fff); }
.eyebrow { color: #a8790f; font-weight: 600; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .4rem; }
.section-head p { color: var(--ink-2); font-size: 1.1rem; }
.section-dark .section-head p, .section-dark p { color: #cfd2d9; }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.plan { transition: transform .25s, box-shadow .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(15,26,43,.14); }
.plan-best { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; border-color: transparent; }
.plan-best h3 { color: var(--green); }
.plan-best .plan-price { color: #fff; }
.plan-best .plan-price span { color: #9a9ea8; }
.plan-best .plan-desc { color: #cfd2d9; }
.plan-badge {
  position: absolute; top: -.85rem; left: 1.75rem; margin: 0;
  background: var(--green); color: #14161c; font-size: .8rem; font-weight: 600;
  padding: .25rem .8rem; border-radius: 999px;
}
.plan h3 { font-size: 1rem; color: var(--ink-3); font-weight: 600; text-transform: none; }
.plan-price { font-family: var(--font-head); font-weight: 700; font-size: 2.8rem; color: var(--ink); line-height: 1; margin: .25rem 0 1rem; }
.plan-price span { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--ink-3); margin-left: .2rem; }
.plan-desc { color: var(--ink-2); flex: 1; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare caption { text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--line); }
.compare th, .compare td { padding: .9rem 1.5rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--bg-tint); font-size: .85rem; color: var(--ink-3); font-weight: 600; }
.compare tbody th { font-weight: 500; color: var(--ink-2); width: 34%; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare td.yes { color: #a8790f; font-weight: 600; }
.compare td.yes::before { content: "✓ "; }

/* ---------- Showcase ---------- */
.showcase { display: grid; gap: 3rem; }
.show { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.show-flip .show-media { order: 2; }
.show-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px rgba(15,26,43,.22); aspect-ratio: 4 / 3; }
.show-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(7,20,40,.35)); }
.show-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.show:hover .show-media img { transform: scale(1.04); }
.show-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.show-body > p:not(.eyebrow) { color: var(--ink-2); font-size: 1.05rem; }
@media (max-width: 860px) { .show { grid-template-columns: 1fr; } .show-flip .show-media { order: 0; } }

/* ---------- Cars ---------- */
.cars { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.car { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.car-photo { aspect-ratio: 16 / 10; background: var(--bg-tint); overflow: hidden; }
.car-photo img { width: 100%; height: 100%; object-fit: cover; }
.car-body { padding: 1.75rem; }
.car-body h3 { font-size: 1.35rem; }
.car-body p { color: var(--ink-2); }
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: 1.25rem 0 1.5rem; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specs div { display: flex; flex-direction: column; }
.specs dt { font-size: .8rem; color: var(--ink-3); }
.specs dd { margin: 0; font-weight: 600; font-size: .95rem; }
@media (max-width: 480px) { .specs { grid-template-columns: repeat(2, 1fr); } }

.gallery { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: .9rem; }
.gallery-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item { padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: 14px; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(7,20,40,.94); display: grid; place-items: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: .75rem; right: 1.25rem; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ---------- Features ---------- */
.features { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.features li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; transition: transform .25s, box-shadow .25s, border-color .25s; }
.features li:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #ead9a8; }
.features svg { width: 40px; height: 40px; fill: #a8790f; background: var(--green-tint); border-radius: 10px; padding: 8px; margin-bottom: 1rem; }
.features h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.features p { margin: 0; color: var(--ink-2); font-size: .97rem; }

.notice { display: flex; gap: 1rem; margin-top: 2rem; padding: 1.4rem 1.6rem; background: var(--bg-tint); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: var(--radius-lg); }
.notice svg { width: 28px; height: 28px; flex: none; fill: #a8790f; margin-top: .1rem; }
.notice h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: .3rem; }
.notice p { margin: 0; color: var(--ink-2); font-size: .97rem; }

/* ---------- How / eligibility ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.steps { list-style: none; padding: 0; margin: 1.5rem 0 0; counter-reset: step; }
.steps li { position: relative; padding-left: 3.5rem; margin-bottom: 1.6rem; counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center;
}
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 1.2rem; top: 2.6rem; bottom: -1.4rem; width: 2px; background: var(--line); }
.steps h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.steps p { margin: 0; color: var(--ink-2); }

.eligibility { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.eligibility p { color: var(--ink-2); }
.checklist { list-style: none; padding: 0; margin: 1rem 0 0; }
.checklist li { position: relative; padding: .6rem 0 .6rem 2rem; border-top: 1px solid var(--line); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .85rem;
  width: 18px; height: 18px; border-radius: 50%; background: var(--green-tint);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 1.05rem;
  width: 8px; height: 4px; border-left: 2px solid #a8790f; border-bottom: 2px solid #a8790f; transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 6vw, 5rem); }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 1.1rem 2.5rem 1.1rem 0; list-style: none; position: relative; font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 300; color: #a8790f; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding-bottom: 1.1rem; margin: 0; max-width: 66ch; }

/* ---------- CTA band ---------- */
.cta { background: linear-gradient(110deg, #b8871a 0%, #d9a52b 55%, #f0c04a 100%); color: #14161c; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,.08); right: -120px; top: -260px; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-top: 3rem; padding-bottom: 3rem; }
.cta h2 { color: #14161c; margin-bottom: .3rem; }
.cta p { margin: 0; color: rgba(20,22,28,.8); font-size: 1.1rem; }
.btn-light { background: #14161c; color: #f0c04a; box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.btn-light:hover { background: #23262f; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.section-dark h2 { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-label { color: var(--green); font-weight: 600; font-size: .9rem; }
.contact-list a { color: #fff; text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.contact-form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.contact-form h3 { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: 1rem; color: var(--ink-2); }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: .35rem; padding: .7rem .85rem;
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(217,165,43,.2); }
.contact-form .btn { width: 100%; margin-top: .5rem; }
.form-note { margin: .9rem 0 0; font-size: .85rem; color: var(--ink-3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #9a9ea8; padding: 3.5rem 0 1.5rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { width: 240px; height: auto; margin-bottom: 1.25rem; }
.footer-brand strong { color: #fff; }
.site-footer h3 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #9a9ea8; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.wa-float:hover { background: #1fb457; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }
.plans [data-reveal]:nth-child(2) { transition-delay: .1s; }
.plans [data-reveal]:nth-child(3) { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---------- Legal pages ---------- */
.page-hero { background: var(--navy); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .lead { max-width: 60ch; }
.legal-nav { display: flex; gap: .5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.legal-nav a { padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); color: #fff; text-decoration: none; font-size: .95rem; }
.legal-nav a[aria-current="page"] { background: var(--green); color: #14161c; border-color: var(--green); font-weight: 600; }
.legal { max-width: 78ch; }
.legal h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 1.25rem; }
.legal li { margin-bottom: .5rem; }
.legal a { color: #a8790f; }
.legal-meta { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--ink-3); }

.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form .hp { position: absolute; left: -9999px; }
.form-status { margin: .9rem 0 0; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: #1e7a45; }
.form-status.err { color: #b42318; }
.contact-form.sent label, .contact-form.sent button { display: none; }
