:root {
  --clay: #eee7dc;
  --clay-deep: #ded4c5;
  --clay-light: #f8f4ed;
  --paper: #fffdf9;
  --ink: #1d1c1a;
  --muted: #716d66;
  --line: rgba(40, 34, 28, .13);
  --bronze: #9a6b3f;
  --bronze-light: #c59a70;
  --night: #1b1a18;
  --night-soft: #262421;
  --white: #fff;
  --shadow: 18px 18px 45px rgba(79, 66, 50, .13), -14px -14px 36px rgba(255, 255, 255, .64);
  --shadow-soft: 10px 12px 30px rgba(70, 57, 43, .10), -8px -8px 22px rgba(255, 255, 255, .58);
  --inset: inset 4px 4px 12px rgba(87, 73, 57, .12), inset -5px -5px 14px rgba(255, 255, 255, .72);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", "DM Sans", sans-serif;
  --container: min(1240px, calc(100vw - 80px));
  --ease-liquid: cubic-bezier(.22, .78, .2, 1);
}

[data-theme="dark"] {
  --clay: #22211f;
  --clay-deep: #181816;
  --clay-light: #2a2825;
  --paper: #272522;
  --ink: #f2ede5;
  --muted: #b2aaa0;
  --line: rgba(255, 255, 255, .12);
  --shadow: 16px 16px 40px rgba(0, 0, 0, .3), -10px -10px 28px rgba(255, 255, 255, .025);
  --shadow-soft: 10px 12px 28px rgba(0, 0, 0, .24), -7px -7px 20px rgba(255, 255, 255, .02);
  --inset: inset 4px 4px 12px rgba(0, 0, 0, .32), inset -4px -4px 12px rgba(255, 255, 255, .025);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--clay); color: var(--ink); font: 400 16px/1.65 var(--sans); overflow-x: hidden; }
body.menu-open, body.chat-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--bronze-light); outline-offset: 3px; }
.container { width: var(--container); 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; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; border-radius: 99px; background: var(--ink); color: var(--clay); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: none; }

.eyebrow { margin: 0 0 20px; color: var(--bronze); font-size: 11px; font-weight: 700; letter-spacing: .22em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.light { color: var(--bronze-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 24px; font-family: var(--display); font-weight: 600; letter-spacing: -.05em; line-height: 1.04; }
h1 { font-size: clamp(54px, 6.7vw, 104px); }
h2 { font-size: clamp(38px, 4.6vw, 68px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 500; }
h3 { font-family: var(--display); line-height: 1.2; letter-spacing: -.025em; }
p { color: var(--muted); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .35s var(--ease-liquid), box-shadow .35s var(--ease-liquid), background .35s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--ink); color: var(--clay-light); box-shadow: 8px 10px 24px rgba(20, 18, 16, .18); }
.button-primary:hover { box-shadow: 11px 15px 30px rgba(20, 18, 16, .24); }
.button-quiet { padding-inline: 12px; border-radius: 0; color: var(--ink); }
.button-quiet span, .text-link span { transition: transform .3s var(--ease-liquid); }
.button-quiet:hover span, .text-link:hover span { transform: translate(3px, -3px); }
.button-outline { border-color: var(--line); background: transparent; }
.button-light { background: #f6f0e8; color: #1b1a18; }
.button.full { width: 100%; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--ink); font-size: 14px; font-weight: 700; }
.dark-panel .text-link { color: #fff; }
.clay-card { border: 1px solid rgba(255,255,255,.32); background: var(--clay); box-shadow: var(--shadow); }
.clay-inset { background: var(--clay); box-shadow: var(--inset); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; transition: transform .5s var(--ease-liquid), background .35s, box-shadow .35s; }
.site-header.scrolled { background: color-mix(in srgb, var(--clay) 88%, transparent); box-shadow: 0 8px 28px rgba(50, 42, 34, .08); backdrop-filter: blur(18px); }
.site-header.header-hidden { transform: translateY(-110%); }
.header-inner { height: 94px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--clay); box-shadow: var(--shadow-soft); }
.brand-mark svg { width: 27px; fill: currentColor; }
.brand-word { display: grid; color: var(--ink); line-height: 1; }
.brand-word b { font: 700 20px/1 var(--display); letter-spacing: .14em; }
.brand-word small { margin-top: 5px; font-size: 7px; font-weight: 700; letter-spacing: .28em; }
.desktop-nav { display: flex; gap: clamp(16px, 1.75vw, 30px); align-items: center; }
.desktop-nav a { position: relative; padding: 12px 0; color: var(--muted); font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 1px; background: var(--bronze); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-liquid); }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--clay); box-shadow: var(--shadow-soft); }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: inline; }
.account-link { height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 17px; border-radius: 999px; background: var(--clay); box-shadow: var(--shadow-soft); font-size: 12px; font-weight: 700; }
.account-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.signed-in .account-dot { background: #6f9c67; box-shadow: 0 0 0 4px rgba(111,156,103,.13); }
.menu-button { display: none; padding: 0 12px; }
.menu-button i { display: block; width: 20px; height: 1.5px; margin: 5px auto; background: var(--ink); transition: transform .3s, opacity .3s; }
.menu-button[aria-expanded="true"] i:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { position: fixed; z-index: 99; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 100px 10vw 50px; overflow-y: auto; background: var(--clay); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-110%); transition: transform .6s var(--ease-liquid), opacity .25s, visibility 0s linear .6s; }
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.mobile-nav a, .mobile-nav button { padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; font: 600 clamp(27px, 7vw, 44px)/1.2 var(--display); text-align: left; }

.hero { position: relative; min-height: 850px; padding: 150px 0 145px; background: radial-gradient(circle at 74% 28%, color-mix(in srgb, var(--bronze-light) 22%, transparent), transparent 29%), linear-gradient(145deg, var(--clay-light), var(--clay)); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -20%; right: -10%; width: 58vw; height: 58vw; border: 1px solid rgba(154,107,63,.15); border-radius: 46% 54% 62% 38% / 52% 40% 60% 48%; animation: liquidOrbit 18s linear infinite; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(104deg, rgba(255,255,255,.34), transparent 36%); }
.hero-grid { min-height: 560px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 2vw; }
.hero-copy { position: relative; z-index: 3; padding-top: 20px; }
.hero-copy h1 { max-width: 690px; }
.hero-intro { max-width: 540px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-search { width: min(500px, 100%); margin-top: 48px; padding: 12px 15px 12px 22px; border-radius: 24px; }
.hero-search > label { display: block; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-search > div { display: flex; align-items: center; }
.hero-search input { width: 100%; padding: 7px 0 2px; border: 0; outline: 0; background: transparent; font-size: 14px; }
.hero-search button { width: 38px; height: 38px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--ink); color: var(--clay); }
.hero-vehicle { position: relative; min-height: 560px; display: grid; place-items: center; perspective: 1000px; }
.hero-image-wrap { position: relative; z-index: 2; width: 112%; transform: translateX(4%); animation: vehicleFloat 7s ease-in-out infinite; }
.hero-image-wrap::after { content: ""; position: absolute; left: 13%; right: 8%; bottom: 8%; height: 9%; border-radius: 50%; background: rgba(20,18,16,.24); filter: blur(23px); z-index: -1; }
.hero-image-wrap img { width: 100%; filter: drop-shadow(0 22px 25px rgba(36,30,25,.2)); }
.image-watermark { position: absolute; z-index: 3; left: 50%; top: 52%; color: rgba(255,255,255,.15); font-size: clamp(8px, .85vw, 12px); font-weight: 700; letter-spacing: .24em; text-shadow: 0 1px 8px rgba(0,0,0,.14); white-space: nowrap; pointer-events: none; transform: translate(-50%, -50%); }
.hero-model-stage { position: relative; z-index: 2; width: 100%; height: 535px; overflow: hidden; border-radius: 48% 52% 47% 53% / 53% 44% 56% 47%; background: radial-gradient(ellipse at 50% 48%, rgba(255,255,255,.78), rgba(226,216,202,.55) 42%, rgba(182,165,145,.28) 70%, transparent 71%); transition: opacity .3s, transform .55s var(--ease-liquid), border-radius 1s var(--ease-liquid); }
.hero-model-stage::before { content: ""; position: absolute; z-index: 2; inset: 3% 8% 42%; border-radius: 50%; background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.45) 47%, transparent 65%); filter: blur(14px); animation: lightSweep 8s ease-in-out infinite; pointer-events: none; }
.hero-model-stage model-viewer { position: relative; z-index: 1; width: 100%; height: 100%; --poster-color: transparent; }
.hero-floor { position: absolute; z-index: 0; left: 12%; right: 7%; bottom: 12%; height: 14%; border-radius: 50%; background: radial-gradient(ellipse, rgba(28,24,20,.24), rgba(28,24,20,.07) 45%, transparent 72%); filter: blur(16px); }
.hero-model-loading { position: absolute; left: 50%; bottom: 18%; display: flex; gap: 9px; align-items: center; color: var(--muted); font-size: 9px; transform: translateX(-50%); }
.hero-model-loading span { width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
.hero-model-stage model-viewer[loaded] .hero-model-loading, .model-shell model-viewer[loaded] .model-loading { display: none; }
.hero-vehicle.is-changing .hero-model-stage { opacity: .18; transform: translateX(4%) scale(.97); border-radius: 55% 45% 54% 46% / 45% 57% 43% 55%; }
.orbit { position: absolute; border: 1px solid color-mix(in srgb, var(--bronze) 24%, transparent); border-radius: 50%; animation: liquidOrbit 16s linear infinite; }
.orbit-one { width: 530px; height: 340px; transform: rotate(-9deg); }
.orbit-two { width: 420px; height: 490px; animation-direction: reverse; animation-duration: 22s; }
.hero-vehicle-note { position: absolute; z-index: 4; right: 1%; bottom: 13%; width: 215px; padding: 17px 19px; border-radius: 19px; transition: opacity .25s, transform .4s var(--ease-liquid); }
.hero-vehicle.is-changing .hero-vehicle-note { opacity: 0; transform: translateY(8px); }
.hero-vehicle-note span, .hero-vehicle-note a { display: block; color: var(--muted); font-size: 10px; }
.hero-vehicle-note strong { display: block; margin: 4px 0 8px; font-family: var(--display); }
.hero-vehicle-note b { display: block; margin: -4px 0 8px; color: var(--ink); font-size: 11px; }
.hero-vehicle-note a { color: var(--bronze); font-weight: 700; }
.hero-carousel-controls { position: absolute; z-index: 5; left: 9%; bottom: 7%; display: flex; gap: 8px; align-items: center; padding: 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: color-mix(in srgb, var(--clay) 72%, transparent); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.hero-carousel-controls button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 11px; }
.hero-carousel-controls button:hover { background: var(--paper); }
.hero-progress { width: 74px; height: 2px; overflow: hidden; border-radius: 9px; background: var(--line); }
.hero-progress span { display: block; width: 100%; height: 100%; background: var(--bronze); transform: scaleX(0); transform-origin: left; }
.hero-progress span.running { animation: heroProgress 7.2s linear forwards; }
.scroll-cue { position: absolute; left: 50%; bottom: 52px; display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { position: relative; width: 1px; height: 38px; overflow: hidden; background: var(--line); }
.scroll-cue span::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--bronze); animation: scrollLine 2.1s ease-in-out infinite; }

.section { position: relative; padding: 130px 0; }
.cove { --cove-color: var(--paper); margin-top: 70px; background: var(--cove-color); }
.cove::before { content: ""; position: absolute; z-index: 0; left: -10%; top: -78px; width: 120%; height: 158px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: var(--cove-color); }
.cove > * { position: relative; z-index: 1; }
.cove-light { --cove-color: var(--paper); }
.cove-clay { --cove-color: var(--clay); }
.cove-soft { --cove-color: var(--clay-light); }
.cove-dark { --cove-color: var(--night); }
.collection-section { padding-top: 90px; }
.section-heading { margin-bottom: 64px; }
.section-heading.split { display: grid; grid-template-columns: 1.2fr .55fr; gap: 80px; align-items: end; }
.section-heading h2 { margin-bottom: 0; }
.heading-aside { max-width: 430px; justify-self: end; }
.heading-aside p { margin-bottom: 28px; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vehicle-card { position: relative; min-width: 0; transform: perspective(1000px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0)); transition: transform .45s var(--ease-liquid); }
.vehicle-card-main { display: block; }
.vehicle-media { position: relative; height: 310px; display: grid; place-items: center; overflow: hidden; border-radius: 34px; background: var(--clay); box-shadow: var(--shadow); }
.vehicle-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.32), transparent 36%); opacity: .5; pointer-events: none; }
.vehicle-media img { width: 106%; height: 100%; object-fit: contain; transition: transform .8s var(--ease-liquid), filter .5s; }
.vehicle-card:hover .vehicle-media img { transform: scale(1.045) translateY(-4px); filter: drop-shadow(0 12px 15px rgba(35,28,22,.15)); }
.vehicle-arrow { position: absolute; z-index: 4; right: 18px; top: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--paper) 75%, transparent); backdrop-filter: blur(8px); transform: translate(4px, -4px); opacity: 0; transition: .35s var(--ease-liquid); }
.vehicle-card:hover .vehicle-arrow { opacity: 1; transform: none; }
.model-badge { position: absolute; z-index: 4; left: 18px; top: 18px; padding: 7px 11px; border-radius: 99px; background: rgba(26,25,23,.8); color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(8px); }
.vehicle-card-copy { display: flex; justify-content: space-between; gap: 18px; align-items: end; padding: 22px 8px 14px; }
.vehicle-card-copy p { margin-bottom: 5px; font-size: 11px; }
.vehicle-card-copy h3 { margin: 0; font-size: 20px; }
.vehicle-card-copy strong { white-space: nowrap; font-size: 14px; }
.vehicle-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 0 8px; color: var(--muted); font-size: 10px; }
.save-button { position: absolute; z-index: 5; left: 18px; bottom: 102px; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--paper) 78%, transparent); box-shadow: 3px 5px 14px rgba(30,25,20,.1); backdrop-filter: blur(8px); }
.save-button svg { fill: none; stroke: var(--ink); stroke-width: 1.5; }
.save-button.saved svg { fill: var(--bronze); stroke: var(--bronze); }

.dark-panel { background: var(--night); color: #f5f0e9; }
.dark-panel p { color: #aaa39a; }
.manifesto-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 10vw; }
.manifesto-sticky { align-self: start; position: sticky; top: 150px; }
.manifesto-sticky h2 { color: #f7f1e9; }
.manifesto-sticky > p:not(.eyebrow) { max-width: 490px; margin-bottom: 34px; }
.principle { display: grid; grid-template-columns: 54px 1fr; gap: 30px; padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.principle:first-child { padding-top: 0; }
.principle > span { color: var(--bronze-light); font-size: 11px; }
.principle h3 { margin: 0 0 13px; color: #fff; font-size: 26px; }
.principle p { margin: 0; }

.studio-teaser-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; align-items: center; }
.studio-copy p:not(.eyebrow) { max-width: 510px; font-size: 17px; }
.feature-list { display: grid; gap: 10px; margin: 28px 0 36px; color: var(--muted); font-size: 13px; }
.feature-list span::before { content: "✓"; margin-right: 10px; color: var(--bronze); }
.studio-preview { position: relative; min-height: 510px; display: grid; place-items: center; overflow: hidden; border-radius: 48% 52% 44% 56% / 55% 44% 56% 45%; background: linear-gradient(145deg, var(--clay-light), var(--clay-deep)); box-shadow: var(--shadow); transition: border-radius 1.1s var(--ease-liquid), transform .6s var(--ease-liquid); }
.studio-preview:hover { border-radius: 56% 44% 52% 48% / 44% 57% 43% 56%; transform: translateY(-6px); }
.studio-preview img { position: relative; z-index: 2; width: 96%; transition: transform 1s var(--ease-liquid); }
.studio-preview:hover img { transform: scale(1.05) rotate(-1deg); }
.studio-rings { position: absolute; width: 75%; aspect-ratio: 1; border: 1px solid rgba(154,107,63,.25); border-radius: 50%; }
.studio-rings::before, .studio-rings::after { content: ""; position: absolute; inset: 12%; border: inherit; border-radius: 50%; }
.studio-rings::after { inset: 28%; }
.drag-pill { position: absolute; z-index: 4; bottom: 25px; padding: 9px 15px; border-radius: 99px; background: rgba(26,25,23,.8); color: white; font-size: 10px; backdrop-filter: blur(9px); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 34px; border-radius: 29px; transition: transform .45s var(--ease-liquid), border-radius .5s; }
.service-card:hover { transform: translateY(-7px); border-radius: 38px 23px 36px 25px; }
.service-card > span { color: var(--bronze); font-size: 11px; }
.service-card h3 { margin: auto 0 16px; font-size: 26px; }
.service-card p { font-size: 14px; }
.service-card b { margin-top: 10px; font-size: 11px; }
.journal-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: center; }
.journal-image { min-height: 440px; display: grid; place-items: center; border-radius: 46px 46px 160px 46px; background: var(--clay); box-shadow: var(--shadow); overflow: hidden; }
.journal-image img { width: 105%; }
.journal-copy { max-width: 510px; }
.journal-copy p:not(.eyebrow) { font-size: 17px; }
.final-cta { text-align: center; }
.final-cta-inner { max-width: 850px; }
.final-cta-inner > p:not(.eyebrow) { max-width: 590px; margin: 0 auto 30px; font-size: 17px; }
.final-cta-inner > div { display: flex; justify-content: center; gap: 12px; }

.page-hero { min-height: 600px; display: flex; align-items: flex-end; padding: 180px 0 120px; background: radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--bronze-light) 18%, transparent), transparent 32%), linear-gradient(155deg, var(--clay-light), var(--clay)); }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .55fr; gap: 10vw; align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(50px, 6.3vw, 92px); }
.page-lead { margin: 0 0 8px; font-size: 18px; }
.inventory-main { padding-top: 65px; }
.inventory-toolbar { display: grid; grid-template-columns: 1.5fr .8fr .8fr auto; gap: 15px; align-items: end; padding: 20px; border-radius: 25px; }
.inventory-toolbar label { display: block; margin: 0 0 7px 4px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.inventory-toolbar input, .inventory-toolbar select { width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 15px; outline: none; background: color-mix(in srgb, var(--paper) 68%, transparent); }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin: 52px 0 25px; }
.results-bar p { margin: 0; font-size: 13px; }
.view-toggle { width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 10px; background: transparent; }
.empty-state { padding: 60px; border-radius: 32px; text-align: center; }
.sourcing-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 9vw; align-items: end; }
.sourcing-grid h2 { margin: 0; }
.sourcing-grid p { font-size: 18px; }

.vehicle-hero { padding: 145px 0 150px; background: linear-gradient(155deg, var(--clay-light), var(--clay)); }
.vehicle-breadcrumb { display: flex; gap: 12px; margin-bottom: 55px; color: var(--muted); font-size: 11px; }
.vehicle-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.vehicle-title h1 { margin-bottom: 18px; font-size: clamp(48px, 6vw, 88px); }
.vehicle-title > p:last-child { max-width: 670px; }
.vehicle-price { padding-bottom: 9px; text-align: right; }
.vehicle-price span, .vehicle-price small { display: block; color: var(--muted); font-size: 10px; }
.vehicle-price strong { display: block; margin: 5px 0; font: 600 28px var(--display); }
.vehicle-gallery { margin-top: 60px; }
.vehicle-main-image { position: relative; height: min(65vw, 680px); display: grid; place-items: center; overflow: hidden; border-radius: 46px; background: var(--clay); box-shadow: var(--shadow); }
.vehicle-main-image img { width: 94%; height: 94%; object-fit: contain; transition: opacity .18s, transform .6s var(--ease-liquid); }
.vehicle-main-image img.switching { opacity: 0; transform: scale(.97); }
.gallery-count { position: absolute; left: 24px; bottom: 21px; padding: 8px 13px; border-radius: 99px; background: rgba(28,27,25,.75); color: white; font-size: 10px; backdrop-filter: blur(8px); }
.vehicle-thumbs { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.vehicle-thumbs button { width: 82px; height: 62px; padding: 4px; border: 1px solid transparent; border-radius: 13px; background: var(--clay); opacity: .55; }
.vehicle-thumbs button.active { border-color: var(--bronze); opacity: 1; }
.vehicle-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.vehicle-overview { padding-top: 70px; }
.vehicle-overview-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.vehicle-summary { position: sticky; top: 130px; align-self: start; }
.vehicle-summary p:not(.eyebrow) { font-size: 17px; }
.vehicle-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.save-text { display: flex; gap: 7px; align-items: center; border: 0; background: transparent; color: var(--muted); font-size: 12px; }
.save-text.saved { color: var(--bronze); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); }
.spec-grid div { padding: 24px 8px; border-bottom: 1px solid var(--line); }
.spec-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
.spec-grid dt { margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.spec-grid dd { margin: 0; font-size: 14px; font-weight: 600; }
.model-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.model-heading h2 { margin: 0; }
.model-shell { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 45%, #49453f, #24221f 65%); }
.vehicle-model { height: min(66vw, 690px); border-radius: 46px; box-shadow: 0 35px 80px rgba(0,0,0,.32); }
.model-shell model-viewer { width: 100%; height: 100%; --poster-color: transparent; }
.model-watermark { position: absolute; z-index: 3; left: 50%; top: 52%; color: rgba(255,255,255,.12); font-size: clamp(8px, .85vw, 12px); font-weight: 700; letter-spacing: .24em; white-space: nowrap; pointer-events: none; transform: translate(-50%, -50%); }
.model-help { position: absolute; z-index: 3; left: 22px; bottom: 16px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: rgba(255,255,255,.75); font-size: 9px; backdrop-filter: blur(8px); pointer-events: none; }
.model-loading { position: absolute; inset: auto 25px 25px; display: flex; gap: 9px; align-items: center; color: #fff; font-size: 10px; }
.model-loading span, .page-loader span { width: 15px; height: 15px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
.model-fallback { position: relative; height: 100%; display: grid; place-items: center; }
.model-fallback img { width: 90%; height: 90%; object-fit: contain; }
.model-fallback p { position: absolute; bottom: 20px; }
.story-spec-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 9vw; align-items: start; }
.story-spec-grid p:not(.eyebrow) { font-size: 18px; }
.related-section { background: var(--paper); }
.mobile-vehicle-bar { display: none; }
.vehicle-page-loading, .vehicle-not-found { min-height: 100vh; display: grid; place-items: center; padding: 140px 30px; text-align: center; }
.page-loader { display: grid; justify-items: center; gap: 15px; color: var(--muted); }

.studio-page { background: var(--night); }
.studio-page .site-header:not(.scrolled) .brand-word, .studio-page .site-header:not(.scrolled) .desktop-nav a, .studio-page .site-header:not(.scrolled) .account-link { color: #f3eee6; }
.studio-page .site-header:not(.scrolled) .brand-mark { background: #f1ebe2; color: #1a1917; }
.studio-page .site-header:not(.scrolled) .icon-button, .studio-page .site-header:not(.scrolled) .account-link { background: #292724; box-shadow: 7px 7px 19px rgba(0,0,0,.25), -4px -4px 13px rgba(255,255,255,.025); }
.studio-hero { min-height: 1000px; padding: 175px 0 170px; color: #f5f0e8; background: radial-gradient(circle at 50% 45%, #36332e 0, #1b1a18 58%); }
.studio-heading { text-align: center; }
.studio-heading h1 { margin-bottom: 22px; font-size: clamp(52px, 6vw, 92px); }
.studio-heading > p:last-child { max-width: 600px; margin-inline: auto; color: #aaa39a; }
.studio-stage-wrap { margin-top: 45px; }
.studio-stage { min-height: 650px; display: grid; place-items: center; }
.studio-model { width: 100%; height: 620px; background: transparent; }
.studio-car-info { position: absolute; z-index: 5; inset: auto 30px 27px; display: flex; justify-content: space-between; align-items: end; pointer-events: none; }
.studio-car-info span, .studio-car-info a { color: #aaa39a; font-size: 10px; }
.studio-car-info h2 { margin: 3px 0 0; font-size: 26px; }
.studio-car-info > div:last-child { text-align: right; }
.studio-car-info strong { display: block; }
.studio-car-info a { pointer-events: auto; color: #fff; }
.studio-selector { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.studio-selector button { width: 170px; padding: 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: #252320; color: #aaa39a; opacity: .65; transition: .3s; }
.studio-selector button.active { border-color: var(--bronze-light); color: #fff; opacity: 1; transform: translateY(-4px); }
.studio-selector img { height: 66px; width: 100%; object-fit: contain; }
.studio-selector span { display: block; padding: 3px; font-size: 10px; }
.studio-explainer { color: var(--ink); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card { padding: 38px 28px; border-right: 1px solid var(--line); }
.process-card:last-child { border: 0; }
.process-card span { color: var(--bronze); font-size: 10px; }
.process-card h3 { margin: 48px 0 14px; }
.process-card p { margin: 0; font-size: 13px; }

.story-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 8vw; align-items: center; }
.story-image { position: relative; min-height: 570px; display: grid; place-items: center; border-radius: 40px 40px 180px 40px; background: var(--clay); box-shadow: var(--shadow); overflow: hidden; }
.story-image img { width: 105%; }
.story-copy p { font-size: 17px; }
.story-copy blockquote { margin: 38px 0 0; padding-left: 23px; border-left: 2px solid var(--bronze); font: 500 24px/1.5 var(--serif); }
.standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; }
.standard-grid article { min-height: 250px; padding: 28px; border-left: 1px solid rgba(255,255,255,.1); }
.standard-grid b { color: var(--bronze-light); font-size: 10px; }
.standard-grid h3 { margin-top: 80px; color: white; }
.standard-grid p { font-size: 13px; }
.values-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 9vw; align-items: center; }
.values-grid p { font-size: 17px; }

.technology-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: center; }
.technology-art { position: relative; min-height: 540px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 46px; background: radial-gradient(circle at 50% 50%, #3d3934, #201f1c 65%); }
.tech-sphere { position: absolute; width: 420px; aspect-ratio: 1; border: 1px solid rgba(197,154,112,.18); border-radius: 50%; animation: techTurn 18s linear infinite; }
.tech-sphere::before, .tech-sphere::after, .tech-sphere span { content: ""; position: absolute; inset: 12%; border: inherit; border-radius: 50%; transform: rotateX(66deg); }
.tech-sphere::after { transform: rotateY(66deg); }
.tech-sphere span:nth-child(1) { inset: 25%; }
.tech-sphere span:nth-child(2) { transform: rotateX(66deg) rotateZ(55deg); }
.tech-sphere span:nth-child(3) { transform: rotateY(66deg) rotateZ(55deg); }
.tech-car-outline { position: relative; z-index: 2; width: 95%; filter: saturate(.2) contrast(1.1) drop-shadow(0 20px 22px rgba(0,0,0,.35)); }
.tech-car-outline img { opacity: .88; }
.scan-line { position: absolute; z-index: 4; top: 0; bottom: 0; width: 2px; background: linear-gradient(transparent, var(--bronze-light), transparent); box-shadow: 0 0 25px rgba(197,154,112,.8); animation: scan 5.5s ease-in-out infinite; }
.technology-copy h2 { color: #f6f0e8; }
.technology-copy p:not(.eyebrow) { font-size: 17px; }

.editorial-intro { max-width: 930px; margin-bottom: 75px; }
.editorial-intro > p:last-child { max-width: 720px; font-size: 18px; }
.process-journey { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-journey article { min-height: 280px; padding: 35px 28px; border-right: 1px solid var(--line); }
.process-journey article:last-child { border: 0; }
.process-journey b, .finance-card > span, .journal-card > span, .tech-steps b { color: var(--bronze); font-size: 10px; letter-spacing: .1em; }
.process-journey h3 { margin-top: 70px; font-size: 22px; }
.process-journey p { font-size: 13px; }
.finance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.finance-card { min-height: 390px; padding: 37px; border-radius: 34px; }
.finance-card h2 { margin-top: 90px; font-size: 35px; }
.journal-feature { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: center; }
.journal-feature-media { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; border-radius: 44px; background: var(--clay); box-shadow: var(--shadow); }
.journal-feature-media img { width: 105%; }
.journal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 90px; }
.journal-card { min-height: 285px; padding: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journal-card h3 { margin-top: 68px; font-size: 24px; }
.journal-card a { color: var(--bronze); font-size: 11px; font-weight: 700; }

.technology-page { background: var(--night); }
.technology-page .site-header:not(.scrolled) .brand-word, .technology-page .site-header:not(.scrolled) .desktop-nav a, .technology-page .site-header:not(.scrolled) .account-link { color: #f3eee6; }
.technology-page .site-header:not(.scrolled) .brand-mark { background: #f1ebe2; color: #1a1917; }
.technology-page .site-header:not(.scrolled) .icon-button, .technology-page .site-header:not(.scrolled) .account-link { background: #292724; box-shadow: 7px 7px 19px rgba(0,0,0,.25), -4px -4px 13px rgba(255,255,255,.025); }
.tech-hero { position: relative; min-height: 1100px; padding: 180px 0; overflow: hidden; background: radial-gradient(circle at 70% 32%, #3b3732, #1b1a18 55%); color: #f6f0e8; }
.tech-grid-art { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 65% 45%, black, transparent 68%); }
.tech-hero-copy { position: relative; z-index: 2; max-width: 920px; }
.tech-hero-copy h1 { font-size: clamp(58px, 7vw, 105px); }
.tech-hero-copy > p:last-child { max-width: 620px; color: #aaa39a; font-size: 18px; }
.tech-live-stage { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: .55fr 1.45fr; gap: 40px; align-items: center; margin-top: 55px; }
.tech-live-model { height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 42px; background: radial-gradient(circle, #48433c, #201f1d 68%); }
.tech-model-copy h2 { color: white; font-size: 47px; }
.tech-model-copy p:not(.eyebrow) { color: #aaa39a; }
.tech-model-copy .text-link { color: white; }
.tech-model-selector { position: absolute; right: 25px; top: 24px; z-index: 6; display: flex; gap: 7px; }
.tech-model-selector button { padding: 8px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px; background: rgba(25,24,22,.65); color: #918b84; font-size: 8px; backdrop-filter: blur(8px); }
.tech-model-selector button.active { border-color: var(--bronze-light); color: white; }
.tech-steps { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.tech-steps article { padding: 35px 24px; border-right: 1px solid var(--line); }
.tech-steps article:last-child { border: 0; }
.tech-steps h3 { margin-top: 55px; }
.tech-steps p { font-size: 12px; }
.tech-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.tech-metrics div { padding: 36px; border-right: 1px solid rgba(255,255,255,.1); }
.tech-metrics div:last-child { border: 0; }
.tech-metrics strong, .tech-metrics span { display: block; }
.tech-metrics strong { color: white; font: 600 32px var(--display); }
.tech-metrics span { color: #8e8880; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.service-details { padding-top: 60px; }
.service-detail { display: grid; grid-template-columns: 70px .8fr 1fr; gap: 6vw; padding: 80px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.service-number { color: var(--bronze); font-size: 11px; }
.service-detail h2 { font-size: clamp(34px, 3.7vw, 56px); }
.service-detail > div:last-child > p { font-size: 17px; }
.service-detail ul { margin: 25px 0; padding: 0; list-style: none; }
.service-detail li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 6vw; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-option { min-height: 210px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border-radius: 26px; border: 1px solid rgba(255,255,255,.25); text-align: left; }
button.contact-option { width: 100%; color: var(--ink); }
.contact-option > span { color: var(--bronze); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-option strong { margin: auto 0; font-family: var(--display); font-size: 18px; }
.contact-option b { font-size: 10px; }
.visit-card { padding: 55px; border-radius: 44px; }
.visit-card h2 { font-size: clamp(36px, 4vw, 58px); }
.visit-card dl { margin: 35px 0; }
.visit-card dl div { display: grid; grid-template-columns: 90px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.visit-card dt { color: var(--bronze-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.visit-card dd { margin: 0; color: #c1bab0; font-size: 13px; }
.faq-list { max-width: 900px; margin-left: auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 27px 45px 27px 0; cursor: pointer; list-style: none; font: 600 19px var(--display); }
.faq-list summary::after { content: "+"; float: right; margin-right: -35px; color: var(--bronze); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 680px; padding-bottom: 22px; }

.account-main { padding-top: 70px; }
.auth-layout { display: grid; grid-template-columns: .75fr 1fr; gap: 9vw; align-items: center; }
.auth-intro p { font-size: 17px; }
.auth-intro ul { padding: 0; list-style: none; color: var(--muted); }
.auth-intro li { padding: 9px 0; }
.auth-intro li::before { content: "✓"; margin-right: 10px; color: var(--bronze); }
.auth-form, .profile-form { padding: 42px; border-radius: 30px; }
.form-heading { display: flex; justify-content: space-between; align-items: start; margin-bottom: 25px; }
.form-heading h3 { margin: 0; font-size: 27px; }
.form-heading p { font-size: 11px; }
.form-heading button { padding: 0; border: 0; background: transparent; color: var(--bronze); font-weight: 700; }
.auth-form label, .profile-form label { display: block; margin-bottom: 17px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.auth-form input, .profile-form input { width: 100%; height: 51px; margin-top: 7px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; background: color-mix(in srgb, var(--paper) 65%, transparent); outline: 0; font-size: 14px; letter-spacing: 0; text-transform: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { min-height: 18px; margin: 10px 0 0; color: var(--bronze); font-size: 11px; }
.account-dashboard { display: grid; grid-template-columns: 280px 1fr; gap: 6vw; align-items: start; }
.account-sidebar { position: sticky; top: 130px; padding: 32px; border-radius: 28px; text-align: center; }
.account-avatar { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 17px; border-radius: 50%; background: var(--ink); color: var(--clay); font: 600 24px var(--display); }
.account-sidebar h2 { margin: 0; font-size: 21px; }
.account-sidebar > p { font-size: 11px; }
.account-sidebar nav { display: grid; margin: 28px 0; text-align: left; }
.account-sidebar nav a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.account-sidebar nav span { color: var(--bronze); }
.account-sidebar > button { border: 0; background: transparent; color: var(--muted); font-size: 11px; }
.account-content { display: grid; gap: 90px; }
.account-section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.account-section-head h2 { margin: 0; font-size: 42px; }
.saved-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.saved-grid .vehicle-media { height: 230px; }
.account-empty { padding: 45px; border-radius: 27px; }
.conversation-list { display: grid; }
.conversation-list > button { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; }
.conversation-list span, .conversation-list small { display: block; }
.conversation-list small, .conversation-list time { color: var(--muted); font-size: 10px; }

.site-footer { padding: 90px 0 25px; background: var(--night); color: #f4eee6; }
.footer-top { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 60px; }
.footer-brand .brand-word { color: white; }
.footer-brand .brand-mark { background: #f4eee6; color: #1c1b19; }
.footer-brand p { max-width: 340px; margin-top: 24px; }
.footer-top h3 { margin-bottom: 20px; color: var(--bronze-light); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-top > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-top a, .footer-top button, .footer-top span { border: 0; background: transparent; color: #aaa39a; font-size: 12px; text-align: left; }
.footer-top a:hover, .footer-top button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 75px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #77716a; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

.floating-chat { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: 62px; height: 62px; border: 0; border-radius: 50% 50% 48% 52% / 52% 45% 55% 48%; background: var(--ink); color: var(--clay); box-shadow: 0 13px 35px rgba(24,21,18,.28); animation: chatMorph 8s ease-in-out infinite; }
.floating-chat span { font-size: 10px; font-weight: 700; }
.floating-chat i { position: absolute; top: 10px; right: 10px; width: 7px; height: 7px; border: 2px solid var(--ink); border-radius: 50%; background: #74a96c; }
.chat-panel { position: fixed; z-index: 200; top: 14px; right: 14px; bottom: 14px; width: min(410px, calc(100vw - 28px)); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 32px; background: var(--clay); box-shadow: 0 30px 80px rgba(20,18,15,.28); transform: translateX(calc(100% + 35px)); transition: transform .65s var(--ease-liquid); overflow: hidden; }
.chat-panel.open { transform: none; }
.chat-head { min-height: 86px; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; background: var(--night); color: white; }
.chat-head > div { display: flex; gap: 11px; align-items: center; }
.online-dot { width: 10px; height: 10px; border-radius: 50%; background: #78a770; box-shadow: 0 0 0 5px rgba(120,167,112,.12); }
.chat-head p { margin: 0; }
.chat-head b, .chat-head small { display: block; }
.chat-head small { color: #aaa39a; font-size: 9px; }
.chat-head button { border: 0; background: transparent; color: white; font-size: 28px; }
.chat-context { display: flex; gap: 10px; align-items: center; margin: 13px 13px 0; padding: 8px; border-radius: 14px; background: var(--clay-light); font-size: 10px; }
.chat-context img { width: 60px; height: 40px; object-fit: contain; }
.chat-messages { flex: 1; display: flex; flex-direction: column; gap: 9px; padding: 20px; overflow-y: auto; }
.message { width: fit-content; max-width: 82%; padding: 11px 14px; border-radius: 17px; font-size: 12px; }
.hale-message { border-bottom-left-radius: 4px; background: var(--clay-light); box-shadow: var(--shadow-soft); }
.customer-message { align-self: flex-end; border-bottom-right-radius: 4px; background: var(--ink); color: var(--clay-light); }
.chat-form { padding: 14px; border-top: 1px solid var(--line); }
.guest-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 8px; }
.guest-fields label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.guest-fields input, .message-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); outline: 0; font-size: 11px; }
.guest-fields input { height: 39px; padding: 0 10px; }
.message-field { display: flex; gap: 8px; align-items: end; }
.message-field textarea { min-height: 51px; max-height: 110px; padding: 12px 47px 10px 12px; resize: vertical; }
.message-field button { width: 37px; height: 37px; margin-left: -52px; margin-bottom: 7px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--ink); color: var(--clay); }
.chat-form .form-status { margin: 4px 2px 0; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 25px; padding: 11px 17px; border-radius: 99px; background: var(--ink); color: var(--clay); box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: 11px; transform: translate(-50%, 90px); transition: transform .45s var(--ease-liquid); }
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-liquid), transform .9s var(--ease-liquid); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal.revealed { opacity: 1; transform: none; }

@keyframes vehicleFloat { 0%,100% { transform: translateX(4%) translateY(0) rotate(.1deg); } 50% { transform: translateX(4%) translateY(-9px) rotate(-.35deg); } }
@keyframes liquidOrbit { to { transform: rotate(360deg); } }
@keyframes scrollLine { 0% { top: -100%; } 50%,100% { top: 100%; } }
@keyframes chatMorph { 0%,100% { border-radius: 50% 50% 48% 52% / 52% 45% 55% 48%; } 50% { border-radius: 44% 56% 53% 47% / 58% 51% 49% 42%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes heroProgress { to { transform: scaleX(1); } }
@keyframes lightSweep { 0%,20% { transform: translateX(-85%) skewX(-15deg); opacity: 0; } 45% { opacity: .8; } 75%,100% { transform: translateX(85%) skewX(-15deg); opacity: 0; } }
@keyframes techTurn { to { transform: rotate(360deg) rotateX(12deg); } }
@keyframes scan { 0%,100% { left: 8%; opacity: 0; } 15%,85% { opacity: 1; } 50% { left: 92%; } }

@media (max-width: 1080px) {
  :root { --container: min(100% - 44px, 1000px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 165px; }
  .hero-copy { max-width: 700px; }
  .hero-vehicle { min-height: 480px; }
  .hero-image-wrap { width: min(850px, 105%); transform: none; }
  .hero-model-stage { width: min(850px, 105%); transform: none; }
  .vehicle-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-grid, .studio-teaser-grid, .vehicle-overview-grid, .story-grid { gap: 6vw; }
  .studio-teaser-grid { grid-template-columns: .85fr 1.15fr; }
  .inventory-toolbar { grid-template-columns: 1.3fr 1fr 1fr; }
  .inventory-toolbar .button { grid-column: 1 / -1; }
  .process-grid, .standard-grid { grid-template-columns: 1fr 1fr; }
  .process-journey, .tech-steps { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(2), .standard-grid article:nth-child(2) { border-right: 0; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-top > div:last-child { display: none; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 32px); }
  body { font-size: 15px; }
  h1 { font-size: clamp(46px, 14vw, 70px); }
  h2 { font-size: clamp(35px, 10vw, 50px); }
  .header-inner { height: 76px; }
  .brand-word b { font-size: 16px; }
  .brand-mark { width: 37px; height: 37px; }
  .theme-toggle { display: none; }
  .account-link { width: 42px; padding: 0; justify-content: center; }
  .account-link span:last-child { display: none; }
  .hero { min-height: auto; padding: 130px 0 120px; }
  .hero-grid { display: flex; flex-direction: column; gap: 20px; }
  .hero-copy { display: contents; }
  .hero-copy > .eyebrow { order: 1; align-self: stretch; }
  .hero-copy > h1 { order: 2; align-self: stretch; }
  .hero-copy > .hero-intro { order: 3; align-self: stretch; }
  .hero-vehicle { order: 4; align-self: stretch; width: 100%; }
  .hero-actions { order: 5; align-self: stretch; }
  .hero-search { order: 6; align-self: stretch; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-quiet { justify-content: flex-start; }
  .hero-search { margin-top: 30px; }
  .hero-vehicle { min-height: 320px; }
  .hero-model-stage { height: 340px; border-radius: 45% 55% 48% 52% / 54% 46% 54% 46%; }
  .hero-vehicle-note { left: 0; right: auto; bottom: 2%; width: 165px; }
  .hero-carousel-controls { left: auto; right: 0; bottom: -5%; }
  .orbit-one { width: 350px; height: 220px; }
  .orbit-two { width: 260px; height: 300px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 0; }
  .cove { margin-top: 45px; }
  .cove::before { top: -48px; height: 98px; }
  .section-heading.split, .page-hero-grid, .manifesto-grid, .studio-teaser-grid, .journal-grid, .sourcing-grid, .vehicle-overview-grid, .model-heading, .story-spec-grid, .story-grid, .values-grid, .contact-grid, .auth-layout, .technology-grid, .journal-feature, .tech-live-stage { grid-template-columns: 1fr; gap: 32px; }
  .heading-aside { justify-self: start; }
  .vehicle-grid, .service-grid, .saved-grid { grid-template-columns: 1fr; }
  .vehicle-media { height: 280px; }
  .manifesto-sticky, .vehicle-summary { position: static; }
  .studio-preview { min-height: 370px; }
  .service-card { min-height: 265px; }
  .technology-art { min-height: 370px; }
  .tech-sphere { width: 300px; }
  .journal-image { min-height: 300px; border-radius: 28px 28px 100px 28px; }
  .page-hero { min-height: 560px; padding: 140px 0 90px; }
  .page-lead { font-size: 16px; }
  .inventory-toolbar { grid-template-columns: 1fr; padding: 16px; }
  .inventory-toolbar .button { grid-column: auto; }
  .vehicle-hero { padding: 115px 0 95px; }
  .vehicle-breadcrumb { margin-bottom: 35px; }
  .vehicle-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .vehicle-price { text-align: left; }
  .vehicle-gallery { margin-top: 35px; }
  .vehicle-main-image { height: 340px; border-radius: 27px; }
  .vehicle-thumbs { justify-content: flex-start; overflow-x: auto; }
  .vehicle-thumbs button { flex: 0 0 70px; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid div:nth-child(odd) { border-right: 0; }
  .vehicle-actions .button { width: 100%; }
  .vehicle-model { height: 480px; border-radius: 28px; }
  .model-help { display: none; }
  .mobile-vehicle-bar { position: fixed; z-index: 80; left: 9px; right: 9px; bottom: 9px; display: grid; grid-template-columns: 1fr auto auto; gap: 6px; align-items: center; padding: 8px 8px 8px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(26,25,23,.92); color: white; box-shadow: 0 15px 40px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
  .mobile-vehicle-bar strong { font-size: 11px; }
  .mobile-vehicle-bar a, .mobile-vehicle-bar button { padding: 9px 13px; border: 0; border-radius: 12px; background: #f5efe7; color: #1b1a18; font-size: 10px; font-weight: 700; }
  .floating-chat { width: 56px; height: 56px; right: 15px; bottom: 15px; }
  .vehicle-page-loading + .site-footer, .vehicle-not-found + .site-footer { margin-bottom: 70px; }
  .studio-hero { min-height: 850px; padding: 135px 0 120px; }
  .studio-stage { min-height: 470px; }
  .studio-model { height: 470px; }
  .studio-car-info { inset: auto 15px 17px; }
  .studio-car-info h2 { font-size: 18px; }
  .studio-selector { justify-content: flex-start; overflow-x: auto; }
  .studio-selector button { flex: 0 0 140px; }
  .process-grid, .standard-grid { grid-template-columns: 1fr; }
  .process-journey, .finance-grid, .journal-cards, .tech-steps, .tech-metrics { grid-template-columns: 1fr; }
  .process-journey article, .tech-steps article, .tech-metrics div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-journey h3, .tech-steps h3 { margin-top: 28px; }
  .finance-card { min-height: 300px; }
  .finance-card h2 { margin-top: 55px; }
  .journal-feature-media { min-height: 320px; }
  .journal-card { min-height: 230px; }
  .journal-card h3 { margin-top: 40px; }
  .tech-hero { min-height: 950px; padding: 140px 0 120px; }
  .tech-live-model { height: 440px; }
  .tech-model-selector { position: static; grid-column: 1 / -1; flex-wrap: wrap; margin-top: -18px; }
  .process-card, .standard-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-card h3, .standard-grid h3 { margin-top: 25px; }
  .story-image { min-height: 350px; border-radius: 28px 28px 100px 28px; }
  .service-detail { grid-template-columns: 38px 1fr; gap: 20px; padding: 60px 0; }
  .service-detail > div:last-child { grid-column: 2; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-option { min-height: 170px; }
  .visit-card { padding: 35px 27px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .account-dashboard { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-content { gap: 65px; }
  .auth-form, .profile-form { padding: 28px 20px; }
  .form-heading { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { display: flex; }
  .footer-bottom { flex-direction: column; }
}

@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; }
}
