:root {
    --ink: #171714;
    --ink-soft: #262520;
    --paper: #f3efe5;
    --paper-bright: #fbf8f1;
    --sand: #c9ad7f;
    --copper: #a6532f;
    --red: #8d332c;
    --slate: #657078;
    --olive: #77755c;
    --blue: #526a7f;
    --sage: #758478;
    --clay: #9b6f55;
    --charcoal: #3d3d3a;
    --line: rgba(23, 23, 20, .16);
    --line-light: rgba(255, 255, 255, .2);
    --display: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shell: min(1380px, calc(100vw - 64px));
    --radius: 3px;
    --shadow: 0 22px 60px rgba(25, 22, 17, .12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.nav-open {
    position: fixed;
    inset-inline: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--copper); color: #fff; }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.skip-link {
    position: fixed;
    inset-inline-start: 16px;
    top: 12px;
    z-index: 999;
    transform: translateY(-160%);
    padding: 10px 16px;
    background: var(--paper-bright);
    color: var(--ink);
    border: 2px solid var(--copper);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e6a36b; outline-offset: 4px; }

.site-header {
    position: absolute;
    top: 0;
    inset-inline: 0;
    z-index: 100;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.16);
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    position: fixed;
    top: 0;
    color: var(--ink);
    background: rgba(248, 244, 235, .94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(20,18,15,.08);
    border-bottom-color: var(--line);
}
.nav-shell { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 84px; gap: 32px; }
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo-set { position: relative; display: block; width: 236px; height: 54px; direction: ltr; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.brand-logo-color, .brand-logo-compact { display: none; }
.site-header.is-scrolled .brand-logo-reverse { display: none; }
.site-header.is-scrolled .brand-logo-color.brand-logo-full { display: block; }
.footer-logo { width: 236px; height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.6vw, 28px); }
.main-nav a { position: relative; font-size: 13px; font-weight: 650; letter-spacing: .01em; }
.main-nav a::after { content: ""; position: absolute; inset-inline-start: 0; inset-inline-end: 100%; bottom: -9px; height: 1px; background: currentColor; transition: inset-inline-end .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { inset-inline-end: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-switcher { position: relative; }
.language-switcher > button { width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 750; }
.language-menu { position: absolute; top: calc(100% + 14px); inset-inline-end: 0; display: grid; min-width: 180px; padding: 8px; background: var(--paper-bright); color: var(--ink); box-shadow: var(--shadow); border: 1px solid var(--line); visibility: hidden; opacity: 0; transform: translateY(-6px); transition: .2s ease; }
.language-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.language-menu a { padding: 9px 11px; font-size: 13px; }
.language-menu a:hover { background: rgba(183,104,62,.1); }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: .015em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 9px 16px; }
.button-ink { background: var(--ink); color: #fff; }
.site-header:not(.is-scrolled) .button-ink { background: #fff; color: var(--ink); }
.button-copper { background: var(--copper); color: #fff; }
.button-copper:hover { background: #995435; }
.button-whatsapp { background: #315b43; color: #fff; }
.button-whatsapp:hover { background: #264936; }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 16px; font-size: 13px; font-weight: 760; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link-light { color: #fff; }

.hero { position: relative; min-height: 830px; overflow: hidden; color: #fff; background: #5d4939; }
.hero-media { position: absolute; inset: 0; background: url("../images/atlas-road-hero.webp") center center / cover no-repeat; background-image: image-set(url("../images/atlas-road-hero.avif") type("image/avif"), url("../images/atlas-road-hero.webp") type("image/webp"), url("../images/atlas-road-hero.png") type("image/png")); transform: scale(1.008); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,15,.86) 0%, rgba(17,17,15,.62) 34%, rgba(17,17,15,.12) 67%, rgba(17,17,15,.18) 100%), linear-gradient(0deg, rgba(15,15,13,.5), transparent 44%); }
.hero-grid { position: relative; z-index: 2; min-height: 830px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .55fr); gap: 9vw; align-items: end; padding-top: 190px; padding-bottom: 116px; }
.hero-copy { max-width: 780px; }
.eyebrow { margin: 0 0 20px; color: var(--copper); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow-light { color: #e4b48e; }
.hero h1 { max-width: 770px; margin: 0; font-family: var(--display); font-size: clamp(54px, 6.7vw, 108px); line-height: .93; letter-spacing: -.055em; font-weight: 400; text-wrap: balance; }
.hero-intro { max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero-panel { align-self: end; border-top: 1px solid rgba(255,255,255,.48); }
.panel-index { display: block; padding: 12px 0 20px; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .16em; }
.hero-panel-row { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.17); }
.hero-panel-row strong { font-size: 10px; letter-spacing: .12em; color: #e4b48e; }
.hero-panel-row span { font-family: var(--display); font-size: 22px; line-height: 1.2; }
.hero-caption { position: absolute; z-index: 3; bottom: 24px; inset-inline: 0; display: flex; justify-content: space-between; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.section { position: relative; padding: 126px 0; }
.section-heading { margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: 10vw; align-items: end; }
.section-heading h2, .route-copy h2, .final-cta h2, .placeholder-page h1 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.2vw, 76px); line-height: 1; font-weight: 400; letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p, .split-heading > p { margin: 0; color: #625e55; font-size: 17px; }
.bike-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.bike-card { min-width: 0; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.1); transition: transform .25s ease, box-shadow .25s ease; }
.bike-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bike-visual { position: relative; display: grid; min-height: 300px; place-items: center; overflow: hidden; background: #fff; }
.bike-visual::before, .bike-visual::after { content: ""; position: absolute; border: 1px solid rgba(23,23,20,.12); border-radius: 50%; }
.bike-visual::before { width: 350px; height: 350px; left: -170px; top: -180px; }
.bike-visual::after { width: 230px; height: 230px; right: -100px; bottom: -120px; }
.bike-media { position: relative; margin: 0; min-width: 0; }
.bike-picture { display: block; min-width: 0; }
.bike-picture img { display: block; max-width: 100%; height: auto; }
.bike-media-card { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; }
.bike-media-card .bike-picture, .bike-media-card img { width: 100%; height: 100%; }
.bike-media-card img { padding: 18px; object-fit: contain; background: #fff; transition: transform .35s ease; }
.bike-card:hover .bike-media-card img { transform: scale(1.025); }
.bike-ghost { position: relative; z-index: 1; font-family: var(--display); font-style: italic; font-size: clamp(74px, 8vw, 122px); letter-spacing: -.08em; color: rgba(23,23,20,.13); }
.photo-note { position: absolute; z-index: 2; inset-inline-start: 12px; bottom: 12px; max-width: calc(100% - 24px); padding: 6px 8px; color: #4f493f; background: rgba(248,246,239,.9); border: 1px solid rgba(23,23,20,.08); font-size: 8px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.bike-card-body { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; padding: 22px 20px 18px; }
.bike-card-body p { margin: 0 0 2px; color: #777064; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bike-card h3 { margin: 0; font-family: var(--display); font-size: 24px; font-weight: 400; letter-spacing: -.025em; }
.bike-price { text-align: end; line-height: 1; }
.bike-price span { display: block; margin-bottom: 4px; color: #777064; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.bike-price strong { font-family: var(--display); font-size: 24px; font-weight: 400; }
.bike-price small { font-size: 10px; color: #777064; }
.bike-meta { display: flex; justify-content: space-between; gap: 10px; padding: 13px 20px; border-top: 1px solid var(--line); color: #6e685f; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.card-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 760; }
.card-link:hover { background: var(--ink); color: #fff; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.card-actions .card-link { border-top: 0; border-inline-end: 1px solid var(--line); }
.card-request { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; color: #fff; background: var(--copper); font-size: 11px; font-weight: 760; }
.card-request:hover { background: #874228; }
.section-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 28px; color: #716b61; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

.section-dark { color: #fff; background: var(--ink); overflow: hidden; }
.section-dark::after { content: ""; position: absolute; right: -16vw; top: -25vw; width: 62vw; height: 62vw; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 6vw rgba(255,255,255,.018), 0 0 0 12vw rgba(255,255,255,.012); }
.principles-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.principle { min-height: 260px; padding: 28px clamp(20px, 3.2vw, 52px) 20px 0; border-right: 1px solid var(--line-light); }
.principle:not(:first-child) { padding-left: clamp(20px, 3.2vw, 52px); }
.principle:last-child { border-right: 0; }
.principle > span { color: #d69568; font-size: 10px; letter-spacing: .14em; }
.principle h3 { margin: 68px 0 14px; font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.1; }
.principle p { max-width: 340px; margin: 0; color: rgba(255,255,255,.58); }

.advance-booking { background: var(--paper-bright); }
.advance-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(58px, 9vw, 140px); align-items: start; }
.advance-copy { position: sticky; top: 110px; }
.advance-copy h2 { max-width: 620px; margin-bottom: 24px; }
.advance-copy > p:not(.eyebrow) { max-width: 590px; margin: 0 0 32px; color: #6b655c; font-size: 17px; }
.advance-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.advance-step { display: grid; grid-template-columns: 66px 1fr; gap: 20px; min-height: 190px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.advance-step > span { color: var(--copper); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.advance-step h3 { margin: 42px 0 10px; font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1.12; }
.advance-step p { max-width: 620px; margin: 0; color: #6b655c; }

.trust-strip { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--line); }
.trust-item { padding: 22px clamp(12px, 1.6vw, 22px) 4px 0; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-item strong { display: block; margin-bottom: 10px; font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--ink); }
.trust-item p { margin: 0; color: #6b655c; font-size: 12.5px; line-height: 1.45; }

.faq-preview { background: var(--paper-bright); }
.faq-preview-shell { display: flex; flex-direction: column; gap: 18px; }
.faq-preview .faq-list-compact { border-top: 1px solid var(--line); }
.faq-list-compact summary { font-size: 18px; padding: 18px 0; }
.faq-list-compact details p { margin-bottom: 20px; }
.faq-preview-route { background: #d9cbb5; }

.route-preview { background: #ded2bd; overflow: hidden; }
.route-preview::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(166,83,47,.08), transparent 48%); }
.route-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: center; }
.route-copy h2 { max-width: 520px; margin-bottom: 38px; }
.home-route-plan { width: 100%; max-width: 760px; margin-inline-start: auto; }
.home-route-plan .route-plan-media { aspect-ratio: 760 / 460; }
.home-route-plan .route-plan-stages { background: rgba(243,239,229,.58); }

.home-gallery { background: #e7dccb; }
.gallery-grid { display: grid; gap: 14px; }
.gallery-grid-home { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 118px; }
.gallery-card { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; margin: 0; overflow: hidden; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.1); }
.gallery-card > a { position: relative; display: block; min-height: 0; overflow: hidden; background: #b9aa95; }
.gallery-card .gallery-picture, .gallery-card .gallery-picture img { width: 100%; height: 100%; }
.gallery-card .gallery-picture img { object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-card:hover .gallery-picture img { transform: scale(1.025); filter: saturate(1.03) contrast(1.02); }
.gallery-card figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 14px 16px; background: var(--paper-bright); font-size: 11px; line-height: 1.45; }
.gallery-card figcaption strong { font-family: var(--display); font-size: 18px; font-weight: 400; }
.gallery-card figcaption span { color: #6f685e; text-align: end; }
.gallery-card figcaption a { text-decoration: underline; text-underline-offset: 3px; }
.gallery-expand { position: absolute; inset-inline-end: 14px; top: 14px; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: rgba(17,17,15,.74); border: 1px solid rgba(255,255,255,.34); }
.gallery-home-1 { grid-column: span 7; grid-row: span 4; }
.gallery-home-2 { grid-column: span 5; grid-row: span 4; }
.gallery-home-3 { grid-column: span 4; grid-row: span 4; }
.gallery-home-4 { grid-column: span 8; grid-row: span 4; }
.gallery-home-5 { grid-column: span 5; grid-row: span 4; }
.gallery-home-6 { grid-column: span 7; grid-row: span 4; }
.gallery-section-foot { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.gallery-section-foot p { max-width: 920px; margin: 0; color: #665f55; font-size: 12px; }
.gallery-page-section { background: #e7dccb; }
.gallery-scope { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; max-width: 960px; margin-bottom: 42px; padding: 20px 22px; background: rgba(255,255,255,.38); border: 1px solid var(--line); }
.gallery-scope span { color: var(--copper); font-size: 22px; line-height: 1; }
.gallery-scope p { margin: 0; color: #5f594f; }
.gallery-grid-full { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.gallery-grid-full .gallery-card > a { aspect-ratio: 4 / 3; }
.gallery-fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-fleet-card { min-width: 0; background: #fff; border: 1px solid var(--line); }
.gallery-fleet-card .bike-media, .gallery-fleet-card .bike-picture { display: block; width: 100%; }
.gallery-fleet-card .bike-picture { height: 330px; overflow: hidden; }
.gallery-fleet-card img { width: 100%; height: 100%; padding: 22px; object-fit: contain; background: #fff; transition: transform .35s ease; }
.gallery-fleet-card:hover img { transform: scale(1.025); }
.gallery-fleet-card > span { display: flex; justify-content: space-between; gap: 18px; padding: 18px 20px; border-top: 1px solid var(--line); }
.gallery-fleet-card > span strong { font-family: var(--display); font-size: 22px; font-weight: 400; }
.gallery-fleet-card > span i { font-style: normal; }

.gallery-dialog { width: min(1180px, calc(100vw - 40px)); max-width: none; height: min(860px, calc(100vh - 40px)); max-height: none; padding: 0; overflow: hidden; color: #fff; background: #10100e; border: 1px solid rgba(255,255,255,.25); }
.gallery-dialog::backdrop { background: rgba(7,7,6,.9); backdrop-filter: blur(5px); }
.gallery-dialog-stage { position: absolute; inset: 58px 82px 84px; display: grid; place-items: center; overflow: hidden; }
.gallery-dialog-stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.gallery-dialog-close, .gallery-dialog-nav { position: absolute; z-index: 2; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); cursor: pointer; }
.gallery-dialog-close { inset-inline-end: 16px; top: 14px; width: 42px; height: 42px; font-size: 25px; }
.gallery-dialog-nav { top: 50%; width: 48px; height: 64px; transform: translateY(-50%); font-size: 21px; }
.gallery-dialog-previous { inset-inline-start: 16px; }
.gallery-dialog-next { inset-inline-end: 16px; }
.gallery-dialog-caption { position: absolute; inset-inline: 82px; bottom: 24px; display: flex; justify-content: space-between; gap: 24px; align-items: baseline; }
.gallery-dialog-caption strong { font-family: var(--display); font-size: 22px; font-weight: 400; }
.gallery-dialog-caption a { color: #d9a47d; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }

.final-cta { color: #fff; background: #472821; }
.final-cta-grid { display: grid; grid-template-columns: 1.1fr .7fr; gap: 12vw; align-items: center; }
.final-cta h2 { max-width: 720px; }
.final-cta-grid > div:last-child p { margin: 0 0 30px; color: rgba(255,255,255,.72); font-size: 17px; }
.placeholder-page { min-height: 70vh; padding-top: 220px; background: var(--paper-bright); }
.placeholder-page p:not(.eyebrow) { max-width: 620px; margin: 26px 0 34px; color: #69645a; font-size: 18px; }

.site-footer { padding: 84px 0 26px; color: rgba(255,255,255,.7); background: #11110f; }
.footer-grid { display: grid; grid-template-columns: 2.2fr repeat(3, 1fr); gap: 5vw; padding-bottom: 72px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 360px; margin-top: 22px; color: rgba(255,255,255,.5); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 20px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,.78); font-size: 12px; }
.footer-contact span { flex-basis: 100%; }
.footer-grid h2 { margin: 7px 0 20px; color: #d9a47d; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin-bottom: 10px; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; line-height: 1.5; }
.footer-bottom p:first-child { max-width: 760px; }
.creator-credit { display: flex; justify-content: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.56); font-size: 11px; letter-spacing: .02em; text-align: center; }
.creator-credit a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.mobile-actions { display: none; }
.contact-dock { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.contact-dock a { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-width: 158px; min-height: 48px; padding: 0 16px; color: #fff; background: var(--ink); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); box-shadow: var(--shadow); font-size: 12px; }
.contact-dock-whatsapp { background: #315b43 !important; }
.consent-banner { position: fixed; z-index: 120; left: 20px; bottom: 20px; display: grid; grid-template-columns: minmax(240px, 500px) auto; align-items: center; gap: 24px; max-width: calc(100vw - 40px); padding: 18px 20px; background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 20px 80px rgba(0,0,0,.36); }
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 0; color: #d9d0c2; font-size: 13px; }
.consent-banner p a { color: #fff; text-decoration: underline; }
.consent-banner > div { display: flex; gap: 8px; }
.consent-banner .button { min-height: 42px; padding: 0 14px; white-space: nowrap; }

.inner-hero { position: relative; min-height: 610px; padding: 210px 0 84px; overflow: hidden; color: #fff; background: var(--ink); }
.inner-hero::after { content: ""; position: absolute; inset: auto -12vw -28vw auto; width: 66vw; height: 66vw; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.018), 0 0 0 14vw rgba(255,255,255,.012); }
.inner-topo { position: absolute; inset: 0; opacity: .14; background-image: repeating-radial-gradient(ellipse at 86% 82%, transparent 0 58px, #c8aa82 59px 60px, transparent 61px 86px); }
.inner-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); align-items: end; gap: 10vw; min-height: 310px; }
.inner-hero h1 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(54px, 7vw, 108px); font-weight: 400; line-height: .94; letter-spacing: -.055em; text-wrap: balance; }
.inner-intro { margin: 0 0 8px; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.65; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 54px; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.breadcrumbs a:hover { color: #fff; }

.filter-bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; margin-bottom: 38px; padding: 14px 0; border-block: 1px solid var(--line); }
.filter-bar > span, .filter-bar > strong { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.filter-bar > div { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-bar button { padding: 8px 13px; border: 1px solid transparent; background: transparent; font-size: 12px; cursor: pointer; }
.filter-bar button:hover, .filter-bar button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalogue-grid .bike-card[hidden] { display: none; }
.catalogue-note { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; margin-top: 36px; padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.22); }
.catalogue-note > span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-note p { margin: 0; color: #665f55; }
.catalogue-note small { white-space: nowrap; color: #7a7165; }

.model-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: start; }
.bike-media-model { overflow: hidden; background: #fff; border: 1px solid rgba(23,23,20,.1); }
.bike-media-model .bike-picture { display: grid; min-height: 520px; place-items: center; }
.bike-media-model img { width: 100%; height: 520px; padding: clamp(18px, 3vw, 42px); object-fit: contain; background: #fff; }
.bike-media-model figcaption { padding: 16px 20px; color: #645e55; background: #f3eee4; border-top: 1px solid var(--line); font-size: 10px; line-height: 1.55; }
.bike-photo-placeholder { position: relative; display: grid; place-items: center; overflow: hidden; min-height: 520px; background: linear-gradient(145deg, color-mix(in srgb, var(--bike-accent) 32%, #e8e0d2), #d8cbb6); }
.bike-photo-placeholder::before, .bike-photo-placeholder::after { content: ""; position: absolute; border: 1px solid rgba(23,23,20,.13); border-radius: 50%; }
.bike-photo-placeholder::before { width: 650px; height: 650px; left: -320px; top: -370px; }
.bike-photo-placeholder::after { width: 470px; height: 470px; right: -240px; bottom: -280px; }
.bike-photo-placeholder .bike-ghost { font-size: clamp(110px, 13vw, 200px); }
.thumbnail-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 10px; }
.thumbnail-strip span { aspect-ratio: 16/10; background: linear-gradient(145deg, #ded4c4, #c9bca8); }
.model-summary { position: sticky; top: 110px; padding-top: 8px; }
.model-status { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: #5e584f; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.model-status span { width: 8px; height: 8px; border: 1px solid var(--copper); border-radius: 50%; box-shadow: 0 0 0 4px rgba(166,83,47,.12); }
.model-price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.model-price > span { margin-inline-end: auto; color: #746d62; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.model-price strong { font-family: var(--display); font-size: 56px; font-weight: 400; letter-spacing: -.05em; }
.model-price small { color: #746d62; }
.model-spec-label { margin: 28px 0 2px; color: var(--copper); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.spec-grid div { padding: 20px 12px 20px 0; border-bottom: 1px solid var(--line); }
.spec-grid div:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
.spec-grid dt { margin-bottom: 8px; color: #7a7369; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.spec-grid dd { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.4; }
.fine-print, .table-note { color: #746e64; font-size: 11px; line-height: 1.55; }
.button-wide { width: 100%; }
.model-summary .button { margin-top: 18px; }

.model-terms-section .section-heading { margin-bottom: 42px; }
.model-terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.terms-card { min-height: 430px; padding: 28px 36px 30px 0; border-inline-end: 1px solid var(--line); }
.terms-card:not(:first-child) { padding-inline-start: 36px; }
.terms-card:last-child { border-inline-end: 0; }
.terms-card > span { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.terms-card h3 { margin: 62px 0 25px; font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1.05; }
.terms-card dl { margin: 0; }
.terms-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.terms-card dt { color: #6f675c; font-size: 11px; }
.terms-card dd { margin: 0; font-size: 13px; font-weight: 780; text-align: end; }
.terms-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.terms-card li { position: relative; padding-inline-start: 20px; font-size: 13px; line-height: 1.45; }
.terms-card li::before { content: ""; position: absolute; inset-inline-start: 0; top: .55em; width: 6px; height: 6px; background: var(--copper); border-radius: 50%; }
.terms-card > p { margin: 24px 0 0; padding-top: 18px; color: #6d655a; border-top: 1px solid var(--line); font-size: 11px; line-height: 1.55; }
.model-extras-section { background: var(--paper-bright); }
.model-extras-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 8vw; align-items: start; }
.model-extra-form { padding: 30px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.model-extra-form fieldset, .calculator-extras, .booking-extra-fieldset { margin: 0; padding: 0; border: 0; }
.extra-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.extra-option, .booking-extra-option { display: block; cursor: pointer; }
.extra-option input, .booking-extra-option input { position: absolute; opacity: 0; pointer-events: none; }
.extra-option > span, .booking-extra-option > span { display: flex; min-height: 76px; flex-direction: column; justify-content: space-between; gap: 12px; padding: 16px; background: var(--paper-bright); border: 1px solid var(--line); transition: border-color .18s, background .18s, box-shadow .18s; }
.extra-option strong, .booking-extra-option strong { font-size: 13px; }
.extra-option em, .booking-extra-option em { color: #746b60; font-size: 11px; font-style: normal; }
.extra-option input:checked + span, .booking-extra-option input:checked + span { color: #fff; background: var(--ink); border-color: var(--ink); }
.extra-option input:checked + span em, .booking-extra-option input:checked + span em { color: rgba(255,255,255,.68); }
.extra-option input:focus-visible + span, .booking-extra-option input:focus-visible + span { outline: 3px solid rgba(166,83,47,.35); outline-offset: 2px; }

.extras-catalogue-section { background: #e4dac8; }
.extras-bike-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.extras-bike-card { display: flex; min-height: 470px; flex-direction: column; padding: 28px; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.1); }
.extras-bike-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.extras-bike-head span { color: #756d62; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.extras-bike-head h3 { margin: 7px 0 0; font-family: var(--display); font-size: 30px; font-weight: 400; }
.extras-bike-head > strong { font-family: var(--display); font-size: 22px; font-weight: 400; white-space: nowrap; }
.extras-bike-head small { color: #756d62; font-family: var(--sans); font-size: 9px; }
.extras-conditions { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
.extras-conditions div { padding-inline-end: 12px; border-inline-end: 1px solid var(--line); }
.extras-conditions div:not(:first-child) { padding-inline-start: 12px; }
.extras-conditions div:last-child { border-inline-end: 0; }
.extras-conditions dt { color: #756d62; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.extras-conditions dd { margin: 7px 0 0; font-size: 12px; font-weight: 780; }
.extras-price-list { display: grid; gap: 0; margin: 18px 0 24px; padding: 0; list-style: none; }
.extras-price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.extras-price-list strong { font-size: 11px; white-space: nowrap; }
.extras-bike-card .card-link { margin-top: auto; }
.model-terms-footnote { margin: 26px 0 0; color: #6c6459; font-size: 11px; line-height: 1.6; }
.commercial-policy-section { background: #e4dac8; }
.compare-table.commercial-policy-table { min-width: 900px; background: rgba(255,255,255,.22); }
.commercial-policy-table th:first-child { width: 25%; }
.commercial-policy-table td:nth-child(2) { width: 17%; }
.commercial-policy-table td:nth-child(3) { width: 52%; }
.matrix-list { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.matrix-list li { position: relative; padding-inline-start: 16px; line-height: 1.45; }
.matrix-list li::before { content: ""; position: absolute; inset-inline-start: 0; top: .52em; width: 5px; height: 5px; background: var(--copper); border-radius: 50%; }
.commercial-policy-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 6vw; margin-top: 24px; color: #655e54; }
.commercial-policy-notes p { margin: 0; font-size: 12px; line-height: 1.6; }
.commercial-policy-notes small { grid-column: 1 / -1; padding-top: 14px; border-top: 1px solid var(--line); font-size: 10px; }

.section-muted { background: #e4dac8; }
.split-content { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(40px, 4.7vw, 66px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.sticky-copy > p:last-child { max-width: 520px; margin: 24px 0 0; color: #655f55; font-size: 17px; }
.verification-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.verification-list li { display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; align-items: center; min-height: 92px; border-bottom: 1px solid var(--line); }
.verification-list li > span { color: var(--copper); font-size: 10px; letter-spacing: .12em; }
.verification-list strong { font-family: var(--display); font-size: 23px; font-weight: 400; }
.verification-list em { color: #7b7367; font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: .09em; }

.evidence-section { background: var(--paper-bright); }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.evidence-grid article { min-height: 290px; padding: 26px 40px 24px 0; border-right: 1px solid var(--line); }
.evidence-grid article:not(:first-child) { padding-left: 40px; }
.evidence-grid article:last-child { border-right: 0; }
.evidence-grid span { color: var(--copper); font-size: 10px; letter-spacing: .1em; }
.evidence-grid h2 { margin: 78px 0 13px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.evidence-grid p { margin: 0; color: #716a5f; }

.table-wrap { overflow-x: auto; border-top: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 1300px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 21px 16px; border-bottom: 1px solid var(--line); text-align: start; vertical-align: middle; }
.compare-table thead th { color: #776f64; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.compare-table tbody th { font-family: var(--display); font-size: 22px; font-weight: 400; }
.compare-bike-cell { display: grid; grid-template-columns: 72px minmax(130px, 1fr); gap: 14px; align-items: center; }
.bike-media-compare { width: 72px; height: 58px; background: #fff; border: 1px solid var(--line); }
.bike-media-compare .bike-picture, .bike-media-compare img { width: 100%; height: 100%; }
.bike-media-compare img { padding: 4px; object-fit: contain; }
.compare-table tbody th .compare-bike-cell > span { display: block; color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 400; line-height: 1.1; }
.compare-table tbody th .compare-bike-cell small { display: block; margin-bottom: 4px; color: #847b6f; font-family: var(--sans); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.compare-table tbody td { font-size: 13px; }
.compare-table tbody td:nth-child(2) { font-family: var(--display); font-size: 20px; }
.compare-table small { font-family: var(--sans); color: #777064; font-size: 9px; }
.compare-table a { display: grid; width: 35px; height: 35px; place-items: center; background: var(--ink); color: #fff; }
.compare-table tr:hover { background: rgba(255,255,255,.32); }

.selector-section { background: #ded2bd; }
.selector-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6vw; align-items: start; }
.selector-form, .calculator, .booking-form-wrap { padding: 32px; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.1); box-shadow: var(--shadow); }
.selector-basics { margin-bottom: 4px; }
.selector-form fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.selector-form legend { margin-bottom: 10px; font-size: 12px; font-weight: 750; }
.choice { display: inline-flex; margin-inline-end: 8px; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: 9px 13px; border: 1px solid var(--line); font-size: 12px; cursor: pointer; }
.choice input:checked + span { background: var(--ink); color: #fff; }
.selector-results-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.selector-results-head span { max-width: 360px; color: #6d665c; font-size: 13px; }
.selector-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
.selector-cards article { position: relative; min-height: 170px; padding: 18px; background: rgba(255,255,255,.45); border: 1px solid var(--line); transition: opacity .2s, transform .2s; }
.selector-cards article:not(.is-match) { display: none; }
.selector-cards article.is-match { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; }
.bike-media-selector { width: 120px; height: 110px; background: #fff; border: 1px solid var(--line); }
.bike-media-selector .bike-picture, .bike-media-selector img { width: 100%; height: 100%; }
.bike-media-selector img { padding: 7px; object-fit: contain; }
.selector-bike-copy > span { color: #7a7166; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.selector-cards h2 { margin: 5px 0 2px; font-family: var(--display); font-size: 26px; font-weight: 400; }
.selector-cards p { margin: 0; color: #6b6358; font-size: 12px; }
.selector-cards a { position: absolute; inset-inline-end: 18px; top: 18px; }
.selector-continue { margin-top: 16px; visibility: hidden; }
.selector-continue.is-visible { visibility: visible; }

.pricing-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: start; }
.price-list { border-top: 1px solid var(--line); }
.price-list a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.price-list a:hover { padding-inline: 14px; background: rgba(255,255,255,.3); }
.price-list span { font-family: var(--display); font-size: 22px; }
.price-list strong { font-family: var(--display); font-size: 21px; font-weight: 400; }
.price-list small { color: #777064; font-family: var(--sans); font-size: 10px; }
.calculator { position: sticky; top: 110px; }
.calculator-extras { display: grid; gap: 7px; margin-top: 4px; }
.calculator-extras legend, .booking-extra-fieldset legend { margin-bottom: 10px; font-size: 11px; font-weight: 750; }
.calc-extra-option { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; min-height: 42px; padding: 9px 10px; background: rgba(255,255,255,.55); border: 1px solid var(--line); cursor: pointer; }
.calc-extra-option input { width: 17px; height: 17px; margin: 0; accent-color: var(--copper); }
.calc-extra-option span { font-size: 11px; }
.calc-extra-option strong { font-size: 10px; white-space: nowrap; }
.calculator-breakdown, .calculator-terms, .booking-bike-terms { margin: 18px 0 0; }
.calculator-breakdown div, .calculator-terms div, .booking-bike-terms div { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.calculator-breakdown dt, .calculator-terms dt, .booking-bike-terms dt { color: #71695f; font-size: 10px; }
.calculator-breakdown dd, .calculator-terms dd, .booking-bike-terms dd { margin: 0; font-size: 11px; font-weight: 780; text-align: end; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label, .booking-form legend { font-size: 11px; font-weight: 750; letter-spacing: .02em; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid rgba(23,23,20,.26); border-radius: 0; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: 2px solid rgba(166,83,47,.22); outline-offset: 1px; }
.field [aria-invalid="true"] { border-color: #a5362d; }
.estimate-output { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin: 28px 0 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.estimate-output span { max-width: 130px; color: #71695f; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.estimate-output strong { font-family: var(--display); font-size: 46px; font-weight: 400; }
.calculator > p:not(.eyebrow) { color: #71695f; font-size: 11px; }

.booking-section { background: #ded2bd; }
.booking-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 6vw; align-items: start; }
.booking-aside { position: sticky; top: 110px; }
.booking-aside h2 { margin: 0 0 40px; font-family: var(--display); font-size: 42px; font-weight: 400; line-height: 1.05; }
.booking-aside ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.booking-aside li { display: flex; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.booking-aside li span { color: var(--copper); font-size: 9px; }
.booking-estimate { margin-top: 28px; padding: 22px; color: #fff; background: var(--ink); }
.booking-estimate span, .booking-estimate small { display: block; color: rgba(255,255,255,.58); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.booking-estimate strong { display: block; margin: 8px 0; font-family: var(--display); font-size: 44px; font-weight: 400; }
.booking-form-wrap { padding: 42px; }
.form-section { padding: 0 0 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.form-section h2 { margin: 0 0 26px; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field-full { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 0 0 24px; color: #5f594f; font-size: 12px; }
.consent input { margin-top: 3px; }
.field-honeypot { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { margin-bottom: 28px; padding: 18px 20px; border-inline-start: 4px solid; }
.form-notice p { margin: 5px 0 0; }
.form-notice ul { margin: 10px 0 0; padding-inline-start: 20px; }
.field-error { display: block; margin-top: 7px; color: #9f2f26; font-size: 12px; }
.field-help { margin: -8px 0 20px; color: #6a6358; font-size: 12px; }
.form-notice.success { background: #e3ecdf; border-color: #4d7046; }
.form-notice.error { background: #f1dfda; border-color: #a5362d; }
.booking-live-estimate { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 20px; padding: 20px 22px; color: #fff; background: var(--ink); }
.booking-live-estimate span { color: rgba(255,255,255,.58); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.booking-live-estimate strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--display); font-size: 38px; font-weight: 400; line-height: 1; }
.booking-live-estimate small { color: rgba(255,255,255,.72); font-size: 11px; }
.booking-extra-fieldset { margin-bottom: 20px; }
.booking-extra-fieldset > p { margin: 0; padding: 14px; color: #6c645a; background: rgba(255,255,255,.45); border: 1px dashed var(--line); font-size: 12px; }
.booking-extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.booking-extra-option > span { min-height: 68px; }
.booking-bike-terms { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 0; margin-bottom: 20px; padding: 14px 18px; background: rgba(255,255,255,.46); border: 1px solid var(--line); }
.booking-bike-terms div { display: block; padding: 0 14px; border-bottom: 0; border-inline-end: 1px solid var(--line); }
.booking-bike-terms div:first-child { padding-inline-start: 0; }
.booking-bike-terms div:last-child { padding-inline-end: 0; border-inline-end: 0; }
.booking-bike-terms dd { margin-top: 6px; text-align: start; }
.booking-bike-preview { display: grid; grid-template-columns: 1fr; align-items: center; margin: 0 0 20px; padding: 14px; background: #fff; border: 1px solid var(--line); }
.booking-bike-preview[hidden] { display: none; }
.booking-bike-preview picture { display: grid; min-height: 240px; place-items: center; }
.booking-bike-preview img { display: block; width: 100%; height: 240px; padding: 8px; object-fit: contain; }
.booking-optional { margin: -8px 0 28px; border: 1px solid var(--line); background: rgba(255,255,255,.36); }
.booking-optional summary { position: relative; display: flex; flex-direction: column; gap: 3px; padding: 20px; padding-inline-end: 54px; cursor: pointer; list-style: none; }
.booking-optional summary::-webkit-details-marker { display: none; }
.booking-optional summary::after { content: "+"; position: absolute; inset-inline-end: 22px; top: 22px; font-size: 22px; line-height: 1; }
.booking-optional[open] summary::after { content: "−"; }
.booking-optional summary span { font-size: 13px; font-weight: 780; }
.booking-optional summary small { color: #6a6358; font-size: 11px; }
.booking-optional-body { padding: 0 20px; border-top: 1px solid var(--line); }
.booking-optional-body .form-section { padding-top: 28px; }
.booking-whatsapp-submit { margin-top: 10px; }
.model-actions { display: grid; gap: 9px; }
.quick-contact { margin-top: 28px; padding: 22px; color: #fff; background: var(--ink); }
.quick-contact h3 { margin: 0 0 8px; font-family: var(--display); font-size: 25px; font-weight: 400; }
.quick-contact > p { margin: 0 0 18px; color: rgba(255,255,255,.62); font-size: 12px; }
.quick-contact-list { display: grid; gap: 9px; }
.quick-contact-row { padding: 13px 0; border-top: 1px solid var(--line-light); }
.quick-contact-row strong { display: block; margin-bottom: 8px; font-size: 14px; }
.quick-contact-row > div { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.quick-contact-row a { display: grid; min-height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.26); font-size: 11px; font-weight: 750; }
.quick-contact-row a:hover { background: #fff; color: var(--ink); }
.quick-contact-row .quick-whatsapp { border-color: #538267; background: #315b43; }
.quick-email { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line-light); }
.quick-email span { color: #d49a70; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.quick-email strong { font-size: 12px; overflow-wrap: anywhere; }

.route-library { background: #ded2bd; }
.route-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.route-card a { position: relative; display: flex; flex-direction: column; min-height: 470px; padding: 0 24px 24px; overflow: hidden; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.1); }
.route-card a::after { content: ""; position: absolute; width: 320px; height: 320px; inset-inline-end: -190px; bottom: -190px; border: 1px solid rgba(183,104,62,.25); border-radius: 50%; box-shadow: 0 0 0 38px rgba(183,104,62,.05); }
.route-card-media { position: relative; z-index: 1; display: block; height: 190px; margin: 0 -24px 22px; overflow: hidden; background: #aa9c87; }
.route-card-media .gallery-picture, .route-card-media img { width: 100%; height: 100%; }
.route-card-media img { object-fit: cover; transition: transform .4s ease; }
.route-card-index { position: relative; z-index: 1; color: var(--copper); font-size: 9px; letter-spacing: .12em; }
.route-card p { position: relative; z-index: 1; margin: 24px 0 6px; color: #7a7165; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.route-card h2 { max-width: 330px; margin: 0; font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1.05; }
.route-card div { position: relative; z-index: 1; display: flex; gap: 18px; margin-top: auto; color: #746c61; font-size: 10px; }
.route-card i { position: absolute; z-index: 2; inset-inline-end: 16px; top: 16px; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: rgba(17,17,15,.72); border: 1px solid rgba(255,255,255,.28); font-style: normal; }
.route-card a:hover { color: #fff; background: var(--ink); }
.route-card a:hover p, .route-card a:hover div { color: rgba(255,255,255,.58); }
.route-card a:hover .route-card-media img { transform: scale(1.035); }
.route-card-grid.compact { grid-template-columns: repeat(3, 1fr); }
.route-card-grid.compact .route-card a { min-height: 390px; }
.route-card-grid.compact .route-card-media { height: 145px; }
.route-editorial { margin: 0 0 48px; overflow: hidden; background: var(--paper-bright); border: 1px solid var(--line); }
.route-editorial .gallery-picture { display: block; aspect-ratio: 16 / 7; overflow: hidden; }
.route-editorial .gallery-picture img { width: 100%; height: 100%; object-fit: cover; }
.route-editorial figcaption { display: flex; justify-content: space-between; gap: 30px; padding: 16px 20px; color: #6f685e; font-size: 11px; }
.route-editorial figcaption strong { color: var(--ink); font-family: var(--display); font-size: 20px; font-weight: 400; }
.route-editorial figcaption span { max-width: 720px; text-align: end; }
.route-editorial figcaption a { text-decoration: underline; text-underline-offset: 3px; }
.route-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.route-facts div { padding: 28px; border-right: 1px solid var(--line); }
.route-facts div:last-child { border-right: 0; }
.route-facts span { display: block; margin-bottom: 12px; color: #7b7367; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.route-facts strong { font-family: var(--display); font-size: 28px; font-weight: 400; }
.route-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; margin-top: 90px; }
.route-verification { background: #d9cbb5; }
.route-verification-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: start; }
.route-plan { display: flex; flex-direction: column; gap: 16px; }
.route-plan-media { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; background: var(--ink); }
.route-plan-media picture,
.route-plan-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.route-plan-tag { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1; padding: 6px 11px; background: rgba(23,23,20,.78); color: #f3ede1; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.route-plan-stages { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 0; margin: 0; padding: 16px; list-style: none; background: #d9cbb5; border: 1px solid rgba(23,23,20,.12); }
.route-plan-stages li { display: flex; align-items: baseline; gap: 6px; padding-inline-end: 12px; font-size: 13px; }
.route-plan-stages li:not(:last-child)::after { content: "→"; margin-inline-start: 6px; color: var(--copper); }
.route-plan-stages li span { color: var(--copper); font-family: var(--sans); font-size: 9px; font-weight: 700; }
.route-plan-stages li strong { font-family: var(--display); font-size: 15px; font-weight: 400; }
.route-plan-credit { margin: 0; color: #6f685e; font-size: 11px; }
.route-plan-credit a { text-decoration: underline; text-underline-offset: 3px; }
.route-plan-warning { margin: 0; padding: 14px 16px; background: rgba(255,255,255,.5); border: 1px solid var(--line); color: #4a443b; font-size: 12px; }
.route-audit dl { margin: 28px 0; border-top: 1px solid var(--line); }
.route-audit dl div { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.route-audit dt { font-size: 12px; font-weight: 760; }
.route-audit dd { margin: 0; color: #625b51; font-size: 13px; }
.route-audit small { color: #625b51; }
.route-sequence ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.route-sequence li { display: grid; grid-template-columns: 50px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.route-sequence li span { color: var(--copper); font-size: 9px; }
.route-sequence li strong { font-family: var(--display); font-size: 23px; font-weight: 400; }
.route-bikes a { display: grid; grid-template-columns: 84px 1fr auto auto; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.bike-media-route { width: 84px; height: 68px; background: #fff; border: 1px solid var(--line); }
.bike-media-route .bike-picture, .bike-media-route img { width: 100%; height: 100%; }
.bike-media-route img { padding: 5px; object-fit: contain; }
.route-bikes a span { font-family: var(--display); font-size: 20px; }
.route-bikes a strong { font-size: 13px; }
.route-bikes a i { font-style: normal; }
.warning-band { padding: 27px 0; color: #fff; background: #63352b; }
.warning-band .shell { display: flex; align-items: center; gap: 20px; }
.warning-band span { display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.warning-band p { margin: 0; color: rgba(255,255,255,.77); }
.route-related { background: #e5dac7; }

.faq-layout { display: grid; grid-template-columns: .4fr 1.1fr; gap: 8vw; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 40px 1fr auto; gap: 15px; align-items: center; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 23px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--copper); font-family: var(--sans); font-size: 9px; }
.faq-list summary i { font-family: var(--sans); font-size: 20px; font-style: normal; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: 0 0 26px; margin-inline-start: 55px; max-width: 700px; color: #676157; }

.generic-section { background: #e6dcc9; }
.empty-proof { padding-block: 70px; color: #fff; background: #5a3028; }
.empty-proof p { margin: 0; font-family: var(--display); font-size: 28px; line-height: 1.35; text-align: center; }
.contact-options { color: #fff; background: var(--ink); }
.contact-options .shell { display: grid; grid-template-columns: 1.2fr .85fr .85fr 1fr; }
.contact-options .shell > div { min-height: 190px; padding: 38px; border-right: 1px solid var(--line-light); }
.contact-options .shell > div:last-child { border-right: 0; }
.contact-options span { color: #d49a70; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-options p { margin: 50px 0 0; color: rgba(255,255,255,.68); }
.contact-options p strong { color: #fff; font-family: var(--display); font-size: 22px; font-weight: 400; }
.contact-options-intro p { margin: 18px 0 24px; }
.contact-options-intro .button { min-height: 44px; }
.contact-options-intro i { font-style: normal; }
.contact-number > div { display: flex; gap: 8px; margin-top: 18px; }
.contact-number > div a { padding: 8px 10px; border: 1px solid rgba(255,255,255,.3); font-size: 11px; }
.contact-number > div a:last-child { background: #315b43; border-color: #315b43; }
.contact-email p { overflow-wrap: anywhere; }
.contact-address-band { color: #fff; background: #211f1b; border-top: 1px solid var(--line-light); }
.contact-address-band .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; }
.contact-address-band span, .location-address-card span { color: var(--copper); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-address-band strong { font-family: var(--display); font-size: clamp(18px, 2vw, 27px); font-weight: 400; }
.location-address-card { margin: 0 0 30px; padding: 24px 26px; background: rgba(255,255,255,.42); border: 1px solid rgba(30,29,26,.12); }
.location-address-card strong { display: block; margin-top: 8px; font-family: var(--display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; line-height: 1.08; }
.location-address-card p { margin: 12px 0 0; color: #676157; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.is-pending { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Arabic is a first-class RTL layout: component flow is mirrored while model,
   contact, date and price tokens remain isolated left-to-right. */
html[dir="rtl"] body {
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.75;
}
html[dir="rtl"] .hero-shade {
    background: linear-gradient(270deg, rgba(17,17,15,.88) 0%, rgba(17,17,15,.64) 34%, rgba(17,17,15,.12) 67%, rgba(17,17,15,.18) 100%), linear-gradient(0deg, rgba(15,15,13,.5), transparent 44%);
}

/* Commercial content added in the 2026-09 RentGS release. */
.home-gear-section { background: #ded0ba; }
.home-gear-grid, .model-trip-grid, .practical-generic-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(38px, 7vw, 110px); align-items: center; }
.home-gear-bike, .model-trip-photo, .practical-generic-photo { margin: 0; overflow: hidden; background: var(--paper-bright); border: 1px solid rgba(23,23,20,.12); }
.home-gear-bike picture, .home-gear-bike img, .model-trip-photo picture, .model-trip-photo img, .practical-generic-photo picture, .practical-generic-photo img { display: block; width: 100%; }
.home-gear-bike img { aspect-ratio: 4 / 3; object-fit: contain; padding: clamp(16px, 3vw, 36px); background: #fff; }
.model-trip-photo img, .practical-generic-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.model-trip-photo figcaption, .practical-generic-photo figcaption { padding: 10px 12px; color: #6a6258; font-size: 9px; line-height: 1.45; }
.home-gear-copy h2, .model-trip-copy h2 { margin: 8px 0 22px; font-family: var(--display); font-size: clamp(42px, 5vw, 70px); line-height: .98; font-weight: 400; letter-spacing: -.045em; }
.home-gear-copy > p, .model-trip-copy > p, .practical-generic-copy > p { color: #5f594f; max-width: 620px; }
.gear-price-list { display: grid; margin: 30px 0; border-top: 1px solid rgba(23,23,20,.18); }
.gear-price-list span { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(23,23,20,.18); font-size: 13px; font-weight: 700; }
.model-trip-section { background: #e4dac8; }
.fit-list, .practical-list { margin: 28px 0 32px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fit-list li, .practical-list li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); }
.fit-list li::before, .practical-list li::before { content: "→"; position: absolute; inset-inline-start: 0; color: var(--copper); }
.practical-generic { background: #e6dcc9; }
.practical-generic-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.practical-list { margin-top: 10px; }
html[dir="rtl"] .fit-list li, html[dir="rtl"] .practical-list li { padding: 14px 24px 14px 0; }
html[dir="rtl"] .fit-list li::before, html[dir="rtl"] .practical-list li::before { content: "←"; }

html[dir="rtl"] .hero h1,
html[dir="rtl"] .inner-hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .route-copy h2,
html[dir="rtl"] .final-cta h2,
html[dir="rtl"] .placeholder-page h1,
html[dir="rtl"] .sticky-copy h2 {
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.12;
}
html[dir="rtl"] .hero h1,
html[dir="rtl"] .inner-hero h1 { font-size: clamp(50px, 6vw, 88px); }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .bike-card-body p,
html[dir="rtl"] .bike-meta,
html[dir="rtl"] .photo-note,
html[dir="rtl"] .section-foot,
html[dir="rtl"] .footer-grid h2,
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .catalogue-note > span,
html[dir="rtl"] .model-status,
html[dir="rtl"] .spec-grid dt,
html[dir="rtl"] .verification-list em,
html[dir="rtl"] .compare-table thead th,
html[dir="rtl"] .form-section h2,
html[dir="rtl"] .route-card p,
html[dir="rtl"] .route-facts span,
html[dir="rtl"] .contact-options span {
    text-transform: none;
    letter-spacing: 0;
}
html[dir="rtl"] .language-menu { text-align: right; }
html[dir="rtl"] .main-nav.is-open { align-items: flex-start; }
html[dir="rtl"] .principle { padding-inline: 0 clamp(20px, 3.2vw, 52px); border-inline-end: 1px solid var(--line-light); border-right: 0; }
html[dir="rtl"] .principle:first-child { padding-inline-start: 0; }
html[dir="rtl"] .principle:last-child { border-inline-end: 0; }
html[dir="rtl"] .spec-grid div { padding: 20px 0 20px 12px; }
html[dir="rtl"] .spec-grid div:nth-child(even) { padding-inline-start: 18px; border-inline-start: 1px solid var(--line); border-left: 0; }
html[dir="rtl"] .evidence-grid article { padding: 26px 0 24px 40px; border-inline-end: 1px solid var(--line); border-right: 0; }
html[dir="rtl"] .evidence-grid article:not(:first-child) { padding-inline-start: 40px; }
html[dir="rtl"] .evidence-grid article:last-child { border-inline-end: 0; }
html[dir="rtl"] .route-facts div { border-inline-end: 1px solid var(--line); border-right: 0; }
html[dir="rtl"] .route-facts div:last-child { border-inline-end: 0; }
html[dir="rtl"] .trust-item { border-inline-end: 1px solid var(--line); border-right: 0; }
html[dir="rtl"] .trust-item:last-child { border-inline-end: 0; }
html[dir="rtl"] .route-plan-stages li:not(:last-child)::after { content: "←"; }
html[dir="rtl"] .contact-options .shell > div { border-inline-end: 1px solid var(--line-light); border-right: 0; }
html[dir="rtl"] .contact-options .shell > div:last-child { border-inline-end: 0; }
html[dir="rtl"] .mobile-actions a { border-inline-end: 1px solid rgba(255,255,255,.15); border-right: 0; }
html[dir="rtl"] .mobile-actions a:last-child { border-inline-end: 0; }
html[dir="rtl"] .contact-dock { left: 20px; right: auto; }
html[dir="rtl"] .consent-banner { inset-inline: auto 20px; left: auto; }
html[dir="rtl"] .card-request span[aria-hidden],
html[dir="rtl"] .section-foot .text-link span[aria-hidden] { transform: scaleX(-1); }

.bike-ghost,
.bike-price strong,
.model-price strong,
.price-list strong,
[data-calc-total],
[data-booking-estimate-total],
.route-bikes strong,
.hero-caption span:last-child,
a[href^="tel:"],
a[href^="mailto:"],
input[type="date"],
input[type="email"],
input[type="tel"] {
    direction: ltr;
    unicode-bidi: isolate;
}
html[dir="rtl"] body.page-model .inner-hero h1,
html[dir="rtl"] .bike-card h2,
html[dir="rtl"] .bike-card h3,
html[dir="rtl"] .compare-table tbody th,
html[dir="rtl"] .selector-cards h2,
html[dir="rtl"] .price-list span,
html[dir="rtl"] .route-bikes a span {
    direction: ltr;
    unicode-bidi: isolate;
}
html[dir="rtl"] body.page-model .inner-hero h1 { text-align: right; }
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] { text-align: left; }

@media (min-width: 1101px) {
    .gallery-grid-full .gallery-card:last-child { grid-column: 1 / -1; }
    .gallery-grid-full .gallery-card:last-child > a { aspect-ratio: 16 / 5; }
}

@media (max-width: 1100px) {
    :root { --shell: min(100% - 40px, 980px); }
    .main-nav { display: none; }
    .nav-shell { grid-template-columns: 1fr auto auto; }
    .nav-toggle { display: inline-grid; width: 44px; height: 44px; place-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
    .nav-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .nav-toggle i { width: 22px; height: 1px; background: currentColor; transition: transform .2s ease; }
    .main-nav.is-open {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        padding: 120px 8vw 70px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: var(--paper);
        color: var(--ink);
    }
    @supports (height: 100dvh) {
        .main-nav.is-open { height: 100dvh; min-height: 100dvh; }
    }
    .main-nav.is-open a { font-family: var(--display); font-size: clamp(34px, 6vw, 54px); font-weight: 400; }
    .nav-open .site-header { position: fixed; top: 0; inset-inline: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .nav-open .brand, .nav-open .nav-toggle, .nav-open .nav-actions { position: relative; z-index: 102; }
    .nav-open .nav-toggle i:first-of-type { transform: translateY(3px) rotate(45deg); }
    .nav-open .nav-toggle i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
    .hero-grid { grid-template-columns: 1fr .55fr; gap: 6vw; }
    .bike-grid { grid-template-columns: repeat(2, 1fr); }
    .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
    .route-card-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-full, .gallery-fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .model-grid { gap: 4vw; }
    .selector-layout, .booking-layout { grid-template-columns: .7fr 1.3fr; gap: 3vw; }
    .contact-options .shell { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 3vw; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
    .trust-item:nth-child(3n) { border-right: 0; }
    .trust-item:nth-child(n+4) { border-bottom: 0; }
}

@media (max-width: 760px) {
    .reveal, .reveal.is-pending, .reveal.is-visible { opacity: 1; transform: none; }
    :root { --shell: calc(100vw - 32px); }
    body { font-size: 15px; }
    .site-header { top: 0; }
    .nav-shell { min-height: 70px; gap: 4px; }
    .brand-logo-set { width: 132px; height: 48px; }
    .brand-logo-full { display: none !important; }
    .brand-logo-reverse.brand-logo-compact { display: block; }
    .site-header.is-scrolled .brand-logo-reverse.brand-logo-compact { display: none; }
    .site-header.is-scrolled .brand-logo-color.brand-logo-compact { display: block; }
    .nav-actions .button { display: none; }
    .nav-actions { gap: 0; }
    .hero { min-height: 800px; }
    .hero-media { background-image: image-set(url("../images/atlas-road-hero-1024.avif") type("image/avif"), url("../images/atlas-road-hero-1024.webp") type("image/webp")); background-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(16,16,14,.87), rgba(16,16,14,.35)), linear-gradient(0deg, rgba(16,16,14,.65), transparent 50%); }
    .hero-grid { min-height: 800px; grid-template-columns: 1fr; align-content: end; gap: 42px; padding-top: 160px; padding-bottom: 76px; }
    .hero h1 { font-size: clamp(48px, 15vw, 72px); }
    .hero-intro { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
    .hero-panel { display: none; }
    .hero-caption { bottom: 14px; font-size: 8px; }
    .inner-hero { min-height: 540px; padding: 160px 0 64px; }
    .inner-hero-grid { grid-template-columns: 1fr; align-content: end; gap: 24px; min-height: 310px; }
    .inner-hero h1 { font-size: clamp(48px, 14vw, 72px); }
    .inner-intro { font-size: 15px; }
    .breadcrumbs { margin-bottom: 36px; }
    .section { padding: 88px 0; }
    .split-heading { grid-template-columns: 1fr; gap: 24px; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2, .route-copy h2, .final-cta h2, .placeholder-page h1 { font-size: clamp(40px, 12vw, 58px); }
    .bike-grid { grid-template-columns: 1fr; gap: 12px; }
    .filter-bar { grid-template-columns: 1fr auto; gap: 14px; }
    .filter-bar > div { grid-column: 1 / -1; grid-row: 2; }
    .filter-bar button { padding: 7px 9px; font-size: 11px; }
    .catalogue-note { grid-template-columns: 1fr; }
    .bike-visual { min-height: 260px; }
    .section-foot { align-items: flex-start; flex-direction: column; }
    .principles-grid { grid-template-columns: 1fr; }
    .principle, .principle:not(:first-child) { min-height: auto; padding: 28px 0 42px; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .principle h3 { margin: 54px 0 12px; }
    .advance-layout { grid-template-columns: 1fr; gap: 54px; }
    .advance-copy { position: static; }
    .advance-step { grid-template-columns: 42px 1fr; min-height: auto; padding: 25px 0 34px; }
    .advance-step h3 { margin-top: 24px; font-size: 28px; }
    .route-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 18px 14px 18px 0; border-bottom: 1px solid var(--line); }
    .trust-item:nth-child(2n) { border-right: 0; padding-inline-start: 14px; }
    .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
    .route-plan-stages { padding: 14px; }
    .route-plan-stages li { font-size: 12px; }
    .gallery-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
    .gallery-grid-home .gallery-card { grid-column: auto; grid-row: auto; }
    .gallery-grid-home .gallery-card > a { aspect-ratio: 4 / 3; height: auto; }
    .gallery-section-foot { grid-template-columns: 1fr; gap: 22px; }
    .final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
    .model-grid, .split-content, .selector-layout, .pricing-layout, .booking-layout, .model-extras-layout, .route-detail-grid, .route-verification-grid, .faq-layout { grid-template-columns: 1fr; }
    .home-gear-grid, .model-trip-grid, .practical-generic-grid { grid-template-columns: 1fr; gap: 30px; }
    .home-gear-copy h2, .model-trip-copy h2 { font-size: clamp(40px, 12vw, 58px); }
    .model-trip-photo, .practical-generic-photo { order: -1; }
    .bike-photo-placeholder { min-height: 340px; }
    .bike-media-model .bike-picture { min-height: 340px; }
    .bike-media-model img { height: 340px; padding: 16px; }
    .model-summary, .sticky-copy, .calculator, .booking-aside { position: static; }
    .booking-section .booking-aside ol, .booking-section .booking-quick-contact { display: none; }
    .booking-section .booking-aside h2 { margin-bottom: 4px; font-size: 36px; }
    .spec-grid { grid-template-columns: 1fr; }
    .spec-grid div:nth-child(even) { padding-left: 0; border-left: 0; }
    .model-terms-grid, .extras-bike-grid { grid-template-columns: 1fr; }
    .terms-card, .terms-card:not(:first-child) { min-height: auto; padding: 30px 0 38px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .terms-card:last-child { border-bottom: 0; }
    .terms-card h3 { margin-top: 38px; }
    .extra-option-grid, .booking-extra-grid { grid-template-columns: 1fr; }
    .model-extra-form { padding: 22px 16px; }
    .extras-bike-card { min-height: auto; padding: 22px 18px; }
    .extras-conditions { grid-template-columns: 1fr; }
    .extras-conditions div, .extras-conditions div:not(:first-child) { padding: 11px 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .extras-conditions div:last-child { border-bottom: 0; }
    .commercial-policy-notes { grid-template-columns: 1fr; }
    .commercial-policy-notes small { grid-column: auto; }
    .booking-bike-terms { grid-template-columns: 1fr; }
    .booking-bike-terms div, .booking-bike-terms div:first-child, .booking-bike-terms div:last-child { padding: 10px 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .booking-bike-terms div:last-child { border-bottom: 0; }
    .verification-list { margin-top: 38px; }
    .verification-list li { grid-template-columns: 36px 1fr; padding: 16px 0; }
    .verification-list li em { grid-column: 2; }
    .evidence-grid { grid-template-columns: 1fr; }
    .evidence-grid article, .evidence-grid article:not(:first-child) { min-height: auto; padding: 30px 0 40px; border-right: 0; border-bottom: 1px solid var(--line); }
    .evidence-grid h2 { margin-top: 42px; }
    .selector-form, .calculator, .booking-form-wrap { padding: 24px 18px; }
    .selector-cards { grid-template-columns: 1fr; }
    .selector-cards article.is-match { grid-template-columns: 96px 1fr; gap: 12px; }
    .bike-media-selector { width: 96px; height: 92px; }
    .booking-bike-preview { grid-template-columns: 1fr; }
    .booking-bike-preview picture, .booking-bike-preview img { min-height: 0; height: 230px; }
    .form-grid { grid-template-columns: 1fr; }
    .route-card-grid, .route-card-grid.compact { grid-template-columns: 1fr; }
    .route-card a { min-height: 430px; }
    .route-card-media { height: 180px; }
    .route-card-grid.compact .route-card a { min-height: 410px; }
    .route-card-grid.compact .route-card-media { height: 170px; }
    .route-editorial .gallery-picture { aspect-ratio: 4 / 3; }
    .route-editorial figcaption { flex-direction: column; gap: 6px; }
    .route-editorial figcaption span { text-align: start; }
    .gallery-grid-home, .gallery-grid-full, .gallery-fleet-grid { grid-template-columns: 1fr; }
    .gallery-card figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
    .gallery-card figcaption span { text-align: start; }
    .gallery-grid-full .gallery-card > a, .gallery-grid-full .gallery-card:nth-child(4n + 2) > a, .gallery-grid-full .gallery-card:nth-child(4n + 3) > a { aspect-ratio: 4 / 3; }
    .gallery-fleet-card .bike-picture { height: 290px; }
    .gallery-dialog { width: calc(100vw - 18px); height: calc(100vh - 18px); }
    .gallery-dialog-stage { inset: 64px 12px 118px; }
    .gallery-dialog-nav { top: auto; bottom: 42px; width: 44px; height: 44px; transform: none; }
    .gallery-dialog-previous { inset-inline-start: 12px; }
    .gallery-dialog-next { inset-inline-end: 12px; }
    .gallery-dialog-caption { inset-inline: 64px; bottom: 22px; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
    .route-facts { grid-template-columns: 1fr; }
    .route-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
    .route-facts div:last-child { border-bottom: 0; }
    .route-detail-grid { margin-top: 62px; }
    .route-bikes a { grid-template-columns: 72px 1fr auto auto; gap: 10px; }
    .bike-media-route { width: 72px; height: 60px; }
    .faq-list summary { grid-template-columns: 28px 1fr auto; font-size: 20px; }
    .faq-list details p { margin-inline-start: 43px; }
    .contact-options .shell { grid-template-columns: 1fr; }
    .contact-options .shell > div { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .contact-options p { margin-top: 22px; }
    .contact-address-band .shell { align-items: flex-start; flex-direction: column; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 46px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }
    .creator-credit { padding-bottom: 86px; }
    .contact-dock { display: none; }
    .consent-banner { left: 12px; right: 12px; bottom: 86px; grid-template-columns: 1fr; max-width: none; gap: 14px; padding: 18px; }
    .consent-banner > div { flex-wrap: wrap; }
    .mobile-actions { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 9px; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; min-height: 64px; overflow: hidden; color: #fff; background: var(--ink); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; box-shadow: 0 12px 36px rgba(0,0,0,.3); }
    .mobile-actions a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-width: 0; padding: 7px 5px; border-right: 1px solid rgba(255,255,255,.15); }
    .mobile-actions a:last-child { border-right: 0; }
    .mobile-actions span { font-size: 16px; line-height: 1; }
    .mobile-actions strong { max-width: 100%; overflow: hidden; font-size: 10px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap; }
    .mobile-action-whatsapp { background: #315b43; }
    .mobile-action-request { background: var(--copper); }
    .nav-open .mobile-actions { opacity: 0; visibility: hidden; pointer-events: none; }
    html[dir="rtl"] .hero-shade { background: linear-gradient(270deg, rgba(16,16,14,.9), rgba(16,16,14,.34)), linear-gradient(0deg, rgba(16,16,14,.65), transparent 50%); }
    html[dir="rtl"] .hero h1, html[dir="rtl"] .inner-hero h1 { font-size: clamp(44px, 12.8vw, 62px); }
    html[dir="rtl"] .principle, html[dir="rtl"] .principle:not(:first-child) { padding: 28px 0 42px; border-inline-end: 0; }
    html[dir="rtl"] .evidence-grid article, html[dir="rtl"] .evidence-grid article:not(:first-child) { padding: 30px 0 40px; border-inline-end: 0; }
    html[dir="rtl"] .route-facts div { border-inline-end: 0; }
    html[dir="rtl"] .contact-options .shell > div { border-inline-end: 0; }
    html[dir="rtl"] .consent-banner { inset-inline: 12px; }
}

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