:root {
  --black: #0b0807;
  --brown-black: #130d09;
  --panel: #17100c;
  --line: rgba(196, 139, 82, .62);
  --line-soft: rgba(244, 234, 224, .19);
  --cream: #f4eee7;
  --muted: #c5b8ae;
  --accent: #ce995d;
  --accent-light: #ddb47d;
  --content: min(1224px, calc(100% - 56px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 104px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--black); color: var(--cream); font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.45; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 4px; }
.page-width { width: var(--content); 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; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 30; display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 74px; padding-inline: max(14px, calc((100% - 1224px) / 2)); border-bottom: 1px solid transparent; background: rgba(11, 8, 7, .32); backdrop-filter: blur(10px); transition: min-height .25s ease, background .25s ease, border-color .25s ease; }
.site-header.is-scrolled { min-height: 62px; border-color: var(--line-soft); background: rgba(11, 8, 7, .92); }
.brand { width: 108px; }
.brand img { width: 100%; height: auto; max-height: 62px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(28px, 3.5vw, 56px); font-size: 13px; }
.site-nav a { display: flex; min-height: 44px; align-items: center; padding: 8px 10px; color: rgba(244, 238, 231, .88); transition: color .2s ease; }
.site-nav a:hover { color: var(--accent-light); }
.menu-toggle { display: none; min-width: 64px; min-height: 44px; padding: 8px; background: transparent; color: var(--cream); cursor: pointer; transition: color .25s ease, transform .25s ease; }
.menu-toggle:hover { color: var(--accent-light); }
.menu-toggle:active { transform: scale(.96); }

.hero { position: relative; height: clamp(620px, 50vw, 720px); overflow: hidden; isolation: isolate; }
.hero-image { position: absolute; top: 0; bottom: 0; left: 50%; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: translateX(-50%); filter: brightness(.72) contrast(1.08) saturate(.76); animation: hero-image-in 1.1s ease-out both; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,6,5,.94) 0%, rgba(8,6,5,.72) 26%, rgba(8,6,5,.08) 68%), linear-gradient(0deg, rgba(8,6,5,.66), transparent 45%, rgba(8,6,5,.38)); }
.hero-content { position: absolute; top: 0; bottom: 0; left: 50%; padding-top: clamp(128px, 9vw, 150px); transform: translateX(-50%); }
.eyebrow { margin: 0 0 24px; color: var(--cream); font-size: 13px; letter-spacing: .02em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "IBM Plex Serif", Georgia, serif; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hero h1 { max-width: 520px; margin-bottom: 18px; font-size: clamp(2.8rem, 4.2vw, 4rem); line-height: .99; }
.hero-lead { max-width: 430px; margin-bottom: 28px; font-size: clamp(18px, 1.45vw, 20px); line-height: 1.35; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button, .form-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 34px; cursor: pointer; font-size: 15px; transition: transform .25s cubic-bezier(.22, 1, .36, 1), background .25s ease, color .25s ease, box-shadow .25s ease; }
.button:hover, .form-button:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.button:active, .form-button:active { transform: translateY(0) scale(.98); box-shadow: 0 4px 10px rgba(0, 0, 0, .14); }
.button-primary { background: var(--accent); color: #fff8f0; }
.button-primary:hover, .form-button:hover { background: var(--accent-light); }
.button-secondary { border: 1px solid var(--line); background: transparent; color: var(--cream); }
.button-secondary:hover { border-color: var(--accent-light); background: rgba(206, 153, 93, .1); }
.hero-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--accent-light); font-size: 16px; transition: color .25s ease; }
.hero-link:hover { color: var(--cream); }
.hero-link span { display: inline-block; margin-left: 10px; font-size: 25px; vertical-align: -2px; transition: transform .3s cubic-bezier(.22, 1, .36, 1); }
.hero-link:hover span { transform: translateX(5px); }

@keyframes hero-image-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-reveal { opacity: 1; transform: none; }
html.motion-ready .motion-reveal:not(.review-card) { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--reveal-delay, 0ms); }
html.motion-ready .motion-reveal:not(.review-card).is-visible { opacity: 1; transform: none; }
html.motion-ready .review-card.motion-reveal { opacity: 0; transition-delay: var(--reveal-delay, 0ms); }
html.motion-ready .review-card.motion-reveal.is-visible { opacity: 1; }
html.motion-ready .hero-content.motion-reveal { transform: translateX(-50%) translateY(18px); transition-duration: .8s; }
html.motion-ready .hero-content.motion-reveal.is-visible { transform: translateX(-50%) translateY(0); }
html.motion-ready .hero-content.motion-reveal > * { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1); }
html.motion-ready .hero-content.motion-reveal.is-visible > * { opacity: 1; transform: none; }
html.motion-ready .hero-content.motion-reveal.is-visible .eyebrow { transition-delay: .08s; }
html.motion-ready .hero-content.motion-reveal.is-visible h1 { transition-delay: .16s; }
html.motion-ready .hero-content.motion-reveal.is-visible .hero-lead { transition-delay: .24s; }
html.motion-ready .hero-content.motion-reveal.is-visible .hero-actions { transition-delay: .4s; }

.about-section { padding-top: clamp(62px, 8vw, 100px); padding-bottom: clamp(72px, 9vw, 112px); }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 54px; margin-bottom: 34px; }
.about-intro h2 { margin: 0; font-size: clamp(2.7rem, 4vw, 4.1rem); line-height: .98; }
.about-lead { max-width: 420px; margin: 0 0 7px; color: var(--muted); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.42; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-card { min-height: 194px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, rgba(32, 21, 14, .86), rgba(18, 12, 9, .9)); transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, border-color .3s ease, background .3s ease, box-shadow .35s ease; }
.about-card:hover, .about-card:focus-within { transform: translateY(-5px); border-color: var(--accent-light); background: linear-gradient(145deg, rgba(47, 30, 19, .92), rgba(19, 12, 9, .92)); box-shadow: 0 16px 30px rgba(0, 0, 0, .18); }
.about-card-rule { display: block; width: 42px; height: 2px; margin-bottom: 48px; background: var(--accent-light); }
.about-card h3 { margin: 0 0 8px; font-size: 25px; }
.about-card p { max-width: 280px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.line-icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; color: var(--cream); }
.car-icon { width: 42px; height: 42px; overflow: visible; color: currentColor; }
.car-icon path, .car-icon circle { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.line-icon-spark { font-size: 39px; font-weight: 200; }
.line-icon-shield { border: 2px solid currentColor; border-radius: 14px 14px 20px 20px; font-size: 20px; }
.line-icon-seat::before { content: ""; width: 13px; height: 31px; border: 2px solid currentColor; border-radius: 10px 10px 5px 5px; transform: rotate(10deg); }
.line-icon-seat::after { content: ""; position: absolute; width: 31px; height: 9px; bottom: 2px; border: 2px solid currentColor; border-radius: 7px; transform: rotate(-7deg); }

.services-section { padding-bottom: 98px; }
.services-heading, .roadmap-heading { display: flex; align-items: end; justify-content: space-between; gap: 54px; margin-bottom: 30px; }
.services-heading h2, .roadmap-heading h2 { margin: 0; font-size: clamp(2.7rem, 4vw, 4.1rem); line-height: .98; }
.services-heading > p, .roadmap-heading > p { max-width: 330px; margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.45; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-list:hover .service-card:not(:hover) { opacity: .72; }
.service-card { display: flex; min-height: 256px; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, rgba(36, 23, 15, .82), rgba(19, 12, 9, .82)); transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, border-color .3s ease, background .3s ease, box-shadow .35s ease; }
.service-card:hover, .service-card:focus-within { transform: translateY(-6px); border-color: var(--accent-light); background: linear-gradient(145deg, rgba(49, 31, 19, .9), rgba(19, 12, 9, .9)); box-shadow: 0 16px 30px rgba(0, 0, 0, .18); opacity: 1; }
.service-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: auto; color: var(--accent-light); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.service-icon { flex: 0 0 42px; margin: 0; }
.car-icon svg { display: block; width: 42px; height: 42px; }
.service-card h3 { margin: 28px 0 7px; font-size: 26px; letter-spacing: -.025em; }
.service-card p { max-width: 260px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.service-card-link { display: inline-flex; min-height: 46px; align-items: center; margin-top: 18px; color: var(--accent-light); font-size: 14px; text-decoration: underline; text-decoration-color: rgba(221, 180, 125, .45); text-underline-offset: 5px; transition: color .25s ease, text-decoration-color .25s ease; }
.service-card-link:hover { color: var(--cream); }
.service-card-link:hover { text-decoration-color: var(--cream); }

.price-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; padding-bottom: 98px; }
.section-kicker { margin: 0 0 16px; color: var(--accent-light); font-size: 13px; line-height: 1.1; letter-spacing: .08em; text-transform: uppercase; }
.price-intro h2 { margin: 0 0 22px; font-size: clamp(2.7rem, 4vw, 4.1rem); line-height: .98; }
.price-intro > p:last-child { max-width: 300px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.45; }
.price-content { min-width: 0; }
.price-list { border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; transition: padding-left .3s ease, color .3s ease, border-color .3s ease; }
.price-row:hover { padding-left: 10px; border-color: var(--accent); color: var(--cream); }
.price-row strong { color: var(--accent-light); font-size: 13px; font-weight: 400; white-space: nowrap; }
.price-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.price-actions .button { min-height: 50px; }
.price-button { margin-top: 0; }

.price-modal { width: min(1080px, calc(100% - 32px)); max-width: 1080px; max-height: min(90vh, 940px); padding: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--brown-black); color: var(--cream); box-shadow: 0 28px 90px rgba(0, 0, 0, .48); overflow: hidden; }
.price-modal::backdrop { background: rgba(7, 5, 4, .78); backdrop-filter: blur(6px); }
.price-modal[open] { animation: price-modal-in .32s cubic-bezier(.22, 1, .36, 1) both; }
.price-modal-shell { display: flex; max-height: min(90vh, 940px); flex-direction: column; }
.price-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 28px 32px 24px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(135deg, rgba(40, 25, 16, .98), rgba(19, 13, 10, .98)); }
.price-modal-header .section-kicker { margin-bottom: 12px; }
.price-modal-header h2 { margin: 0 0 10px; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: .98; }
.price-modal-header p:last-child { max-width: 540px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.price-modal-close { display: grid; flex: 0 0 44px; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-soft); border-radius: 50%; background: transparent; color: var(--cream); cursor: pointer; font-size: 28px; font-weight: 300; line-height: 1; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.price-modal-close:hover { border-color: var(--accent-light); background: rgba(206, 153, 93, .12); color: var(--accent-light); transform: rotate(90deg); }
.price-modal-body { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 0 32px 28px; scrollbar-color: var(--accent) transparent; }
.price-modal-section { padding: 28px 0 30px; border-bottom: 1px solid var(--line-soft); }
.price-modal-section:last-child { border-bottom: 0; }
.price-modal-section-heading { margin-bottom: 18px; }
.price-modal-section-heading .section-kicker { margin-bottom: 9px; }
.price-modal-section-heading h3 { margin: 0 0 8px; font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1; }
.price-modal-section-heading > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.price-modal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.price-detail-card { min-width: 0; padding: 20px; border: 1px solid var(--line-soft); border-radius: 8px; background: rgba(33, 21, 14, .72); }
.price-detail-card-wide { grid-column: 1 / -1; }
.price-detail-card h4 { margin: 0 0 9px; color: var(--cream); font-family: "IBM Plex Serif", Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.05; }
.price-detail-card > p:not(.price-detail-note) { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.48; }
.price-detail-note { margin: 16px 0 0; color: var(--accent-light); font-size: 12px; line-height: 1.4; }
.price-tier-list { border-top: 1px solid var(--line-soft); }
.price-tier-row, .price-detail-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(244, 234, 224, .1); font-size: 14px; }
.price-tier-row:last-child { border-bottom: 0; }
.price-tier-row strong, .price-detail-line strong { color: var(--accent-light); font-size: 13px; font-weight: 500; white-space: nowrap; }
.price-detail-list { border-top: 1px solid var(--line-soft); }
.price-detail-line { min-height: 47px; }
.price-detail-line:last-child { border-bottom: 0; }
.price-coating-list { overflow: hidden; border: 1px solid var(--line-soft); border-radius: 8px; }
.price-coating-row { display: grid; grid-template-columns: minmax(120px, .78fr) minmax(220px, 1.8fr) repeat(3, minmax(90px, .65fr)); gap: 16px; align-items: center; padding: 14px 16px; border-bottom: 1px solid rgba(244, 234, 224, .1); font-size: 13px; }
.price-coating-row:last-child { border-bottom: 0; }
.price-coating-row:nth-child(even) { background: rgba(244, 234, 224, .025); }
.price-coating-row strong { color: var(--cream); font-weight: 500; }
.price-coating-row > strong:nth-child(n + 3) { color: var(--accent-light); white-space: nowrap; }
.price-coating-row > span { color: var(--muted); line-height: 1.35; }
.price-coating-heading { padding-top: 11px; padding-bottom: 11px; background: rgba(206, 153, 93, .08); color: var(--accent-light); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.price-modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 32px; border-top: 1px solid var(--line-soft); background: rgba(19, 13, 10, .98); color: var(--muted); font-size: 13px; }
.price-modal-footer .button { flex: 0 0 auto; min-height: 48px; }
@keyframes price-modal-in { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }

.reviews { padding: 46px 36px 36px; border: 1px solid var(--line); border-radius: 8px; background: rgba(24, 15, 10, .78); }
.reviews-layout { display: grid; grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr); align-items: center; gap: 40px; }
.reviews-heading h2 { max-width: 520px; margin: 0 0 18px; font-size: clamp(2.1rem, 3.2vw, 3.3rem); line-height: .98; }
.reviews-heading p:not(.section-kicker) { max-width: 340px; margin: 0 0 22px; color: var(--muted); line-height: 1.5; }
.reviews-source { display: inline-flex; height: 44px; min-height: 44px; align-items: center; color: var(--accent-light); font-size: 14px; text-decoration: underline; text-decoration-color: rgba(221, 180, 125, .45); text-underline-offset: 5px; transition: color .25s ease, text-decoration-color .25s ease; }
.reviews-source:hover { color: var(--cream); text-decoration-color: var(--cream); }
.review-stack { position: relative; display: grid; min-height: 418px; place-items: center; padding: 20px 8px 28px; }
.review-stack::after { position: absolute; right: 2%; bottom: 2px; left: 2%; height: 1px; background: var(--line-soft); content: ""; }
.review-card { position: relative; display: flex; grid-area: 1 / 1; width: min(100%, 430px); min-height: 272px; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, rgb(43, 28, 18), rgb(18, 12, 9)); color: var(--cream); box-shadow: 0 18px 34px rgba(0, 0, 0, .2); cursor: pointer; transform: translate(var(--review-x, 0), var(--review-y, 0)) rotate(var(--review-rotate, 0deg)); transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease, filter .35s ease, border-color .3s ease, background .3s ease, box-shadow .35s ease; }
.review-card:nth-child(1) { --review-x: -84px; --review-y: 18px; --review-rotate: -4deg; z-index: 1; }
.review-card:nth-child(2) { --review-x: -42px; --review-y: 10px; --review-rotate: -1.5deg; z-index: 2; }
.review-card:nth-child(3) { --review-x: 0; --review-y: 2px; --review-rotate: 1.5deg; z-index: 3; }
.review-card:nth-child(4) { --review-x: 42px; --review-y: -6px; --review-rotate: 4deg; z-index: 4; }
.review-stack:hover .review-card:not(:hover) { opacity: .62; filter: saturate(.72); }
.review-card:hover, .review-card:focus-visible { border-color: var(--accent-light); background: linear-gradient(145deg, rgba(57, 36, 22, .99), rgba(21, 13, 9, .99)); box-shadow: 0 24px 46px rgba(0, 0, 0, .32); outline: 0; transform: translate(0, -28px) rotate(0); }
.review-card:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 4px; }
.review-stack[data-active="0"] .review-card:nth-child(1), .review-stack[data-active="1"] .review-card:nth-child(2), .review-stack[data-active="2"] .review-card:nth-child(3), .review-stack[data-active="3"] .review-card:nth-child(4) { z-index: 8; border-color: var(--accent-light); background: linear-gradient(145deg, rgba(57, 36, 22, .99), rgba(21, 13, 9, .99)); box-shadow: 0 24px 46px rgba(0, 0, 0, .32); transform: translate(0, -28px) rotate(0); }
.review-stack[data-active="0"] .review-card:not(:nth-child(1)), .review-stack[data-active="1"] .review-card:not(:nth-child(2)), .review-stack[data-active="2"] .review-card:not(:nth-child(3)), .review-stack[data-active="3"] .review-card:not(:nth-child(4)) { filter: saturate(.72); opacity: .72; }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { display: grid; flex: 0 0 42px; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(221, 180, 125, .68); border-radius: 50%; color: var(--accent-light); font-size: 13px; font-weight: 600; letter-spacing: -.03em; }
.review-author-block { display: grid; min-width: 0; gap: 3px; }
.review-author-block strong { overflow: hidden; color: var(--cream); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.review-author-block span { color: var(--muted); font-size: 12px; }
.review-source-mark { display: grid; place-items: center; width: 28px; height: 28px; margin-left: auto; border: 1px solid var(--line); border-radius: 7px; color: var(--accent-light); font-family: Georgia, serif; font-size: 17px; }
.review-rating { margin-top: 30px; color: var(--accent-light); font-size: 13px; letter-spacing: .14em; }
.review-card blockquote { margin: 18px 0 8px; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.15; }
.review-summary { max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.gallery-section { padding-top: 88px; padding-bottom: 90px; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 54px; margin-bottom: 28px; }
.gallery-heading h2 { margin: 0; font-size: clamp(2.7rem, 4vw, 4.1rem); line-height: .98; }
.gallery-heading-side { max-width: 350px; margin-bottom: 6px; }
.gallery-heading-side p { margin: 0 0 14px; color: var(--muted); font-size: 17px; line-height: 1.45; }
.gallery-source { display: inline-flex; min-height: 44px; align-items: center; color: var(--accent-light); font-size: 14px; text-decoration: underline; text-decoration-color: rgba(221, 180, 125, .45); text-underline-offset: 5px; transition: color .2s ease, text-decoration-color .2s ease; }
.gallery-source:hover { color: var(--cream); text-decoration-color: var(--cream); }
.gallery-experience { min-width: 0; }
.gallery-stage { position: relative; height: 446px; overflow: hidden; user-select: none; touch-action: pan-y; }
.gallery-cards { position: relative; width: 100%; height: 406px; }
.gallery-card { position: absolute; top: 8px; left: 50%; display: block; width: min(330px, 70vw); height: 390px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--panel); box-shadow: 0 22px 42px rgba(0, 0, 0, .28); opacity: var(--gallery-opacity, 1); pointer-events: none; transform: translate3d(calc(-50% + var(--gallery-x, 0px)), var(--gallery-y, 0px), 0) rotate(var(--gallery-rotate, 0deg)) scale(var(--gallery-scale, 1)); transform-origin: 50% 75%; transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .4s ease, filter .4s ease, border-color .3s ease, box-shadow .4s ease; }
.gallery-card.is-active { border-color: var(--accent-light); box-shadow: 0 28px 58px rgba(0, 0, 0, .38); }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.gallery-card.is-active img { transform: scale(1.035); }
.gallery-drag-hint { position: absolute; right: 0; bottom: 0; left: 0; margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.gallery-controls { display: flex; align-items: center; justify-content: center; gap: 18px; }
.gallery-arrow { display: grid; flex: 0 0 46px; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--accent-light); cursor: pointer; font-size: 22px; line-height: 1; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.gallery-arrow:hover { border-color: var(--accent-light); background: var(--accent); color: #fff8f0; transform: translateY(-2px); }
.gallery-arrow:active { transform: translateY(0) scale(.95); }
.gallery-dots { display: flex; flex: 0 1 480px; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; min-width: 0; }
.gallery-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--line-soft); cursor: pointer; transition: width .25s ease, border-radius .25s ease, background .25s ease, transform .2s ease; }
.gallery-dot:hover { transform: scale(1.35); background: var(--accent-light); }
.gallery-dot[aria-current="true"] { width: 26px; border-radius: 99px; background: var(--accent-light); }

.roadmap { padding-top: 88px; padding-bottom: 86px; }
.roadmap-heading h2 { max-width: 650px; }
.roadmap-track { position: relative; padding-top: 26px; }
.roadmap-line { position: absolute; top: var(--roadmap-line-top, 50px); right: var(--roadmap-line-right, 16.6667%); left: var(--roadmap-line-left, 16.6667%); height: 1px; background: rgba(244, 234, 224, .18); }
.roadmap-progress { display: block; width: var(--roadmap-progress, 0%); height: 3px; margin-top: -1px; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); box-shadow: 0 0 18px rgba(221, 180, 125, .42); transition: width 1.15s cubic-bezier(.22, 1, .36, 1); }
.roadmap-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.roadmap-step { position: relative; display: flex; flex-direction: column; padding: 0 18px; color: var(--muted); transition: color .7s ease; }
.roadmap-step:nth-child(1) { align-items: flex-start; }
.roadmap-step:nth-child(2) { align-items: center; }
.roadmap-step:nth-child(3) { align-items: flex-end; }
.roadmap-step.is-active { color: var(--cream); }
.roadmap-marker { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 0 24px; border: 1px solid rgba(244, 234, 224, .3); border-radius: 50%; background: var(--black); color: var(--muted); font-size: 13px; transition: color .7s ease, background .7s ease, border-color .7s ease, box-shadow .7s ease; }
.roadmap-step.is-active .roadmap-marker { border-color: var(--accent-light); background: var(--accent); color: #fff8f0; box-shadow: 0 0 0 7px rgba(206, 153, 93, .1); }
.roadmap-step > div { width: min(100%, 270px); margin: 0; text-align: left; }
.roadmap-step h3 { margin: 0 0 8px; color: var(--cream); font-size: 24px; }
.roadmap-step p { max-width: 270px; margin: 0; font-size: 15px; line-height: 1.45; }

.contact-band { display: grid; grid-template-columns: .88fr 1.12fr; align-items: stretch; gap: 58px; min-height: 350px; padding: 48px; border: 1px solid rgba(255, 249, 240, .2); border-radius: 9px; background: linear-gradient(135deg, #bd8750, #d5a873 68%, #e0ba8c); color: #fff8f0; }
.contact-copy { display: flex; flex-direction: column; justify-content: center; }
.contact-copy .section-kicker { color: rgba(255, 249, 240, .82); }
.contact-copy h2 { max-width: 430px; margin-bottom: 14px; font-size: clamp(2.2rem, 3.8vw, 4rem); line-height: .98; }
.contact-copy > p:not(.section-kicker) { max-width: 390px; margin: 0; font-size: 16px; line-height: 1.5; }
.contact-assurance { display: flex; align-items: start; gap: 10px; max-width: 350px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255, 249, 240, .38); color: rgba(255, 249, 240, .86); font-size: 13px; line-height: 1.4; }
.contact-assurance > span:first-child { color: #fff8f0; font-size: 19px; line-height: 1; }
.contact-form { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 28px; border-radius: 7px; background: rgba(16, 10, 7, .13); }
.form-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-field { display: grid; gap: 7px; color: rgba(255, 249, 240, .86); font-size: 12px; }
.form-field-wide { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 58px; padding: 14px 15px; border: 1px solid rgba(255, 249, 240, .52); border-radius: 2px; background: rgba(255, 249, 240, .06); color: #fff; outline: 0; resize: vertical; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease; }
.contact-form textarea { min-height: 88px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 249, 240, .84); }
.contact-form input:focus, .contact-form textarea:focus { border-color: #fff; background: rgba(255, 249, 240, .11); box-shadow: 0 0 0 4px rgba(255, 249, 240, .1); transform: translateY(-1px); }
.form-actions { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 18px; }
.form-button { min-height: 56px; padding-inline: 24px; background: var(--black); color: #fff; white-space: nowrap; }
.form-status { grid-column: 1 / -1; min-height: 0; margin: 0; font-size: 13px; }
.form-status.is-error { color: #5c1c13; }
.form-status.is-success { color: #fff; }
.consent { display: flex; align-items: flex-start; gap: 8px; max-width: 270px; color: rgba(255, 249, 240, .9); font-size: 12px; line-height: 1.35; }
.consent input { flex: 0 0 auto; width: 26px; min-height: 26px; margin: 1px 0 0; accent-color: var(--black); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }

.location-section { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; padding-top: 92px; padding-bottom: 96px; }
.location-copy h2 { margin: 0 0 20px; font-size: clamp(2.7rem, 4vw, 4.1rem); line-height: .98; }
.location-copy > p:not(.section-kicker) { max-width: 350px; margin: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.location-address { display: inline-flex; align-items: flex-start; gap: 12px; min-height: 52px; color: var(--cream); }
.location-address-icon { display: grid; flex: 0 0 34px; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--accent-light); font-size: 22px; line-height: 1; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.location-address:hover .location-address-icon { border-color: var(--accent-light); background: rgba(206, 153, 93, .12); transform: translateY(-2px); }
.location-address > span:last-child { display: grid; gap: 3px; padding-top: 2px; }
.location-address strong { font-size: 15px; font-weight: 500; }
.location-address small { color: var(--muted); font-size: 13px; }
.location-map-column { min-width: 0; }
.location-map { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; text-align: left; perspective: 1000px; }
.location-map:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 8px; border-radius: 14px; }
.location-map-shell { position: relative; display: block; width: min(100%, 470px); height: 246px; margin-inline: auto; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #1b130e; box-shadow: 0 22px 44px rgba(0, 0, 0, .22); transform: perspective(1000px) rotateX(var(--map-rotate-x, 0deg)) rotateY(var(--map-rotate-y, 0deg)); transform-style: preserve-3d; transition: width .65s cubic-bezier(.22, 1, .36, 1), height .65s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .3s ease; }
.location-map.is-expanded .location-map-shell { width: 100%; height: 342px; border-color: var(--accent-light); box-shadow: 0 28px 60px rgba(0, 0, 0, .3); }
.location-map-surface { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 76% 32%, rgba(206, 153, 93, .13), transparent 28%), linear-gradient(135deg, #24180f, #130d09 72%); }
.location-map-surface::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(244, 238, 231, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 238, 231, .04) 1px, transparent 1px); background-size: 26px 26px; content: ""; opacity: .5; }
.location-map-roads { position: absolute; inset: -8%; width: 116%; height: 116%; opacity: .88; }
.location-road { fill: none; stroke: rgba(244, 238, 231, .22); stroke-linecap: round; stroke-width: 3; stroke-dasharray: 900; stroke-dashoffset: 0; transition: stroke .3s ease, opacity .3s ease, stroke-width .3s ease; }
.location-road-main { stroke: rgba(221, 180, 125, .52); stroke-width: 6; }
.location-road-secondary { stroke: rgba(244, 238, 231, .14); stroke-width: 1.5; }
.location-map:not(.is-expanded) .location-road { opacity: .68; }
.location-map:not(.is-expanded) .location-road-main { opacity: .8; }
.location-map.is-expanded .location-road { animation: location-road-in .9s cubic-bezier(.22, 1, .36, 1) both; }
.location-map.is-expanded .location-road:nth-child(2) { animation-delay: .08s; }
.location-map.is-expanded .location-road:nth-child(3) { animation-delay: .16s; }
.location-map.is-expanded .location-road:nth-child(4) { animation-delay: .24s; }
.location-map.is-expanded .location-road:nth-child(5) { animation-delay: .3s; }
.location-map.is-expanded .location-road:nth-child(6) { animation-delay: .36s; }
.location-map.is-expanded .location-road:nth-child(7) { animation-delay: .42s; }
.location-map.is-expanded .location-road:nth-child(8) { animation-delay: .48s; }
.location-map.is-expanded .location-road:nth-child(9) { animation-delay: .54s; }
@keyframes location-road-in { from { stroke-dashoffset: 900; opacity: .1; } to { stroke-dashoffset: 0; opacity: 1; } }
.location-building { position: absolute; display: block; border: 1px solid rgba(221, 180, 125, .17); border-radius: 3px; background: rgba(244, 238, 231, .08); box-shadow: inset 0 0 0 5px rgba(11, 8, 7, .08); transition: transform .5s cubic-bezier(.22, 1, .36, 1), background .3s ease; }
.location-building-a { top: 17%; left: 12%; width: 17%; height: 18%; }
.location-building-b { top: 58%; left: 7%; width: 12%; height: 21%; }
.location-building-c { top: 13%; right: 10%; width: 15%; height: 23%; }
.location-building-d { right: 15%; bottom: 12%; width: 20%; height: 18%; }
.location-map.is-expanded .location-building { background: rgba(221, 180, 125, .14); transform: scale(1.04); }
.location-map-marker { position: absolute; top: 50%; left: 50%; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(244, 238, 231, .25); border-radius: 50%; background: rgba(11, 8, 7, .45); box-shadow: 0 0 0 8px rgba(206, 153, 93, .08), 0 10px 24px rgba(0, 0, 0, .3); transform: translate(-50%, -50%) scale(.78); transition: transform .5s cubic-bezier(.22, 1, .36, 1), background .3s ease; }
.location-map-marker svg { width: 25px; height: 25px; fill: var(--accent); stroke: var(--cream); stroke-width: 1; }
.location-map-marker circle { fill: var(--black); stroke: none; }
.location-map.is-expanded .location-map-marker { background: rgba(11, 8, 7, .72); transform: translate(-50%, -50%) scale(1); }
.location-map-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 8, 7, .22), transparent 35%, rgba(11, 8, 7, .72)); }
.location-map-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; text-shadow: 0 1px 14px rgba(0, 0, 0, .45); transform: translateZ(16px); }
.location-map-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.location-map-icon { display: grid; width: 25px; height: 25px; place-items: center; color: var(--accent-light); }
.location-map-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.location-map-status { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid rgba(244, 238, 231, .14); border-radius: 999px; background: rgba(11, 8, 7, .25); color: var(--muted); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.location-map-status i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); box-shadow: 0 0 8px rgba(221, 180, 125, .65); }
.location-map-bottomline { display: grid; gap: 4px; }
.location-map-bottomline strong { color: var(--cream); font-family: "IBM Plex Serif", Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1; }
.location-map-bottomline > span { color: var(--cream); font-size: 14px; }
.location-map-bottomline small { color: var(--muted); font-size: 11px; }
.location-map-underline { display: block; width: 34%; height: 1px; margin-top: 4px; background: linear-gradient(90deg, var(--accent), transparent); transition: width .45s ease; }
.location-map:hover .location-map-underline, .location-map.is-expanded .location-map-underline { width: 75%; }
.location-map-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 16px; color: var(--accent-light); font-size: 14px; text-decoration: underline; text-decoration-color: rgba(221, 180, 125, .45); text-underline-offset: 5px; transition: color .2s ease, text-decoration-color .2s ease; }
.location-map-link:hover { color: var(--cream); text-decoration-color: var(--cream); }

.site-footer { display: grid; grid-template-columns: 1.35fr .75fr .9fr 1.1fr; gap: 42px; align-items: start; padding-top: 58px; padding-bottom: 32px; border-top: 1px solid var(--line-soft); color: var(--muted); }
.footer-brand img { width: 164px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 190px; margin: 0; color: var(--cream); font-size: 14px; }
.footer-column { display: grid; gap: 9px; align-content: start; font-size: 14px; line-height: 1.4; }
.footer-column a, .footer-bottom a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover, .footer-bottom a:hover { color: var(--accent-light); }
.footer-label { margin: 0 0 8px; color: var(--accent-light); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: 12px; }
.footer-bottom a { transition: color .2s ease; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.cookie-consent { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); left: max(16px, env(safe-area-inset-left)); z-index: 80; width: min(720px, calc(100% - 32px)); padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; background: rgba(19, 13, 9, .97); color: var(--cream); box-shadow: 0 24px 80px rgba(0, 0, 0, .5); }
.cookie-consent.is-visible { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px 28px; animation: cookie-consent-in .35s cubic-bezier(.22, 1, .36, 1) both; }
.cookie-consent .section-kicker { margin-bottom: 8px; }
.cookie-consent h2 { margin: 0 0 8px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1; }
.cookie-consent p:not(.section-kicker):not(.cookie-consent-links) { max-width: 530px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.cookie-consent-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 14px 0 0; color: var(--accent-light); font-size: 12px; }
.cookie-consent-links a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent-actions { display: flex; flex-direction: column; align-items: stretch; gap: 8px; min-width: 220px; }
.cookie-consent-actions .button { min-height: 44px; padding-inline: 16px; font-size: 13px; white-space: normal; }
@keyframes cookie-consent-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.back-to-top { position: fixed; right: 28px; bottom: 28px; z-index: 25; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: rgba(20, 13, 9, .92); color: var(--accent-light); font-size: 24px; line-height: 1; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease, background .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: #fff8f0; }

@media (max-width: 900px) {
  :root { --content: min(calc(100% - 48px), 960px); }
  .site-header { min-height: 64px; }
  .site-header.is-scrolled { min-height: 58px; }
  .brand { width: 92px; }
  .brand img { max-height: 56px; }
  .menu-toggle { display: block; font-size: 13px; }
  .site-nav { position: absolute; top: 58px; right: max(14px, calc((100% - 960px) / 2)); display: none; min-width: 190px; padding: 10px; border: 1px solid var(--line); background: #15100d; box-shadow: 0 18px 34px rgba(0, 0, 0, .24); }
  .site-nav.is-open { display: grid; gap: 2px; animation: mobile-nav-in .32s cubic-bezier(.22, 1, .36, 1) both; }
  .hero { height: 680px; }
  .hero-content { padding-top: 116px; }
  .hero h1 { font-size: clamp(2.8rem, 9vw, 4.4rem); }
  .about-intro { grid-template-columns: 1fr; gap: 24px; }
  .about-lead { margin-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 164px; }
  .about-card-rule { margin-bottom: 32px; }
  .services-section { padding-bottom: 70px; }
  .services-heading, .roadmap-heading { align-items: start; flex-direction: column; gap: 18px; }
  .gallery-heading { align-items: start; flex-direction: column; gap: 18px; }
  .gallery-heading-side { max-width: 520px; margin-bottom: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .price-section { grid-template-columns: 1fr; gap: 32px; padding-bottom: 70px; }
  .price-modal-body { padding-inline: 24px; }
  .price-modal-header { padding-inline: 24px; }
  .price-modal-footer { padding-inline: 24px; }
  .roadmap { padding-top: 64px; padding-bottom: 64px; }
  .contact-band { grid-template-columns: 1fr; min-height: 0; padding: 32px 28px; }
  .contact-form { padding: 24px; }
  .location-section { grid-template-columns: 1fr; gap: 34px; padding-top: 70px; padding-bottom: 76px; }
  .location-copy > p:not(.section-kicker) { max-width: 520px; }
  .location-map-shell { width: 100%; max-width: 680px; height: 286px; }
  .location-map.is-expanded .location-map-shell { height: 360px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (min-width: 720px) and (max-width: 900px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
  .about-card { min-height: 196px; padding: 20px; }
  .about-card-rule { margin-bottom: 34px; }
  .about-card h3 { font-size: 22px; }
  .about-card p { font-size: 14px; }
  .service-list { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .service-card { min-height: 256px; padding: 20px; }
  .service-card h3 { margin-top: 20px; font-size: 22px; }
  .service-card p { font-size: 14px; }
  .contact-band { grid-template-columns: .86fr 1.14fr; gap: 24px; padding: 28px; }
  .contact-form { padding: 20px; }
}
@media (max-width: 720px) {
  .price-coating-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-coating-row > strong:first-child, .price-coating-row > span { grid-column: 1 / -1; }
  .price-coating-heading { display: none; }
}
@media (max-width: 560px) {
  :root { --content: calc(100% - 28px); }
  .desktop-only { display: none; }
  .site-header { min-height: 60px; padding-inline: 14px; }
  .site-header.is-scrolled { min-height: 56px; }
  .brand { width: 88px; }
  .brand img { max-height: 54px; }
  .site-nav { top: 56px; right: 14px; left: 14px; min-width: 0; padding: 8px; }
  .site-nav a { padding: 10px 12px; }
  .hero { height: 660px; }
  .hero-content { padding-top: 106px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,6,5,.96), rgba(8,6,5,.48) 78%), linear-gradient(0deg, rgba(8,6,5,.83), transparent 50%, rgba(8,6,5,.45)); }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.8rem); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .about-section { padding-top: 58px; padding-bottom: 70px; }
  .about-intro h2 { font-size: 3.15rem; }
  .about-lead { font-size: 17px; }
  .about-card { min-height: 0; padding: 20px; }
  .about-card-rule { margin-bottom: 26px; }
  .about-card h3 { font-size: 23px; }
  .price-intro h2 { font-size: 3.2rem; }
  .price-row { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .price-actions { flex-direction: column; }
  .price-actions .button { width: 100%; }
  .price-modal { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 10px; }
  .price-modal-shell { max-height: calc(100dvh - 20px); }
  .price-modal-header { gap: 12px; padding: 20px 16px 18px; }
  .price-modal-header h2 { font-size: 2.35rem; }
  .price-modal-header p:last-child { font-size: 13px; }
  .price-modal-close { flex-basis: 40px; width: 40px; height: 40px; }
  .price-modal-body { padding: 0 16px 20px; }
  .price-modal-section { padding: 22px 0 24px; }
  .price-modal-grid { grid-template-columns: 1fr; }
  .price-detail-card-wide { grid-column: auto; }
  .price-detail-card { padding: 16px; }
  .price-detail-card h4 { font-size: 21px; }
  .price-detail-card > p:not(.price-detail-note) { font-size: 13px; }
  .price-coating-row { gap: 8px; padding: 12px; font-size: 12px; }
  .price-coating-row > strong:nth-child(n + 3) { font-size: 11px; }
  .price-modal-footer { align-items: stretch; flex-direction: column; gap: 12px; padding: 16px; font-size: 12px; }
  .price-modal-footer .button { width: 100%; }
  .location-section { gap: 28px; padding-top: 58px; padding-bottom: 64px; }
  .location-copy h2 { font-size: 3.15rem; }
  .location-copy > p:not(.section-kicker) { font-size: 15px; }
  .location-map-shell { height: 235px; }
  .location-map.is-expanded .location-map-shell { height: 300px; }
  .location-map-content { padding: 16px; }
  .location-map-bottomline strong { font-size: 21px; }
  .location-map-bottomline > span { font-size: 13px; }
  .reviews { padding: 30px 18px 18px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 20px; }
  .reviews-heading h2 { font-size: 2.3rem; }
  .reviews-heading p:not(.section-kicker) { margin-bottom: 18px; }
  .review-stack { min-height: 0; grid-template-columns: 1fr; gap: 12px; place-items: stretch; padding: 0 0 12px; }
  .review-stack::after { display: none; }
  .reviews .review-stack .review-card { grid-area: auto; width: 100%; min-height: 0; padding: 16px; transform: none !important; filter: none !important; }
  .reviews .review-stack .review-card:nth-child(n) { --review-x: 0; --review-y: 0; --review-rotate: 0deg; z-index: auto; }
  .reviews .review-stack .review-card:hover, .reviews .review-stack .review-card:focus-visible, .reviews .review-stack[data-active] .review-card { transform: none !important; }
  .reviews .review-stack .review-card.motion-reveal:not(.is-visible) { opacity: 0; }
  .reviews .review-stack .review-card.motion-reveal.is-visible, .reviews .review-stack .review-card:not(.motion-reveal) { opacity: 1 !important; }
  .review-author-block strong { overflow: visible; text-overflow: clip; white-space: normal; line-height: 1.2; }
  .review-avatar { flex-basis: 38px; width: 38px; height: 38px; }
  .review-source-mark { width: 26px; height: 26px; }
  .review-rating { margin-top: 16px; font-size: 12px; }
  .review-card blockquote { margin: 10px 0 6px; font-size: 1.18rem; line-height: 1.12; }
  .review-summary { max-width: none; font-size: 13px; line-height: 1.35; }
  .gallery-section { padding-top: 62px; padding-bottom: 66px; }
  .gallery-heading h2 { font-size: 3.15rem; }
  .gallery-heading-side p { font-size: 16px; }
  .gallery-stage { height: 354px; }
  .gallery-cards { height: 320px; }
  .gallery-card { top: 4px; width: 220px; height: 300px; }
  .gallery-drag-hint { font-size: 11px; }
  .gallery-controls { gap: 8px; }
  .gallery-arrow { flex-basis: 40px; width: 40px; height: 40px; font-size: 19px; }
  .gallery-dots { flex: 1 1 auto; max-width: calc(100% - 96px); gap: 5px; }
  .gallery-dot { width: 6px; height: 6px; }
  .gallery-dot[aria-current="true"] { width: 18px; }
  .roadmap { padding-top: 48px; padding-bottom: 48px; }
  .roadmap-track { padding-top: 10px; padding-left: 0; }
  .roadmap-line { top: var(--roadmap-line-top, 35px); bottom: var(--roadmap-line-bottom, 55px); left: 50% !important; right: auto !important; width: 1px; height: auto; transform: translateX(-50%); }
  .roadmap-progress { width: 3px; height: var(--roadmap-progress, 0%); margin: 0 0 0 -1px; }
  .roadmap-steps { grid-template-columns: 1fr; gap: 30px; }
  .roadmap-step { display: block; padding: 0; text-align: center; }
  .roadmap-marker { position: relative; z-index: 2; margin: 0 auto 16px; }
  .roadmap-step > div { position: relative; z-index: 1; width: min(100%, 300px); margin-inline: auto; padding-inline: 10px; background: var(--black); text-align: center; }
  .roadmap-step h3 { font-size: 22px; }
  .roadmap-step p { max-width: 300px; margin-inline: auto; font-size: 14px; }
  .contact-band { min-height: 0; padding: 28px 18px; }
  .contact-form { padding: 20px 0 0; background: transparent; }
  .form-fields { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .consent { max-width: none; min-height: 44px; align-items: flex-start; padding-block: 4px; order: 2; }
  .form-button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 26px; padding-top: 36px; padding-bottom: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 0; }
  .back-to-top { right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  .cookie-consent { padding: 18px; }
  .cookie-consent.is-visible { grid-template-columns: 1fr; gap: 16px; }
  .cookie-consent-actions { min-width: 0; }
  .cookie-consent-actions .button { width: 100%; }
}
@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .motion-reveal:not(.review-card):not(.hero-content) {
    transform: translate3d(0, 34px, 0);
    transition-duration: .9s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
  }
  html.motion-ready .motion-reveal:not(.review-card):not(.hero-content).is-visible { transform: none; }
  html.motion-ready .review-card.motion-reveal:not(.is-visible) {
    transform: translate(var(--review-x, 0), calc(var(--review-y, 0) + 20px)) rotate(var(--review-rotate, 0deg));
    will-change: opacity, transform;
  }
  html.motion-ready .review-card.motion-reveal.is-visible {
    transform: translate(var(--review-x, 0), var(--review-y, 0)) rotate(var(--review-rotate, 0deg));
  }
  html.motion-ready .hero-content.motion-reveal > * { transition-duration: .7s; }
}
@media (max-width: 560px) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .reviews .review-stack .review-card.motion-reveal:not(.is-visible) { transform: translateY(20px) scale(.985) !important; }
  html.motion-ready .reviews .review-stack .review-card.motion-reveal.is-visible { transform: none !important; }
}
@media (hover: none) and (pointer: coarse) and (prefers-reduced-motion: no-preference) {
  .service-list:hover .service-card:not(:hover), .review-stack:hover .review-card:not(:hover) { opacity: 1; filter: none; }
  .button:active, .form-button:active { transform: translateY(2px) scale(.985); box-shadow: 0 5px 12px rgba(0, 0, 0, .18); }
  .menu-toggle:active { transform: scale(.92); }
  .hero-link:active, .service-card-link:active, .reviews-source:active, .footer-column a:active { color: var(--cream); transform: translateX(3px); }
  .about-card:active, .service-card:active { transform: scale(.985); border-color: var(--accent-light); }
  .price-row:active { padding-left: 8px; border-color: var(--accent); color: var(--cream); }
  .reviews .review-stack .review-card:active { transform: scale(.985) !important; border-color: var(--accent-light); box-shadow: 0 14px 28px rgba(0, 0, 0, .26); }
  .back-to-top:active { transform: translateY(2px) scale(.94); }
}
@media (max-width: 900px) and (orientation: landscape) {
  .hero { height: 540px; }
  .hero-content { padding-top: 88px; }
  .hero h1 { max-width: 480px; font-size: clamp(2.35rem, 6vw, 3.5rem); }
  .hero-lead { max-width: 390px; margin-bottom: 18px; font-size: 16px; }
  .hero-actions { gap: 18px; }
  .button { min-height: 48px; padding-inline: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image, .motion-reveal, .roadmap-progress, .roadmap-step, .roadmap-marker, .about-card, .service-card, .review-card, .gallery-card, .price-row, .price-modal, .location-map-shell, .button, .form-button, .contact-form input, .contact-form textarea { animation: none !important; transition-duration: .01ms !important; }
  html.motion-ready .hero-content.motion-reveal > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Reviews: a quiet marquee of liquid-glass cards, adapted from the supplied component prompt. */
@keyframes review-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.reviews .review-stack[data-review-marquee] {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  place-items: initial;
}
.reviews .review-stack[data-review-marquee]::after { display: none; }
.review-marquee-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review-marquee-track {
  display: flex;
  width: max-content;
  animation: review-marquee-scroll 46s linear infinite;
  will-change: transform;
}
.review-stack[data-review-marquee]:hover .review-marquee-track,
.review-stack[data-review-marquee]:focus-within .review-marquee-track {
  animation-play-state: paused;
}
.review-marquee-group {
  display: flex;
  flex: none;
  gap: 14px;
  padding-right: 14px;
}
.review-stack[data-review-marquee] .review-card,
.review-stack[data-review-marquee] .review-marquee-card {
  position: relative;
  display: flex;
  flex: 0 0 304px;
  grid-area: auto;
  width: 304px;
  min-height: 258px;
  flex-direction: column;
  padding: 21px;
  border: 1px solid rgba(221, 180, 125, .34);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(66, 43, 27, .86), rgba(22, 14, 10, .98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 249, 240, .07);
  cursor: default;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.review-stack[data-review-marquee] .review-card.motion-reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(16px) !important;
}
.review-stack[data-review-marquee] .review-card.motion-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.review-stack[data-review-marquee] .review-card:hover,
.review-stack[data-review-marquee] .review-card:focus-visible,
.review-stack[data-review-marquee] .review-marquee-card:hover {
  border-color: rgba(221, 180, 125, .82);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 249, 240, .1);
  transform: translateY(-5px) !important;
}
.review-stack[data-review-marquee] .review-card-top,
.review-stack[data-review-marquee] .review-marquee-card .review-card-top {
  min-height: 42px;
}
.review-stack[data-review-marquee] .review-avatar,
.review-stack[data-review-marquee] .review-marquee-card .review-avatar {
  border-color: rgba(221, 180, 125, .76);
  background: rgba(221, 180, 125, .08);
}
.review-stack[data-review-marquee] .review-rating,
.review-stack[data-review-marquee] .review-marquee-card .review-rating {
  margin-top: 24px;
}
.review-stack[data-review-marquee] .review-card blockquote,
.review-stack[data-review-marquee] .review-marquee-card blockquote {
  margin: 15px 0 8px;
  font-size: clamp(1.25rem, 1.65vw, 1.52rem);
  line-height: 1.12;
}
.review-stack[data-review-marquee] .review-summary,
.review-stack[data-review-marquee] .review-marquee-card .review-summary {
  max-width: none;
  margin-top: auto;
  font-size: 13px;
  line-height: 1.42;
}
.review-marquee-hint {
  margin: 12px 0 0;
  color: rgba(230, 218, 207, .62);
  font-size: 11px;
  letter-spacing: .02em;
  text-align: right;
}

/* Location: use the real Yandex map widget instead of the former decorative surface. */
.location-map-frame {
  min-height: 342px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #1b130e;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .22);
}
.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 342px;
  border: 0;
}
.location-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}
.location-map-footer > span {
  display: grid;
  gap: 4px;
}
.location-map-footer strong {
  color: var(--cream);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}
.location-map-footer small {
  color: var(--muted);
  font-size: 13px;
}
.location-map-footer .location-map-link {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 900px) {
  .review-marquee-viewport { mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .review-marquee-track { animation-duration: 52s; }
  .review-stack[data-review-marquee] .review-card,
  .review-stack[data-review-marquee] .review-marquee-card {
    flex-basis: 286px;
    width: 286px;
    min-height: 238px;
    padding: 18px;
  }
  .review-marquee-hint { padding-inline: 2px; text-align: left; }
  .location-map-frame { min-height: 300px; }
  .location-map-frame iframe { height: 300px; }
}
@media (max-width: 560px) {
  .review-marquee-group { gap: 10px; padding-right: 10px; }
  .review-stack[data-review-marquee] .review-card,
  .review-stack[data-review-marquee] .review-marquee-card {
    flex-basis: 270px;
    width: 270px;
    min-height: 224px;
    padding: 16px;
    border-radius: 14px;
  }
  .review-stack[data-review-marquee] .review-rating,
  .review-stack[data-review-marquee] .review-marquee-card .review-rating { margin-top: 18px; }
  .review-stack[data-review-marquee] .review-card blockquote,
  .review-stack[data-review-marquee] .review-marquee-card blockquote {
    margin-top: 11px;
    font-size: 1.2rem;
  }
  .review-stack[data-review-marquee] .review-summary,
  .review-stack[data-review-marquee] .review-marquee-card .review-summary {
    font-size: 12px;
  }
  .location-map-frame { min-height: 280px; border-radius: 12px; }
  .location-map-frame iframe { height: 280px; }
  .location-map-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee-track { animation: none !important; transform: none !important; }
  .review-stack[data-review-marquee] .review-card,
  .review-stack[data-review-marquee] .review-marquee-card,
  .cookie-consent { transition: none !important; animation: none !important; }
}

