:root {
  --ink: #071329;
  --ink-2: #0c1d38;
  --red: #f51f29;
  --red-dark: #d60d18;
  --yellow: #ffdf00;
  --blue: #1727e8;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --line: #dce3ec;
  --muted: #5e6878;
  --max: 1440px;
  --shadow: 0 18px 50px rgba(7, 19, 41, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border-radius: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; padding: 12px 18px; color: white; background: var(--ink); }
.skip-link:focus { top: 12px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Barlow Condensed", Impact, sans-serif; line-height: .98; text-transform: uppercase; }
h2 { margin-bottom: 18px; font-size: clamp(2.45rem, 5vw, 4.4rem); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 1.55rem; letter-spacing: -.01em; }
.eyebrow { margin-bottom: 14px; color: var(--red); font-size: .73rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.section { padding: 110px 0; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 24px; border: 2px solid transparent; color: white; font-size: .85rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; cursor: pointer; }
.button:hover, .button:focus-visible { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(245, 31, 41, .28); }
.button-red { background: var(--red); }
.button-red:hover, .button-red:focus-visible { background: var(--red-dark); }
.button-dark { background: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: var(--blue); box-shadow: 0 12px 28px rgba(23, 39, 232, .2); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .75rem; }
.button-full { width: 100%; border: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.site-header { position: sticky; top: 0; z-index: 100; height: 92px; border-bottom: 1px solid rgba(7, 19, 41, .08); background: rgba(255, 255, 255, .96); transition: height .3s ease, box-shadow .3s ease, background .3s ease; }
.site-header.scrolled { height: 72px; background: rgba(255,255,255,.92); box-shadow: 0 10px 30px rgba(7, 19, 41, .1); backdrop-filter: blur(16px); }
.nav-shell { width: min(calc(100% - 48px), var(--max)); height: 100%; display: flex; align-items: center; gap: 34px; margin-inline: auto; }
.brand { width: 150px; flex: 0 0 auto; }
.brand img { width: 100%; height: 74px; object-fit: contain; transition: height .3s ease; }
.scrolled .brand img { height: 58px; }
.primary-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.primary-nav a { position: relative; padding: 12px 0; font-size: .8rem; font-weight: 700; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 3px; background: var(--red); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.location-chip { font-size: .72rem; font-weight: 700; white-space: nowrap; }
.location-chip span { color: var(--red); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: var(--ink); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: #fff; }

.hero { min-height: 720px; position: relative; display: grid; align-items: center; padding: 64px 0 70px; overflow: hidden; background: #f4f7fb; }
.hero-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,249,252,.99) 0%, rgba(247,249,252,.95) 42%, rgba(247,249,252,.18) 67%, rgba(7,19,41,.08) 100%), url("../assets/images/hero-wheel.jpg") right 40% center / min(56vw, 940px) auto no-repeat; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: linear-gradient(90deg, var(--red) 0 42%, var(--yellow) 42% 57%, var(--blue) 57%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .62fr); gap: clamp(50px, 8vw, 140px); align-items: center; }
.hero-copy { max-width: 770px; }
.hero h1 { margin-bottom: 24px; font-size: clamp(4.1rem, 7.4vw, 7.55rem); letter-spacing: -.055em; }
.hero h1 span { color: var(--red); }
.hero-lede { max-width: 690px; color: #3e495a; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; gap: 22px; margin-top: 48px; }
.trust-row div { display: grid; grid-template-columns: 38px auto; align-items: center; column-gap: 10px; }
.trust-row .trust-icon { grid-row: 1 / 3; width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--ink); font-weight: 900; }
.trust-row strong { font-size: .83rem; }
.trust-row small { color: var(--muted); font-size: .66rem; }
.booking-card { padding: 28px; color: white; background: rgba(7, 19, 41, .96); border-top: 6px solid var(--red); box-shadow: 22px 24px 0 rgba(255, 223, 0, .82); }
.booking-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.calendar-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.8); font-size: 1.8rem; }
.booking-card h2 { margin: 0 0 3px; font-family: Inter, sans-serif; font-size: 1.25rem; line-height: 1.2; text-transform: none; letter-spacing: -.02em; }
.booking-card-head p { margin: 0; color: #9eacbf; font-size: .72rem; }
.quick-form { display: grid; gap: 12px; }
.quick-form label { position: relative; display: grid; gap: 5px; }
.quick-form label span { color: #afbbca; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quick-form input, .quick-form select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid #ced6e1; color: var(--ink); background: white; outline: none; }
.quick-form input:focus, .quick-form select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,223,0,.15); }
.quick-form .button { margin-top: 8px; }
.form-note { margin: 0; color: #9eacbf; font-size: .68rem; text-align: center; }
.turnstile-field { min-height: 66px; display: flex; align-items: center; overflow: hidden; }
.quick-form .turnstile-field { margin-top: 2px; }
.full-form .turnstile-field { padding-top: 2px; }

.services-section { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); background: white; box-shadow: 0 10px 32px rgba(7,19,41,.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: var(--shadow); }
.service-image { position: relative; height: 240px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .5s ease, filter .5s ease; }
.service-card:hover img { transform: scale(1.06); filter: saturate(1.1); }
.service-image span { position: absolute; left: 0; bottom: 0; width: 56px; height: 56px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.25rem; font-weight: 800; }
.service-copy { padding: 25px 24px 28px; }
.service-copy h3 { font-size: 1.65rem; }
.service-copy p { min-height: 76px; color: var(--muted); font-size: .84rem; }
.service-copy a { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.brand-band { position: relative; padding: 48px 0; color: white; background: var(--ink); overflow: hidden; }
.brand-band::before { content: ""; position: absolute; inset: 0; opacity: .1; background: url("../assets/images/hero-wheel.jpg") left center / 700px auto no-repeat; filter: grayscale(1); }
.brand-band-grid { position: relative; display: grid; grid-template-columns: 350px 1fr; align-items: center; gap: 50px; }
.brand-band h2 { margin: 0; font-size: 3.5rem; }
.brand-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-track { width: max-content; display: flex; gap: 70px; align-items: center; animation: brands 28s linear infinite reverse; }
.brand-track span { color: white; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.8rem; font-weight: 800; font-style: italic; letter-spacing: -.02em; white-space: nowrap; }
@keyframes brands { to { transform: translateX(-50%); } }

.why-section { background: var(--mist); }
.why-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.large-copy { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.benefit-grid span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; color: white; background: var(--red); font-family: "Barlow Condensed", sans-serif; font-weight: 800; }
.benefit-grid h3 { margin-bottom: 6px; font-size: 1.15rem; }
.benefit-grid p { color: var(--muted); font-size: .72rem; }
.why-visual { min-height: 430px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; padding: 55px; border: 12px solid white; background: white; box-shadow: var(--shadow); transform: rotate(2deg); }
.why-visual img { width: min(100%, 470px); }
.why-visual figcaption { margin-top: 30px; color: var(--ink); font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2rem, 3.5vw, 3.3rem); font-weight: 700; font-style: italic; line-height: 1.05; text-align: center; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 8vw, 130px); background: white; }
.about-copy > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.05rem; }
.fact-row { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 34px 0; }
.fact-row div { padding-left: 15px; border-left: 4px solid var(--red); }
.fact-row strong, .fact-row span { display: block; }
.fact-row strong { color: var(--red); font-family: "Barlow Condensed", sans-serif; font-size: 1.8rem; text-transform: uppercase; }
.fact-row span { color: var(--muted); font-size: .72rem; }

.gallery-section { padding: 100px 0; background: var(--ink); overflow: hidden; }
.gallery-section .section-heading { color: white; }
.gallery-marquee { margin-top: 14px; overflow: hidden; }
.gallery-track { width: max-content; display: flex; gap: 14px; animation: gallery-left 45s linear infinite; }
.row-right .gallery-track { transform: translateX(-50%); animation-name: gallery-right; }
.gallery-track img { width: clamp(260px, 25vw, 430px); height: 250px; object-fit: cover; border: 4px solid transparent; filter: grayscale(.35) brightness(.78); transition: filter .3s ease, transform .3s ease, border-color .3s ease; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-track img:hover { position: relative; z-index: 2; transform: scale(1.035); filter: grayscale(0) brightness(1); border-color: var(--yellow); }
@keyframes gallery-left { to { transform: translateX(calc(-50% - 7px)); } }
@keyframes gallery-right { to { transform: translateX(0); } }

.testimonials-section { background: #fff; }
.testimonial-shell { display: grid; grid-template-columns: 64px minmax(0, 900px) 64px; gap: 26px; align-items: center; justify-content: center; }
.testimonial-viewport { min-height: 350px; display: grid; overflow: hidden; }
.testimonial { grid-area: 1 / 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 70px); border: 1px solid var(--line); background: var(--mist); opacity: 0; visibility: hidden; transform: translateX(25px); transition: opacity .35s ease, transform .35s ease, visibility .35s; }
.testimonial.active { opacity: 1; visibility: visible; transform: none; }
.stars { margin-bottom: 20px; color: var(--yellow); font-size: 1.25rem; letter-spacing: .18em; text-shadow: 0 1px 0 #c7a900; }
.testimonial blockquote { margin: 0 0 32px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.7rem, 3vw, 2.65rem); font-weight: 700; line-height: 1.16; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; display: grid; place-items: center; color: white; background: var(--red); font-size: .78rem; font-weight: 800; }
.reviewer strong, .reviewer small { display: block; }
.reviewer small { color: var(--muted); font-size: .7rem; }
.slider-button { width: 64px; height: 64px; border: 0; color: white; background: var(--ink); font-size: 1.5rem; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.slider-button:hover, .slider-button:focus-visible { background: var(--red); transform: scale(1.05); }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.slider-dots button { width: 32px; height: 5px; padding: 0; border: 0; background: #c9d1dc; cursor: pointer; }
.slider-dots button.active { background: var(--red); }

.cta-band { position: relative; padding: 64px 0; color: white; background: var(--ink); overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .22; background: url("../assets/images/hero-wheel.jpg") center 42% / cover; filter: grayscale(1); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin-bottom: 8px; font-size: clamp(2.6rem, 5vw, 4.2rem); }
.cta-inner p:last-child { margin: 0; color: #ccd4df; }

.location-section { background: var(--mist); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 560px; }
.location-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(48px, 6vw, 90px); background: white; }
.location-copy address { font-style: normal; }
.location-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.location-photo { position: relative; min-height: 460px; overflow: hidden; }
.location-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .5s ease, filter .5s ease; }
.location-photo:hover > img { transform: scale(1.03); filter: saturate(1); }
.map-pin { position: absolute; left: 50%; top: 48%; display: grid; grid-template-columns: auto 1fr; gap: 0 9px; padding: 15px 18px; color: white; background: var(--red); box-shadow: var(--shadow); transform: translate(-50%, -50%); white-space: nowrap; }
.map-pin b { font-size: .83rem; }
.map-pin small { grid-column: 2; font-size: .65rem; }

.site-footer { padding-top: 70px; color: #d8dfeb; background: #040d1d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; padding-bottom: 64px; }
.footer-brand img { width: 190px; margin-bottom: 24px; }
.footer-brand p { max-width: 300px; color: #99a6b8; }
.footer-grid h2 { margin-bottom: 22px; color: white; font-family: Inter, sans-serif; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { display: block; width: fit-content; margin: 9px 0; color: #aeb9c9; font-size: .78rem; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--yellow); transform: translateX(3px); }
.footer-grid p { color: #aeb9c9; font-size: .8rem; }
.footer-grid .footer-map { color: var(--yellow); font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid #263248; color: #8290a5; font-size: .7rem; }
.footer-bottom a { color: white; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Inner pages */
.page-hero { position: relative; min-height: 470px; display: flex; align-items: flex-end; padding: 90px 0; color: white; background-position: center; background-size: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,19,41,.96), rgba(7,19,41,.58) 60%, rgba(7,19,41,.2)); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(4rem, 9vw, 7.7rem); letter-spacing: -.05em; }
.page-hero .eyebrow { color: var(--yellow); }
.page-intro { max-width: 780px; color: #d6dfeb; font-size: 1.1rem; }
.inner-section { padding: 100px 0; }
.editorial-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.editorial-grid.reverse { grid-template-columns: 1.15fr .85fr; }
.editorial-image { min-height: 540px; overflow: hidden; box-shadow: 22px 22px 0 var(--yellow); }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy p { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { padding-left: 32px; position: relative; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 36px; border-top: 6px solid var(--red); background: var(--mist); }
.value-card span { color: var(--red); font-family: "Barlow Condensed", sans-serif; font-size: 3rem; font-weight: 900; }
.value-card p { margin-bottom: 0; color: var(--muted); }
.service-detail { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; border-bottom: 1px solid var(--line); }
.service-detail:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.service-detail:nth-child(even) .service-detail-image { order: 2; }
.service-detail-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.service-detail-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(50px, 7vw, 110px); }
.service-detail-copy .service-number { color: var(--red); font-family: "Barlow Condensed", sans-serif; font-size: 3rem; font-weight: 900; }
.service-detail-copy p { max-width: 660px; color: var(--muted); }
.booking-page { background: var(--mist); }
.booking-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 50px; align-items: start; }
.booking-sidebar { position: sticky; top: 100px; padding: 42px; color: white; background: var(--ink); }
.booking-sidebar h2 { font-size: 3rem; }
.booking-sidebar p, .booking-sidebar li { color: #aeb9c9; }
.booking-sidebar ul { padding-left: 20px; }
.full-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: clamp(32px, 5vw, 68px); background: white; box-shadow: var(--shadow); }
.full-form .span-2 { grid-column: 1 / -1; }
.full-form label { display: grid; gap: 8px; color: var(--ink); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.full-form input, .full-form select, .full-form textarea { width: 100%; padding: 14px; border: 1px solid #c8d1dd; background: white; outline: none; }
.full-form input, .full-form select { height: 54px; }
.full-form textarea { min-height: 140px; resize: vertical; }
.full-form input:focus, .full-form select:focus, .full-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(245,31,41,.1); }
.form-disclaimer { color: var(--muted); font-size: .7rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-cards { display: grid; gap: 14px; margin: 30px 0; }
.contact-card { padding: 25px; border-left: 5px solid var(--red); background: var(--mist); }
.contact-card h3 { margin-bottom: 5px; font-size: 1.2rem; }
.contact-card p { margin: 0; color: var(--muted); }
.faq-list { max-width: 1000px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; color: var(--ink); background: transparent; font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 800; text-align: left; text-transform: uppercase; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .35s ease; }
.faq-answer p { padding: 0 50px 28px 0; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-item.open button span { transform: rotate(45deg); }
.faq-item button span { color: var(--red); transition: transform .25s ease; }

/* Thank-you page */
.thank-you-hero { position: relative; min-height: 760px; display: grid; align-items: center; padding: 90px 0; overflow: hidden; background: var(--mist); }
.thank-you-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(243,246,250,.99) 0%, rgba(243,246,250,.96) 52%, rgba(243,246,250,.3) 78%, rgba(7,19,41,.15) 100%), url("../assets/images/hero-wheel.jpg") right 42% center / min(58vw, 980px) auto no-repeat; }
.thank-you-layout { position: relative; display: grid; grid-template-columns: 150px minmax(0, 780px); gap: 44px; align-items: start; }
.thank-you-mark { width: 150px; height: 150px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); box-shadow: 14px 14px 0 var(--blue); }
.thank-you-mark span { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 6rem; font-weight: 900; line-height: 1; }
.thank-you-copy h1 { margin-bottom: 28px; font-size: clamp(4.4rem, 8vw, 8rem); letter-spacing: -.055em; }
.thank-you-lede { max-width: 690px; color: #3e495a; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.thank-you-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 38px 0 8px; }
.thank-you-details div { display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.88); }
.thank-you-details span { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; color: white; background: var(--red); font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.35rem; font-weight: 800; }
.thank-you-details strong, .thank-you-details small { display: block; }
.thank-you-details strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.25rem; line-height: 1.1; text-transform: uppercase; }
.thank-you-details small { margin-top: 5px; color: var(--muted); line-height: 1.45; }
.thank-you-help { padding: 80px 0; color: white; background: var(--ink); }
.thank-you-help-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.thank-you-help h2 { margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.thank-you-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.thank-you-actions a { min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid #354157; background: var(--ink-2); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.thank-you-actions a:hover, .thank-you-actions a:focus-visible { transform: translateY(-5px); border-color: var(--yellow); background: #132746; }
.thank-you-actions span { color: #aeb9c9; font-size: .75rem; }
.thank-you-actions strong { color: white; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.35rem; text-transform: uppercase; }

@media (max-width: 1180px) {
  .location-chip { display: none; }
  .primary-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 44px; }
  .hero h1 { font-size: clamp(4rem, 7vw, 6rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-copy p { min-height: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container, .nav-shell { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 76px; }
  .brand { width: 126px; }
  .brand img { height: 60px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { position: fixed; inset: 76px 0 auto 0; display: grid; gap: 0; padding: 24px 16px 34px; color: white; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .primary-nav.open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav a { padding: 15px; border-bottom: 1px solid #263248; }
  .nav-actions { display: none; }
  .hero { padding-top: 70px; }
  .hero-backdrop { background: linear-gradient(180deg, rgba(247,249,252,.95) 0%, rgba(247,249,252,.85) 58%, rgba(247,249,252,.97) 100%), url("../assets/images/hero-wheel.jpg") center / cover; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .button-row, .trust-row { justify-content: center; margin-inline: auto; }
  .booking-card { max-width: 580px; margin-inline: auto; box-shadow: 14px 14px 0 var(--yellow); }
  .brand-band-grid, .why-grid, .about-split, .location-grid, .editorial-grid, .editorial-grid.reverse, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .brand-band-grid { text-align: center; }
  .about-split { min-height: 0; }
  .about-image { height: 520px; }
  .about-copy { padding: 70px 32px; }
  .gallery-track img { height: 210px; }
  .footer-grid { grid-template-columns: 1.25fr repeat(2, 1fr); gap: 40px; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .service-detail-image img { min-height: 390px; max-height: 520px; }
  .booking-sidebar { position: static; }
  .thank-you-layout { grid-template-columns: 110px minmax(0, 1fr); gap: 32px; }
  .thank-you-mark { width: 110px; height: 110px; box-shadow: 9px 9px 0 var(--blue); }
  .thank-you-mark span { font-size: 4.5rem; }
  .thank-you-help-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section, .inner-section { padding: 76px 0; }
  h2 { font-size: 2.8rem; }
  .hero { min-height: auto; padding: 62px 0 76px; }
  .hero h1 { font-size: clamp(3.55rem, 16vw, 5rem); }
  .hero-lede { font-size: .95rem; }
  .button-row .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr; max-width: 280px; text-align: left; }
  .booking-card { padding: 22px; box-shadow: 8px 8px 0 var(--yellow); }
  .service-grid, .benefit-grid, .values-grid { grid-template-columns: 1fr; }
  .service-image { height: 220px; }
  .brand-band-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-band h2 { font-size: 2.8rem; }
  .why-visual { min-height: 340px; padding: 28px; border-width: 7px; }
  .fact-row { grid-template-columns: 1fr; }
  .about-image { height: 370px; }
  .gallery-section { padding: 74px 0; }
  .gallery-track img { width: 250px; height: 180px; }
  .testimonial-shell { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 8px; }
  .slider-button { width: 46px; height: 46px; }
  .testimonial { min-height: 400px; padding: 25px; }
  .testimonial blockquote { font-size: 1.55rem; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-inner .button { width: 100%; }
  .location-copy { padding: 54px 28px; }
  .location-photo { min-height: 370px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 400px; padding: 70px 0; }
  .page-hero h1 { font-size: 4.3rem; }
  .editorial-image { min-height: 390px; box-shadow: 10px 10px 0 var(--yellow); }
  .full-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .full-form .span-2 { grid-column: auto; }
  .service-detail-copy { padding: 50px 24px; }
  .thank-you-hero { min-height: auto; padding: 76px 0 84px; }
  .thank-you-backdrop { background: linear-gradient(180deg, rgba(243,246,250,.94), rgba(243,246,250,.98)), url("../assets/images/hero-wheel.jpg") center / cover; }
  .thank-you-layout { grid-template-columns: 1fr; gap: 36px; }
  .thank-you-mark { width: 86px; height: 86px; box-shadow: 7px 7px 0 var(--blue); }
  .thank-you-mark span { font-size: 3.5rem; }
  .thank-you-copy h1 { font-size: clamp(3.8rem, 17vw, 5.4rem); }
  .thank-you-details, .thank-you-actions { grid-template-columns: 1fr; }
  .thank-you-details div { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
