:root {
  --bg: #09090b;
  --surface: #111216;
  --surface-2: #18191f;
  --light: #f5f5f3;
  --white: #ffffff;
  --text: #15161a;
  --muted: #6f7179;
  --line: rgba(255,255,255,.12);
  --red: #e31b23;
  --red-dark: #b90f16;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--white); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 10px; background: white; color: black; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 10px; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(8,8,10,.76); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 6px; letter-spacing: .03em; }
.brand-main { font-weight: 900; font-style: italic; font-size: 1.08rem; }
.brand-sub { color: #c8c8cc; font-weight: 700; font-size: .66rem; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .94rem; font-weight: 700; }
.main-nav a:not(.nav-cta) { color: #dedee2; }
.main-nav a:hover { color: white; }
.nav-cta { background: var(--red); padding: 12px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--red-dark); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: white; display: block; margin: 5px; }
.hero { min-height: 820px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('../images/hero.jpg') center 58% / cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,7,.98) 0%, rgba(5,5,7,.84) 40%, rgba(5,5,7,.22) 75%, rgba(5,5,7,.25) 100%), linear-gradient(0deg, rgba(5,5,7,.72), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-top: 110px; }
.eyebrow { margin: 0 0 14px; color: #fff; font-size: .76rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 3px; background: var(--red); margin-right: 12px; vertical-align: middle; }
.eyebrow.dark { color: var(--text); }
h1,h2,h3,p { margin-top: 0; }
h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(3rem, 6.5vw, 6.1rem); line-height: .96; letter-spacing: -.055em; text-transform: uppercase; font-weight: 950; }
h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.7); }
h2 { font-size: clamp(2.15rem, 4vw, 4.25rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 900; }
h3 { line-height: 1.2; }
.hero-lead { max-width: 680px; font-size: 1.2rem; color: #d9d9de; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 850; transition: .2s ease; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.button-secondary { border: 1px solid rgba(255,255,255,.36); background: rgba(255,255,255,.06); color: white; }
.button-secondary:hover { background: white; color: #111; }
.button-whatsapp { background: #1f8b4c; color: white; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 52px; color: #efeff2; font-size: .9rem; font-weight: 750; }
.hero-points span::before { content: "✓"; color: var(--red); margin-right: 8px; }
.quick-contact { position: relative; z-index: 3; margin-top: -55px; }
.quick-grid { background: var(--red); display: grid; grid-template-columns: repeat(3,1fr); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.quick-grid a { padding: 25px 28px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.24); transition: background .2s; }
.quick-grid a:last-child { border-right: 0; }
.quick-grid a:hover { background: rgba(0,0,0,.12); }
.quick-grid strong { font-size: 1.04rem; }
.quick-grid span { font-size: .82rem; opacity: .8; }
.section { padding: 120px 0; }
.section-light { background: var(--light); color: var(--text); }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; max-width: 650px; }
.cards { display: grid; }
.services-grid { grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { padding: 34px; border: 1px solid #e2e2df; border-radius: var(--radius); background: white; min-height: 270px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: #111; color: white; font-weight: 900; font-size: .8rem; margin-bottom: 34px; }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 0; }
.showroom { background: #0c0d10; }
.showroom-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }
.showroom-head h2 { max-width: 760px; margin-bottom: 0; }
.text-link { font-weight: 850; white-space: nowrap; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.4); }
.text-link span { color: var(--red); }
.vehicle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vehicle-card-link { display: block; color: inherit; text-decoration: none; border-radius: var(--radius); }
.vehicle-card-link:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.vehicle-card { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.vehicle-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.vehicle-card:hover img { transform: scale(1.035); }
.vehicle-card figcaption { position: absolute; left: 18px; bottom: 18px; background: rgba(7,7,9,.78); backdrop-filter: blur(8px); padding: 10px 14px; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.small-note { margin: 22px 0 0; color: #a6a7ad; font-size: .83rem; }
.commitments-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.commitment-intro p:last-child { color: var(--muted); }
.commitment-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 34px 38px; }
.commitment-list > div { display: flex; gap: 16px; }
.commitment-list span { flex: 0 0 35px; width: 35px; height: 35px; background: var(--red); color: white; display: grid; place-items: center; border-radius: 50%; font-weight: 900; }
.commitment-list p { color: var(--muted); margin: 0; }
.commitment-list strong { color: var(--text); }
.garage-section { background: linear-gradient(135deg, #111218, #09090b); }
.garage-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.garage-copy > p:not(.eyebrow) { color: #b8b8bf; max-width: 700px; font-size: 1.05rem; }
.hours { border-top: 1px solid var(--line); margin-top: 38px; padding-top: 25px; max-width: 620px; }
.hours h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; }
.hours p { display: flex; justify-content: space-between; gap: 20px; margin: 0; padding: 9px 0; color: #c6c6cc; border-bottom: 1px solid rgba(255,255,255,.07); }
.address-panel { background: white; color: var(--text); border-radius: var(--radius); padding: 50px; box-shadow: var(--shadow); }
.panel-label { color: var(--red); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: .74rem; }
.address-panel h3 { font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -.035em; }
.address-panel > p:not(.panel-label) { color: var(--muted); }
.contact-section { background: var(--red); padding: 90px 0; }
.contact-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-inner p { margin-bottom: 0; }
.contact-section .eyebrow::before { background: white; }
.contact-section .button-primary { background: white; color: #111; }
.contact-section .button-primary:hover { background: #eee; }
.site-footer { background: #050506; padding: 75px 0 25px; color: #b6b6bc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 70px; }
.footer-brand { color: white; margin-bottom: 20px; }
.footer-grid h3 { color: white; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: .8rem; }
.mobile-bar { display: none; }
.legal-page { background: var(--light); color: var(--text); min-height: 100vh; }
.legal-header { background: #09090b; padding: 26px 0; }
.legal-content { width: min(840px, calc(100% - 40px)); margin: auto; padding: 90px 0; }
.legal-content h1 { color: var(--text); font-size: clamp(2.6rem, 7vw, 5rem); }
.legal-content h2 { font-size: 1.5rem; margin-top: 42px; }
.legal-content p, .legal-content li { color: #54565e; }
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 82px; left: 20px; right: 20px; background: #101115; padding: 22px; border-radius: 18px; flex-direction: column; align-items: stretch; gap: 10px; transform: translateY(-20px); opacity: 0; pointer-events: none; transition: .2s; box-shadow: var(--shadow); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 10px; }
  .nav-cta { text-align: center; }
  .hero { min-height: 760px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,5,7,.94), rgba(5,5,7,.48)), linear-gradient(0deg, rgba(5,5,7,.8), transparent); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .commitments-grid, .garage-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header .container { width: calc(100% - 28px); }
  .brand-main { font-size: .96rem; }
  .brand-sub { font-size: .58rem; }
  .hero { min-height: 720px; }
  .hero-media { background-position: 60% center; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-points { gap: 8px 20px; margin-top: 38px; }
  .quick-contact { margin-top: -25px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); padding: 18px 22px; }
  .section { padding: 80px 0; }
  .services-grid, .vehicle-grid, .commitment-list { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .showroom-head { align-items: flex-start; flex-direction: column; }
  .address-panel { padding: 32px 26px; }
  .hours p { flex-direction: column; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; padding-bottom: 72px; }
  .mobile-bar { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: 10px; background: #111216; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; display: grid; grid-template-columns: 1fr 1.4fr; padding: 7px; box-shadow: 0 10px 40px rgba(0,0,0,.35); }
  .mobile-bar a { text-align: center; padding: 11px 8px; border-radius: 10px; font-weight: 850; font-size: .86rem; }
  .mobile-bar a:last-child { background: var(--red); }
}
