/* Variables */
:root {
    --bg-main: #06101E;
    --bg-secondary: #0B1421;
    --bg-deep: #030914;
    --surface: rgba(15, 26, 40, 0.78);
    --surface-light: rgba(21, 34, 50, 0.82);
    --text-main: #F4F1EB;
    --text-secondary: #C7C3BC;
    --gold: #E6B96D;
    --gold-light: #F5D89B;
    --gold-dark: #A97838;
    --gold-border: rgba(230, 185, 109, 0.35);
    --line: rgba(244, 241, 235, 0.1);
    --container: 1480px;
    --header-height: 94px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.25);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
blockquote {
    margin: 0;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

button {
    border: 0;
}

::selection {
    background: rgba(230, 185, 109, 0.28);
    color: var(--text-main);
}

:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

/* Global */
.container {
    width: min(var(--container), calc(100% - clamp(40px, 9vw, 144px)));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(100px, 10vw, 170px);
    scroll-margin-top: calc(var(--header-height) + 22px);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--gold-light);
    color: #101010;
    font-size: 0.82rem;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 200ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow i {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-centered {
    justify-content: center;
}

.eyebrow-centered i:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: clamp(44px, 8vw, 130px);
    margin-bottom: clamp(56px, 7vw, 96px);
}

.section-heading h2,
.reservation-intro h2,
.contact-inner h2 {
    max-width: 820px;
    font-size: clamp(2.7rem, 5vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.section-heading h2 em,
.reservation-intro h2 em,
.contact-inner h2 em {
    background: linear-gradient(180deg, #FFF0C8 0%, #EABF78 55%, #BF8540 100%);
    background-clip: text;
    color: transparent;
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    letter-spacing: -0.035em;
    text-shadow: 0 0 25px rgba(234, 191, 120, 0.14);
}

.section-heading > p {
    max-width: 520px;
    padding-bottom: 6px;
    color: var(--text-secondary);
    font-size: clamp(0.98rem, 1.15vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
}

/* Typography */
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 11px;
    line-height: 1;
    white-space: nowrap;
}

.brand-og {
    background: linear-gradient(180deg, #FFE4AB 0%, #DDA85A 58%, #A66A2D 100%);
    background-clip: text;
    color: transparent;
    font-family: "Bodoni Moda", serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.08em;
}

.brand-taxi {
    color: var(--text-main);
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: -0.04em;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid rgba(244, 241, 235, 0.1);
    transition: background-color 450ms ease, border-color 450ms ease, box-shadow 450ms ease, height 450ms var(--ease-premium);
}

.site-header::after {
    position: absolute;
    right: 7%;
    bottom: -1px;
    width: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 109, 0.7), transparent);
    content: "";
    opacity: 0.45;
}

.site-header.is-scrolled {
    height: 78px;
    border-color: rgba(230, 185, 109, 0.14);
    background: rgba(4, 11, 21, 0.82);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
}

.header-inner {
    display: flex;
    width: min(1570px, calc(100% - clamp(40px, 6vw, 104px)));
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.site-header.is-scrolled .brand-og {
    font-size: 2.55rem;
}

.site-header.is-scrolled .brand-taxi {
    font-size: 1.45rem;
}

.site-header .brand-og,
.site-header .brand-taxi {
    transition: font-size 450ms var(--ease-premium);
}

.main-nav {
    display: flex;
    height: 100%;
    align-items: center;
    gap: clamp(32px, 3.8vw, 64px);
}

.nav-link {
    position: relative;
    display: grid;
    height: 100%;
    place-items: center;
    color: rgba(244, 241, 235, 0.72);
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 300ms ease;
}

.nav-link::after {
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(230, 185, 109, 0.8);
    content: "";
    opacity: 0;
    transform: translate(-50%, 8px) scale(0.6);
    transition: opacity 300ms ease, transform 300ms var(--ease-premium);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--gold-light);
}

.nav-link.is-active::after {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.site-header.is-scrolled .nav-link::after {
    bottom: 12px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background: rgba(8, 16, 28, 0.72);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 5px auto;
    background: var(--gold-light);
    transition: transform 350ms var(--ease-premium), opacity 250ms ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: max(760px, 100svh);
    overflow: hidden;
    isolation: isolate;
    
    scroll-margin-top: 0;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 10, 20, 0.98) 0%, rgba(3, 10, 20, 0.9) 22%, rgba(3, 10, 20, 0.46) 48%, rgba(3, 10, 20, 0.06) 77%),
        linear-gradient(180deg, rgba(4, 10, 20, 0.38) 0%, transparent 35%, rgba(3, 9, 18, 0.18) 66%, rgba(3, 9, 18, 0.88) 100%);
    content: "";
}

.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(1, 5, 12, 0.5) 100%);
    content: "";
    pointer-events: none;
}

.hero-backdrop {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 67%;
    height: 48%;
    background: linear-gradient(20deg, rgba(3, 10, 19, 0.92), rgba(3, 10, 19, 0.2) 72%, transparent);
    filter: blur(4px);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    top: 18%;
    right: 4%;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    background: rgba(240, 178, 86, 0.13);
    filter: blur(100px);
    mix-blend-mode: screen;
    opacity: 0.75;
}

.hero-inner {
    position: relative;
    display: flex;
    min-height: max(760px, 100svh);
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + clamp(28px, 5vh, 60px));
    padding-bottom: clamp(144px, 19vh, 190px);
}

.hero-content {
    width: min(760px, 57vw);
}

.hero-badge {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(24px, 3.2vh, 36px);
    padding: 9px 23px;
    border: 1px solid rgba(230, 185, 109, 0.55);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(11, 20, 33, 0.7), rgba(11, 20, 33, 0.28));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 0 30px rgba(230, 185, 109, 0.06);
    color: #E6C185;
    font-size: clamp(0.72rem, 0.9vw, 0.9rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-badge i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.badge-star {
    color: var(--gold-light);
    font-size: 1.05rem;
    text-shadow: 0 0 14px rgba(245, 216, 155, 0.65);
}

.hero-title {
    margin-left: -0.02em;
    font-size: clamp(3.5rem, 5.45vw, 5.55rem);
    font-weight: 300;
    letter-spacing: -0.06em;
    line-height: 0.93;
}

.title-line {
    display: block;
}

.title-light {
    color: var(--text-main);
    font-weight: 300;
}

.title-editorial {
    display: flex;
    align-items: baseline;
    gap: 0.18em;
    white-space: nowrap;
}

.title-editorial > span {
    color: var(--text-main);
    font-size: 0.83em;
}

.gold-word {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.03em 0.04em 0.1em 0;
    background: linear-gradient(180deg, #FFF0C8 0%, #EABF78 55%, #BF8540 100%);
    background-clip: text;
    color: transparent;
    font-family: "Bodoni Moda", serif;
    font-size: 1.25em;
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.82;
    text-shadow: 0 0 25px rgba(234, 191, 120, 0.18);
}

.gold-word::after {
    position: absolute;
    inset: -25% auto -25% -35%;
    width: 24%;
    background: linear-gradient(105deg, transparent 5%, rgba(255, 247, 218, 0.08) 28%, rgba(255, 250, 229, 0.7) 49%, rgba(255, 247, 218, 0.08) 70%, transparent 95%);
    content: "";
    filter: blur(2px);
    mix-blend-mode: screen;
    pointer-events: none;
    transform: skewX(-16deg);
    animation: metallic-shimmer 6.8s 2.3s var(--ease-premium) infinite;
}

.title-place {
    margin-top: 0.07em;
    white-space: nowrap;
}

.hero-copy {
    position: relative;
    max-width: 630px;
    margin-top: clamp(27px, 3.6vh, 42px);
    padding: 2px 0 2px 25px;
    border-left: 1px solid rgba(230, 185, 109, 0.62);
    color: rgba(244, 241, 235, 0.72);
    font-size: clamp(0.96rem, 1.15vw, 1.16rem);
    font-weight: 300;
    line-height: 1.58;
}

.hero-copy::before {
    position: absolute;
    width: 8px;
    height: 1px;
    background: var(--gold-light);
    box-shadow: 0 0 10px var(--gold);
    content: "";
    transform: translate(-29px, -2px);
}

.hero-actions {
    margin-top: clamp(28px, 4.5vh, 42px);
}

/* Buttons */
.button {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.2;
    transition: transform 350ms var(--ease-premium), box-shadow 350ms ease, filter 350ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.button .button-arrow {
    width: 19px;
    margin-left: 14px;
    transition: transform 350ms var(--ease-premium);
}

.button-gold {
    border: 1px solid rgba(255, 237, 191, 0.72);
    background: linear-gradient(135deg, #F5D89B 0%, #E6B96D 55%, #C8944C 100%);
    box-shadow: 0 0 30px rgba(230, 185, 109, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #101010;
}

.button-gold:hover,
.button-gold:focus-visible {
    box-shadow: 0 12px 38px rgba(230, 185, 109, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.65);
    filter: brightness(1.04);
    transform: translateY(-3px);
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
    transform: translateX(5px);
}

.hero-features {
    position: absolute;
    left: 0;
    bottom: clamp(50px, 6.5vh, 76px);
    display: grid;
    width: min(760px, 58vw);
    grid-template-columns: 0.75fr 1fr 1.25fr;
    padding: 21px 25px;
    border: 1px solid rgba(230, 185, 109, 0.25);
    border-radius: 20px;
    background: linear-gradient(100deg, rgba(5, 14, 26, 0.91), rgba(8, 17, 30, 0.74));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 18px 50px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

.hero-feature {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding-inline: 22px;
}

.hero-feature:first-child {
    padding-left: 5px;
}

.hero-feature:last-child {
    padding-right: 0;
}

.hero-feature + .hero-feature {
    border-left: 1px solid rgba(230, 185, 109, 0.24);
}

.feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(230, 185, 109, 0.25);
    border-radius: 50%;
    color: var(--gold-light);
}

.feature-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.hero-feature div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hero-feature strong {
    margin-bottom: 3px;
    color: var(--text-main);
    font-size: 0.79rem;
    font-weight: 600;
}

.hero-feature div span {
    color: rgba(199, 195, 188, 0.66);
    font-size: 0.64rem;
    font-weight: 300;
    line-height: 1.4;
}

.scroll-cue {
    position: absolute;
    right: clamp(42px, 5.2vw, 86px);
    bottom: 37px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(244, 241, 235, 0.56);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(-100%);
    transform-origin: right bottom;
}

.scroll-cue i {
    position: relative;
    width: 55px;
    height: 1px;
    overflow: hidden;
    background: rgba(244, 241, 235, 0.22);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0 auto 0 -30%;
    width: 30%;
    background: var(--gold);
    content: "";
    animation: scroll-line 2.6s ease-in-out infinite;
}

/* Zones */
.zones-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 48%, rgba(169, 120, 56, 0.09), transparent 30%),
        linear-gradient(180deg, #07111F 0%, var(--bg-secondary) 46%, #07111F 100%);
}

.zones-section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1500px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 109, 0.28), transparent);
    content: "";
    transform: translateX(-50%);
}

.ambient-line {
    position: absolute;
    border: 1px solid rgba(230, 185, 109, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.ambient-line-one {
    top: 13%;
    left: -18vw;
    width: 56vw;
    aspect-ratio: 1;
}

.zones-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.17fr) minmax(390px, 0.83fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 60px);
}

.map-shell {
    position: relative;
    min-width: 0;
}

.map-frame {
    position: relative;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    background: #0A111C;
    box-shadow: var(--shadow-card), inset 0 1px rgba(255, 255, 255, 0.04);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.91) sepia(0.13) hue-rotate(172deg) saturate(0.8) brightness(0.63) contrast(1.2);
    opacity: 0.9;
}

.map-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 16, 30, 0.22), transparent 30%, rgba(6, 16, 30, 0.55)), radial-gradient(circle, transparent 50%, rgba(2, 7, 14, 0.5));
    pointer-events: none;
}

.map-label {
    position: absolute;
    top: 23px;
    left: 23px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(230, 185, 109, 0.28);
    border-radius: 999px;
    background: rgba(5, 13, 24, 0.82);
    color: var(--text-secondary);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.map-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(230, 185, 109, 0.12), 0 0 12px var(--gold);
}

.map-link {
    position: absolute;
    right: 23px;
    bottom: 23px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border: 1px solid rgba(230, 185, 109, 0.3);
    border-radius: 999px;
    background: rgba(5, 13, 24, 0.86);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: border-color 300ms ease, background 300ms ease;
}

.map-link svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform 300ms var(--ease-premium);
}

.map-link:hover {
    border-color: rgba(230, 185, 109, 0.65);
    background: rgba(12, 23, 38, 0.96);
}

.map-link:hover svg {
    transform: translateX(4px);
}

.zone-list {
    display: grid;
    gap: 14px;
}

.zone-card {
    position: relative;
    display: grid;
    min-height: 190px;
    grid-template-columns: 46px 1fr auto;
    align-items: start;
    gap: 22px;
    overflow: hidden;
    padding: 29px 28px;
    border: 1px solid rgba(244, 241, 235, 0.09);
    border-radius: var(--radius-md);
    background: linear-gradient(125deg, rgba(17, 30, 46, 0.74), rgba(9, 19, 32, 0.55));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
    transition: transform 450ms var(--ease-premium), border-color 350ms ease, box-shadow 350ms ease;
}

.zone-card::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(230, 185, 109, 0.07);
    content: "";
    filter: blur(36px);
    opacity: 0;
    transition: opacity 400ms ease;
}

.zone-card.is-primary {
    border-color: rgba(230, 185, 109, 0.3);
    background: linear-gradient(125deg, rgba(23, 36, 51, 0.88), rgba(11, 22, 36, 0.74));
}

.zone-card:hover {
    border-color: rgba(230, 185, 109, 0.42);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

.zone-card:hover::after {
    opacity: 1;
}

.zone-index {
    padding-top: 2px;
    color: rgba(230, 185, 109, 0.55);
    font-family: "Bodoni Moda", serif;
    font-size: 1.06rem;
    font-style: italic;
}

.zone-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: rgba(199, 195, 188, 0.63);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.zone-status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 10px var(--gold);
}

.zone-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.zone-card p {
    max-width: 440px;
    color: rgba(199, 195, 188, 0.68);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.65;
}

.zone-arrow {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    fill: none;
    stroke: rgba(230, 185, 109, 0.55);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
    transition: transform 400ms var(--ease-premium), stroke 300ms ease;
}

.zone-card:hover .zone-arrow {
    stroke: var(--gold-light);
    transform: translate(3px, -3px);
}

/* Reservation */
.reservation-section {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(5, 13, 24, 0.93), rgba(9, 20, 34, 0.96)),
        var(--bg-main);
}

.reservation-section::before,
.reservation-section::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.reservation-section::before {
    inset: 0;
    background-image: linear-gradient(rgba(244, 241, 235, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 235, 0.015) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, black, transparent 54%);
}

.reservation-section::after {
    top: 0;
    left: 50%;
    width: min(90%, 1500px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 109, 0.2), transparent);
    transform: translateX(-50%);
}

.reservation-halo {
    position: absolute;
    top: 9%;
    left: -12%;
    width: 44vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(169, 120, 56, 0.1);
    filter: blur(110px);
}

.reservation-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(290px, 0.7fr) minmax(620px, 1.3fr);
    align-items: start;
    gap: clamp(65px, 9vw, 150px);
}

.reservation-intro {
    position: sticky;
    top: calc(var(--header-height) + 70px);
    padding-top: 38px;
}

.reservation-intro h2 {
    margin-bottom: 32px;
    font-size: clamp(2.9rem, 4.4vw, 4.8rem);
}

.reservation-intro > p {
    max-width: 490px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.reservation-note {
    display: flex;
    max-width: 480px;
    align-items: flex-start;
    gap: 14px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(230, 185, 109, 0.18);
    color: rgba(199, 195, 188, 0.58);
    font-size: 0.78rem;
    line-height: 1.65;
}

.reservation-note svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.route-decoration {
    display: flex;
    width: 74%;
    align-items: center;
    margin-top: 60px;
}

.route-decoration span {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(230, 185, 109, 0.05);
}

.route-decoration span:last-child {
    background: var(--gold);
}

.route-decoration i {
    height: 1px;
    flex: 1;
    background: repeating-linear-gradient(90deg, rgba(230, 185, 109, 0.35) 0 5px, transparent 5px 11px);
}

.reservation-form {
    position: relative;
    padding: clamp(29px, 3.8vw, 54px);
    border: 1px solid rgba(230, 185, 109, 0.23);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(16, 29, 44, 0.94), rgba(8, 18, 31, 0.94));
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
}

.reservation-form::before {
    position: absolute;
    top: -1px;
    left: 9%;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    content: "";
    opacity: 0.7;
}

.form-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(244, 241, 235, 0.08);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-secure {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(199, 195, 188, 0.55);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
}

.form-secure i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #78A68C;
    box-shadow: 0 0 9px rgba(120, 166, 140, 0.45);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 20px;
}

.form-field {
    position: relative;
    min-width: 0;
}

.form-field-wide,
.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(244, 241, 235, 0.76);
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.015em;
}

.form-field label span {
    color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(244, 241, 235, 0.11);
    border-radius: var(--radius-sm);
    outline: 0;
    background: rgba(4, 12, 23, 0.55);
    color: var(--text-main);
    font-size: 0.87rem;
    font-weight: 400;
    transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.form-field input,
.form-field select {
    height: 54px;
    padding: 0 17px;
}

.form-field textarea {
    min-height: 116px;
    padding: 15px 17px;
    resize: vertical;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) 23px, calc(100% - 15px) 23px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    padding-right: 42px;
}

.form-field option {
    background: var(--bg-secondary);
    color: var(--text-main);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(199, 195, 188, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(230, 185, 109, 0.66);
    background-color: rgba(7, 16, 28, 0.85);
    box-shadow: 0 0 0 3px rgba(230, 185, 109, 0.08), 0 8px 25px rgba(0, 0, 0, 0.13);
}

.form-field input[type="date"],
.form-field input[type="time"] {
    color-scheme: dark;
}

.field-error {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #E6A19A;
    font-size: 0.68rem;
    opacity: 0;
    transition: max-height 250ms ease, margin 250ms ease, opacity 250ms ease;
}

.form-field.has-error .field-error {
    max-height: 30px;
    margin-top: 6px;
    opacity: 1;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: rgba(230, 133, 122, 0.72);
}

.form-submit {
    width: 100%;
    margin-top: 30px;
}

.form-feedback {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--gold-light);
    font-size: 0.78rem;
    text-align: center;
    opacity: 0;
    transition: max-height 300ms ease, margin 300ms ease, opacity 300ms ease;
}

.form-feedback.is-visible {
    max-height: 100px;
    margin-top: 18px;
    opacity: 1;
}

/* Reviews */
.reviews-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 26%, rgba(230, 185, 109, 0.07), transparent 27%),
        linear-gradient(180deg, var(--bg-secondary), #07101D);
}

.reviews-section::after {
    position: absolute;
    right: -120px;
    bottom: 5%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(230, 185, 109, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(230, 185, 109, 0.018), 0 0 0 150px rgba(230, 185, 109, 0.012);
    content: "";
}

.reviews-heading {
    position: relative;
    z-index: 1;
}

.reviews-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.review-card {
    position: relative;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid rgba(244, 241, 235, 0.09);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(17, 31, 47, 0.68), rgba(9, 19, 32, 0.7));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
    transition: border-color 400ms ease, transform 450ms var(--ease-premium), box-shadow 400ms ease;
}

.review-card-featured {
    border-color: rgba(230, 185, 109, 0.27);
    background: linear-gradient(145deg, rgba(25, 39, 55, 0.88), rgba(10, 21, 35, 0.82));
    transform: translateY(-16px);
}

.review-card:hover {
    border-color: rgba(230, 185, 109, 0.42);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2), 0 0 50px rgba(230, 185, 109, 0.035);
    transform: translateY(-7px);
}

.review-card-featured:hover {
    transform: translateY(-22px);
}

.review-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.quote-mark {
    height: 56px;
    color: rgba(230, 185, 109, 0.42);
    font-family: "Bodoni Moda", serif;
    font-size: 5.5rem;
    font-style: italic;
    line-height: 0.95;
}

.stars {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.review-card blockquote {
    margin-block: 32px 40px;
    color: rgba(244, 241, 235, 0.82);
    font-family: "Bodoni Moda", serif;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    font-style: italic;
    line-height: 1.65;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(244, 241, 235, 0.08);
}

.review-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(230, 185, 109, 0.28);
    border-radius: 50%;
    background: rgba(230, 185, 109, 0.07);
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 0.07em;
}

.review-card footer div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.review-card footer strong {
    font-size: 0.79rem;
    font-weight: 600;
}

.review-card footer div span {
    margin-top: 2px;
    color: rgba(199, 195, 188, 0.48);
    font-size: 0.65rem;
}

/* Contact */
.contact-section {
    min-height: 700px;
    overflow: hidden;
    background: #050D19;
    isolation: isolate;
}

.contact-section::before,
.contact-section::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.contact-section::before {
    inset: 0;
    background: radial-gradient(ellipse at 50% 49%, rgba(230, 185, 109, 0.1), transparent 40%), linear-gradient(180deg, rgba(6, 16, 30, 0.3), rgba(3, 9, 17, 0.76));
}

.contact-section::after {
    top: 0;
    left: 50%;
    width: min(90%, 1500px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 185, 109, 0.32), transparent);
    transform: translateX(-50%);
}

.contact-orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    background: rgba(196, 136, 66, 0.14);
    filter: blur(100px);
    pointer-events: none;
    will-change: transform;
}

.contact-orb-one {
    top: -20%;
    left: 8%;
    width: 38vw;
    height: 38vw;
    animation: contact-orb-one 14s ease-in-out infinite alternate;
}

.contact-orb-two {
    right: 4%;
    bottom: -35%;
    width: 42vw;
    height: 42vw;
    background: rgba(230, 185, 109, 0.1);
    animation: contact-orb-two 18s ease-in-out infinite alternate;
}

.contact-grain {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.5px, transparent 0.7px);
    background-size: 7px 7px;
    opacity: 0.055;
    pointer-events: none;
}

.contact-inner {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-inner h2 {
    font-size: clamp(3.2rem, 6.6vw, 7rem);
    white-space: nowrap;
}

.contact-inner > p {
    max-width: 590px;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

.contact-actions {
    display: grid;
    width: min(850px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 55px;
}

.contact-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 18px 21px;
    border: 1px solid rgba(230, 185, 109, 0.23);
    border-radius: 999px;
    background: rgba(10, 21, 35, 0.6);
    text-align: left;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform 400ms var(--ease-premium), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.contact-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 216, 155, 0.17), rgba(169, 120, 56, 0.09));
    color: var(--gold-light);
}

.contact-icon svg,
.contact-arrow {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.contact-link > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-link small {
    margin-bottom: 2px;
    color: rgba(199, 195, 188, 0.48);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-link strong {
    overflow: hidden;
    font-size: 0.86rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-arrow {
    width: 18px;
    color: rgba(230, 185, 109, 0.6);
    transition: transform 350ms var(--ease-premium);
}

.contact-link:hover,
.contact-link:focus-visible {
    border-color: rgba(230, 185, 109, 0.55);
    background: rgba(16, 29, 44, 0.82);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2), 0 0 35px rgba(230, 185, 109, 0.06);
    transform: translateY(-4px);
}

.contact-link:hover .contact-arrow,
.contact-link:focus-visible .contact-arrow {
    transform: translate(3px, -3px);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(230, 185, 109, 0.12);
    background: #020711;
}

.footer-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    padding-block: 75px 65px;
}

.footer-brand .brand-og {
    font-size: 2.8rem;
}

.footer-brand .brand-taxi {
    font-size: 1.5rem;
}

.footer-brand p {
    max-width: 400px;
    margin-top: 17px;
    color: rgba(199, 195, 188, 0.48);
    font-size: 0.78rem;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 34px;
}

.footer-nav a {
    position: relative;
    color: rgba(244, 241, 235, 0.58);
    font-size: 0.76rem;
    transition: color 250ms ease;
}

.footer-nav a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease-premium);
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 24px 28px;
    border-top: 1px solid rgba(244, 241, 235, 0.07);
    color: rgba(199, 195, 188, 0.34);
    font-size: 0.66rem;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 250ms ease;
}

.footer-bottom a span {
    color: var(--gold);
    transition: transform 250ms ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

.footer-bottom a:hover span {
    transform: translateY(-3px);
}

/* Animations */
@keyframes metallic-shimmer {
    0%, 30% { left: -35%; opacity: 0; }
    34% { opacity: 0.7; }
    51% { left: 115%; opacity: 0; }
    100% { left: 115%; opacity: 0; }
}

@keyframes scroll-line {
    0% { left: -30%; }
    70%, 100% { left: 110%; }
}

@keyframes contact-orb-one {
    from { opacity: 0.6; transform: translate3d(-4%, 0, 0) scale(0.94); }
    to { opacity: 1; transform: translate3d(18%, 12%, 0) scale(1.08); }
}

@keyframes contact-orb-two {
    from { opacity: 0.5; transform: translate3d(5%, 4%, 0) scale(1.08); }
    to { opacity: 0.92; transform: translate3d(-17%, -10%, 0) scale(0.94); }
}

.hero-reveal {
    opacity: 0;
    transform: translateY(22px);
}

.page-loaded .hero-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 900ms var(--ease-premium), transform 900ms var(--ease-premium);
}

.page-loaded .hero-title { transition-delay: 120ms; }
.page-loaded .hero-copy { transition-delay: 240ms; }
.page-loaded .hero-actions { transition-delay: 360ms; }
.page-loaded .hero-features { transition-delay: 520ms; }

.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 780ms var(--ease-premium), transform 780ms var(--ease-premium);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}

.js .reveal-left {
    transform: translateX(-32px);
}

.js .reveal-right {
    transform: translateX(32px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --header-height: 86px;
    }

    .container {
        width: min(var(--container), calc(100% - 64px));
    }

    .header-inner {
        width: calc(100% - 64px);
    }

    .main-nav {
        gap: 31px;
    }

    .hero-content {
        width: min(690px, 64vw);
    }

    .hero-title {
        font-size: clamp(3.45rem, 6.25vw, 4.75rem);
    }

    .hero-features {
        width: min(710px, 67vw);
        padding-inline: 20px;
    }

    .hero-feature {
        gap: 11px;
        padding-inline: 17px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .zones-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    }

    .zone-card {
        grid-template-columns: 36px 1fr auto;
        gap: 15px;
        padding: 25px 22px;
    }

    .reservation-layout {
        grid-template-columns: minmax(270px, 0.66fr) minmax(570px, 1.34fr);
        gap: 60px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 78px;
    }

    .site-header,
    .site-header.is-scrolled {
        height: var(--header-height);
    }

    .site-header.is-menu-open {
        border-color: rgba(230, 185, 109, 0.18);
        background: rgba(4, 11, 21, 0.95);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .header-inner {
        width: calc(100% - 48px);
    }

    .brand-og,
    .site-header.is-scrolled .brand-og {
        font-size: 2.55rem;
    }

    .brand-taxi,
    .site-header.is-scrolled .brand-taxi {
        font-size: 1.42rem;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 1;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        height: calc(100dvh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 34px clamp(28px, 8vw, 72px) 76px;
        background:
            radial-gradient(circle at 86% 8%, rgba(230, 185, 109, 0.1), transparent 35%),
            rgba(4, 11, 21, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 350ms ease, transform 450ms var(--ease-premium);
    }

    .main-nav::after {
        position: absolute;
        right: 9%;
        bottom: 9%;
        width: 180px;
        height: 180px;
        border: 1px solid rgba(230, 185, 109, 0.08);
        border-radius: 50%;
        box-shadow: 0 0 0 40px rgba(230, 185, 109, 0.02);
        content: "";
    }

    .site-header.is-menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        display: flex;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        padding: 18px 5px;
        border-bottom: 1px solid rgba(244, 241, 235, 0.08);
        font-size: clamp(1.35rem, 4vw, 2rem);
        font-weight: 300;
        opacity: 0;
        transform: translateY(15px);
        transition: color 300ms ease, opacity 400ms ease, transform 450ms var(--ease-premium);
    }

    .nav-link::before {
        color: rgba(230, 185, 109, 0.45);
        font-family: "Bodoni Moda", serif;
        font-size: 0.72rem;
        font-style: italic;
        content: "0" counter(nav-item);
        counter-increment: nav-item;
    }

    .main-nav {
        counter-reset: nav-item;
    }

    .site-header.is-menu-open .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .site-header.is-menu-open .nav-link:nth-child(2) { transition-delay: 40ms; }
    .site-header.is-menu-open .nav-link:nth-child(3) { transition-delay: 80ms; }
    .site-header.is-menu-open .nav-link:nth-child(4) { transition-delay: 120ms; }
    .site-header.is-menu-open .nav-link:nth-child(5) { transition-delay: 160ms; }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: max(800px, 100svh);
        background-position: 56% center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(3, 10, 20, 0.98) 0%, rgba(3, 10, 20, 0.82) 35%, rgba(3, 10, 20, 0.26) 75%),
            linear-gradient(180deg, rgba(4, 10, 20, 0.4) 0%, transparent 28%, rgba(3, 9, 18, 0.3) 62%, rgba(3, 9, 18, 0.92) 100%);
    }

    .hero-inner {
        min-height: max(800px, 100svh);
        padding-bottom: 185px;
    }

    .hero-content {
        width: min(660px, 78vw);
    }

    .hero-title {
        font-size: clamp(3.35rem, 7.7vw, 4.7rem);
    }

    .hero-features {
        width: calc(100% - 32px);
        grid-template-columns: repeat(3, 1fr);
    }

    .scroll-cue {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .zones-layout {
        grid-template-columns: 1fr;
    }

    .map-frame {
        min-height: 520px;
    }

    .zone-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .zone-card {
        min-height: 265px;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr;
        gap: 18px;
    }

    .zone-index {
        grid-column: 1;
    }

    .zone-card-content {
        grid-column: 1 / -1;
    }

    .zone-arrow {
        grid-column: 2;
        grid-row: 1;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .reservation-intro {
        position: static;
        max-width: 660px;
        padding-top: 0;
    }

    .route-decoration {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-card:last-child {
        grid-column: 1 / -1;
        min-height: 330px;
    }

    .review-card-featured,
    .review-card-featured:hover {
        transform: translateY(0);
    }

    .contact-inner h2 {
        white-space: normal;
    }

    .footer-main {
        align-items: flex-start;
        gap: 50px;
    }

    .footer-nav {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 40px);
    }

    .section {
        padding-block: 100px;
    }

    .header-inner {
        width: calc(100% - 40px);
    }

    .hero {
        min-height: 860px;
        background-position: 61% center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(3, 10, 20, 0.97) 0%, rgba(3, 10, 20, 0.76) 52%, rgba(3, 10, 20, 0.26) 100%),
            linear-gradient(180deg, rgba(4, 10, 20, 0.45) 0%, rgba(4, 10, 20, 0.18) 36%, rgba(3, 9, 18, 0.58) 63%, rgba(3, 9, 18, 0.96) 100%);
    }

    .hero-inner {
        min-height: 860px;
        justify-content: flex-start;
        padding-top: 134px;
        padding-bottom: 245px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-badge {
        min-height: 39px;
        gap: 8px;
        padding: 7px 14px;
        font-size: 0.62rem;
    }

    .hero-title {
        max-width: 620px;
        font-size: clamp(3rem, 11.6vw, 4.25rem);
        line-height: 0.96;
    }

    .title-place {
        white-space: normal;
    }

    .hero-copy {
        max-width: 520px;
        padding-left: 19px;
        font-size: 0.91rem;
    }

    .hero-copy::before {
        transform: translate(-23px, -2px);
    }

    .button {
        min-height: 58px;
        padding-inline: 23px;
    }

    .hero-features {
        bottom: 32px;
        left: 0;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 7px 20px;
    }

    .hero-feature {
        padding: 12px 2px;
    }

    .hero-feature + .hero-feature {
        border-top: 1px solid rgba(230, 185, 109, 0.17);
        border-left: 0;
    }

    .hero-feature:first-child,
    .hero-feature:last-child {
        padding-right: 2px;
        padding-left: 2px;
    }

    .hero-feature div span {
        font-size: 0.65rem;
    }

    .section-heading h2,
    .reservation-intro h2 {
        font-size: clamp(2.65rem, 11vw, 4.2rem);
    }

    .zone-list {
        grid-template-columns: 1fr;
    }

    .zone-card {
        min-height: 205px;
    }

    .form-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card,
    .review-card:last-child {
        min-height: 330px;
        grid-column: auto;
    }

    .contact-section {
        min-height: 760px;
    }

    .contact-inner h2 {
        font-size: clamp(3.1rem, 14vw, 5.6rem);
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .section {
        padding-block: 82px;
    }

    .header-inner {
        width: calc(100% - 32px);
    }

    .brand {
        gap: 8px;
    }

    .brand-og,
    .site-header.is-scrolled .brand-og {
        font-size: 2.35rem;
    }

    .brand-taxi,
    .site-header.is-scrolled .brand-taxi {
        font-size: 1.27rem;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .main-nav {
        padding-inline: 24px;
    }

    .hero {
        min-height: 830px;
        background-position: 59% center;
    }

    .hero-inner {
        min-height: 830px;
        padding-top: 122px;
        padding-bottom: 238px;
    }

    .hero-badge {
        max-width: 100%;
        margin-bottom: 25px;
        white-space: nowrap;
    }

    .hero-badge span:last-child,
    .hero-badge i:last-of-type {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.8rem, 13.9vw, 4rem);
        letter-spacing: -0.065em;
    }

    .gold-word {
        font-size: 1.18em;
    }

    .title-editorial {
        gap: 0.13em;
    }

    .hero-copy {
        margin-top: 25px;
        font-size: 0.84rem;
        line-height: 1.62;
    }

    .hero-actions {
        margin-top: 27px;
    }

    .hero-actions .button {
        width: 100%;
        max-width: 345px;
        font-size: 0.88rem;
    }

    .hero-actions .button > svg:first-child {
        display: none;
    }

    .hero-features {
        padding-inline: 16px;
        border-radius: 18px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    .section-heading h2,
    .reservation-intro h2 {
        font-size: clamp(2.5rem, 12.5vw, 3.55rem);
    }

    .section-heading > p,
    .reservation-intro > p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .eyebrow {
        margin-bottom: 17px;
        font-size: 0.65rem;
    }

    .map-frame {
        min-height: 420px;
        border-radius: 22px;
    }

    .map-label {
        top: 16px;
        left: 16px;
    }

    .map-link {
        right: 16px;
        bottom: 16px;
    }

    .zone-card {
        min-height: 0;
        padding: 25px 21px;
    }

    .reservation-layout {
        gap: 44px;
    }

    .reservation-note {
        margin-top: 26px;
    }

    .reservation-form {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .form-topline {
        margin-bottom: 28px;
        padding-bottom: 19px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-field,
    .form-field-wide,
    .form-field-full {
        grid-column: auto;
    }

    .form-field input,
    .form-field select {
        height: 52px;
    }

    .form-submit {
        min-height: 58px;
        margin-top: 24px;
        font-size: 0.87rem;
    }

    .review-card {
        min-height: 320px;
        padding: 27px 23px;
    }

    .review-card blockquote {
        font-size: 1.05rem;
    }

    .contact-section {
        min-height: 720px;
    }

    .contact-inner h2 {
        font-size: clamp(3rem, 15vw, 4.4rem);
        line-height: 0.98;
    }

    .contact-inner > p {
        font-size: 0.9rem;
    }

    .contact-actions {
        margin-top: 42px;
    }

    .contact-link {
        gap: 13px;
        padding: 14px 16px;
    }

    .contact-icon {
        width: 41px;
        height: 41px;
    }

    .footer-main {
        padding-block: 58px 48px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 2.73rem;
    }

    .hero-badge {
        font-size: 0.58rem;
    }

    .contact-link strong {
        font-size: 0.78rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-reveal,
    .page-loaded .hero-reveal,
    .js .reveal,
    .js .reveal-left,
    .js .reveal-right,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .gold-word::after,
    .scroll-cue i::after,
    .contact-orb {
        animation: none;
    }
}
