@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 1. Variables */
:root {
    --deep-green: #10292a;
    --slate: #3d4d55;
    --warm-gray: #a79e9c;
    --sand: #d3c3b9;
    --caramel: #b58863;
    --black: #161616;
    --white: #f7f4f0;

    --deep-green-95: rgba(16, 41, 42, 0.95);
    --deep-green-88: rgba(16, 41, 42, 0.88);
    --deep-green-76: rgba(16, 41, 42, 0.76);
    --deep-green-58: rgba(16, 41, 42, 0.58);
    --black-82: rgba(22, 22, 22, 0.82);
    --black-62: rgba(22, 22, 22, 0.62);
    --black-34: rgba(22, 22, 22, 0.34);
    --white-92: rgba(247, 244, 240, 0.92);
    --white-76: rgba(247, 244, 240, 0.76);
    --white-56: rgba(247, 244, 240, 0.56);
    --white-18: rgba(247, 244, 240, 0.18);
    --white-10: rgba(247, 244, 240, 0.1);
    --white-06: rgba(247, 244, 240, 0.06);
    --caramel-28: rgba(181, 136, 99, 0.28);
    --caramel-16: rgba(181, 136, 99, 0.16);

    --font-display: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1220px;
    --gutter: clamp(1rem, 4vw, 3rem);
    --header-height: 64px;
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 34px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.18);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 36px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background: var(--deep-green);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

button {
    border: 0;
}

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 520;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

h2 {
    margin-bottom: clamp(1.35rem, 2vw, 2rem);
    font-size: clamp(2.65rem, 5.4vw, 5.25rem);
}

h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

::selection {
    color: var(--black);
    background: var(--sand);
}

.container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.section-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    padding-block: clamp(7rem, 12vw, 11rem);
    scroll-margin-top: calc(var(--header-height) + 30px);
}

.section-index,
.eyebrow,
.form-kicker {
    margin-bottom: 1.15rem;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.glass-panel {
    border: 1px solid var(--white-18);
    background: linear-gradient(145deg, rgba(16, 41, 42, 0.83), rgba(22, 22, 22, 0.7));
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 620;
    line-height: 1;
    cursor: pointer;
    transition: transform 280ms var(--ease-out), background-color 280ms ease, border-color 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.button svg,
.header-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 280ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg,
.header-cta:hover svg,
.header-cta:focus-visible svg {
    transform: translateX(3px);
}

.button-primary {
    color: var(--black);
    background: var(--caramel);
    box-shadow: 0 12px 32px rgba(22, 22, 22, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #c39773;
    box-shadow: 0 16px 38px rgba(22, 22, 22, 0.22);
}

.button-secondary {
    color: var(--white);
    border-color: var(--white-18);
    background: var(--white-06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(211, 195, 185, 0.5);
    background: rgba(247, 244, 240, 0.12);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: var(--black);
    background: var(--sand);
    font-family: var(--font-display);
    font-weight: 650;
    transform: translateY(-150%);
    transition: transform 220ms var(--ease-out);
}

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

/* 3. Background */
.background-stage {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: var(--deep-green);
    pointer-events: none;
}

.background-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0;
    transform: scale(1.005);
    transition: opacity 950ms var(--ease-out);
    will-change: opacity;
}

.background-frame.frame-2 {
    object-position: 51% 50%;
}

.background-frame.frame-3 {
    object-position: 47% 50%;
}

.background-frame.is-visible {
    opacity: 1;
}

.background-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 17, 18, 0.4) 0%, rgba(8, 17, 18, 0.04) 30%, rgba(8, 17, 18, 0.15) 70%, rgba(8, 17, 18, 0.5) 100%),
        linear-gradient(90deg, rgba(8, 17, 18, 0.12), transparent 34%, transparent 70%, rgba(8, 17, 18, 0.1));
    transition: background-color 500ms ease;
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 2;
}

/* 4. Header */
.site-header {
    position: fixed;
    z-index: 50;
    top: clamp(0.75rem, 2vw, 1.5rem);
    left: 0;
    width: 100%;
    padding-inline: var(--gutter);
    transition: transform 350ms var(--ease-out);
}

.header-layout {
    display: grid;
    width: min(var(--container), 100%);
    margin-inline: auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.glass-pill {
    border: 1px solid rgba(247, 244, 240, 0.14);
    background: rgba(16, 27, 28, 0.64);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
}

.brand-pill {
    display: inline-flex;
    min-height: 52px;
    width: max-content;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 630;
    letter-spacing: -0.02em;
    transition: border-color 250ms ease, background-color 250ms ease, transform 250ms var(--ease-out);
}

.brand-pill:hover,
.brand-pill:focus-visible {
    border-color: rgba(211, 195, 185, 0.4);
    background: rgba(16, 41, 42, 0.78);
    transform: translateY(-1px);
}

.brand-mark {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--caramel);
    box-shadow: 0 0 0 5px var(--caramel-16);
}

.header-nav {
    min-height: 52px;
    padding: 0.25rem;
    border-radius: 999px;
}

.header-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

.nav-link {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    color: var(--white-76);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 540;
    white-space: nowrap;
    transition: color 240ms ease, background-color 240ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--white);
    background: var(--white-06);
}

.nav-link.is-active {
    color: var(--white);
    background: rgba(247, 244, 240, 0.14);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.header-cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(247, 244, 240, 0.12);
    border-radius: 999px;
    color: var(--black);
    background: var(--caramel);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 650;
    transition: transform 250ms var(--ease-out), background-color 250ms ease, box-shadow 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: #c39773;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--white-10);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: top 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.menu-toggle span:first-child {
    top: 19px;
}

.menu-toggle span:last-child {
    top: 26px;
}

.menu-toggle[aria-expanded='true'] span:first-child {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

/* 5. Hero */
.hero {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    scroll-margin-top: var(--header-height);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(16, 41, 42, 0.18), rgba(16, 41, 42, 0.02) 40%, transparent 65%),
        linear-gradient(180deg, rgba(8, 17, 18, 0.3) 0%, rgba(8, 17, 18, 0.06) 42%, rgba(8, 17, 18, 0.42) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1080px;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 8.5rem;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-76);
}

.eyebrow span {
    width: 24px;
    height: 1px;
    background: var(--caramel);
}

.hero-title {
    margin-bottom: clamp(1.35rem, 2.4vw, 2rem);
    color: var(--white);
    font-size: clamp(3.4rem, 8.4vw, 8rem);
    font-weight: 520;
    letter-spacing: -0.065em;
    line-height: 0.84;
    text-wrap: balance;
    background: linear-gradient(105deg, #f7f4f0 0%, #f7f4f0 40%, #d3c3b9 47%, #fffdf9 50%, #d3c3b9 53%, #f7f4f0 60%, #f7f4f0 100%);
    background-position: 140% center;
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-shimmer 6.8s ease-in-out infinite;
}

.hero-copy {
    max-width: 720px;
    margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white-92);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: clamp(1.5rem, 4vw, 2.75rem);
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--white-76);
    font-family: var(--font-display);
    font-size: 0.67rem;
    font-weight: 580;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: color 250ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
    color: var(--white);
}

.scroll-cue-line {
    position: relative;
    width: 1px;
    height: 36px;
    overflow: hidden;
    background: var(--white-18);
}

.scroll-cue-line::after {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sand);
    content: '';
    animation: scroll-line 2.4s var(--ease-out) infinite;
}

/* 6. Zone desservie */
.zone-section {
    display: grid;
    min-height: max(840px, 110svh);
    align-items: center;
}

.section-overlay,
.reservation-overlay,
.services-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-overlay {
    background: linear-gradient(180deg, rgba(16, 41, 42, 0.38), rgba(16, 41, 42, 0.54));
}

.zone-layout {
    position: relative;
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1rem, 2.5vw, 2rem);
}

.zone-content {
    display: flex;
    padding: clamp(1.6rem, 3.5vw, 3rem);
    border-radius: var(--radius-large);
    justify-content: center;
    flex-direction: column;
}

.zone-content h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.section-lead {
    max-width: 560px;
    margin-bottom: 1.1rem;
    color: var(--white-92);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.8;
}

.section-note {
    max-width: 540px;
    margin-bottom: 1.8rem;
    color: var(--white-56);
    font-size: 0.86rem;
    line-height: 1.75;
}

.coverage-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.coverage-list span {
    display: inline-flex;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--white-10);
    border-radius: 999px;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-76);
    background: var(--white-06);
    font-family: var(--font-display);
    font-size: 0.72rem;
}

.coverage-list i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--caramel);
}

.map-card {
    min-width: 0;
    padding: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--white-18);
    border-radius: var(--radius-large);
    background: var(--deep-green-88);
    box-shadow: var(--shadow-soft);
}

.map-toolbar,
.map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-display);
}

.map-toolbar {
    min-height: 58px;
    padding-inline: 0.8rem;
    color: var(--white-76);
    font-size: 0.72rem;
}

.map-toolbar > div {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.map-toolbar strong {
    color: var(--white);
    font-size: 0.77rem;
    font-weight: 620;
}

.map-status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--caramel);
    box-shadow: 0 0 0 6px var(--caramel-16);
}

.map-frame {
    position: relative;
    height: clamp(380px, 48vw, 550px);
    overflow: hidden;
    border-radius: calc(var(--radius-large) - 10px);
    background: var(--slate);
}

.map-frame::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    box-shadow: inset 0 0 50px rgba(16, 41, 42, 0.16);
    content: '';
    pointer-events: none;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.72) contrast(0.96) sepia(0.08);
}

.map-footer {
    min-height: 54px;
    padding: 0.5rem 0.8rem 0;
    color: var(--white-56);
    font-size: 0.65rem;
}

.map-footer span:first-child {
    color: var(--sand);
}

.map-footer a {
    color: var(--white-76);
    text-decoration: underline;
    text-decoration-color: rgba(211, 195, 185, 0.45);
    text-underline-offset: 3px;
    transition: color 220ms ease, text-decoration-color 220ms ease;
}

.map-footer a:hover,
.map-footer a:focus-visible {
    color: var(--white);
    text-decoration-color: var(--caramel);
}

/* 7. Réservation */
.reservation-section {
    min-height: 120svh;
}

.reservation-overlay {
    background:
        linear-gradient(180deg, rgba(10, 21, 22, 0.3) 0%, rgba(10, 21, 22, 0.48) 25%, rgba(10, 21, 22, 0.7) 100%),
        linear-gradient(90deg, rgba(10, 21, 22, 0.2), transparent 45%, rgba(10, 21, 22, 0.18));
}

.reservation-container {
    position: relative;
}

.reservation-heading {
    max-width: 850px;
    margin: 0 auto clamp(2.2rem, 5vw, 4rem);
    text-align: center;
}

.reservation-heading h2 {
    margin-bottom: 1.3rem;
}

.reservation-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--white-76);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}

.reservation-form {
    max-width: 1080px;
    margin-inline: auto;
    padding: clamp(1.35rem, 4vw, 3.25rem);
    border-radius: var(--radius-large);
}

.form-intro {
    display: flex;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--white-10);
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.form-intro h3 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.form-kicker {
    margin-bottom: 0.7rem;
    color: var(--caramel);
}

.form-intro > p {
    margin-bottom: 0;
    color: var(--white-56);
    font-size: 0.7rem;
}

.form-intro > p span,
label span {
    color: var(--caramel);
}

.reservation-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 2rem 0;
    border: 0;
    border-bottom: 1px solid var(--white-10);
}

.reservation-form legend {
    display: flex;
    width: 100%;
    margin-bottom: 1.25rem;
    padding: 0;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 640;
    letter-spacing: 0.03em;
}

.reservation-form legend span {
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid var(--caramel-28);
    border-radius: 50%;
    color: var(--caramel);
    font-size: 0.62rem;
    place-items: center;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

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

.form-grid-trip {
    grid-template-columns: 0.62fr 0.5fr 1.3fr;
}

.form-grid-course {
    grid-template-columns: 0.5fr 0.5fr 1.5fr;
}

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

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--white-76);
    font-size: 0.7rem;
    font-weight: 560;
    letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--white-10);
    border-radius: var(--radius-small);
    outline: none;
    color: var(--white);
    background: rgba(247, 244, 240, 0.055);
    font-size: 0.82rem;
    line-height: 1.35;
    color-scheme: dark;
    transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field select {
    padding-right: 2.5rem;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--warm-gray) 50%),
        linear-gradient(135deg, var(--warm-gray) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 22px,
        calc(100% - 12px) 22px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.field select option {
    color: var(--white);
    background: var(--deep-green);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(247, 244, 240, 0.36);
    opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: var(--white-18);
    background-color: rgba(247, 244, 240, 0.075);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(181, 136, 99, 0.82);
    background-color: rgba(247, 244, 240, 0.08);
    box-shadow: 0 0 0 4px rgba(181, 136, 99, 0.1);
}

.field-error {
    display: none;
    margin-top: 0.45rem;
    color: var(--sand);
    font-size: 0.65rem;
    line-height: 1.45;
}

.reservation-form.was-validated .field input:invalid,
.reservation-form.was-validated .field select:invalid,
.reservation-form.was-validated .field textarea:invalid {
    border-color: rgba(211, 195, 185, 0.72);
}

.reservation-form.was-validated .field input:invalid + .field-error,
.reservation-form.was-validated .field select:invalid + .field-error,
.reservation-form.was-validated .field textarea:invalid + .field-error {
    display: block;
}

.form-submit {
    display: flex;
    padding-top: 2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.form-status {
    max-width: 580px;
    margin: 0;
    color: var(--white-56);
    font-size: 0.7rem;
    line-height: 1.65;
}

.form-status.is-error {
    color: var(--sand);
}

.form-status.is-ready {
    color: var(--white-92);
}

.submit-button {
    flex: 0 0 auto;
}

/* 8. Services */
.services-section {
    display: grid;
    min-height: max(840px, 105svh);
    align-items: center;
}

.services-overlay {
    background: linear-gradient(180deg, rgba(10, 21, 22, 0.62), rgba(10, 21, 22, 0.76));
}

.services-container {
    position: relative;
}

.services-heading {
    display: grid;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    align-items: end;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 2rem;
}

.services-heading h2 {
    margin-bottom: 0;
}

.services-heading > p {
    margin-bottom: 0.45rem;
    color: var(--white-76);
    font-size: 0.9rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 390px;
    padding: clamp(1.35rem, 2.5vw, 2rem);
    overflow: hidden;
    border: 1px solid var(--white-18);
    border-radius: var(--radius-medium);
    background: linear-gradient(150deg, rgba(16, 41, 42, 0.88), rgba(22, 22, 22, 0.76));
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.14);
    justify-content: space-between;
    flex-direction: column;
    transition: transform 340ms var(--ease-out), border-color 340ms ease, background-color 340ms ease, box-shadow 340ms ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 2rem;
    width: 46px;
    height: 2px;
    background: var(--caramel);
    content: '';
    transform: scaleX(0.45);
    transform-origin: left;
    transition: transform 340ms var(--ease-out);
}

.service-card:hover {
    border-color: rgba(211, 195, 185, 0.36);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.service-card-top svg {
    width: 34px;
    height: 34px;
    color: var(--sand);
}

.service-number {
    color: var(--caramel);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.12em;
}

.service-card h3 {
    max-width: 270px;
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 1.02;
}

.service-card div > p {
    margin-bottom: 0;
    color: var(--white-76);
    font-size: 0.82rem;
    line-height: 1.75;
}

.service-meta {
    margin: 1.7rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--white-10);
    color: var(--white-56);
    font-size: 0.68rem;
    line-height: 1.6;
}

.services-cta {
    display: flex;
    margin-top: 1.25rem;
    padding: 1.1rem 1.1rem 1.1rem 1.5rem;
    border: 1px solid var(--white-10);
    border-radius: 999px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(16, 41, 42, 0.58);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.services-cta p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 530;
}

/* 9. Footer */
.site-footer {
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    border-top: 1px solid var(--white-10);
    background: rgba(10, 29, 30, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.footer-layout {
    display: grid;
    padding-bottom: 2.5rem;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
}

.footer-brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 640;
}

.footer-nav {
    display: flex;
    padding: 0.35rem;
    border: 1px solid var(--white-10);
    border-radius: 999px;
    gap: 0.1rem;
    background: var(--white-06);
}

.footer-nav a {
    display: inline-flex;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    align-items: center;
    color: var(--white-56);
    font-family: var(--font-display);
    font-size: 0.7rem;
    transition: color 220ms ease, background-color 220ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--white);
    background: var(--white-06);
}

.footer-cta {
    display: inline-flex;
    min-height: 46px;
    width: max-content;
    padding: 0.65rem 1.1rem;
    border: 1px solid var(--caramel-28);
    border-radius: 999px;
    align-items: center;
    justify-self: end;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 590;
    transition: color 240ms ease, border-color 240ms ease, background-color 240ms ease, transform 240ms var(--ease-out);
}

.footer-cta:hover,
.footer-cta:focus-visible {
    color: var(--black);
    border-color: var(--caramel);
    background: var(--caramel);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    padding-top: 1.3rem;
    border-top: 1px solid var(--white-10);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--white-56);
    font-family: var(--font-display);
    font-size: 0.67rem;
}

.footer-bottom p {
    margin: 0;
}

/* 10. Animations */
@keyframes title-shimmer {
    0%, 28% {
        background-position: 140% center;
    }
    58%, 100% {
        background-position: -60% center;
    }
}

@keyframes scroll-line {
    0% {
        transform: translateY(0);
    }
    65%, 100% {
        transform: translateY(200%);
    }
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

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

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

.js .reveal-scale {
    transform: translateY(16px) scale(0.985);
}

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

/* 11. Responsive */
@media (max-width: 1080px) {
    .nav-link {
        padding-inline: 0.76rem;
        font-size: 0.76rem;
    }

    .header-cta,
    .brand-pill {
        min-height: 50px;
    }

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

    .map-footer span:nth-child(2) {
        display: none;
    }
}

@media (max-width: 900px) {
    .zone-layout {
        grid-template-columns: 1fr;
    }

    .zone-content {
        min-height: 430px;
    }

    .map-frame {
        height: min(58vw, 520px);
        min-height: 360px;
    }

    .services-heading {
        grid-template-columns: 1fr;
    }

    .services-heading > p {
        max-width: 620px;
    }

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

    .service-card {
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 60px;
    }

    .site-header {
        top: 0.65rem;
        padding-inline: max(0.65rem, env(safe-area-inset-left));
    }

    .header-layout {
        position: relative;
        display: flex;
        min-height: 60px;
        padding: 0.35rem;
        border: 1px solid rgba(247, 244, 240, 0.14);
        border-radius: 999px;
        align-items: center;
        gap: 0.35rem;
        background: rgba(16, 27, 28, 0.76);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
        -webkit-backdrop-filter: blur(18px) saturate(130%);
        backdrop-filter: blur(18px) saturate(130%);
    }

    .brand-pill {
        min-height: 48px;
        padding: 0.55rem 0.75rem;
        border: 0;
        background: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .brand-pill:hover,
    .brand-pill:focus-visible {
        background: var(--white-06);
        transform: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-cta {
        min-height: 46px;
        padding: 0.6rem 0.9rem;
        font-size: 0.78rem;
    }

    .header-cta svg {
        display: none;
    }

    .menu-toggle {
        position: relative;
        display: block;
        flex: 0 0 auto;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 0.55rem);
        right: 0;
        left: 0;
        min-height: 0;
        padding: 0.5rem;
        border-radius: 24px;
        visibility: hidden;
        opacity: 0;
        background: rgba(16, 29, 30, 0.94);
        transform: translateY(-8px) scale(0.985);
        transform-origin: top;
        pointer-events: none;
        transition: opacity 250ms ease, transform 250ms var(--ease-out), visibility 250ms;
    }

    .header-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .header-nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .nav-link {
        min-height: 48px;
        padding: 0.7rem 0.85rem;
        font-size: 0.8rem;
    }

    .nav-link.is-active {
        background: var(--white-10);
    }

    .form-grid-three,
    .form-grid-trip,
    .form-grid-course {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid-three .field:last-child,
    .field-type {
        grid-column: 1 / -1;
    }

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

    .footer-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: 1rem;
        --radius-large: 26px;
        --radius-medium: 22px;
    }

    .background-frame.frame-1 {
        object-position: 50% 50%;
    }

    .background-frame.frame-2 {
        object-position: 53% 50%;
    }

    .background-frame.frame-3 {
        object-position: 43% 50%;
    }

    .background-vignette {
        background: linear-gradient(180deg, rgba(8, 17, 18, 0.45) 0%, rgba(8, 17, 18, 0.05) 34%, rgba(8, 17, 18, 0.24) 68%, rgba(8, 17, 18, 0.58) 100%);
    }

    .hero-content {
        padding-top: 7rem;
        padding-bottom: 7.5rem;
    }

    .hero-title {
        font-size: clamp(3.1rem, 16vw, 4.6rem);
        line-height: 0.88;
    }

    .hero-copy {
        font-size: 0.86rem;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        min-width: min(100%, 260px);
    }

    .scroll-cue {
        bottom: 1.25rem;
    }

    .section-shell {
        padding-block: 6.5rem;
    }

    .zone-content {
        min-height: 0;
        padding: 1.5rem;
    }

    .zone-content h2 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    .section-lead {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .map-card {
        padding: 0.55rem;
    }

    .map-toolbar {
        min-height: 52px;
        padding-inline: 0.55rem;
    }

    .map-toolbar > div span:last-child {
        max-width: 130px;
        line-height: 1.25;
    }

    .map-frame {
        height: 440px;
        min-height: 0;
    }

    .map-footer {
        min-height: 50px;
        padding-inline: 0.55rem;
    }

    .reservation-section {
        padding-top: 7.5rem;
    }

    .reservation-heading {
        text-align: left;
    }

    .reservation-heading h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .reservation-heading > p:last-child {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .reservation-form {
        padding: 1.25rem;
    }

    .form-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .reservation-form fieldset {
        padding-block: 1.6rem;
    }

    .form-grid-three,
    .form-grid-trip,
    .form-grid-course {
        grid-template-columns: 1fr;
    }

    .form-grid-three .field:last-child,
    .field-type,
    .field-wide,
    .field-full {
        grid-column: auto;
    }

    .field input,
    .field select,
    .field textarea {
        min-height: 54px;
        font-size: 0.83rem;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }

    .services-heading h2 {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
    }

    .service-card {
        min-height: 340px;
        padding: 1.4rem;
    }

    .services-cta {
        padding: 1.2rem;
        border-radius: var(--radius-medium);
        align-items: stretch;
        flex-direction: column;
    }

    .services-cta .button {
        width: 100%;
    }

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

    .footer-brand,
    .footer-cta {
        justify-self: start;
    }

    .footer-nav {
        display: grid;
        width: 100%;
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr 1fr;
    }

    .footer-nav a {
        min-height: 44px;
    }

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

@media (max-width: 380px) {
    .brand-pill {
        gap: 0.5rem;
        padding-inline: 0.55rem;
        font-size: 0.92rem;
    }

    .brand-mark {
        width: 7px;
        height: 7px;
    }

    .header-cta {
        padding-inline: 0.72rem;
    }

    .hero-actions .button {
        width: 100%;
    }

    .map-toolbar strong {
        display: none;
    }

    .map-frame {
        height: 390px;
    }

    .coverage-list {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* 12. Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .js .reveal,
    .js .reveal-left,
    .js .reveal-right,
    .js .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .hero-title {
        background-position: center;
    }

    .background-frame {
        will-change: auto;
    }
}
