/* ============================================================
   Avanti Car Care — shared stylesheet
   Used by index.html, /services/*, and /areas/*
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #181818;
  --text: #ffffff;
  --text-mid: rgba(255,255,255,0.86);   /* body/sub copy — clearly readable on black */
  --text-muted: rgba(255,255,255,0.68);  /* captions/meta — still legible, >=4.5:1 */
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.18);
  --accent: #c8a566;            /* champagne gold — use sparingly */
  --accent-dim: rgba(200,165,102,0.55);
  --accent-border: rgba(200,165,102,0.35);
  --font-display: "Bodoni Moda", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --section-pad: clamp(56px, 8vw, 120px); /* tighter on mobile */
  --content-max: 1100px;
}

::selection { background: var(--accent); color: var(--bg); }

/* On save-data / narrow screens, drop expensive filters */
@media (max-width: 680px) {
  .nav.solid,
  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10,10,10,0.96);
  }
}

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

html { scroll-behavior: smooth; }

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── LABEL ─── */
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Skip link — hidden until keyboard-focused */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}

.skip-link:focus-visible { top: 12px; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.section-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ─── SPLIT LAYOUT (text + photo) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.split-media {
  position: sticky;
  top: 96px;
}

.split-media img {
  width: 100%;
  border: 1px solid var(--border);
}

.split-media figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px; /* keeps logo away from links on tighter viewports */
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

@media (max-width: 1000px) {
  .nav { gap: 24px; padding: 0 20px; }
  .nav-links { gap: 24px; }
}

/* Interior pages (no video hero) keep the bar visible from the top */
.nav.solid {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px; /* touch target */
}

.nav-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 190px;
}

@media (max-width: 680px) {
  .nav-logo img { height: 34px; max-width: 160px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--text); }

/* Current page indicator */
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* Book Now button in nav: keep dark text on the white button (override the
   generic .nav-links a color, which otherwise makes the label white-on-white) */
.nav-links a.btn { color: var(--bg); }
.nav-links a.btn:hover,
.nav-links a.btn:focus-visible { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  min-height: 44px;
}

.btn:hover {
  background: transparent;
  color: var(--text);
}

.btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

/* ─── HERO (home) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* Home hero H1 is the big headline itself (no separate wordmark). */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
  text-wrap: balance;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── PAGE HERO (town & service pages, no video) ─── */
.page-hero {
  position: relative;
  padding: calc(72px + var(--section-pad)) 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(255,255,255,0.06), transparent 70%),
    var(--bg);
  overflow: hidden;
  isolation: isolate;
}

/* Photo heroes must not paint the section's opaque background over the
   photo layer — the ::before sits at a negative z-index, so an opaque
   background on .page-hero would hide it (this is why .final-cta, which
   has no background, renders its photo correctly). Keep it transparent
   and let the body's dark background show through if a photo fails. */
.page-hero.has-photo { background: transparent; }

/* Car photo behind town/service hero. Brighter so the car reads clearly,
   with a lighter overlay so the H1 stays legible on top. */
.page-hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: var(--hero-photo-position, center);
  opacity: 0.65;
  filter: saturate(1.08) contrast(1.02);
}

.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.75) 100%);
}

/* Video background variant of the page hero (services & service-areas hubs). */
.page-hero.has-video { isolation: isolate; }

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.75) 100%);
}

.page-hero .hero-h1,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-wrap: balance;
  max-width: 800px;
}

.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 36px;
}

.page-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.breadcrumb a { color: var(--text-mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span[aria-current] { color: var(--text); }
.breadcrumb .sep { margin: 0 10px; color: var(--text-muted); }

/* ─── GENERIC SECTION ─── */
.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section.surface { background: var(--bg-surface); }

.prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 760px;
  margin-bottom: 20px;
}

.prose p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
}

.prose p a:hover { text-decoration-color: var(--text); }

/* ─── SERVICES (list) ─── */
.services { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }

.service-list { border-top: 1px solid var(--border); }

.service-item {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left 0.3s ease;
}

.service-item:hover { padding-left: 12px; }

.service-item:focus-within {
  outline: 2px solid var(--text);
  outline-offset: -2px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 780px;
  margin-top: 10px;
}

.service-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.3s;
  flex-shrink: 0;
}

.service-item:hover .service-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ─── SERVICE PAGE DETAIL BLOCKS (H3 sections) ─── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 8px;
}

.detail-card {
  background: var(--bg);
  padding: 32px 28px;
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.steps {
  list-style: none;
  counter-reset: step;
  margin-top: 8px;
}

.steps li {
  position: relative;
  padding: 20px 0 20px 52px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.65;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
}

/* ─── WHY ─── */
.why {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card { background: var(--bg-surface); padding: 40px 32px; }

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  stroke-width: 1.5;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }

.faq-list { border-top: 1px solid var(--border); }

.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); }

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}

/* ─── AREAS / LINK GRIDS ─── */
.areas {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 24px;
}

.area-tag {
  font-size: 0.8125rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.area-tag:hover { border-color: var(--accent-border); color: var(--text); }

.areas-note { font-size: 0.875rem; color: var(--text-muted); font-style: italic; }

/* Town link directory (home hub + area index) */
.town-columns {
  columns: 4 180px;
  column-gap: 28px;
  margin-top: 8px;
}

.town-columns a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  break-inside: avoid;
}

.town-columns a:hover { color: var(--text); padding-left: 6px; }

/* Service link cards (home hub + cross-links) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: background 0.25s;
  display: block;
}

.service-card:hover { background: var(--bg-elevated); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); }

.service-card .more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.service-card:hover .more { color: var(--accent); }

/* Recent-work photo grid on town pages */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.photo-grid figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-grid figure:hover img { transform: scale(1.03); }

.photo-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 16px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
}

@media (max-width: 680px) {
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-grid figure:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 9; }
}

/* Nearby-town chips */
.nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 8px;
}

.nearby a {
  font-size: 0.8125rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: border-color 0.2s, color 0.2s;
}

.nearby a:hover { border-color: var(--accent-border); color: var(--text); }

/* ─── CTA ─── */
.final-cta {
  position: relative;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--cta-photo);
  background-size: cover;
  background-position: center 65%;
}

.final-cta.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.85) 100%);
}

.final-cta .section-heading { margin-bottom: 16px; }

.final-cta-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.contact-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.contact-link svg { color: var(--accent); }

.contact-link:hover { color: var(--text); }

.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  overflow: hidden;
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px; /* prevent CLS while deferred */
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/mclaren-720s-front.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 60%, rgba(10,10,10,1) 100%);
}

.footer-photo {
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  margin-bottom: 48px;
}

.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.footer-list a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-mid); }

/* ─── FOCUS & MENU STATE ─── */
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible,
.skip-link:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

/* Lock page scroll while the fullscreen mobile menu is open */
body.menu-open { overflow: hidden; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .service-item,
  .service-arrow,
  .nav,
  .btn,
  .area-tag,
  .contact-link { transition: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { position: static; max-width: 480px; }
  .town-columns { columns: 3 160px; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 18px; }
  .page-hero { padding: calc(72px + 40px) 0 40px; }
  .split-media img { border-width: 0; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 24px;
  }

  .nav-links.open a { font-size: 1.1rem; }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
  }

  .hero-badges { flex-direction: column; align-items: center; gap: 14px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .page-ctas .btn { width: 100%; max-width: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 24px; }
  .footer-photo { aspect-ratio: 4 / 3; margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-group { flex-direction: column; align-items: center; }
  .cta-group .btn { width: 100%; max-width: 300px; }
  .contact-row { flex-direction: column; align-items: center; }
  .town-columns { columns: 2 140px; }
}
