:root {
  --black: #000000;
  --ink: #0b0c0d;
  --ink-2: #151719;
  --ink-3: #23262a;
  --orange: #ea5a11;
  --orange-bright: #f26419;
  --orange-accessible: #ff7a33;
  --orange-dark: #ba3d00;
  --white: #ffffff;
  --paper: #f4f2ee;
  --steel: #a9afb5;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--orange-bright); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); background: var(--white); color: var(--black); padding: 10px 14px; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }
.topline { height: 4px; background: var(--orange); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(0,0,0,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); transition: box-shadow .2s ease; }
.site-header.scrolled { box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.nav-shell { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 250px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: var(--white); font-size: .88rem; font-weight: 600; letter-spacing: .02em; }
.primary-nav > a:not(.nav-call) { position: relative; padding: 10px 0; }
.primary-nav > a:not(.nav-call)::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.primary-nav > a:hover::after { width: 100%; }
.nav-call { background: var(--orange); color: var(--black); padding: 12px 18px; border-radius: 3px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--display); font-size: 1rem; font-weight: 700; }
.lang-toggle { border: 1px solid rgba(255,255,255,.28); color: var(--white); background: transparent; border-radius: 999px; padding: 7px 11px; cursor: pointer; font-size: .76rem; font-weight: 700; }
.lang-divider { opacity: .45; margin-inline: 2px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: var(--white); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 82% 42%, rgba(234,90,17,.19), transparent 33%), linear-gradient(130deg, #08090a 0%, #000 62%); }
.hero-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, #000, transparent 86%); }
.hero::after { content: ""; position: absolute; top: 0; right: -4%; width: 43%; height: 100%; background: linear-gradient(105deg, transparent 0 35%, rgba(234,90,17,.95) 35% 37%, transparent 37% 44%, rgba(234,90,17,.08) 44%); pointer-events: none; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr); align-items: center; min-height: 690px; gap: 56px; padding-block: 84px 120px; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 700; }
.eyebrow.orange { color: var(--orange-dark); }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 9px; box-shadow: 0 0 0 6px rgba(234,90,17,.14); }
.hero h1, .section h2, .final-cta h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: -.015em; line-height: .94; margin: 0; }
.hero h1 { max-width: 690px; font-size: clamp(4.2rem, 7vw, 7.2rem); }
.hero-lede { max-width: 660px; color: #d1d4d6; margin: 28px 0 0; font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.6; }
.hero-actions, .location-actions, .review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 3px; font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--black); }
.button-primary:hover { background: var(--orange-bright); }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.34); color: var(--white); }
.button-secondary:hover { border-color: var(--white); }
.button-secondary.dark { border-color: rgba(0,0,0,.25); color: var(--black); }
.button-ghost { border-color: var(--line-dark); background: transparent; }
.microcopy { margin: 18px 0 0; max-width: 620px; color: #8d9399; font-size: .82rem; }

.hero-machine { position: relative; min-height: 500px; display: grid; place-items: center; }
.speed-ring { position: relative; width: min(430px, 90%); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: radial-gradient(circle at center, rgba(234,90,17,.12), transparent 58%); box-shadow: inset 0 0 0 28px rgba(255,255,255,.012), 0 0 90px rgba(234,90,17,.08); }
.speed-ring::before, .speed-ring::after { content: ""; position: absolute; inset: 12%; border: 1px dashed rgba(255,255,255,.14); border-radius: 50%; }
.speed-ring::after { inset: 25%; border-style: solid; border-color: rgba(234,90,17,.26); }
.tick { position: absolute; left: calc(50% - 2px); top: 3%; width: 4px; height: 34px; background: linear-gradient(var(--orange), transparent); transform-origin: 2px 200px; }
.tick-1 { transform: rotate(-69deg); }.tick-2 { transform: rotate(-46deg); }.tick-3 { transform: rotate(-23deg); }.tick-4 { transform: rotate(0); }.tick-5 { transform: rotate(23deg); }.tick-6 { transform: rotate(46deg); }.tick-7 { transform: rotate(69deg); }
.speed-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.speed-number { font-family: var(--display); font-size: 5.7rem; line-height: .8; font-weight: 600; }
.speed-label { margin-top: 16px; color: var(--orange); font-size: .76rem; letter-spacing: .27em; font-weight: 700; }
.car-line { position: absolute; left: -12%; bottom: 9%; width: 118%; overflow: visible; fill: rgba(0,0,0,.55); stroke: rgba(255,255,255,.5); stroke-width: 2; filter: drop-shadow(0 12px 18px rgba(0,0,0,.5)); }
.car-line circle { fill: #050505; stroke: var(--orange); stroke-width: 4; }
.hero-badge { position: absolute; right: -4px; bottom: 13%; display: grid; grid-template-columns: auto auto; align-items: end; gap: 0 9px; padding: 14px 16px; background: rgba(10,10,10,.85); border-left: 3px solid var(--orange); box-shadow: var(--shadow); }
.hero-badge .badge-big { grid-row: span 2; font-family: var(--display); font-size: 2.6rem; line-height: 1; font-weight: 700; }
.badge-stars { color: var(--orange); letter-spacing: .08em; font-size: .8rem; }
.hero-badge > span:last-child { color: #aeb3b8; font-size: .7rem; }
.trust-strip { position: relative; z-index: 3; margin-top: -74px; display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); color: var(--black); box-shadow: var(--shadow); }
.trust-strip > div { padding: 22px 26px; border-right: 1px solid var(--line-dark); }
.trust-strip > div:last-child { border: 0; }
.trust-strip strong { display: block; color: var(--orange-dark); font-family: var(--display); font-size: 1.45rem; letter-spacing: .05em; }
.trust-strip span { display: block; margin-top: 2px; color: #575d62; font-size: .78rem; }

.section { padding: 110px 0; }
.section-heading h2, .process-intro h2, .review-summary h2, .location h2 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.split-heading { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.7fr); gap: 76px; align-items: end; }
.split-heading > p { margin: 0 0 8px; color: #60666b; font-size: 1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 62px; }
.service-card { position: relative; min-height: 315px; padding: 32px 28px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.48); overflow: hidden; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(234,90,17,.55); background: var(--white); }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -80px; width: 150px; height: 150px; border: 1px solid rgba(234,90,17,.18); border-radius: 50%; }
.service-card.feature-card { background: var(--orange); color: var(--black); border-color: var(--orange); }
.service-card.feature-card::after { border-color: rgba(255,255,255,.35); }
.service-index { color: var(--orange-dark); font-family: var(--display); font-size: .82rem; font-weight: 700; letter-spacing: .1em; }
.feature-card .service-index { color: var(--black); }
.service-card svg { width: 55px; margin: 30px 0 44px; fill: none; stroke: currentColor; stroke-width: 2; }
.service-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 1.65rem; line-height: 1.05; text-transform: uppercase; }
.service-card p { position: relative; z-index: 1; margin: 0; color: #646a70; font-size: .9rem; }
.feature-card p { color: #241007; }
.ask-card { display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink); color: var(--white); }
.ask-card .service-index { position: absolute; top: 14px; right: 24px; color: var(--orange); font-size: 4rem; line-height: 1; }
.ask-card p { color: #b8bdc1; }
.ask-card a { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--orange-bright); font-family: var(--display); text-transform: uppercase; font-weight: 700; letter-spacing: .06em; }

.real-shop { background: #08090a; color: var(--white); }
.real-shop-heading .eyebrow { color: var(--orange-accessible); }
.real-shop-heading > p { color: #b0b5b9; }
.work-showcase { display: grid; grid-template-columns: 1.05fr 1.35fr .85fr; grid-template-rows: 240px 240px; gap: 14px; margin-top: 62px; }
.work-photo { position: relative; margin: 0; overflow: hidden; background: #17191b; border: 1px solid rgba(255,255,255,.11); }
.work-photo-tall { grid-row: 1 / 3; }
.work-photo-wide { grid-column: 2; grid-row: 1 / 3; }
.work-photo-detail { grid-column: 3; grid-row: 1 / 3; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-photo-tall img { object-position: 52% center; }
.work-photo-wide img { object-position: center; }
.work-photo-detail img { object-position: center 44%; }
.work-photo:hover img { transform: scale(1.025); }
.work-photo::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.92)); pointer-events: none; }
.work-photo figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; display: grid; gap: 5px; }
.work-photo figcaption span { color: var(--orange-accessible); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.work-photo figcaption strong { max-width: 330px; font-family: var(--display); font-size: 1.55rem; line-height: 1.02; text-transform: uppercase; }
.capacity-banner { position: relative; height: 370px; margin: 14px 0 0; overflow: hidden; border-left: 5px solid var(--orange); background: #151719; }
.capacity-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.capacity-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.63) 40%, rgba(0,0,0,.08) 76%); }
.capacity-banner figcaption { position: absolute; z-index: 1; top: 50%; left: 46px; max-width: 540px; transform: translateY(-50%); }
.capacity-banner figcaption strong { display: block; font-family: var(--display); font-size: clamp(2.1rem,4vw,4rem); line-height: .95; text-transform: uppercase; }

.process-section { background: var(--ink); color: var(--white); }
.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.process-intro p:not(.eyebrow) { color: #adb2b6; max-width: 540px; }
.process-section .eyebrow.orange { color: var(--orange-accessible); }
.text-link { display: inline-flex; gap: 30px; align-items: center; margin-top: 18px; color: var(--orange-accessible); border-bottom: 1px solid rgba(255,122,51,.55); padding-bottom: 6px; font-family: var(--display); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.process-steps { list-style: none; padding: 0; margin: 0; }
.process-steps li { display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-steps li:last-child { border-bottom: 1px solid var(--line); }
.process-steps > li > span { color: var(--orange-accessible); font-family: var(--display); font-weight: 700; }
.process-steps h3 { margin: 0; font-family: var(--display); font-size: 1.8rem; text-transform: uppercase; }
.process-steps p { margin: 5px 0 0; color: #aeb3b7; }

.waiting-section { background: #eeeae3; }
.waiting-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: center; }
.waiting-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem,5.2vw,5.5rem); line-height: .94; text-transform: uppercase; }
.waiting-copy > p:not(.eyebrow) { max-width: 520px; color: #596066; }
.comfort-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 12px; }
.comfort-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-dark); font-weight: 600; }
.comfort-list li > span:first-child { display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); color: var(--black); font-weight: 800; }
.waiting-gallery { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; min-height: 620px; }
.waiting-gallery figure { margin: 0; overflow: hidden; background: #d7d5d0; box-shadow: var(--shadow); }
.waiting-gallery img { width: 100%; height: 100%; object-fit: cover; }
.waiting-main { margin-top: 46px !important; }
.waiting-main img { object-position: 44% center; }
.waiting-detail { margin-bottom: 46px !important; }
.waiting-detail img { object-position: center; }
.waiting-note { position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; background: var(--black); color: var(--white); border-left: 3px solid var(--orange); font-family: var(--display); font-weight: 700; letter-spacing: .12em; }

.reviews { background: var(--orange); color: var(--black); }
.review-summary { display: grid; grid-template-columns: 280px 1fr; gap: 70px; align-items: center; }
.rating-block { display: flex; flex-direction: column; align-items: flex-start; border-right: 1px solid rgba(0,0,0,.3); }
.rating-number { font-family: var(--display); font-size: 7.6rem; font-weight: 600; line-height: .75; }
.rating-stars { margin-top: 20px; letter-spacing: .1em; }
.rating-block > span:last-child { font-size: .82rem; margin-top: 7px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 58px; }
.review-card { position: relative; margin: 0; min-height: 340px; padding: 34px; color: var(--black); background: rgba(255,255,255,.88); border-top: 4px solid transparent; display: flex; flex-direction: column; justify-content: space-between; }
.review-card.featured-review { background: var(--black); color: var(--white); border-color: var(--white); transform: translateY(-14px); }
.quote-mark { font-family: Georgia, serif; color: var(--orange-dark); font-size: 5rem; line-height: .6; }
.review-card blockquote { margin: 32px 0; font-size: 1.03rem; line-height: 1.7; }
.review-card figcaption { display: flex; flex-direction: column; border-top: 1px solid currentColor; padding-top: 18px; }
.review-card figcaption span { opacity: .64; font-size: .76rem; }
.review-actions { justify-content: center; }
.reviews .button-primary { background: var(--black); color: var(--white); }
.reviews .button-ghost { border-color: rgba(0,0,0,.45); color: var(--black); }

.location { background: #ebe8e2; }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; box-shadow: var(--shadow); }
.location-panel { padding: 62px; background: var(--white); }
.location h2 { font-size: clamp(2.8rem,4.5vw,4.7rem); }
.details-list { margin: 46px 0 0; }
.details-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line-dark); }
.details-list dt { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; }
.details-list dd { margin: 0; display: flex; flex-direction: column; align-items: flex-start; color: #555c61; }
.details-list dd strong { color: var(--black); }
.details-list a { text-decoration: underline; text-decoration-color: rgba(234,90,17,.5); text-underline-offset: 3px; }
.map-card { position: relative; min-height: 650px; overflow: hidden; color: var(--black); background: #d7d9d2; }
.map-grid { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(0,0,0,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.12) 1px, transparent 1px); background-size: 55px 55px; transform: rotate(-12deg) scale(1.2); }
.map-road { position: absolute; width: 150%; height: 52px; background: rgba(255,255,255,.8); box-shadow: 0 0 0 1px rgba(0,0,0,.08); transform-origin: center; }
.road-a { left: -25%; top: 38%; transform: rotate(28deg); }.road-b { left: -25%; top: 60%; transform: rotate(-21deg); }.road-c { left: -5%; top: 15%; transform: rotate(72deg); }
.map-pin { position: absolute; left: 50%; top: 43%; width: 62px; height: 62px; transform: translate(-50%,-50%); background: var(--orange); border-radius: 50% 50% 50% 0; rotate: -45deg; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.map-pin span { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--white); left: 20px; top: 20px; }
.map-label { position: absolute; left: 50%; top: 55%; transform: translateX(-50%); width: max-content; max-width: calc(100% - 40px); text-align: center; padding: 12px 16px; background: rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.map-label strong, .map-label span { display: block; }
.map-label strong { font-family: var(--display); font-size: 1.4rem; text-transform: uppercase; }
.map-label span { color: #555c61; font-size: .78rem; }
.map-open { position: absolute; right: 24px; bottom: 24px; padding: 12px 16px; background: var(--black); color: var(--white); font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }

.final-cta { padding: 74px 0; background: var(--black); color: var(--white); }
.final-cta-layout { display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 46px; }
.final-cta img { width: 230px; }
.final-cta h2 { font-size: clamp(2.4rem,4vw,4.4rem); }
.final-cta .eyebrow { color: var(--orange); }

.site-footer { padding: 72px 0 110px; background: #070707; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); }
.footer-layout { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; }
.footer-brand img { width: 250px; }
.footer-brand p { max-width: 320px; color: #8c9297; }
.footer-layout h2 { margin: 5px 0 18px; font-family: var(--display); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); }
.footer-layout > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-layout p, .footer-layout a { color: #aeb3b7; font-size: .85rem; margin: 0 0 8px; }
.footer-layout a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); color: #73797e; font-size: .75rem; }
.mobile-cta { display: none; }

@media (max-width: 1000px) {
  .nav-shell { gap: 16px; }
  .brand { width: 210px; }
  .primary-nav { gap: 16px; font-size: .82rem; }
  .nav-call { padding: 10px 12px; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-machine { min-height: 420px; max-width: 620px; width: 100%; margin-inline: auto; }
  .hero::after { width: 70%; opacity: .6; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .work-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 330px; }
  .work-photo-tall { grid-column: 1; grid-row: 1; }
  .work-photo-wide { grid-column: 2; grid-row: 1; }
  .work-photo-detail { grid-column: 1 / 3; grid-row: 2; }
  .work-photo-detail img { object-position: center 48%; }
  .process-layout { grid-template-columns: 1fr; gap: 55px; }
  .waiting-layout { grid-template-columns: 1fr; gap: 52px; }
  .waiting-gallery { min-height: 600px; }
  .review-summary { grid-template-columns: 220px 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .review-card.featured-review { transform: none; }
  .location-layout { grid-template-columns: 1fr; }
  .map-card { min-height: 480px; }
  .final-cta-layout { grid-template-columns: 190px 1fr; }
  .final-cta-layout .button { grid-column: 2; justify-self: start; }
  .footer-layout { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-layout > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 70px; }
  .nav-shell { min-height: 68px; }
  .brand { width: 195px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 12px 24px 28px; background: var(--black); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .24s ease, opacity .2s ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav > a:not(.nav-call) { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .lang-toggle { justify-self: start; margin: 15px 0; }
  .nav-call { text-align: center; }
  .hero-layout { padding-block: 60px 110px; gap: 28px; }
  .hero h1 { font-size: clamp(3.7rem,18vw,5.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-machine { min-height: 330px; }
  .speed-ring { width: 310px; }
  .tick { height: 24px; transform-origin: 2px 145px; }
  .speed-number { font-size: 4.2rem; }
  .car-line { bottom: 2%; }
  .hero-badge { right: 0; bottom: 3%; }
  .trust-strip { margin-top: -62px; }
  .trust-strip > div { padding: 18px; }
  .section { padding: 82px 0; }
  .section-heading h2, .process-intro h2, .review-summary h2, .location h2 { font-size: clamp(2.9rem,13vw,4.1rem); }
  .service-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .service-card { min-height: 280px; }
  .work-showcase { grid-template-columns: 1fr; grid-template-rows: 430px 280px 390px; }
  .work-photo-tall { grid-column: 1; grid-row: 1; }
  .work-photo-wide { grid-column: 1; grid-row: 2; }
  .work-photo-detail { grid-column: 1; grid-row: 3; }
  .capacity-banner { height: 430px; }
  .capacity-banner img { object-position: 62% center; }
  .capacity-banner::after { background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.28) 70%); }
  .capacity-banner figcaption { top: auto; left: 24px; right: 24px; bottom: 26px; transform: none; }
  .capacity-banner figcaption strong { font-size: 2.5rem; }
  .waiting-gallery { min-height: auto; grid-template-columns: 1fr; gap: 10px; }
  .waiting-gallery figure { aspect-ratio: 4 / 5; }
  .waiting-main, .waiting-detail { margin: 0 !important; }
  .waiting-main img, .waiting-detail img { object-position: center; }
  .waiting-note { top: 18px; bottom: auto; }
  .review-summary { grid-template-columns: 1fr; gap: 36px; }
  .rating-block { border: 0; border-bottom: 1px solid rgba(0,0,0,.3); padding-bottom: 28px; }
  .rating-number { font-size: 6rem; }
  .review-grid { margin-top: 40px; }
  .location-panel { padding: 40px 26px; }
  .details-list > div { grid-template-columns: 1fr; gap: 8px; }
  .map-card { min-height: 420px; }
  .final-cta-layout { grid-template-columns: 1fr; gap: 24px; }
  .final-cta-layout .button { grid-column: auto; width: 100%; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-layout > div:last-child { grid-column: auto; }
  .footer-bottom { flex-wrap: wrap; }
  .mobile-cta { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; height: 66px; display: grid; grid-template-columns: .85fr 1.5fr .85fr; background: var(--black); border-top: 1px solid var(--line); color: var(--white); box-shadow: 0 -12px 30px rgba(0,0,0,.3); }
  .mobile-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; font-size: .67rem; }
  .mobile-cta a > span:first-child { font-size: 1.1rem; }
  .mobile-cta-primary { background: var(--orange); color: var(--black); font-weight: 700; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 24px); }
  .brand { width: 175px; }
  .hero h1 { font-size: 3.65rem; }
  .trust-strip strong { font-size: 1.25rem; }
  .trust-strip span { font-size: .68rem; }
  .speed-ring { width: 270px; }
  .tick { transform-origin: 2px 126px; }
  .speed-number { font-size: 3.7rem; }
  .hero-badge { transform: scale(.9); transform-origin: right bottom; }
  .service-card { padding: 28px 24px; }
  .review-card { padding: 28px 24px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-layout > div:last-child { grid-column: auto; }
}

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