/* ============ Redline Auto Co. ============ */
:root {
  --bg: #f4f4ec;
  --ink: #131313;
  --ink-soft: #333;
  --muted: #6d6d60;
  --red: #f3182e;
  --red-dark: #dd162a;
  --white: #fff;
  --p-yellow: #ecebc9;
  --p-blue: #cbdceb;
  --p-mint: #dff2eb;
  --p-pink: #eddfe0;
  --p-cream: #faf7f0;
  --wide: 1560px;
  --r-xl: 40px;
  --r-lg: 28px;
  --r-md: 20px;
  --pad: clamp(20px, 4vw, 64px);
  --gap: clamp(16px, 2vw, 32px);
  --header-h: 76px;
  --font: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
h1, h2, h3 { font-weight: 900; line-height: 1.04; letter-spacing: -.015em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 16px/1 var(--font);
  padding: 17px 28px; border: 0; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s;
}
.btn:hover { transform: scale(1.045); }
.btn:active { transform: scale(.97); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn.round { padding: 0; width: 52px; height: 52px; justify-content: center; flex: none; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--red); font-weight: 700;
}
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  transition: transform .7s var(--ease);
}
.loader-mark { display: flex; overflow: hidden; }
.loader-mark span {
  font: 900 clamp(44px, 9vw, 110px)/1 var(--font);
  color: var(--bg); text-transform: uppercase; letter-spacing: -.02em;
  transform: translateY(110%);
  animation: loader-rise .55s var(--ease) forwards;
}
.loader-mark span { animation-delay: var(--d, 0s); }
.loader-mark span.accent { color: var(--red); }
@keyframes loader-rise { to { transform: translateY(0); } }
html.loaded .loader { transform: translateY(-100%); pointer-events: none; }
html.loader-gone .loader { display: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h); padding: 0 var(--pad);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font: 900 20px/1 var(--font); text-transform: uppercase;
  letter-spacing: -.01em; color: var(--red);
}
.brand-mark { flex: none; }
.site-nav { display: flex; gap: 4px; margin-inline: auto; }
.site-nav a {
  position: relative; padding: 10px 14px; font-weight: 700; font-size: 15.5px;
}
.site-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: 8px 18px 0; }
.hero-panel {
  position: relative; overflow: hidden;
  min-height: min(88vh, 860px);
  border-radius: var(--r-xl);
  background: var(--ink);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center; gap: var(--gap);
  padding: clamp(32px, 5vw, 80px);
}
.hero-backdrop {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38; pointer-events: none;
  mask-image: linear-gradient(105deg, #000 30%, transparent 68%);
  -webkit-mask-image: linear-gradient(105deg, #000 30%, transparent 68%);
}
/* scrim keeps the headline legible over bright daytime backdrops */
.hero-panel::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, #131313 22%, #131313d9 42%, transparent 70%);
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  color: var(--white); text-transform: uppercase;
  font-size: clamp(52px, 7.2vw, 118px); letter-spacing: -.02em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform .8s var(--ease);
}
html.loaded .hero-title .line:nth-child(1) > span { transition-delay: .15s; }
html.loaded .hero-title .line:nth-child(2) > span { transition-delay: .25s; }
html.loaded .hero-title .line:nth-child(3) > span { transition-delay: .35s; }
html.loaded .hero-title .line:nth-child(4) > span { transition-delay: .45s; }
html.loaded .hero-title .line:nth-child(5) > span { transition-delay: .55s; }
html.loaded .hero-title .line > span { transform: translateY(0); }
.hero-title .dot { color: var(--red); font-style: normal; }
.hero-sub {
  max-width: 46ch; margin: 24px 0 34px;
  color: #cfcfc6; font-size: clamp(15px, 1.2vw, 18px);
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease) .6s, transform .7s var(--ease) .6s;
}
.hero-cta {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease) .75s, transform .7s var(--ease) .75s,
              background-color .3s, scale .3s;
}
html.loaded .hero-sub, html.loaded .hero-cta { opacity: 1; transform: translateY(0); }
.hero-cta:hover { transform: scale(1.045); }

.hero-arches {
  position: relative; z-index: 2;
  display: flex; gap: clamp(10px, 1.4vw, 22px);
  justify-content: flex-end; align-items: center;
}
.arch {
  overflow: hidden; border-radius: 999px;
  transform: translateY(30px); opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}
html.loaded .hero-arches .arch { transform: translateY(0); opacity: 1; }
.hero-arches .arch-1 { transition-delay: .55s; }
.hero-arches .arch-2 { transition-delay: .7s; width: 82%; }
.hero-arches .arch-3 { transition-delay: .85s; }
.hero-arches .arch { flex: 1 1 0; max-width: 200px; }
.hero-arches .arch-2 { flex-basis: 82%; max-width: 170px; margin-top: 12vh; }
.arch video, .arch img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 9 / 16;
}
/* decorative videos: never show a control or play button, even if iOS
   refuses autoplay and would otherwise paint its start-playback button */
.arch video { pointer-events: none; }

/* Slow drift across the arch. Generated loops of a real, still location often
   carry almost no motion of their own; this keeps the hero alive without
   pretending anything is happening in the scene. Transform-only. */
.hero-arches video {
  animation: arch-drift 19s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-arches .arch-2 video { animation-delay: -6s; animation-duration: 23s; }
.hero-arches .arch-3 video { animation-delay: -12s; animation-duration: 21s; }
@keyframes arch-drift {
  from { transform: scale(1.06) translate3d(1.5%, 1%, 0); }
  to   { transform: scale(1.14) translate3d(-2%, -1.5%, 0); }
}
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}
.hero-arches video { aspect-ratio: 720 / 1280; height: clamp(300px, 52vh, 520px); }
/* per-arch framing comes from hero.arch_focus in the config (inline style) */

/* ---------- shared section bits ---------- */
section { padding: clamp(56px, 8vw, 120px) var(--pad); }
.section-title {
  font-size: clamp(34px, 4.6vw, 64px);
  text-transform: uppercase; letter-spacing: -.02em; color: var(--ink-soft);
  margin-bottom: clamp(32px, 4vw, 64px);
}
.section-title.center { text-align: center; }

.card { background: var(--white); border-radius: var(--r-lg); border: 1px solid #d9d8c8; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(46px) scale(.94) rotate(var(--r, 0deg));
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1) rotate(var(--r, 0deg)); }

/* ---------- steps ---------- */
.steps { position: relative; padding-top: clamp(40px, 5vw, 72px); }
.scribble {
  position: absolute; top: 8px; left: var(--pad);
  width: clamp(60px, 6vw, 96px); color: var(--red);
}
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.step-card { padding: clamp(24px, 2.6vw, 40px); }
.step-card h3 { font-size: clamp(20px, 1.7vw, 25px); margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: 16px; }

/* ---------- statement ---------- */
.statement { padding-block: clamp(40px, 6vw, 90px); }
.statement-text {
  max-width: 21ch; margin-inline: auto; text-align: center;
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 900; line-height: 1.18; letter-spacing: -.015em;
  color: var(--ink-soft);
}
.statement-text .word { color: #d3d2ba; transition: color .35s linear; }
.statement-text .word.lit { color: var(--ink-soft); }
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--p-blue); border-radius: 18px;
  width: 1.5em; height: 1em; font-size: .8em; vertical-align: -.08em;
}
.chip-icon {
  background: none; border-radius: 0; vertical-align: -.28em;
  width: clamp(78px, 9vw, 150px); height: auto; aspect-ratio: 150 / 70;
  font-size: inherit;
}
.chip-icon svg { width: 100%; height: 100%; display: block; }

/* ---------- pills ---------- */
.pills { padding-block: 0 clamp(40px, 5vw, 80px); }
.pills::after {
  content: ""; display: block; height: 2px; background: #000; width: 100%;
  margin-top: clamp(44px, 5vw, 76px);
}
.pills { padding-inline: 0; }
.pills-cloud { padding-inline: var(--pad); }
.pills-cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(14px, 2.4vw, 34px); max-width: 1100px; margin-inline: auto;
}
.pill {
  border: 1px solid #000; border-radius: 50px;
  padding: 16px 24px; font-weight: 700; font-size: clamp(15px, 1.4vw, 20px);
  line-height: 150%; background: transparent; white-space: nowrap; cursor: default;
  transition: opacity .7s var(--ease) var(--d,0s),
              transform .7s var(--ease) var(--d,0s),
              color .4s, border-color .4s,
              translate .35s var(--ease), rotate .35s var(--ease), scale .35s var(--ease);
}
.pill:hover {
  color: var(--red); border-color: var(--red);
  translate: 0 -6px; rotate: calc(-1 * var(--r, 0deg)); scale: 1.06;
}

/* ---------- services slider ---------- */
.services { padding-inline: 0; }
.services-sticky { padding-inline: var(--pad); }
.services .section-title { max-width: 900px; }
.services-track-wrap { overflow: hidden; }
.services-track {
  display: flex; gap: var(--gap);
  will-change: transform;
}
.service-card {
  flex: 0 0 auto; width: min(480px, 82vw);
  display: flex; gap: clamp(18px, 1.8vw, 28px); align-items: center;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-lg); padding: clamp(22px, 2.2vw, 34px);
}
.service-card .arch { flex: 0 0 44%; opacity: 1; transform: none; }
.service-card .arch video { aspect-ratio: 9 / 16; height: auto; }
.service-card h3 { font-size: clamp(19px, 1.6vw, 24px); margin-bottom: 10px; }
.service-card p { color: #b9b9ae; font-size: 15px; }

/* desktop: scroll-driven horizontal */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .services { padding-block: 0; height: 280vh; position: relative; }
  .services-sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
  }
}
@media (min-width: 861px) and (prefers-reduced-motion: reduce) {
  .services-track-wrap { overflow-x: auto; }
}
/* mobile: native swipe */
@media (max-width: 860px) {
  .services-track-wrap { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-inline: var(--pad); margin-inline: calc(-1 * var(--pad)); }
  .services-track-wrap::-webkit-scrollbar { display: none; }
  .service-card { scroll-snap-align: center; width: 86vw; flex-direction: column; align-items: stretch; }
  .service-card .arch { flex-basis: auto; width: 60%; margin-inline: auto; }
}

/* ---------- logos marquee ---------- */
.logos { padding-block: 0; border-block: 1px solid #c9c8b6; padding-inline: 0; }
.marquee { overflow: hidden; padding-block: clamp(28px, 3vw, 48px); }
.marquee-track {
  display: flex; gap: clamp(18px, 2.4vw, 40px); width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--p-cream); color: #4a4a40;
  border-radius: 999px; padding: 26px 48px;
  font: 700 clamp(17px, 1.5vw, 22px)/1 var(--font); letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-card:nth-child(2n) { font-weight: 900; text-transform: uppercase; font-size: .95em; }

/* ---------- why us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap);
  max-width: var(--wide); margin-inline: auto;
}
.why-card {
  grid-column: span 2; position: relative; overflow: hidden;
  border: 1px solid #00000014;
  padding: clamp(26px, 2.6vw, 44px); min-height: 300px;
  display: flex; flex-direction: column; gap: 14px; justify-content: flex-start;
}
.why-card:nth-child(1), .why-card:nth-child(2) { grid-column: span 3; }
.why-card h3 { font-size: clamp(20px, 1.8vw, 26px); }
.why-card p { color: #55554a; max-width: 52ch; font-size: 16px; }
.why-card .deco {
  position: absolute; width: 130px; right: -20px; bottom: -30px;
  color: #00000018; pointer-events: none;
  transition: transform .6s var(--ease);
}
.why-card:hover .deco { transform: rotate(18deg) scale(1.08); }
.c-yellow { background: var(--p-yellow); }
.c-blue { background: var(--p-blue); }
.c-mint { background: var(--p-mint); }
.c-pink { background: var(--p-pink); }
.c-cream { background: var(--p-cream); }

/* ---------- reviews (sticky stack) ---------- */
.review-stack { display: grid; gap: 28px; max-width: var(--wide); margin-inline: auto; }
.review-card {
  position: sticky; top: calc(var(--header-h) + 16px);
  display: grid; grid-template-columns: 1fr auto; gap: var(--gap); align-items: center;
  padding: clamp(28px, 3.5vw, 56px);
}
.review-card:nth-child(2) { top: calc(var(--header-h) + 40px); }
.review-card:nth-child(3) { top: calc(var(--header-h) + 64px); }
.review-card h3 { font-size: clamp(24px, 2.4vw, 36px); margin-bottom: 14px; }
.review-card .review-body p { max-width: 62ch; color: var(--ink-soft); }
.review-author { color: var(--red); font-weight: 700; margin-top: 14px; }
.review-card img {
  width: clamp(120px, 16vw, 220px); border-radius: var(--r-lg); aspect-ratio: 1;
  object-fit: cover;
}

/* monogram avatar — used instead of a photo on real-client builds */
.review-mono {
  display: grid; place-content: center;
  width: clamp(96px, 13vw, 170px); aspect-ratio: 1;
  border-radius: var(--r-lg);
  font: 900 clamp(30px, 4vw, 54px)/1 var(--font);
  letter-spacing: -.02em; color: var(--ink-soft);
}
.t-yellow { background: var(--p-yellow); }
.t-blue { background: var(--p-blue); }
.t-mint { background: var(--p-mint); }
.t-pink { background: var(--p-pink); }
.demo-flag {
  display: inline-block; margin-right: 8px; padding: 3px 10px;
  border-radius: 999px; background: var(--p-pink); color: #7a2b32;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  vertical-align: 2px;
}

/* ---------- enquiry form ---------- */
.enquiry { padding-block: clamp(56px, 7vw, 110px) clamp(28px, 3vw, 48px); }
.enquiry-card {
  max-width: var(--wide); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(28px, 4vw, 60px); border-radius: var(--r-xl);
  background: var(--p-cream);
}
.enquiry-copy h2 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 14px; }
.enquiry-copy p { color: #55554a; max-width: 40ch; }
.enquiry-phone { margin-top: 18px; font-weight: 700; color: var(--ink); }
.enquiry-phone a { color: var(--red); }
.enquiry-phone a:hover { text-decoration: underline; }
.enquiry-note { margin-top: 16px; font-size: 14px; color: var(--muted); }

.enquiry-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start;
}
.field { display: grid; gap: 7px; min-width: 0; }
.field-wide, .enquiry-form > button, .form-note, .form-status { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.field .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: 500 16px/1.4 var(--font); color: var(--ink);
  background: var(--white); border: 1.5px solid #d9d8c8; border-radius: 14px;
  padding: 13px 15px; min-height: 48px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 22%, transparent);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field-error { font-size: 13px; font-weight: 700; color: var(--red-dark); }
.enquiry-form > button { justify-self: start; margin-top: 4px; }
.form-note { font-size: 13.5px; color: var(--muted); }
.form-status { font-size: 15px; font-weight: 700; min-height: 1.4em; }
.form-status.is-ok { color: #1c6b4a; }
.form-status.is-err { color: var(--red-dark); }
.enquiry-form.is-sending { opacity: .65; pointer-events: none; }

/* ---------- visit panel ---------- */
.visit { padding-block: 0 clamp(56px, 7vw, 110px); }
.visit-card {
  background: var(--ink); border: 0; color: #cfcfc6;
  max-width: var(--wide); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center;
  padding: clamp(30px, 4vw, 60px); border-radius: var(--r-xl); overflow: hidden;
}
.visit-card h2 { color: var(--white); font-size: clamp(26px, 3vw, 44px); margin-bottom: 18px; }
.visit-card address { font-size: clamp(17px, 1.5vw, 21px); color: var(--white); margin-bottom: 16px; }
.visit-hours { margin-bottom: 26px; font-size: 16px; }
.visit-hours li { padding: 3px 0; }
.visit-card .text-link { display: inline-flex; margin-top: 18px; }
.visit-note { margin-top: 20px; font-size: 15px; color: #8f8f84; max-width: 46ch; }
.visit-photo { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- tips ---------- */
.tips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
  max-width: var(--wide); margin-inline: auto;
}
.tip-card { display: flex; flex-direction: column; gap: 10px; }
.tip-card img {
  border-radius: var(--r-md); aspect-ratio: 3 / 2; object-fit: cover;
  margin-bottom: 8px;
  transition: transform .5s var(--ease);
}
.tip-card:hover img { transform: scale(1.02); }
.tip-tag {
  color: var(--red); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
}
.tip-card h3 { font-size: clamp(19px, 1.7vw, 24px); }
.tip-card > p:not(.tip-tag) { color: var(--muted); font-size: 15.5px; }
.tip-card .text-link { margin-top: 4px; }

/* ---------- newsletter ---------- */
.newsletter { padding-block: 0 clamp(56px, 7vw, 110px); }
.newsletter-card {
  background: var(--p-yellow); border: 0;
  max-width: var(--wide); margin-inline: auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap); align-items: center;
  padding: clamp(30px, 4vw, 60px); border-radius: var(--r-xl);
}
.newsletter-card h2 { font-size: clamp(24px, 2.6vw, 40px); margin-bottom: 10px; }
.newsletter-card p { color: #55554a; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; min-width: 0; border: 0; border-radius: 999px;
  padding: 0 26px; height: 52px; font: 500 16px var(--font);
  background: var(--white); color: var(--ink); outline-color: var(--red);
}

/* ---------- footer ---------- */
.site-footer { padding: 0 18px 18px; }
.footer-panel {
  background: var(--ink); color: #cfcfc6;
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 72px) clamp(24px, 2.5vw, 40px);
}
.footer-mark {
  font: 900 clamp(64px, 12vw, 190px)/0.9 var(--font);
  text-transform: uppercase; letter-spacing: -.03em; color: var(--red);
  margin-bottom: clamp(32px, 4vw, 64px);
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
  padding-bottom: clamp(28px, 3vw, 48px); border-bottom: 1px solid #ffffff1f;
}
.footer-cols h3 { color: var(--white); font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.footer-cols a:hover { color: var(--white); }
.footer-social { margin-top: 26px; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-link {
  display: grid; place-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid #ffffff2e; color: #cfcfc6;
  transition: transform .3s var(--ease), background-color .3s, color .3s, border-color .3s;
}
a.social-link:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
  transform: translateY(-3px);
}
/* awaiting owner confirmation — visibly inert, never a live wrong link */
.social-link.is-placeholder { opacity: .34; cursor: default; }
.social-note { margin-top: 12px; font-size: 13px; color: #8f8f84; }
.footer-legal { margin-top: 22px; font-size: 14px; color: #8f8f84; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero-title { font-size: clamp(44px, 8.4vw, 92px); }
}
@media (max-width: 860px) {
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
    flex-direction: column; padding: 12px var(--pad) 24px;
    background: var(--bg); border-bottom: 1px solid #d9d8c8;
    transform: translateY(calc(-100% - var(--header-h) - 8px));
    transition: transform .4s var(--ease);
  }
  html.nav-open .site-nav { transform: translateY(0); }
  .site-header { gap: 10px; padding-inline: 16px; }
  .brand { font-size: 16px; white-space: nowrap; }
  .header-cta { margin-left: auto; padding: 12px 16px; font-size: 14px; }
  .nav-toggle {
    display: grid; gap: 6px; place-content: center;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2.5px; background: var(--ink);
    border-radius: 2px; transition: transform .3s var(--ease);
  }
  html.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
  html.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

  .hero { padding-inline: 10px; }
  .hero-panel {
    grid-template-columns: 1fr; min-height: 0;
    padding: clamp(26px, 7vw, 40px);
  }
  .hero-backdrop { mask-image: linear-gradient(180deg, #000 40%, transparent 90%); -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 90%); }
  .hero-panel::before { background: linear-gradient(180deg, #131313 26%, #131313e0 52%, transparent 86%); }
  .hero-title { font-size: clamp(46px, 13vw, 64px); }
  .hero-arches { justify-content: center; margin-top: 34px; }
  .hero-arches video { height: clamp(220px, 38vw, 300px); }
  .hero-arches .arch-2 { margin-top: 8vw; }

  .steps-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card, .why-card:nth-child(1), .why-card:nth-child(2) { grid-column: auto; min-height: 0; }
  .review-card { grid-template-columns: 1fr; }
  .review-card img { order: -1; }
  .tips-grid { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; }
  .enquiry-card { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; }
  .visit-card { grid-template-columns: 1fr; }
  .visit-photo { order: -1; }
  .review-card .review-mono { order: -1; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .brand-mark { display: none; }
  .header-cta svg { display: none; }
  .header-cta { padding: 12px 14px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader { display: none; }
  .hero-title .line > span, .hero-sub, .hero-cta, .hero-arches .arch,
  .hero-arches video,
  .reveal { opacity: 1; transform: none; transition: none; animation: none; }
  .marquee-track { animation: none; }
  .statement-text .word { color: var(--ink-soft); }
}
