:root {
  --bg: #08080A;
  --bg-alt: #0B0B0D;
  --panel: #0A0A0C;
  --panel-alt: #0D0D10;
  --panel-glass: rgba(255, 255, 255, .017);
  --border: #1B1A17;
  --border-soft: #1F1E1A;
  --border-strong: #24221E;
  --border-faint: #171614;
  --border-input: #2A2823;
  --border-panel: #1D1C19;
  --border-nav: #211F1C;
  --fg: #F2EFE9;
  --fg-soft: #E8E3D9;
  --fg-dim: #C6C0B6;
  --fg-mute: #B4AEA3;
  --fg-mute-2: #A9A39A;
  --fg-quiet: #918B82;
  --fg-quiet-2: #8F8A81;
  --fg-faint: #8C8578;
  --fg-faint-2: #7C766B;
  --fg-ghost: #6E6A61;
  --fg-ghost-2: #5E5A53;
  --gold: #C8A96A;
  --gold-light: #E0C68F;
  --gold-soft: #E9D9B4;
  --gold-pale: #E6D3A9;
  --gold-dim: #7A6A44;
  --err-bg: rgba(140, 74, 56, .12);
  --err-border: #8C4A38;
  --err-fg: #E7B4A2;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
::selection { background: var(--gold); color: var(--bg); }
input, select, textarea, button { font: inherit; color: inherit; }
input::placeholder, textarea::placeholder { color: var(--fg-ghost); }
ul { margin: 0; padding: 0; list-style: none; }

@keyframes mpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes mpPop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow { margin: 0 0 22px; font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--fg-faint); }
.section-title { margin: 0; font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.14; }
.section { padding: clamp(88px, 12vw, 150px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border-faint); border-bottom: 1px solid var(--border-faint); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s cubic-bezier(.22, .61, .36, 1), transform .85s cubic-bezier(.22, .61, .36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 34px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  border: 1px solid transparent; cursor: pointer; transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.btn-primary { background: var(--gold); color: #0A0A0B; }
.btn-primary:hover { background: var(--gold-light); color: #0A0A0B; transform: translateY(-2px); }
.btn-secondary { border-color: #33302A; color: var(--fg-soft); background: rgba(10, 10, 12, .45); backdrop-filter: blur(6px); }
.btn-secondary:hover { border-color: var(--gold); color: var(--fg-soft); transform: translateY(-2px); }
.icon-btn {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-input); color: var(--fg-dim); cursor: pointer;
  transition: border-color .3s ease, color .3s ease;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold-soft); }

/* progress bar + nav */
#mp-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, #8A6F35, #E4CE9B); z-index: 90; }

#mp-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80; padding: 26px 0;
  border-bottom: 1px solid transparent; background: transparent; backdrop-filter: blur(0);
  transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}
#mp-nav.is-scrolled {
  padding: 13px 0; background: rgba(8, 8, 10, .72); border-bottom-color: #1A1916;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.mp-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mp-logo { font-family: var(--font-serif); font-size: 21px; letter-spacing: .34em; color: var(--fg); text-transform: uppercase; white-space: nowrap; }
.mp-nav-links { display: none; gap: clamp(18px, 2.2vw, 36px); align-items: center; }
.mp-nav-links a { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-mute); white-space: nowrap; }
.mp-nav-links a:hover { color: var(--fg); }
.mp-nav-actions { display: flex; align-items: center; gap: 14px; }
.mp-lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--border-nav); padding: 3px; }
.mp-lang-switch button {
  padding: 8px 11px; border: 0; background: transparent; cursor: pointer; font-size: 11px; letter-spacing: .16em;
  color: var(--fg-ghost); transition: color .2s ease, background .2s ease;
}
.mp-lang-switch button.is-active { color: var(--gold); background: rgba(200, 169, 106, .09); }
.mp-cta { padding: 13px 24px; border: 1px solid var(--gold); color: var(--gold-soft); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; transition: background .35s ease, color .35s ease; }
.mp-cta:hover { background: var(--gold); color: #0A0A0B; }
.mp-burger {
  display: flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-input); cursor: pointer;
}
.mp-burger span { display: block; width: 16px; height: 1px; background: #E4DED2; }
.mp-mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 18px 28px 6px; }
.mp-mobile-menu.is-open { display: flex; }
.mp-mobile-menu a { padding: 12px 0; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-dim); border-bottom: 1px solid #1A1916; }
.mp-mobile-menu a:last-child { border-bottom: 0; }

@media (min-width: 1080px) {
  .mp-nav-links { display: flex; }
  .mp-burger { display: none; }
  .mp-mobile-menu { display: none !important; }
}

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding: 140px 0 64px; }
.hero mp-night { position: absolute; inset: 0; z-index: 0; }
.hero-scrim-x { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 8, 10, .94) 0%, rgba(8, 8, 10, .78) 34%, rgba(8, 8, 10, .22) 62%, rgba(8, 8, 10, .1) 100%); }
.hero-scrim-y { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 8, 10, .55) 0%, rgba(8, 8, 10, 0) 26%, rgba(8, 8, 10, .55) 84%, #08080A 100%); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .35; background-image: repeating-linear-gradient(115deg, rgba(200, 169, 106, .05) 0 1px, transparent 1px 46px); }
.hero-content { position: relative; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 30px; font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: #A79E8B; }
.hero-eyebrow-line { display: block; width: 54px; height: 1px; background: var(--gold); }
.hero-title { margin: 0; font-family: var(--font-serif); font-weight: 400; font-size: clamp(42px, 8.2vw, 104px); line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; max-width: 15ch; text-shadow: 0 6px 40px rgba(8, 8, 10, .7); }
.hero-body { margin: 34px 0 0; max-width: 52ch; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.75; color: var(--fg-mute); font-weight: 300; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 46px; }
.hero-scroll-hint { display: flex; align-items: center; gap: 12px; margin-top: 72px; color: var(--fg-ghost); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; }
.hero-scroll-hint span:first-child { display: block; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: mpFloat 2.6s ease-in-out infinite; }

/* about */
.about-grid { display: grid; gap: clamp(48px, 7vw, 96px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.about-title { max-width: 22ch; letter-spacing: -.01em; }
.about-divider { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 40px 0; }
.about-text p { margin: 0 0 20px; font-size: 16px; line-height: 1.85; color: var(--fg-mute-2); font-weight: 300; max-width: 56ch; text-wrap: pretty; }
.about-text p:last-child { margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat { padding: clamp(26px, 3.4vw, 44px); background: var(--panel-glass); }
.stat-value { font-family: var(--font-serif); font-size: clamp(34px, 4.6vw, 54px); color: var(--gold-pale); }
.stat-label { margin-top: 12px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-faint); }

/* services */
.services-header { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(46px, 6vw, 78px); }
.services-lead { margin: 0; max-width: 40ch; font-size: 15px; line-height: 1.8; color: var(--fg-quiet-2); font-weight: 300; }
.services-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); background: var(--border-faint); border: 1px solid var(--border-faint); }
.service-card { position: relative; padding: clamp(30px, 3.6vw, 46px); background: var(--panel); transition: transform .5s cubic-bezier(.22, .61, .36, 1), background .5s ease; }
.service-card:hover { transform: translateY(-6px); background: var(--panel-alt); }
.service-line { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--gold), rgba(200, 169, 106, 0)); transform: scaleY(0); transform-origin: top; transition: transform .55s cubic-bezier(.22, .61, .36, 1); }
.service-card:hover .service-line { transform: scaleY(1); }
.service-mark { display: block; width: 12px; height: 12px; border: 1px solid var(--gold); transform: rotate(45deg); margin-bottom: 28px; }
.service-card h3 { margin: 0 0 14px; font-family: var(--font-serif); font-weight: 500; font-size: 23px; color: var(--fg); }
.service-card p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--fg-quiet); font-weight: 300; }

/* vehicle */
.vehicle-grid { display: grid; gap: clamp(44px, 6vw, 84px); grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); align-items: center; }
.vehicle-photo {
  position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--border-panel); background-color: #0C0C0E;
  background-image: repeating-linear-gradient(135deg, rgba(200, 169, 106, .07) 0 1px, transparent 1px 13px);
  display: flex; align-items: flex-end; padding: 24px;
}
.vehicle-photo span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint-2); background: rgba(8, 8, 10, .72); padding: 8px 12px; }
.vehicle-info h2 { margin: 0 0 18px; font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.14; }
.vehicle-info h2 em { font-style: italic; color: var(--gold-light); }
.vehicle-body { margin: 0 0 38px; font-size: 15.5px; line-height: 1.8; color: var(--fg-quiet); font-weight: 300; max-width: 46ch; }
.feature-list { display: grid; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 17px 0; border-top: 1px solid var(--border); font-size: 15px; color: var(--fg-dim); font-weight: 300; }
.feature-item:last-child { border-bottom: 1px solid var(--border); }
.feature-item .dot { width: 5px; height: 5px; background: var(--gold); flex: none; }

/* why */
.why-grid { display: grid; gap: clamp(32px, 4vw, 56px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.why-num { font-family: var(--font-serif); font-size: 15px; color: var(--gold-dim); letter-spacing: .2em; }
.why-divider { width: 100%; height: 1px; background: var(--border-strong); margin: 20px 0 22px; }
.why-item h3 { margin: 0 0 12px; font-size: 17px; font-weight: 500; color: var(--fg); }
.why-item p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--fg-quiet-2); font-weight: 300; }

/* how */
.steps-grid { position: relative; display: grid; gap: clamp(36px, 4vw, 48px); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step { position: relative; padding-top: 34px; border-top: 1px solid var(--border-strong); }
.step-dot { position: absolute; top: -4px; left: 0; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.step-num { font-family: var(--font-serif); font-size: 13px; letter-spacing: .3em; color: var(--gold-dim); margin-bottom: 16px; }
.step h3 { margin: 0 0 12px; font-family: var(--font-serif); font-weight: 500; font-size: 24px; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--fg-quiet-2); font-weight: 300; }

/* testimonials */
.testimonials-header { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(40px, 5vw, 64px); }
.testimonials-nav { display: flex; gap: 10px; }
.testimonial-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; }
.testimonial-track::-webkit-scrollbar { height: 3px; }
.testimonial-track::-webkit-scrollbar-thumb { background: #3A362E; }
.testimonial-card { flex: 0 0 min(430px, 84%); scroll-snap-align: start; margin: 0; padding: clamp(30px, 3.4vw, 44px); border: 1px solid var(--border-panel); background: rgba(255, 255, 255, .016); backdrop-filter: blur(6px); }
.testimonial-mark { font-family: var(--font-serif); font-size: 40px; line-height: 1; color: #3E3626; }
.testimonial-card blockquote { margin: 14px 0 28px; font-size: 16.5px; line-height: 1.8; color: var(--fg-dim); font-weight: 300; }
.testimonial-card figcaption { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-faint); }

/* faq */
.faq-grid { display: grid; gap: clamp(40px, 6vw, 80px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.faq-title { max-width: 18ch; }
.faq-item { border-top: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0;
  background: transparent; border: 0; text-align: left; cursor: pointer; font-size: 16.5px; color: var(--fg-soft);
}
.faq-icon { flex: none; font-size: 20px; color: var(--gold); transition: transform .3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0 0 26px; font-size: 15px; line-height: 1.8; color: var(--fg-quiet-2); font-weight: 300; max-width: 58ch; }

/* contact */
.contact-grid { display: grid; gap: clamp(48px, 6vw, 88px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.contact-title { max-width: 20ch; }
.contact-lead { margin: 0 0 44px; font-size: 15.5px; line-height: 1.8; color: var(--fg-quiet-2); font-weight: 300; max-width: 44ch; }
.contact-details { display: grid; }
.contact-details > div { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--border-soft); }
.contact-details > div:last-child { border-bottom: 1px solid var(--border-soft); }
.contact-details dt { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-faint); }
.contact-details dd { margin: 0; font-size: 15px; color: var(--fg-dim); }

.contact-panel { position: relative; padding: clamp(26px, 3.6vw, 48px); border: 1px solid var(--border-panel); background: rgba(255, 255, 255, .018); backdrop-filter: blur(10px); }
.contact-success {
  display: none; position: absolute; inset: 0; z-index: 3; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  padding: 34px; text-align: center; background: rgba(9, 9, 11, .94);
}
.contact-panel.is-sent .contact-success { display: flex; animation: mpPop .5s cubic-bezier(.22, .61, .36, 1) both; }
.contact-success-icon { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-pale); font-size: 22px; }
.contact-success h3 { margin: 0; font-family: var(--font-serif); font-weight: 400; font-size: 26px; }
.contact-success p { margin: 0; max-width: 34ch; font-size: 14.5px; line-height: 1.75; color: var(--fg-quiet-2); font-weight: 300; }
.contact-success button { margin-top: 6px; padding: 13px 26px; background: transparent; border: 1px solid #33302A; color: var(--fg-soft); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; }
.contact-success button:hover { border-color: var(--gold); }

.contact-form { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; gap: 9px; }
.form-field--wide { grid-column: span 2; }
.form-field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-faint); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 0; background: transparent; border: 0; border-bottom: 1px solid var(--border-input); outline: none; font-size: 15px;
  transition: border-color .2s ease;
}
.form-field select { color-scheme: dark; }
.form-field select option { background: var(--bg-alt); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field textarea { resize: vertical; }
.form-error { grid-column: span 2; margin: 0; padding: 12px 14px; border-left: 2px solid var(--err-border); background: var(--err-bg); font-size: 13px; line-height: 1.6; color: var(--err-fg); }
.form-submit { grid-column: span 2; margin-top: 10px; padding: 19px 30px; background: var(--gold); border: 0; color: #0A0A0B; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background .35s ease; }
.form-submit:hover { background: var(--gold-light); }
.form-note { grid-column: span 2; margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--fg-ghost); }

/* footer */
.site-footer { padding: clamp(56px, 7vw, 88px) 0 34px; background: var(--bg); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); padding-bottom: 44px; border-bottom: 1px solid var(--border-faint); }
.footer-brand-name { font-family: var(--font-serif); font-size: 20px; letter-spacing: .34em; text-transform: uppercase; color: var(--fg); }
.footer-slogan { margin: 18px 0 0; max-width: 30ch; font-size: 14px; line-height: 1.75; color: var(--fg-faint-2); font-weight: 300; }
.footer-links { display: grid; gap: 12px; align-content: start; }
.footer-links a { font-size: 13.5px; color: var(--fg-quiet-2); }
.footer-links a:hover { color: var(--fg); }
.footer-contact { display: grid; gap: 12px; align-content: start; font-size: 13.5px; color: var(--fg-quiet-2); }
.footer-social { display: flex; gap: 10px; align-items: flex-start; flex-wrap: wrap; }
.social-btn { padding: 11px 16px; border: 1px solid var(--border-nav); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #9A948A; transition: border-color .3s ease, color .3s ease; }
.social-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer-rights { margin: 26px 0 0; font-size: 12px; letter-spacing: .06em; color: var(--fg-ghost-2); }

/* whatsapp float */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 85; display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 22px; background: rgba(12, 12, 14, .72); border: 1px solid #3A3529; color: var(--gold-soft);
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5); transition: border-color .35s ease, transform .35s ease;
}
.whatsapp-float:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.whatsapp-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
