* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #151515;
    --fg: #f5f5f5;
    --fg-soft: rgba(245, 245, 245, 0.78);
    --fg-muted: rgba(245, 245, 245, 0.58);
    --line: rgba(245, 245, 245, 0.14);
    --card: rgba(245, 245, 245, 0.03);
    --font-main: "Manrope", sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.35;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.9), transparent 70%),
        radial-gradient(1px 1px at 28% 66%, rgba(255, 255, 255, 0.7), transparent 70%),
        radial-gradient(1.4px 1.4px at 44% 35%, rgba(255, 255, 255, 0.84), transparent 70%),
        radial-gradient(1.1px 1.1px at 63% 22%, rgba(255, 255, 255, 0.72), transparent 70%),
        radial-gradient(1.7px 1.7px at 78% 58%, rgba(255, 255, 255, 0.85), transparent 72%),
        radial-gradient(1px 1px at 88% 28%, rgba(255, 255, 255, 0.65), transparent 70%),
        radial-gradient(1.3px 1.3px at 18% 84%, rgba(255, 255, 255, 0.75), transparent 70%),
        radial-gradient(1.6px 1.6px at 56% 78%, rgba(255, 255, 255, 0.8), transparent 70%),
        radial-gradient(1.2px 1.2px at 92% 86%, rgba(255, 255, 255, 0.68), transparent 70%),
        radial-gradient(1px 1px at 8% 42%, rgba(255, 255, 255, 0.7), transparent 70%),
        radial-gradient(1.2px 1.2px at 34% 12%, rgba(255, 255, 255, 0.6), transparent 70%),
        radial-gradient(1px 1px at 52% 52%, rgba(255, 255, 255, 0.7), transparent 70%),
        radial-gradient(1.1px 1.1px at 74% 14%, rgba(255, 255, 255, 0.65), transparent 70%),
        radial-gradient(1px 1px at 84% 72%, rgba(255, 255, 255, 0.62), transparent 70%),
        radial-gradient(1.3px 1.3px at 26% 92%, rgba(255, 255, 255, 0.67), transparent 72%);
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    background-image: radial-gradient(circle at 20% 20%, #ffffff 0.4px, transparent 0.8px);
    background-size: 2px 2px;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.17;
}

.bg-glow-left {
    left: -20vw;
    top: -8vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.bg-glow-right {
    right: -22vw;
    bottom: -18vw;
    background: radial-gradient(circle, rgba(140, 170, 255, 0.24), rgba(255, 255, 255, 0));
}

.site-header,
.hero,
.reviews,
.final-cta {
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2rem clamp(1.3rem, 3.5vw, 4.5rem);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
    backdrop-filter: blur(6px);
    gap: 0.9rem;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    color: var(--fg);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.34em;
    font-weight: 800;
}

.logo-image {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.menu {
    display: flex;
    gap: clamp(1.1rem, 2.8vw, 3rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 999px;
}

.header-controls::before {
    content: "";
    position: absolute;
    inset: -0.45rem -1.4rem;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.18) 48%, transparent 68%);
    transform: translateX(120%);
    animation: menuSheen 6s ease-in-out infinite;
}

.header-controls > * {
    position: relative;
    z-index: 1;
}

.menu a {
    color: var(--fg-soft);
    text-decoration: none;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    transition: color 260ms ease, opacity 220ms ease;
}

.menu a:hover {
    color: var(--fg);
}

.menu a:focus-visible {
    color: var(--fg);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    outline: none;
}

.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.34rem 0.44rem 0.34rem 0.8rem;
    border: 1px solid rgba(245, 210, 122, 0.34);
    border-radius: 999px;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.12),
        rgba(245, 210, 122, 0.16) 46%,
        rgba(115, 142, 255, 0.16)
    );
    backdrop-filter: blur(12px);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.23),
        0 0 0 1px rgba(245, 210, 122, 0.14);
}

.language-switcher::before {
    display: none;
}

.language-switcher-label {
    position: relative;
    z-index: 1;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 239, 205, 0.96);
    text-shadow: 0 0 10px rgba(245, 210, 122, 0.25);
}

.language-current {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0)),
        rgba(0, 0, 0, 0.66);
    color: var(--fg);
    padding: 0.44rem 2rem 0.44rem 0.78rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    min-width: 8rem;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    text-align: left;
}

.language-current::after {
    content: "";
    position: absolute;
    right: 0.8rem;
    top: 50%;
    margin-top: -2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #f5d27a;
    transition: transform 180ms ease;
}

.language-switcher.is-open .language-current::after {
    transform: rotate(180deg);
}

.language-current:focus-visible {
    border-color: rgba(245, 210, 122, 0.85);
    box-shadow: 0 0 0 3px rgba(245, 210, 122, 0.22);
}

.language-current:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 210, 122, 0.5);
}

.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    width: 100%;
    min-width: 12.6rem;
    border: 1px solid rgba(245, 210, 122, 0.3);
    border-radius: 1rem;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
    padding: 0.4rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 40;
}

.language-switcher.is-open .language-menu {
    display: flex;
}

.language-option {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid transparent;
    border-radius: 0.72rem;
    background: transparent;
    color: var(--fg-soft);
    text-align: left;
    padding: 0.6rem 0.68rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.language-flag-image {
    width: 1.05rem;
    height: 0.72rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    flex: 0 0 auto;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
    border-color: rgba(245, 210, 122, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #fff4d3;
    outline: none;
}

.language-native-select {
    display: none;
}

@keyframes langSheen {
    0%,
    62%,
    100% {
        transform: translateX(140%);
    }
    76% {
        transform: translateX(-120%);
    }
    90% {
        transform: translateX(140%);
    }
}

@keyframes menuSheen {
    0%,
    62%,
    100% {
        transform: translateX(120%);
    }
    76% {
        transform: translateX(-92%);
    }
    90% {
        transform: translateX(120%);
    }
}

.instagram-nav-link {
    position: relative;
    padding: 0;
    border: none;
    background: none;
    color: rgba(245, 210, 122, 0.92) !important;
    letter-spacing: 0.24em;
}

.instagram-nav-link:hover {
    color: #fff5db !important;
}

.instagram-nav-link::before {
    content: "";
    position: absolute;
    left: -0.74rem;
    top: 50%;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 50%;
    background: rgba(245, 210, 122, 0.65);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(245, 210, 122, 0.45);
}

.whatsapp-nav-link {
    position: relative;
    color: rgba(95, 230, 157, 0.95) !important;
    letter-spacing: 0.24em;
}

.whatsapp-nav-link:hover {
    color: #d6ffe9 !important;
}

.whatsapp-nav-link::before {
    content: "";
    position: absolute;
    left: -0.74rem;
    top: 50%;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 50%;
    background: rgba(95, 230, 157, 0.7);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(95, 230, 157, 0.52);
}

.whatsapp-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.22rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(95, 230, 157, 0), rgba(95, 230, 157, 0.82), rgba(95, 230, 157, 0));
    opacity: 0;
    transform: scaleX(0.55);
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.instagram-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.22rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(245, 210, 122, 0), rgba(245, 210, 122, 0.8), rgba(245, 210, 122, 0));
    opacity: 0;
    transform: scaleX(0.55);
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
}

.instagram-nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.hero {
    position: relative;
    min-height: 96vh;
    padding: clamp(6rem, 12vh, 8rem) clamp(1.3rem, 3.5vw, 4.5rem) clamp(2rem, 3.5vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.4rem, 3vw, 4rem);
    align-items: center;
    isolation: isolate;
}

.hero-content {
    max-width: 40rem;
    position: relative;
    z-index: 3;
}

.overline {
    font-size: 0.69rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 1.2rem;
}

h1 {
    font-size: clamp(2.5rem, 6.6vw, 6rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.lead {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    color: var(--fg-soft);
    max-width: 34rem;
}

.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.instagram-inline-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #f5d27a;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.64rem;
    transition: color 220ms ease, transform 220ms ease;
}

.instagram-inline-link:hover {
    color: #fff4d3;
    transform: translateX(2px);
}

.hero-social-links {
    margin-top: 0.95rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.52rem;
}

.whatsapp-inline-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #7affbf;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.64rem;
    transition: color 220ms ease, transform 220ms ease;
}

.whatsapp-inline-link:hover {
    color: #d6ffe9;
    transform: translateX(2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.86rem 1.35rem;
    min-height: 2.8rem;
    font-size: 0.73rem;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 240ms ease, background-color 240ms ease, color 240ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 2px solid rgba(245, 210, 122, 0.75);
    outline-offset: 2px;
}

.btn-light {
    background: var(--fg);
    color: var(--bg);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--fg);
}

.hero-metrics {
    margin-top: 2.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    max-width: 38rem;
}

.metric {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.95rem 1rem;
}

.metric-value {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.metric-label {
    margin-top: 0.36rem;
    font-size: 0.69rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.hero-visual {
    position: relative;
    height: min(80vh, 780px);
    min-height: 420px;
    background: transparent;
    overflow: visible;
    z-index: 1;
}

#canvas-container {
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(ellipse 78% 66% at 58% 50%, #000 58%, transparent 100%);
    mask-image: radial-gradient(ellipse 78% 66% at 58% 50%, #000 58%, transparent 100%);
}

#canvas-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.visual-caption {
    position: absolute;
    left: 1.15rem;
    bottom: 1rem;
    font-size: 0.63rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--fg-muted);
    z-index: 2;
}

.reviews {
    margin: 2.6rem clamp(1.3rem, 3.5vw, 4.5rem) 0;
    padding: 2rem 0 2.6rem;
    border-top: 1px solid var(--line);
}

.reviews-head h2,
.final-cta h2 {
    margin-top: 0.9rem;
    font-size: clamp(1.6rem, 3.5vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.reviews-average {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
}

.reviews-average-stars {
    display: inline-flex;
    gap: 0.2rem;
}

.reviews-average-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: 0.03em;
}

.reviews-average-count {
    font-size: 0.72rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.marquee {
    margin-top: 1.8rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    animation: slideReviews 34s linear infinite;
}

.review-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.review-card {
    width: min(360px, 74vw);
    min-height: 168px;
    border: 1px solid var(--line);
    background: var(--card);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.review-link:hover .review-card {
    border-color: rgba(245, 210, 122, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.review-card p {
    color: var(--fg-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-rating {
    display: inline-flex;
    gap: 0.22rem;
    margin-bottom: 0.72rem;
}

.star {
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
}

.star.is-active {
    color: #f5d27a;
    text-shadow: 0 0 12px rgba(245, 210, 122, 0.45);
}

.review-card span {
    margin-top: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fg-muted);
}

.reviews-page-link {
    margin-top: 1.3rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--line);
    color: var(--fg);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.78rem 0.95rem;
    transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.reviews-page-link:hover {
    border-color: rgba(245, 210, 122, 0.55);
    color: #fff4d5;
    transform: translateY(-2px);
}

.services-home,
.contact-flow {
    scroll-margin-top: 7rem;
    margin: 0 clamp(1.3rem, 3.5vw, 4.5rem) 2.4rem;
    padding: 2rem;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.planning-story,
.planning-form-wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto 2.6rem;
    padding: 2rem;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.planning-story {
    min-height: 0;
}

.planning-story-head h1 {
    margin-top: 0.8rem;
    margin-bottom: 100px;
    font-size: clamp(2rem, 5vw, 3.3rem);
    color: #c7a54a;
    letter-spacing: -0.03em;
    text-align: center;
}

.planning-story-head {
    text-align: center;
}

.services-home-head h2,
.contact-flow-head h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.45rem, 3vw, 2.45rem);
    letter-spacing: -0.02em;
}

.overline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 0.6rem;
}

.services-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.service-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 50% 62%, rgba(245, 210, 122, 0.18), transparent 46%);
    opacity: 0;
    transition: opacity 360ms ease;
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 340ms ease;
}

.service-card:hover .service-media img {
    transform: scale(1.04);
}

.service-card:hover .service-media::after,
.service-card:focus-within .service-media::after {
    opacity: 1;
}

.service-booking-link {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(18rem, calc(100% - 2rem));
    padding: 0.78rem 1.05rem;
    border: 1px solid rgba(245, 210, 122, 0.46);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 210, 122, 0.92)),
        #ffffff;
    color: #090909;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(245, 210, 122, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0.7rem) scale(0.96);
    transition:
        opacity 260ms ease 90ms,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1) 90ms,
        box-shadow 240ms ease;
}

.service-card:hover .service-booking-link,
.service-card:focus-within .service-booking-link {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.service-booking-link:hover,
.service-booking-link:focus-visible {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.48),
        0 0 30px rgba(245, 210, 122, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    outline: none;
}

.service-body {
    padding: 1rem;
}

.service-body h3 {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-body p {
    margin-top: 0.55rem;
    color: var(--fg-soft);
    line-height: 1.6;
}

.steps-track {
    margin-top: 1.4rem;
    position: relative;
    display: grid;
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    gap: clamp(2.4rem, 8vw, 9rem);
    --steps-axis-x: calc(clamp(4.8rem, 8vw, 7rem) - 3px);
}

.steps-track::before {
    content: "";
    position: absolute;
    left: calc(var(--steps-axis-x) + 6px);
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.steps-track::after {
    content: "";
    position: absolute;
    left: calc(var(--steps-axis-x) + 6px);
    top: var(--plane-y, 0px);
    width: 2px;
    height: 125px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(245, 210, 122, 0), rgba(245, 210, 122, 0.98), rgba(245, 210, 122, 0));
    box-shadow:
        0 0 12px rgba(245, 210, 122, 0.62),
        0 0 20px rgba(245, 210, 122, 0.45);
    pointer-events: none;
    opacity: var(--plane-glow-opacity, 0);
}

.steps-plane {
    position: absolute;
    top: 0;
    left: calc(var(--steps-axis-x) + 12px);
    font-size: clamp(6rem, 12.4vw, 9.9rem);
    color: #e0b84f;
    text-shadow: 0 0 24px rgba(245, 210, 122, 0.9);
    transform: translate(-50%, 0) rotate(90deg);
    transition: none;
    z-index: 4;
    line-height: 1;
    opacity: 0;
}

.step-item {
    display: grid;
    grid-template-columns: minmax(8rem, 14rem) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: stretch;
    min-height: auto;
}

.step-timeline {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 0.5rem;
}

.step-display-number-svg {
    width: clamp(8rem, 19vw, 12.8rem);
    height: auto;
    display: block;
    transform: translateY(-32px);
}

.step-display-number-svg text {
    fill: rgba(255, 255, 255, 0.34);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 128px;
    letter-spacing: -4px;
    transition: fill 220ms ease, filter 220ms ease, transform 220ms ease;
}

.step-item.is-active .step-display-number-svg text {
    fill: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 3px 18px rgba(255, 255, 255, 0.72));
}

.step-content-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.2rem;
    width: 100%;
    min-height: 135px;
    padding: 0.3rem 0.38rem 0.32rem;
    transition: border-color 220ms ease, background-color 220ms ease;
    margin-top: 0.12rem;
}

.step-item.is-active .step-content-card {
    border-color: rgba(245, 210, 122, 0.52);
    background: rgba(255, 255, 255, 0.08);
}

.step-label {
    display: inline-flex;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 0.2rem 0.58rem;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transform: translate(16px, 10px);
}

.step-item h3 {
    margin-top: 0.65rem;
    font-size: 1.36rem;
    transform: translate(16px, 10px);
}

.step-item p {
    margin-top: 0.5rem;
    color: var(--fg-soft);
    line-height: 1.6;
    font-size: 1.08rem;
    transform: translate(16px, 10px);
}

.contact-form {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.contact-form .control {
    display: grid;
    gap: 0.42rem;
}

.contact-form .control-passengers { order: 40; }
.contact-form .control-cabin { order: 50; }
.contact-form .control-departure { order: 60; }
.contact-form .control-arrival { order: 70; }
.contact-form .return-route-control { order: 80; }
.contact-form .contact-submit { order: 90; }

.contact-form.is-round-trip .control-departure { order: 50; }
.contact-form.is-round-trip .control-arrival { order: 60; }
.contact-form.is-round-trip .control-cabin { order: 70; }

.contact-form .control.is-hidden {
    display: none;
}

.return-route-control {
    grid-column: 1 / -1;
    border: 1px solid rgba(245, 210, 122, 0.25);
    border-radius: 0.95rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(245, 210, 122, 0.05));
    padding: 0.9rem 0.95rem;
}

.return-route-hint {
    margin-top: 0.36rem;
    color: var(--fg-soft);
    font-size: 0.82rem;
    line-height: 1.5;
}

.return-route-grid {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.return-route-tools {
    margin-top: 0.72rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.return-suggestion-btn {
    border: 1px solid rgba(245, 210, 122, 0.32);
    border-radius: 0.62rem;
    background: rgba(255, 255, 255, 0.06);
    color: #ffe7af;
    padding: 0.52rem 0.75rem;
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.return-suggestion-btn:hover,
.return-suggestion-btn:focus-visible {
    border-color: rgba(245, 210, 122, 0.56);
    box-shadow: 0 0 0 3px rgba(245, 210, 122, 0.14);
    outline: none;
}

.return-confirm-check {
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    color: var(--fg-soft);
    font-size: 0.78rem;
}

.return-confirm-check input {
    width: 0.95rem;
    height: 0.95rem;
    accent-color: #f5d27a;
}

.contact-form .control span {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

.control-feedback {
    min-height: 1rem;
    font-size: 0.68rem;
    color: rgba(255, 179, 179, 0.95);
    letter-spacing: 0.02em;
    margin-top: 0.14rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--fg);
    padding: 0.74rem 0.78rem;
    font: inherit;
    border-radius: 0.78rem;
}

.premium-date-field {
    position: relative;
}

.premium-date-field input[type="date"] {
    width: 100%;
    padding-right: 3rem;
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.85rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(245, 210, 122, 0.12)), rgba(4, 4, 4, 0.78);
    color: #fff9ec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    color-scheme: dark;
}

.premium-date-field input[type="date"]:focus-visible {
    border-color: rgba(245, 210, 122, 0.72);
    box-shadow:
        0 0 0 3px rgba(245, 210, 122, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    outline: none;
}

.premium-date-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
}

.premium-date-input-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.premium-date-display {
    width: 100%;
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.85rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(245, 210, 122, 0.12)), rgba(4, 4, 4, 0.78);
    color: #fff9ec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    padding: 0.74rem 3.05rem 0.74rem 0.95rem;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.premium-date-display:hover,
.premium-date-display:focus-visible {
    border-color: rgba(245, 210, 122, 0.72);
    box-shadow:
        0 0 0 3px rgba(245, 210, 122, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    outline: none;
}

.premium-date-field.is-disabled .premium-date-display,
.premium-date-field.is-disabled .premium-date-picker-btn {
    opacity: 0.45;
    cursor: not-allowed;
}

.premium-date-picker-btn {
    position: absolute;
    right: 0.45rem;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.55rem;
    background: rgba(8, 8, 8, 0.72);
    color: #f5d27a;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.premium-date-picker-btn svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-date-picker-btn:hover,
.premium-date-picker-btn:focus-visible {
    border-color: rgba(245, 210, 122, 0.62);
    box-shadow: 0 0 0 3px rgba(245, 210, 122, 0.16);
    outline: none;
}

.premium-calendar-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    width: 100%;
    border: 1px solid rgba(245, 210, 122, 0.3);
    border-radius: 1rem;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.44);
    padding: 0.66rem;
    display: none;
    z-index: 35;
}

.premium-date-field.is-open .premium-calendar-panel {
    display: block;
}

.premium-calendar-head {
    display: grid;
    grid-template-columns: 2rem 1fr 2rem;
    align-items: center;
    gap: 0.45rem;
}

.premium-calendar-head strong {
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: #ffe8b1;
    text-transform: uppercase;
}

.premium-calendar-nav {
    border: 1px solid rgba(245, 210, 122, 0.34);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: #f5d27a;
    height: 1.8rem;
    cursor: pointer;
}

.premium-calendar-weekdays {
    margin-top: 0.55rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.2rem;
}

.premium-calendar-weekdays span {
    text-align: center;
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-calendar-grid {
    margin-top: 0.35rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.2rem;
}

.premium-calendar-day {
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background: transparent;
    color: var(--fg-soft);
    height: 2rem;
    cursor: pointer;
    font: inherit;
    font-size: 0.75rem;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.premium-calendar-day:hover,
.premium-calendar-day:focus-visible {
    border-color: rgba(245, 210, 122, 0.42);
    background: rgba(255, 255, 255, 0.07);
    outline: none;
}

.premium-calendar-day.is-selected {
    border-color: rgba(245, 210, 122, 0.72);
    background: rgba(245, 210, 122, 0.2);
    color: #fff7df;
}

.premium-calendar-day.is-outside {
    opacity: 0.35;
}

.premium-stepper {
    display: grid;
    grid-template-columns: 2.2rem 1fr 2.2rem;
    gap: 0.5rem;
    align-items: center;
}

.premium-stepper #passengers {
    text-align: center;
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.85rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(245, 210, 122, 0.08));
    appearance: textfield;
    height: 2.2rem;
}

.premium-stepper #passengers::-webkit-outer-spin-button,
.premium-stepper #passengers::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.premium-stepper-btn {
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.6rem;
    background: rgba(8, 8, 8, 0.72);
    color: #f5d27a;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.premium-stepper-btn svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
}

.premium-stepper-btn:hover,
.premium-stepper-btn:focus-visible {
    border-color: rgba(245, 210, 122, 0.62);
    box-shadow: 0 0 0 3px rgba(245, 210, 122, 0.16);
    transform: translateY(-1px);
    outline: none;
}

.contact-native-select {
    display: none;
}

.premium-contact-select {
    position: relative;
}

.premium-contact-select-trigger {
    width: 100%;
    border: 1px solid rgba(245, 210, 122, 0.35);
    border-radius: 0.85rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(245, 210, 122, 0.08));
    color: var(--fg);
    padding: 0.74rem 2.1rem 0.74rem 0.95rem;
    font: inherit;
    letter-spacing: 0.04em;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.premium-contact-select-trigger::after {
    content: "";
    position: absolute;
    right: 0.95rem;
    top: 50%;
    margin-top: -1px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(245, 210, 122, 0.92);
    transition: transform 180ms ease;
}

.premium-contact-select.is-open .premium-contact-select-trigger::after {
    transform: rotate(180deg);
}

.premium-contact-select-trigger:hover,
.premium-contact-select-trigger:focus-visible {
    border-color: rgba(245, 210, 122, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 210, 122, 0.16);
    transform: translateY(-1px);
    outline: none;
}

.premium-contact-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.42rem);
    border: 1px solid rgba(245, 210, 122, 0.3);
    border-radius: 0.9rem;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
    padding: 0.34rem;
    display: none;
    z-index: 25;
}

.premium-contact-select.is-open .premium-contact-select-menu {
    display: grid;
    gap: 0.2rem;
}

.premium-contact-select-option {
    border: 1px solid transparent;
    border-radius: 0.65rem;
    background: transparent;
    color: var(--fg-soft);
    font: inherit;
    letter-spacing: 0.03em;
    padding: 0.56rem 0.64rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.premium-contact-select-option:hover,
.premium-contact-select-option:focus-visible,
.premium-contact-select-option.is-active {
    border-color: rgba(245, 210, 122, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: #fff4d1;
    outline: none;
}

.contact-submit {
    grid-column: 1 / -1;
    border: 1px solid rgba(140, 255, 188, 0.45);
    background: linear-gradient(135deg, #1a9f62, #42d67d 55%, #8dffc6);
    color: #04150c;
    font-weight: 800;
    letter-spacing: 0.16em;
    border-radius: 0.85rem;
    box-shadow:
        0 12px 28px rgba(66, 214, 125, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.9rem;
}

.contact-submit svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.contact-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.34) 48%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 320ms ease;
}

.contact-submit:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 16px 34px rgba(66, 214, 125, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.contact-submit:hover::after {
    transform: translateX(120%);
}

.contact-submit:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(141, 255, 198, 0.35),
        0 16px 34px rgba(66, 214, 125, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

@keyframes planeTravelY {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(100% - 2.6rem));
    }
}

.final-cta {
    margin: 0 clamp(1.3rem, 3.5vw, 4.5rem) 3.2rem;
    padding: 2.2rem;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
    text-align: center;
}

.final-cta p {
    max-width: 42rem;
    margin: 0.9rem auto 1.4rem;
    color: var(--fg-soft);
}

.plan-page-main {
    padding-top: clamp(6rem, 12vh, 8rem);
    padding-bottom: 2rem;
}

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

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

    .marquee-track {
        animation: none !important;
    }
}

@keyframes slideReviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        height: 58vh;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 6.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-metrics {
        max-width: 100%;
    }

    .reviews-head h2,
    .final-cta h2 {
        max-width: 32rem;
    }

    .planning-story,
    .planning-form-wrap {
        width: min(1120px, calc(100% - 1.6rem));
        padding: 1.4rem;
    }

    .step-item h3 {
        font-size: 1.18rem;
    }

    .step-item p {
        font-size: 0.98rem;
    }
}

@media (max-width: 700px) {
    .hero-visual {
        min-height: 360px;
        height: 46vh;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .steps-track {
        margin-top: 1rem;
        gap: 6rem;
        --steps-axis-x: 1.05rem;
    }

    .steps-track::before {
        left: calc(var(--steps-axis-x) + 14.1px);
    }

    .steps-track::after {
        left: calc(var(--steps-axis-x) + 14.1px);
        width: 2px;
        height: 92px;
        transition: top 120ms linear, opacity 120ms linear;
        will-change: top, opacity;
    }

    .steps-plane {
        display: block;
        left: calc(var(--steps-axis-x) + 16.9px);
        font-size: clamp(4rem, 14.8vw, 5.4rem);
        text-shadow: 0 0 18px rgba(245, 210, 122, 0.8);
        transition: transform 120ms linear, opacity 120ms linear;
        will-change: transform, opacity;
    }

    .step-item {
        grid-template-columns: 3.4rem minmax(0, 1fr);
        gap: 0.95rem;
        min-height: auto;
    }

    .step-timeline {
        justify-items: center;
        align-items: start;
    }

    .step-display-number-svg {
        width: 3.85rem;
        transform: translateY(10px);
    }

    .step-display-number-svg text {
        font-size: 136px;
        letter-spacing: -3px;
    }

    .step-content-card {
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 0.9rem;
        padding: 0.82rem 0.84rem 0.86rem;
    }

    .step-label,
    .step-item h3,
    .step-item p {
        transform: none;
    }

    .step-label {
        font-size: 0.63rem;
    }

    .step-item h3 {
        margin-top: 0.46rem;
        font-size: clamp(1.02rem, 4.7vw, 1.18rem);
        line-height: 1.3;
    }

    .step-item p {
        margin-top: 0.4rem;
        font-size: clamp(0.9rem, 3.9vw, 0.98rem);
        line-height: 1.52;
    }

    .reviews-average {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .reviews-page-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .final-cta {
        padding: 1.6rem 1.1rem;
    }

    .services-home,
    .planning-story,
    .planning-form-wrap {
        padding: 1.2rem;
        width: calc(100% - 2rem);
    }

    .return-route-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .overline {
        letter-spacing: 0.24em;
        font-size: 0.62rem;
    }

    .btn {
        width: 100%;
        padding: 0.82rem 0.8rem;
        letter-spacing: 0.16em;
    }

    .reviews {
        margin: 1.8rem 1rem 0;
        padding-bottom: 1.8rem;
    }

    .review-card {
        width: min(300px, 86vw);
        min-height: 178px;
    }

    .final-cta {
        margin: 0 1rem 2rem;
    }

    .planning-story,
    .planning-form-wrap {
        width: calc(100% - 1rem);
        padding: 1rem;
    }

    .contact-submit {
        width: 100%;
    }
}

html.reviews-public-off #avis,
html.reviews-public-off [data-reviews-nav] {
    display: none !important;
}