/* =====================================================================
   Patrick Bayer — VIP Personenbeförderung & Fahrzeugvermietung
   Bespoke premium stylesheet. Light mode default + dark-mode toggle.
   Display: Space Grotesk · Body: Inter · Accent: champagne gold
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Champagne gold accent */
    --gold:        #B8902F;
    --gold-bright: #D9B65A;
    --gold-pale:   #EBD79C;
    --gold-deep:   #8C6D1F;
    --gold-soft:   rgba(184, 144, 47, 0.12);
    --gold-line:   rgba(184, 144, 47, 0.34);

    /* Light theme surfaces */
    --bg:        #F6F3EC;
    --bg-alt:    #EEE9DE;
    --surface:   #FFFFFF;
    --surface-2: #FBF9F3;
    --ink:       #16130D;
    --ink-soft:  #3D362B;
    --muted:     #756B5A;
    --line:      rgba(22, 19, 13, 0.10);
    --line-2:    rgba(22, 19, 13, 0.16);
    --scrim:     rgba(12, 10, 6, 0.50);

    --shadow-sm: 0 1px 2px rgba(20, 16, 8, 0.06), 0 2px 8px rgba(20, 16, 8, 0.05);
    --shadow-md: 0 8px 28px rgba(20, 16, 8, 0.10), 0 2px 6px rgba(20, 16, 8, 0.06);
    --shadow-lg: 0 30px 70px rgba(20, 16, 8, 0.16), 0 8px 20px rgba(20, 16, 8, 0.08);
    --shadow-gold: 0 14px 38px rgba(184, 144, 47, 0.30);

    --radius-sm: 12px;
    --radius:    18px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --container: 1200px;
    --gutter: clamp(1.1rem, 4vw, 2.5rem);
    --section-y: clamp(4.5rem, 9vw, 8.5rem);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 76px;
}

html.theme-dark {
    --bg:        #0D0B07;
    --bg-alt:    #131009;
    --surface:   #17140D;
    --surface-2: #1E1A11;
    --ink:       #F4EFE3;
    --ink-soft:  #CFC6B2;
    --muted:     #9C9281;
    --line:      rgba(255, 255, 255, 0.09);
    --line-2:    rgba(255, 255, 255, 0.16);
    --scrim:     rgba(6, 5, 3, 0.58);
    --gold-soft: rgba(217, 182, 90, 0.13);
    --gold-line: rgba(217, 182, 90, 0.30);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 14px 40px rgba(184, 144, 47, 0.26);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 18px);
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 1.02rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1360px; }
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- Typography ---------- */
.display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.025em;
    color: var(--ink);
}
h1.display { font-size: clamp(2.6rem, 6.4vw, 5.25rem); }
h2.display { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.text-gold {
    background: linear-gradient(100deg, var(--gold-deep), var(--gold) 40%, var(--gold-bright) 75%, var(--gold-pale));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
html.theme-dark .text-gold {
    background: linear-gradient(100deg, var(--gold) 10%, var(--gold-bright) 55%, var(--gold-pale));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.kicker {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-deep);
}
html.theme-dark .kicker { color: var(--gold-bright); }
.kicker::before {
    content: ""; width: 26px; height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.kicker--center::after {
    content: ""; width: 26px; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section__head { max-width: 720px; }
.section__head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section__head--center .kicker { justify-content: center; }
.section__head .kicker { margin-bottom: 1.1rem; }
.section__intro { margin-top: 1.25rem; color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    padding: 0.92rem 1.65rem; border-radius: 999px;
    font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
    line-height: 1; white-space: nowrap; cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
    background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
    color: #1a1407;
    box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(184,144,47,0.42); }
.btn--ghost {
    background: transparent; color: var(--ink);
    border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
html.theme-dark .btn--ghost:hover { color: var(--gold-bright); }
.btn--light {
    background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.30);
    backdrop-filter: blur(8px);
}
.btn--light:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.08rem 2rem; font-size: 1.02rem; }
.btn--wa { background: #25D366; color: #04210f; box-shadow: 0 12px 30px rgba(37,211,102,0.30); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(37,211,102,0.4); }

/* ---------- Header ---------- */
.header {
    position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
    display: flex; align-items: center;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.header.is-scrolled {
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.72rem; }
.brand__mark {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(160deg, #1c1812, #0d0b08);
    display: grid; place-items: center;
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow-sm);
}
.brand__mark span {
    font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em;
    background: linear-gradient(150deg, var(--gold-pale), var(--gold) 60%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; color: var(--ink); }
.brand__line { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
html.theme-dark .brand__line { color: var(--gold-bright); }

.header__nav { display: none; align-items: center; gap: 0.2rem; }
.header__nav-link {
    position: relative; padding: 0.5rem 0.8rem; font-size: 0.92rem; font-weight: 500;
    color: var(--ink-soft); border-radius: 999px; transition: color 0.25s, background 0.25s;
}
.header__nav-link:hover { color: var(--ink); background: var(--gold-soft); }

.header__actions { display: flex; align-items: center; gap: 0.55rem; }
.header__phone { display: none; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); padding: 0.4rem 0.5rem; }
.header__phone svg { color: var(--gold); width: 16px; height: 16px; }
.header__phone:hover { color: var(--gold-deep); }

.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    border: 1px solid var(--line-2); color: var(--ink-soft);
    transition: color 0.25s, border-color 0.25s, transform 0.4s var(--ease);
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold-line); transform: rotate(18deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
html.theme-dark .theme-toggle .icon-sun { display: none; }
html.theme-dark .theme-toggle .icon-moon { display: block; }

.header__cta { display: none; }

.header__menu-toggle {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    border: 1px solid var(--line-2);
}
.header__menu-icon { position: relative; width: 20px; height: 14px; }
.header__menu-icon span {
    position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s;
}
.header__menu-icon span:nth-child(1) { top: 0; }
.header__menu-icon span:nth-child(2) { top: 6px; }
.header__menu-icon span:nth-child(3) { top: 12px; }
[aria-expanded="true"] .header__menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
[aria-expanded="true"] .header__menu-icon span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .header__menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.header__mobile {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
    background: var(--bg); padding: 1.6rem var(--gutter) 2.4rem;
    display: flex; flex-direction: column;
    animation: sheetIn 0.35s var(--ease);
    border-top: 1px solid var(--line);
    overflow-y: auto;
}
.header__mobile[hidden] { display: none; }
@keyframes sheetIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.header__mobile-nav { display: flex; flex-direction: column; }
.header__mobile-link {
    padding: 1rem 0.2rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
    border-bottom: 1px solid var(--line); letter-spacing: -0.01em;
}
.header__mobile-link:active { color: var(--gold-deep); }
.header__mobile-sep { display: none; }
.header__mobile-phone { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem; font-size: 1.2rem; font-weight: 600; }
.header__mobile-phone svg { color: var(--gold); }
.header__mobile-cta { margin-top: 1.2rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(8,6,3,0.55) 0%, rgba(8,6,3,0.12) 30%, rgba(8,6,3,0.22) 56%, rgba(8,6,3,0.88) 100%),
        radial-gradient(120% 80% at 78% 28%, transparent 38%, rgba(8,6,3,0.45) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3.4rem, 7vw, 6rem); padding-top: calc(var(--header-h) + 2rem); }
.hero__kicker {
    display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem;
    font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-pale);
    padding: 0.5rem 1rem; border: 1px solid rgba(235,215,156,0.34); border-radius: 999px;
    background: rgba(15,11,5,0.34); backdrop-filter: blur(8px);
}
.hero__title { color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero__title .line2 {
    background: linear-gradient(100deg, var(--gold) 5%, var(--gold-bright) 50%, var(--gold-pale));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { color: rgba(255,255,255,0.88); max-width: 56ch; margin-top: 1.5rem; font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.hero__chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.92);
    padding: 0.5rem 0.95rem; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}
.hero__chip svg { width: 15px; height: 15px; color: var(--gold-bright); }
.hero__scrollcue {
    position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.7); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero__scrollcue svg { width: 18px; height: 18px; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Occasions ---------- */
.occasions__grid {
    margin-top: clamp(2.5rem, 5vw, 3.6rem);
    display: grid; gap: 1.1rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.occ-card {
    position: relative; padding: 1.9rem 1.7rem; border-radius: var(--radius-lg);
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    overflow: hidden;
}
.occ-card::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(120% 90% at 100% 0%, var(--gold-soft), transparent 55%);
    opacity: 0; transition: opacity 0.4s;
}
.occ-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-line); }
.occ-card:hover::after { opacity: 1; }
.occ-card__icon {
    width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
    background: var(--gold-soft); color: var(--gold-deep); margin-bottom: 1.3rem;
    border: 1px solid var(--gold-line);
}
html.theme-dark .occ-card__icon { color: var(--gold-bright); }
.occ-card__icon svg { width: 26px; height: 26px; }
.occ-card h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.occ-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Services ---------- */
.services__grid {
    margin-top: clamp(2.5rem, 5vw, 3.6rem);
    display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    align-items: start;
}
.svc-card {
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.svc-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.svc-card__icon {
    width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0; display: grid; place-items: center;
    background: linear-gradient(150deg, var(--gold-deep), var(--gold)); color: #1a1407;
    box-shadow: var(--shadow-gold);
}
.svc-card__icon svg { width: 27px; height: 27px; }
.svc-card h3 { font-size: 1.42rem; letter-spacing: -0.015em; }
.svc-card > p { color: var(--muted); }
.svc-card__detail { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px dashed var(--line-2); display: none; }
.svc-card.is-expanded .svc-card__detail { display: block; animation: faqIn 0.35s var(--ease); }
.svc-card__detail h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.svc-card__detail > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 0.9rem; }
.svc-list { display: grid; gap: 0.6rem; }
.svc-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.svc-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.svc-card__toggle {
    margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
    font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--gold-deep);
}
html.theme-dark .svc-card__toggle { color: var(--gold-bright); }
.svc-card__toggle svg { width: 16px; height: 16px; transition: transform 0.3s; }
.svc-card.is-expanded .svc-card__toggle .chev { transform: rotate(180deg); }
.svc-card.is-expanded .svc-card__toggle .lbl-open { display: none; }
.svc-card__toggle .lbl-close { display: none; }
.svc-card.is-expanded .svc-card__toggle .lbl-close { display: inline; }

/* ---------- Fleet ---------- */
.fleet__grid { margin-top: clamp(2.5rem, 5vw, 3.6rem); display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.veh-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    display: flex; flex-direction: column;
}
.veh-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-line); }
.veh-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-alt); }
.veh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.veh-card:hover .veh-card__media img { transform: scale(1.05); }
.veh-card__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
    padding: 0.4rem 0.8rem; border-radius: 999px; color: #1a1407;
    background: linear-gradient(120deg, var(--gold), var(--gold-bright));
    box-shadow: var(--shadow-sm);
}
.veh-card__placeholder {
    position: absolute; inset: 0; display: grid; place-items: center;
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(184,144,47,0.16), transparent 60%),
        linear-gradient(160deg, #1b1712, #0e0c08);
}
.veh-card__placeholder svg { width: 76px; height: 76px; color: var(--gold); opacity: 0.85; }
.veh-card__placeholder span {
    position: absolute; bottom: 1rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(235,215,156,0.7);
}
.veh-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.veh-card__body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.veh-card__body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.veh-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.veh-spec {
    display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 500;
    padding: 0.4rem 0.75rem; border-radius: 999px; background: var(--gold-soft); color: var(--ink-soft);
    border: 1px solid var(--gold-line);
}
.veh-spec svg { width: 15px; height: 15px; color: var(--gold-deep); }
html.theme-dark .veh-spec svg { color: var(--gold-bright); }
.fleet__note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.fleet__note svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Vermietung (rental + pricing) ---------- */
.rental__inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.rental__copy .section__intro { font-size: 1.1rem; }
.rental__note {
    margin-top: 1.4rem; padding: 1.1rem 1.3rem; border-radius: var(--radius);
    background: var(--gold-soft); border: 1px solid var(--gold-line);
    font-size: 0.95rem; color: var(--ink-soft); display: flex; gap: 0.7rem; align-items: flex-start;
}
.rental__note svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
html.theme-dark .rental__note svg { color: var(--gold-bright); }
.rental__copy .btn { margin-top: 1.6rem; }
.rental__cards { display: grid; gap: 1rem; }
.price-card {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.price-card:hover { border-color: var(--gold-line); transform: translateX(4px); }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.price-card__features { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; margin-top: 0.4rem; }
.price-card__features span { font-size: 0.82rem; color: var(--muted); }
.price-card__features span:not(:last-child)::after { content: "·"; margin-left: 0.8rem; color: var(--gold); }
.price-card__price { text-align: right; flex-shrink: 0; }
.price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--gold-deep); white-space: nowrap; }
html.theme-dark .price-card__amount { color: var(--gold-bright); }
.price-card__unit { display: block; font-size: 0.76rem; color: var(--muted); }

/* ---------- Process ---------- */
.process__grid { margin-top: clamp(2.5rem, 5vw, 3.6rem); display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step-card {
    position: relative; padding: 2.2rem 1.8rem 1.9rem; border-radius: var(--radius-lg);
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.step-card__num {
    font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px var(--gold); margin-bottom: 1rem;
    display: block;
}
.step-card h3 { font-size: 1.32rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); font-size: 0.96rem; }
.process__cta { margin-top: 2.2rem; display: flex; justify-content: center; }

/* ---------- About ---------- */
.about__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.about__copy p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.05rem; }
.about__copy p + p { margin-top: 1rem; color: var(--muted); }
.about__highlights { display: grid; gap: 0.7rem; margin-top: 1.8rem; }
.about__highlights li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.about__highlights svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.about__visual {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 420px;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about__quote {
    position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; z-index: 2;
    background: rgba(15,11,5,0.55); backdrop-filter: blur(12px);
    border: 1px solid rgba(235,215,156,0.24); border-radius: var(--radius);
    padding: 1.2rem 1.4rem; color: #fff;
}
.about__quote svg { width: 24px; height: 24px; color: var(--gold-bright); margin-bottom: 0.5rem; }
.about__quote p { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.4; }

/* ---------- Why us ---------- */
.why__grid { margin-top: clamp(2.5rem, 5vw, 3.6rem); display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.why-card { padding: 1.9rem 1.6rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), border-color 0.4s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--gold-line); }
.why-card__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-deep); margin-bottom: 1.1rem; }
html.theme-dark .why-card__icon { color: var(--gold-bright); }
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Region + Map ---------- */
.region__inner { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
.region__areas { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.region__area { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.95rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 0.88rem; font-weight: 500; transition: border-color 0.3s, color 0.3s; }
.region__area:hover { border-color: var(--gold-line); color: var(--gold-deep); }
html.theme-dark .region__area:hover { color: var(--gold-bright); }
.region__area svg { width: 14px; height: 14px; color: var(--gold); }
.region__note { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.6rem; font-weight: 500; color: var(--ink-soft); font-size: 0.96rem; }
.region__note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.map-frame {
    border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line);
    box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; position: relative; background: var(--bg-alt);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.02); }
html.theme-dark .map-frame iframe { filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ---------- FAQ ---------- */
.faq__list { margin-top: clamp(2.2rem, 4vw, 3rem); max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item[open] { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold-line); color: var(--gold-deep); transition: transform 0.35s var(--ease), background 0.3s; }
html.theme-dark .faq-item summary .faq-plus { color: var(--gold-bright); }
.faq-item summary .faq-plus svg { width: 16px; height: 16px; }
.faq-item[open] summary .faq-plus { transform: rotate(135deg); background: var(--gold-soft); }
.faq-item__body { padding: 0 1.5rem 1.4rem; color: var(--muted); animation: faqIn 0.35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Contact ---------- */
.contact__inner { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; }
.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; gap: 0; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
    width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
    background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink);
    transition: border-color 0.25s, box-shadow 0.25s; font-size: 0.98rem;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.field__error { color: #c0392b; font-size: 0.82rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.chips-field { margin-bottom: 1.2rem; }
.chips-field > span { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 0.6rem; }
.chip-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-check { position: relative; }
.chip-check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip-check span {
    display: inline-flex; align-items: center; padding: 0.5rem 0.95rem; border-radius: 999px;
    border: 1px solid var(--line-2); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
    transition: all 0.2s; cursor: pointer;
}
.chip-check input:checked + span { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-deep); }
html.theme-dark .chip-check input:checked + span { color: var(--gold-bright); }
.chip-check input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.consent-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.2rem; font-size: 0.86rem; color: var(--muted); }
.consent-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.consent-row a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
html.theme-dark .consent-row a { color: var(--gold-bright); }
.contact__status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.contact__status.is-loading, .contact__status.is-success, .contact__status.is-error { display: block; }
.contact__status.is-loading { background: var(--gold-soft); color: var(--ink-soft); }
.contact__status.is-success { background: rgba(39,174,96,0.12); color: #1e8449; border: 1px solid rgba(39,174,96,0.3); }
.contact__status.is-error { background: rgba(192,57,43,0.10); color: #c0392b; border: 1px solid rgba(192,57,43,0.3); }

.contact__aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
    display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), border-color 0.3s;
}
.contact-method:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.contact-method__icon { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-deep); }
html.theme-dark .contact-method__icon { color: var(--gold-bright); }
.contact-method--wa .contact-method__icon { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.4); color: #1e9e4f; }
.contact-method__icon svg { width: 23px; height: 23px; }
.contact-method__label { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }
.contact-method__value { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.contact-method > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.contact__hours { margin-top: 0.2rem; padding: 1.2rem 1.4rem; border-radius: var(--radius); background: var(--gold-soft); border: 1px solid var(--gold-line); font-size: 0.92rem; color: var(--ink-soft); }
.contact__hours strong { font-family: var(--font-display); display: block; margin-bottom: 0.3rem; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem; }
.footer__top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer__brand-line { color: var(--muted); margin-top: 1.2rem; max-width: 42ch; font-size: 0.96rem; }
.footer__cols { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.footer__col h4 { font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
html.theme-dark .footer__col h4 { color: var(--gold-bright); }
.footer__col a, .footer__col p { display: block; color: var(--ink-soft); padding: 0.3rem 0; font-size: 0.94rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-deep); }
html.theme-dark .footer__col a:hover { color: var(--gold-bright); }
.footer__bottom { margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; align-items: center; font-size: 0.84rem; color: var(--muted); }
.footer__legal { display: flex; gap: 1.2rem; }
.footer__legal a:hover { color: var(--gold-deep); }
.footer__credit a { color: var(--ink-soft); }
.footer__credit a:hover { color: var(--gold-deep); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
    position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: #25D366; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,0.4);
    transition: transform 0.35s var(--ease);
}
.fab-wa:hover { transform: scale(1.08) translateY(-2px); }
.fab-wa svg { width: 28px; height: 28px; }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

/* ---------- Reveal on scroll (only when JS is active — graceful no-JS) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: var(--section-y); }
.legal-page .container { max-width: 820px; }
.legal-page h1.display { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.4rem; margin-top: 2.4rem; margin-bottom: 0.8rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 0.8rem; }
.legal-page ul { list-style: disc; padding-left: 1.3rem; }
.legal-page a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
html.theme-dark .legal-page a { color: var(--gold-bright); }

/* ---------- Cookie banner (floaty glass card, bottom-left) ---------- */
.consent-banner {
    position: fixed !important; left: 1.25rem; bottom: 1.25rem; right: auto; top: auto;
    z-index: 9000; max-width: 340px;
    display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem 1.1rem 1.05rem;
    background: rgba(20, 16, 10, 0.74);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(235, 215, 156, 0.16); border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.18);
    color: #fff; animation: consentIn 0.4s var(--ease) both;
}
@keyframes consentIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.consent-banner__text { font-size: 0.82rem; line-height: 1.5; color: rgba(255,255,255,0.82); }
.consent-banner__link { color: rgba(255,255,255,0.95); text-decoration: underline; text-underline-offset: 2px; }
.consent-banner__link:hover { color: var(--gold-bright); }
.consent-banner__actions { display: flex; gap: 0.6rem; }
.consent-banner__btn { flex: 1 1 0; padding: 0.55rem 0.9rem !important; font-size: 0.8rem !important; border-radius: 999px !important; }
.consent-banner__btn.btn--ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.24); }
.consent-banner__btn.btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); transform: none; }
.consent-banner__btn.btn--primary:hover { transform: none; }
@media (max-width: 480px) {
    .consent-banner { left: 0.85rem; right: 0.85rem; max-width: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; column-gap: 1rem; }
    .footer__top { grid-template-columns: 1.3fr 1fr; }
    .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
    .rental__inner { grid-template-columns: 1fr 1fr; }
    .about__inner { grid-template-columns: 1.1fr 0.9fr; }
    .region__inner { grid-template-columns: 1fr 1fr; }
    .contact__inner { grid-template-columns: 1.4fr 1fr; }
}
@media (min-width: 1024px) {
    .header__nav { display: flex; }
    .header__phone { display: inline-flex; }
    .header__cta { display: inline-flex; }
    .header__menu-toggle { display: none; }
    .header__mobile { display: none !important; }
    :root { --header-h: 84px; }
}
