:root {
  --wine: #6f2535;
  --wine-dark: #471725;
  --wine-light: #925063;
  --olive: #59634e;
  --sand: #ede3d3;
  --sand-light: #f8f4ed;
  --ink: #272421;
  --muted: #6d6862;
  --white: #fff;
  --line: rgba(39, 36, 33, .12);
  --shadow: 0 24px 70px rgba(38, 25, 21, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; color: #fff; }
.site-header.scrolled { background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 10px 30px rgba(20,14,11,.08); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); }
.scrolled .brand-mark { background: var(--sand-light); border-color: var(--line); }
.brand-mark svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.08rem; letter-spacing: .01em; }
.brand small { margin-top: 4px; font-size: .72rem; opacity: .72; text-transform: uppercase; letter-spacing: .1em; }
.main-nav { display: flex; gap: 25px; margin-left: auto; align-items: center; }
.main-nav a { position: relative; font-size: .94rem; font-weight: 650; opacity: .9; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: currentColor; transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: inline-flex; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 3px; }
.scrolled .language-switch { border-color: var(--line); }
.language-switch button { border: 0; background: transparent; color: inherit; border-radius: 999px; padding: 6px 9px; font-weight: 750; font-size: .72rem; cursor: pointer; }
.language-switch button.active { color: var(--ink); background: #fff; }
.scrolled .language-switch button.active { color: #fff; background: var(--wine); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: currentColor; border-radius: 3px; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

.btn { appearance: none; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 23px; font-weight: 750; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .9rem; }
.btn-large { min-height: 56px; padding-inline: 28px; }
.btn-primary { color: #fff; background: var(--wine); box-shadow: 0 14px 30px rgba(111,37,53,.25); }
.btn-primary:hover { background: var(--wine-dark); }
.site-header:not(.scrolled) .nav-cta { color: var(--wine-dark); background: #fff; box-shadow: none; }
.btn-ghost { color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-outline { background: transparent; color: var(--wine); border: 1px solid rgba(111,37,53,.34); }
.btn-whatsapp { width: 100%; background: #188b55; color: #fff; box-shadow: 0 15px 30px rgba(24,139,85,.2); }
.btn-whatsapp:hover, .floating-whatsapp:hover { background: #117a49; }
.text-link { border: 0; padding: 0; display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--wine); font-weight: 800; cursor: pointer; }
.text-link .icon { width: 17px; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

:where(a, button, input, select, textarea, summary):focus-visible { outline: 3px solid #d29a55; outline-offset: 3px; }

.hero { position: relative; min-height: 800px; color: #fff; overflow: hidden; display: grid; align-items: center; }
.hero-art, .hero-overlay { position: absolute; inset: 0; }
.hero-art > svg { display: none; }
.hero-gallery-trigger { width: 100%; height: 100%; background: #665f57; }
.hero-gallery-trigger img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { pointer-events: none; background: linear-gradient(90deg, rgba(27,21,19,.86) 0%, rgba(27,21,19,.57) 48%, rgba(27,21,19,.25) 100%), linear-gradient(0deg, rgba(20,18,16,.46), transparent 52%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .72fr); gap: 72px; align-items: center; padding-top: 112px; padding-bottom: 82px; }
.hero-copy { max-width: 730px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--wine); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 850; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: #f0d7bf; }
.hero .eyebrow { color: #f2dac5; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.07; letter-spacing: -.025em; }
h1 { margin: 22px 0; font-size: clamp(3rem, 6vw, 5.55rem); max-width: 900px; }
h2 { margin: 16px 0; font-size: clamp(2.25rem, 4.5vw, 4rem); }
h3 { line-height: 1.25; }
.hero-copy > p { max-width: 690px; color: rgba(255,255,255,.83); font-size: 1.14rem; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 32px; }
.hero-gallery-button { min-height: 42px; padding: 0 4px; display: inline-flex; align-items: center; gap: 8px; border: 0; color: rgba(255,255,255,.86); background: transparent; font-weight: 750; cursor: pointer; }
.hero-gallery-button:hover { color: #fff; }
.hero-gallery-button .icon { width: 20px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 29px; color: rgba(255,255,255,.82); font-size: .9rem; }
.hero-trust > span { display: flex; align-items: center; gap: 7px; }
.hero-trust i, .driver-points i { font-style: normal; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); }
.hero-trust i .icon, .driver-points i .icon { width: 14px; height: 14px; stroke-width: 2.5; }
.quick-quote { border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.12); border-radius: 28px; padding: 30px; backdrop-filter: blur(15px); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.quick-label { margin-bottom: 5px; color: #f0d7bf; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.quick-quote h2 { margin: 5px 0 23px; font-size: 2rem; }
.quick-options { display: grid; gap: 10px; }
.quick-option { display: grid; grid-template-columns: 46px 1fr 18px; align-items: center; gap: 12px; width: 100%; padding: 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; color: #fff; background: rgba(255,255,255,.08); text-align: left; cursor: pointer; transition: .2s ease; }
.quick-option:hover { background: rgba(255,255,255,.16); transform: translateX(3px); }
.quick-option strong, .quick-option small { display: block; }
.quick-option small { margin-top: 2px; color: rgba(255,255,255,.65); font-size: .77rem; }
.quick-arrow { width: 18px; opacity: .65; transition: transform .2s ease; }
.quick-option:hover .quick-arrow { transform: translateX(3px); opacity: 1; }
.icon-circle { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--wine-dark); background: #f0dbc7; }
.icon-circle .icon { width: 22px; height: 22px; }
.quick-note { margin: 18px 0 0; color: rgba(255,255,255,.65); font-size: .78rem; }

.stats-strip { background: var(--wine); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: 28px 24px; display: flex; align-items: center; gap: 12px; justify-content: center; border-right: 1px solid rgba(255,255,255,.14); }
.stats-grid > div:last-child { border: 0; }
.stats-grid strong { font-family: Georgia, serif; font-size: 1.45rem; }
.stats-grid span { color: rgba(255,255,255,.72); font-size: .85rem; }

.section { padding: 110px 0; scroll-margin-top: 80px; }
.section-soft { background: var(--sand-light); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.split-heading { display: grid; grid-template-columns: 1fr .72fr; max-width: none; align-items: end; gap: 80px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--sand-light); color: var(--wine); }
.service-icon .icon { width: 25px; height: 25px; }
.service-card h3 { margin: 23px 0 12px; font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .93rem; min-height: 90px; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.route-card { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 18px 60px rgba(39,36,33,.08); }
.route-visual { height: 235px; overflow: hidden; }
.route-visual > svg { display: none; }
.route-gallery-trigger { position: relative; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; color: #fff; background: #777; cursor: zoom-in; }
.route-gallery-trigger img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .4s ease; }
.route-gallery-trigger > span { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: rgba(28,24,21,.72); box-shadow: 0 8px 25px rgba(0,0,0,.2); backdrop-filter: blur(8px); font-size: .78rem; font-weight: 800; }
.route-gallery-trigger > span .icon { width: 17px; }
.route-card:hover .route-gallery-trigger img { transform: scale(1.055); filter: saturate(1.08); }
.route-content { padding: 28px; }
.route-tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--sand-light); color: var(--wine); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.route-content h3 { margin: 17px 0 10px; font-family: Georgia, serif; font-size: 1.55rem; }
.route-content p, .route-content li { color: var(--muted); font-size: .9rem; }
.route-content ul { list-style: none; padding: 0; margin: 18px 0 23px; display: grid; gap: 7px; }
.route-content li { position: relative; padding-left: 24px; }
.route-content li::before { content: ""; position: absolute; left: 1px; top: .48em; width: 12px; height: 7px; border-left: 2px solid var(--wine); border-bottom: 2px solid var(--wine); transform: rotate(-45deg); }
.legal-note { margin: 27px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }

.vehicle-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; }
.vehicle-visual { min-height: 570px; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.vehicle-scenery { position: absolute; inset: 0; }
.vehicle-scenery svg { width: 100%; height: 100%; }
.vehicle-placeholder { position: absolute; inset: auto 8% 7%; display: grid; justify-items: center; }
.vehicle-placeholder svg { filter: drop-shadow(0 20px 22px rgba(30,25,22,.24)); }
.vehicle-placeholder span { margin-top: 14px; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(32,29,26,.7); font-size: .74rem; backdrop-filter: blur(5px); }
.vehicle-copy > p { color: var(--muted); font-size: 1.05rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 31px 0 34px; }
.feature-list > div { display: flex; gap: 12px; }
.feature-list > div > span { flex: 0 0 39px; width: 39px; height: 39px; border-radius: 12px; display: grid; place-items: center; color: var(--wine); background: var(--sand-light); }
.feature-list > div > span .icon { width: 21px; height: 21px; }
.feature-list strong, .feature-list small { display: block; }
.feature-list small { margin-top: 3px; color: var(--muted); font-size: .78rem; }

.driver-section { color: #fff; background: var(--wine-dark); overflow: hidden; position: relative; }
.driver-section::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; right: -180px; top: -240px; border: 100px solid rgba(255,255,255,.035); }
.driver-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.driver-copy > p { max-width: 660px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.driver-points { display: grid; gap: 14px; margin: 28px 0; }
.driver-points > span { display: flex; align-items: center; gap: 10px; }
.driver-legal { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem !important; }
.driver-card { border-radius: 28px; padding: 34px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.driver-avatar { width: 210px; aspect-ratio: 1; margin: auto auto 22px; border-radius: 50%; display: grid; place-items: center; color: var(--wine-dark); background: linear-gradient(145deg, #e6d0b8, #bca082); border: 8px solid rgba(255,255,255,.12); font-family: Georgia, serif; font-size: 2.2rem; }
.driver-name { margin-bottom: 2px; color: #fff !important; font-family: Georgia, serif; font-size: 1.4rem !important; }
.driver-card p { margin-bottom: 5px; }
.driver-card small { color: rgba(255,255,255,.55); }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding: 34px; border-top: 1px solid var(--line); }
.step > span { display: inline-block; color: var(--wine); font-family: Georgia, serif; font-size: 2.2rem; }
.step h3 { margin: 22px 0 9px; font-size: 1.18rem; }
.step p { color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 38px 23px 0; cursor: pointer; list-style: none; position: relative; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font-size: 1.7rem; color: var(--wine); font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 45px; color: var(--muted); }

.contact-section { padding: 110px 0; color: #fff; background: var(--olive); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy > p { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.contact-direct { margin-top: 35px; display: grid; gap: 4px; }
.contact-direct span { color: #e9d2bd; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; font-weight: 800; }
.contact-direct strong { font-family: Georgia, serif; font-size: 1.7rem; }
.contact-direct small { color: rgba(255,255,255,.55); }
.quote-form { padding: 34px; color: var(--ink); background: #fff; border-radius: 26px; box-shadow: 0 30px 80px rgba(15,23,17,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #4c4742; font-size: .8rem; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #fcfbf9; min-height: 49px; padding: 11px 13px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--wine-light); box-shadow: 0 0 0 3px rgba(111,37,53,.1); }
.privacy-check { display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: 8px !important; font-weight: 500 !important; }
.privacy-check input { width: 17px; height: 17px; min-height: 0; margin-top: 2px; }
.form-status { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: .78rem; }

.site-footer { color: #fff; background: #24251f; padding: 70px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .65fr; gap: 70px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.08); }
.footer-grid p { max-width: 460px; margin-top: 22px; color: rgba(255,255,255,.56); }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 7px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: .75rem; }

.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; border: 0; border-radius: 999px; min-height: 54px; padding: 0 20px; display: flex; align-items: center; gap: 8px; color: #fff; background: #188b55; box-shadow: 0 14px 35px rgba(16,67,42,.28); font-weight: 800; cursor: pointer; }
.floating-whatsapp .icon { width: 22px; height: 22px; stroke-width: 1.9; }

.gallery-dialog { width: min(1120px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 32px); padding: 0; overflow: hidden; border: 0; border-radius: 26px; color: #fff; background: #171513; box-shadow: 0 35px 110px rgba(0,0,0,.55); }
.gallery-dialog::backdrop { background: rgba(17,14,12,.82); backdrop-filter: blur(8px); }
.gallery-dialog[open] { animation: gallery-in .25s ease both; }
.gallery-shell { display: grid; grid-template-rows: auto minmax(0,1fr) auto; height: min(790px, calc(100dvh - 32px)); }
.gallery-topbar, .gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; }
.gallery-topbar { border-bottom: 1px solid rgba(255,255,255,.1); }
.gallery-kicker { margin: 0 0 2px; color: #dfb88f; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.gallery-topbar h2 { margin: 0; font-family: inherit; font-size: 1.15rem; font-weight: 750; letter-spacing: 0; }
.gallery-close, .gallery-nav { display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; }
.gallery-close { flex: 0 0 42px; width: 42px; height: 42px; }
.gallery-close:hover, .gallery-nav:hover { background: rgba(255,255,255,.17); }
.gallery-stage { position: relative; min-height: 0; overflow: hidden; display: grid; grid-template-columns: 64px minmax(0,1fr) 64px; align-items: center; gap: 10px; padding: 16px; background: #0c0b0a; }
.gallery-stage figure { min-width: 0; height: 100%; margin: 0; overflow: hidden; display: flex; flex-direction: column; }
.gallery-image { width: 100%; height: auto; min-height: 0; flex: 1 1 auto; object-fit: contain; }
.gallery-stage figcaption { min-height: 34px; padding-top: 9px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.72); font-size: .76rem; }
.gallery-credit { color: #dfb88f; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.gallery-nav { width: 48px; height: 48px; justify-self: center; }
.gallery-footer { min-height: 82px; border-top: 1px solid rgba(255,255,255,.1); }
.gallery-thumbs { display: flex; gap: 8px; min-width: 0; overflow-x: auto; scrollbar-width: thin; }
.gallery-thumb { flex: 0 0 64px; width: 64px; height: 46px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 8px; background: #333; opacity: .55; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: #dfb88f; opacity: 1; }
.gallery-counter { flex: 0 0 auto; color: rgba(255,255,255,.62); font-size: .78rem; font-variant-numeric: tabular-nums; }
body.gallery-open { overflow: hidden; }

@keyframes gallery-in { from { opacity: 0; transform: translateY(12px) scale(.985); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav-cta { display: none; }
  .main-nav { gap: 17px; }
  .hero-grid { grid-template-columns: 1fr .65fr; gap: 35px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .route-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .route-card:last-child .route-visual { height: 100%; min-height: 380px; }
}

@media (max-width: 850px) {
  :root { --container: min(100% - 30px, 720px); }
  .site-header { background: rgba(31,25,22,.45); backdrop-filter: blur(10px); }
  .site-header.scrolled { background: rgba(255,255,255,.97); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav-actions { margin-left: 0; }
  .main-nav { position: absolute; left: 15px; right: 15px; top: 72px; display: grid; gap: 0; margin: 0; padding: 9px; border-radius: 18px; color: var(--ink); background: #fff; box-shadow: var(--shadow); transform: translateY(-12px) scale(.98); opacity: 0; visibility: hidden; transition: .2s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:hover { background: var(--sand-light); }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 70px; }
  .hero-copy { max-width: 660px; }
  .quick-quote { max-width: 600px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 85px 0; }
  .split-heading, .vehicle-grid, .driver-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .vehicle-visual { order: 2; min-height: 500px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card:last-child { grid-column: auto; display: block; }
  .route-card:last-child .route-visual { height: 235px; min-height: 0; }
  .driver-card { max-width: 480px; }
  .steps-grid { gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 24px); }
  .brand strong { font-size: .93rem; }
  .brand small { font-size: .62rem; }
  .brand-mark { width: 39px; height: 39px; }
  .nav-wrap { gap: 8px; }
  .nav-actions { gap: 5px; }
  .language-switch button { padding: 5px 7px; }
  .hero-grid { padding-top: 124px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 10px; }
  .quick-quote { padding: 22px 18px; }
  .stats-grid > div { padding: 20px 10px; display: grid; text-align: center; gap: 3px; }
  .stats-grid strong { font-size: 1.15rem; }
  .stats-grid span { font-size: .72rem; }
  .section { padding: 70px 0; }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .section-heading { margin-bottom: 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: 0; }
  .route-visual { height: 210px; }
  .vehicle-visual { min-height: 390px; }
  .vehicle-placeholder { inset-inline: 3%; }
  .vehicle-placeholder span { font-size: .63rem; }
  .feature-list { grid-template-columns: 1fr; }
  .driver-card { padding: 25px; }
  .driver-avatar { width: 170px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 26px 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 23px 17px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .floating-whatsapp { width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span:last-child { display: none; }
  .gallery-dialog { width: 100%; max-height: 100dvh; border-radius: 0; }
  .gallery-shell { height: 100dvh; }
  .gallery-stage { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 2px; padding: 8px 4px; }
  .gallery-nav { width: 38px; height: 38px; }
  .gallery-stage figcaption { display: grid; gap: 2px; padding-inline: 6px; }
  .gallery-footer { padding: 12px; }
  .gallery-thumb { flex-basis: 56px; width: 56px; height: 42px; }
}
