/* TOTO VTC V4 - home - extracted from page template. */
:root {
            --black: #090909;
            --black-soft: #141414;
            --bone: #f5efe5;
            --bone-dark: #e8dfd2;
            --white: #ffffff;
            --orange: #ff5d38;
            --orange-dark: #df3f1e;
            --muted: #aaa49c;
            --line-dark: rgba(255,255,255,.15);
            --line-light: rgba(9,9,9,.16);
            --max: 1240px;
            --radius: 24px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--black);
            color: var(--white);
            font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        body.menu-open {
            overflow: hidden;
        }

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

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

        button {
            font: inherit;
        }

        .skip {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 200;
            padding: 10px 14px;
            border-radius: 10px;
            background: var(--bone);
            color: var(--black);
            transform: translateY(-150%);
        }

        .skip:focus {
            transform: none;
        }

        .container {
            width: min(calc(100% - 40px), var(--max));
            margin: 0 auto;
        }

        .preview {
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 7px 20px;
            background: var(--orange);
            color: var(--black);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .11em;
            text-align: center;
            text-transform: uppercase;
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid var(--line-dark);
            background: rgba(9,9,9,.88);
            backdrop-filter: blur(18px);
        }

        .header-inner {
            min-height: 86px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo {
            width: 132px;
            flex: 0 0 auto;
        }

        .logo img {
            width: 100%;
            height: 62px;
            object-fit: contain;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 26px;
            margin-left: auto;
        }

        .nav a {
            color: #d7d3cd;
            font-size: 14px;
            font-weight: 680;
        }

        .nav a:hover {
            color: var(--orange);
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .action {
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 0 22px;
            border: 1px solid transparent;
            border-radius: 999px;
            background: var(--orange);
            color: var(--black);
            font-size: 14px;
            font-weight: 900;
            transition: background .2s ease, color .2s ease, transform .2s ease;
        }

        .action:hover {
            background: #ff7758;
            transform: translateY(-1px);
        }

        .action::after {
            content: "↗";
            font-size: 17px;
        }

        .action-ghost {
            border-color: var(--line-dark);
            background: transparent;
            color: var(--white);
        }

        .action-ghost:hover {
            border-color: var(--orange);
            background: transparent;
            color: var(--orange);
        }

        .action-ghost::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            margin-left: auto;
            padding: 0;
            border: 1px solid var(--line-dark);
            border-radius: 50%;
            background: transparent;
            color: white;
        }

        .menu-toggle span,
        .menu-toggle::before,
        .menu-toggle::after {
            content: "";
            display: block;
            width: 18px;
            height: 2px;
            margin: 4px auto;
            background: currentColor;
            transition: transform .2s ease, opacity .2s ease;
        }

        .menu-open .menu-toggle span {
            opacity: 0;
        }

        .menu-open .menu-toggle::before {
            transform: translateY(6px) rotate(45deg);
        }

        .menu-open .menu-toggle::after {
            transform: translateY(-6px) rotate(-45deg);
        }

        .hero {
            position: relative;
            overflow: hidden;
            padding: 72px 0 88px;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -220px;
            right: -170px;
            width: 540px;
            height: 540px;
            border: 1px solid rgba(255,93,56,.38);
            border-radius: 50%;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -110px;
            right: -60px;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(255,93,56,.22);
            border-radius: 50%;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
            align-items: center;
            gap: 76px;
        }

        .eyebrow {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 24px;
            color: var(--orange);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 30px;
            height: 2px;
            background: currentColor;
        }

        .hero h1 {
            max-width: 760px;
            margin: 0;
            font-size: clamp(64px, 8vw, 116px);
            font-weight: 900;
            letter-spacing: -.078em;
            line-height: .84;
        }

        .hero h1 span {
            display: block;
            color: var(--orange);
        }

        .hero-copy > p:not(.eyebrow) {
            max-width: 580px;
            margin: 32px 0 0;
            color: #c1bcb5;
            font-size: 19px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }

        .hero-meta span {
            padding: 9px 12px;
            border: 1px solid var(--line-dark);
            border-radius: 999px;
            color: #d7d3cd;
            font-size: 12px;
            font-weight: 720;
        }

        .booking-box {
            padding: 26px;
            border-radius: var(--radius);
            background: var(--bone);
            color: var(--black);
            box-shadow: 0 28px 90px rgba(0,0,0,.3);
        }

        .booking-box-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 22px;
        }

        .booking-box h2 {
            max-width: 300px;
            margin: 0;
            font-size: 30px;
            letter-spacing: -.05em;
            line-height: 1;
        }

        .booking-box-head span {
            padding: 7px 10px;
            border-radius: 999px;
            background: var(--orange);
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .trip-fields {
            position: relative;
            isolation: isolate;
            overflow: visible;
            border: 1px solid var(--line-light);
            border-radius: 16px;
            background: white;
        }

        .trip-field {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 12px;
            padding: 17px 18px;
            border-bottom: 1px solid var(--line-light);
        }

        .trip-field:last-child {
            border-bottom: 0;
        }

        .trip-dot {
            width: 10px;
            height: 10px;
            margin-top: 7px;
            border: 3px solid var(--orange);
            border-radius: 50%;
        }

        .trip-dot.square {
            border-radius: 2px;
        }

        .trip-field label {
            display: block;
            color: #706a63;
            font-size: 10px;
            font-weight: 850;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .trip-field strong {
            display: block;
            margin-top: 3px;
            font-size: 15px;
        }

        .trip-time {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }

        .trip-time div {
            padding: 14px;
            border: 1px solid var(--line-light);
            border-radius: 13px;
            background: white;
        }

        .trip-time span {
            display: block;
            color: #706a63;
            font-size: 10px;
            font-weight: 850;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .trip-time strong {
            display: block;
            margin-top: 4px;
            font-size: 14px;
        }

        .booking-box .action {
            width: 100%;
            margin-top: 12px;
        }

        .booking-note {
            margin: 11px 0 0;
            color: #706a63;
            font-size: 11px;
            text-align: center;
        }

        .ticker {
            overflow: hidden;
            border-top: 1px solid var(--line-dark);
            border-bottom: 1px solid var(--line-dark);
        }

        .ticker-track {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-width: 920px;
            min-height: 74px;
            gap: 32px;
            padding: 0 20px;
        }

        .ticker-track span {
            color: #d4cfc8;
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
        }

        .ticker-track i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange);
        }

        .section {
            padding: 112px 0;
        }

        .bone {
            background: var(--bone);
            color: var(--black);
        }

        .section-head {
            display: grid;
            grid-template-columns: 1fr .54fr;
            align-items: end;
            gap: 60px;
            margin-bottom: 52px;
        }

        .section-head h2 {
            max-width: 800px;
            margin: 0;
            font-size: clamp(44px, 5.6vw, 76px);
            letter-spacing: -.065em;
            line-height: .94;
        }

        .section-head p {
            margin: 0;
            color: #6d675f;
            font-size: 17px;
        }

        .section:not(.bone) .section-head p {
            color: var(--muted);
        }

        .destinations {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .destination {
            min-height: 270px;
            display: flex;
            flex-direction: column;
            padding: 24px;
            border: 1px solid var(--line-light);
            border-radius: var(--radius);
            background: white;
        }

        .destination span {
            color: var(--orange-dark);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .destination h3 {
            margin: auto 0 10px;
            font-size: 28px;
            letter-spacing: -.045em;
            line-height: 1;
        }

        .destination p {
            margin: 0;
            color: #6d675f;
            font-size: 13px;
        }

        .destination a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            width: fit-content;
            margin-top: 18px;
            color: var(--orange-dark);
            font-size: 12px;
            font-weight: 900;
        }

        .destination a::after {
            content: "↗";
        }

        .promise {
            display: grid;
            grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
            align-items: stretch;
            gap: 16px;
        }

        .promise-image {
            min-height: 700px;
            overflow: hidden;
            border-radius: var(--radius);
        }

        .promise-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .promise-copy {
            display: flex;
            flex-direction: column;
            padding: clamp(34px, 5vw, 70px);
            border-radius: var(--radius);
            background: var(--orange);
            color: var(--black);
        }

        .promise-copy .eyebrow {
            color: var(--black);
        }

        .promise-copy h2 {
            max-width: 650px;
            margin: 0;
            font-size: clamp(48px, 6vw, 84px);
            letter-spacing: -.075em;
            line-height: .88;
        }

        .promise-list {
            margin-top: auto;
            border-top: 1px solid rgba(9,9,9,.25);
        }

        .promise-item {
            display: grid;
            grid-template-columns: 42px 1fr;
            gap: 18px;
            padding: 21px 0;
            border-bottom: 1px solid rgba(9,9,9,.25);
        }

        .promise-item span {
            font-size: 12px;
            font-weight: 900;
        }

        .promise-item h3 {
            margin: 0;
            font-size: 20px;
            letter-spacing: -.035em;
        }

        .promise-item p {
            margin: 5px 0 0;
            color: rgba(9,9,9,.67);
            font-size: 13px;
        }

        .fleet {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 16px;
        }

        .fleet-visual {
            position: relative;
            min-height: 620px;
            overflow: hidden;
            border-radius: var(--radius);
        }

        .fleet-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fleet-badge {
            position: absolute;
            top: 22px;
            left: 22px;
            padding: 10px 13px;
            border-radius: 999px;
            background: var(--orange);
            color: var(--black);
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .fleet-options {
            display: grid;
            grid-template-rows: repeat(3, 1fr);
            gap: 12px;
        }

        .fleet-card {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 20px;
            padding: 26px;
            border: 1px solid var(--line-dark);
            border-radius: var(--radius);
            background: var(--black-soft);
        }

        .fleet-card h3 {
            margin: 0;
            font-size: 30px;
            letter-spacing: -.05em;
        }

        .fleet-card p {
            margin: 7px 0 0;
            color: var(--muted);
            font-size: 13px;
        }

        .fleet-card span {
            color: var(--orange);
            font-size: 11px;
            font-weight: 900;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .step {
            min-height: 330px;
            display: flex;
            flex-direction: column;
            padding: 28px;
            border: 1px solid var(--line-light);
            border-radius: var(--radius);
            background: white;
        }

        .step-number {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--orange);
            font-size: 12px;
            font-weight: 900;
        }

        .step h3 {
            margin: auto 0 10px;
            font-size: 30px;
            letter-spacing: -.05em;
        }

        .step p {
            margin: 0;
            color: #6d675f;
            font-size: 14px;
        }

        .final {
            padding: 32px 0 112px;
        }

        .final-card {
            position: relative;
            overflow: hidden;
            padding: clamp(42px, 7vw, 92px);
            border: 1px solid var(--line-dark);
            border-radius: 32px;
            background: var(--black-soft);
        }

        .final-card::after {
            content: "";
            position: absolute;
            top: -180px;
            right: -100px;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: var(--orange);
        }

        .final-card > * {
            position: relative;
            z-index: 1;
        }

        .final-card h2 {
            max-width: 900px;
            margin: 0;
            font-size: clamp(50px, 7vw, 98px);
            letter-spacing: -.075em;
            line-height: .88;
        }

        .final-card p {
            max-width: 560px;
            margin: 26px 0 0;
            color: var(--muted);
            font-size: 18px;
        }

        .final-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 32px;
        }

        .footer {
            border-top: 1px solid var(--line-dark);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.2fr .65fr .65fr;
            gap: 70px;
            padding: 56px 0;
        }

        .footer-brand img {
            width: 145px;
            height: 66px;
            object-fit: contain;
        }

        .footer-brand p {
            max-width: 380px;
            margin: 17px 0 0;
            color: var(--muted);
            font-size: 14px;
        }

        .footer-col h3 {
            margin: 0 0 16px;
            color: var(--orange);
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .footer-col a {
            display: block;
            width: fit-content;
            margin-top: 9px;
            color: #d9d5cf;
            font-size: 14px;
        }

        .footer-col a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 22px 0 40px;
            border-top: 1px solid var(--line-dark);
            color: #807a73;
            font-size: 12px;
        }

        .quick-actions {
            display: none;
        }

        .quick-action svg {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .quick-action img {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            object-fit: contain;
        }

        :focus-visible {
            outline: 3px solid var(--orange);
            outline-offset: 4px;
        }

        @media (max-width: 1040px) {
            .nav {
                gap: 17px;
            }

            .header-contact .action-ghost {
                display: none;
            }

            .hero-grid {
                grid-template-columns: minmax(0, 1fr) minmax(390px, .76fr);
                gap: 42px;
            }

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

            .promise {
                grid-template-columns: .8fr 1.2fr;
            }
        }

        @media (max-width: 820px) {
            .container {
                width: min(calc(100% - 28px), var(--max));
            }

            .header-inner {
                min-height: 72px;
            }

            .logo {
                width: 112px;
            }

            .menu-toggle {
                display: block;
            }

            .header-contact {
                display: none;
            }

            .nav {
                position: fixed;
                inset: 108px 14px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 16px;
                border: 1px solid var(--line-dark);
                border-radius: 18px;
                background: #171717;
                box-shadow: 0 20px 70px rgba(0,0,0,.4);
                opacity: 0;
                transform: translateY(-10px);
                pointer-events: none;
                transition: opacity .2s ease, transform .2s ease;
            }

            .menu-open .nav {
                opacity: 1;
                transform: none;
                pointer-events: auto;
            }

            .nav a {
                padding: 14px 9px;
                border-bottom: 1px solid var(--line-dark);
            }

            .nav a:last-child {
                border-bottom: 0;
            }

            .hero-grid,
            .section-head {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: clamp(70px, 15vw, 108px);
            }

            .booking-box {
                max-width: 620px;
            }

            .section {
                padding: 84px 0;
            }

            .section-head {
                gap: 22px;
            }

            .promise,
            .fleet {
                grid-template-columns: 1fr;
            }

            .promise-image,
            .fleet-visual {
                min-height: 520px;
            }

            .promise-copy {
                min-height: 660px;
            }

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

            .step {
                min-height: 250px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 42px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 560px) {
            body {
                padding-bottom: 74px;
            }

            .preview {
                min-height: 32px;
                font-size: 9px;
            }

            .nav {
                top: 104px;
            }

            .hero {
                padding: 50px 0 66px;
            }

            .hero h1 {
                font-size: clamp(62px, 20vw, 90px);
            }

            .hero-copy > p:not(.eyebrow) {
                font-size: 17px;
            }

            .hero-meta {
                display: grid;
            }

            .booking-box {
                padding: 20px;
            }

            .trip-time {
                grid-template-columns: 1fr;
            }

            .ticker-track {
                justify-content: flex-start;
            }

            .section {
                padding: 70px 0;
            }

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

            .destination {
                min-height: 240px;
            }

            .promise-image,
            .fleet-visual {
                min-height: 430px;
            }

            .promise-copy {
                min-height: 620px;
            }

            .fleet-card {
                grid-template-columns: 1fr;
            }

            .final {
                padding-bottom: 76px;
            }

            .final-card {
                padding: 38px 26px;
                border-radius: 24px;
            }

            .final-card::after {
                top: -260px;
                right: -240px;
            }

            .final-actions .action {
                width: 100%;
            }

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

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 7px;
            }

            .quick-actions {
                position: fixed;
                z-index: 80;
                right: 10px;
                bottom: max(10px, env(safe-area-inset-bottom));
                left: 10px;
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
                padding: 8px;
                border: 1px solid var(--line-dark);
                border-radius: 18px;
                background: rgba(15,15,15,.92);
                box-shadow: 0 18px 60px rgba(0,0,0,.5);
                backdrop-filter: blur(16px);
            }

            .quick-actions .quick-action {
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 5px;
                border: 1px solid var(--line-dark);
                border-radius: 13px;
                color: #fff;
                font-size: 11px;
                font-weight: 900;
                line-height: 1;
                white-space: nowrap;
            }

            .quick-actions .whatsapp {
                border-color: #25d366;
                background: #25d366;
                color: #07180d;
            }

            .quick-actions .book {
                border-color: var(--orange);
                background: var(--orange);
                color: var(--black);
            }

            .quick-actions .quick-action:hover {
                transform: translateY(-1px);
            }
        }

        @media (min-width: 1400px) {
            .quick-actions {
                position: fixed;
                z-index: 80;
                right: 10px;
                bottom: 24px;
                display: grid;
                width: 82px;
                grid-template-rows: repeat(3, minmax(0, 1fr));
                gap: 8px;
                padding: 8px;
                border: 1px solid var(--line-dark);
                border-radius: 20px;
                background: rgba(15,15,15,.92);
                box-shadow: 0 18px 60px rgba(0,0,0,.35);
                backdrop-filter: blur(16px);
            }

            .quick-actions .quick-action {
                display: flex;
                min-height: 64px;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 7px;
                padding: 7px 4px;
                border: 1px solid var(--line-dark);
                border-radius: 13px;
                color: #fff;
                font-size: 9px;
                font-weight: 900;
                line-height: 1;
                text-align: center;
                transition: transform .2s, background .2s, color .2s;
            }

            .quick-actions .quick-action:hover {
                transform: translateX(-2px);
            }

            .quick-actions .whatsapp {
                border-color: #25d366;
                background: #25d366;
                color: #07180d;
            }

            .quick-actions .book {
                border-color: #fff;
                background: #fff;
                color: #090a0c;
            }
        }

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

            *,
            *::before,
            *::after {
                transition: none !important;
            }
        }

        /* V4 — mix V1 + V3, aligned with the original black-and-white identity. */
        :root {
            --black: #090a0c;
            --black-soft: #15171a;
            --bone: #f1f1ef;
            --bone-dark: #e7e8e9;
            --orange: #ffffff;
            --orange-dark: #d9d9d9;
            --muted: #a9adb2;
        }

        .preview {
            background: #111317;
            color: #ffffff;
        }

        .header {
            border-color: #dfe1e4;
            background: rgba(255,255,255,.94);
        }

        .nav a {
            color: #16181b;
        }

        .nav a:hover {
            color: #666b72;
        }

        .header-contact .action {
            border-color: #090a0c;
            background: #090a0c;
            color: #ffffff;
        }

        .header-contact .action-ghost {
            background: #ffffff;
            color: #090a0c;
        }

        .header-contact .action-ghost:hover {
            border-color: #090a0c;
            background: #090a0c;
            color: #ffffff;
        }

        .action:hover {
            background: #2b2e33;
            color: #ffffff;
        }

        .menu-toggle {
            border-color: #b9bdc2;
            color: #090a0c;
        }

        .hero {
            padding: 76px 0 118px;
            background:
                radial-gradient(circle at 20% 100%, rgba(255,255,255,.08), transparent 24rem),
                #090a0c;
        }

        .hero::before,
        .hero::after {
            border-color: rgba(255,255,255,.15);
        }

        .hero-grid {
            grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
            gap: 58px;
        }

        .hero h1 {
            font-size: clamp(60px, 7vw, 104px);
        }

        .hero h1 span {
            color: #ffffff;
            -webkit-text-stroke: 1.5px rgba(255,255,255,.72);
            color: transparent;
        }

        .hero-copy > p:not(.eyebrow) {
            color: #d0d3d6;
        }

        .hero-media {
            position: relative;
            min-height: 610px;
            padding: 0 0 72px 74px;
        }

        .hero-photo {
            position: absolute;
            inset: 0 0 84px 0;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 28px 28px 110px 28px;
            background: #1b1d21;
            box-shadow: 0 28px 90px rgba(0,0,0,.34);
        }

        .hero-photo::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.36));
        }

        .hero-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-box {
            position: relative;
            z-index: 2;
            width: min(410px, 100%);
            margin: 238px 0 0 -74px;
            border: 1px solid #d7dade;
            background: rgba(255,255,255,.97);
            box-shadow: 0 28px 90px rgba(0,0,0,.4);
        }

        .booking-box-head span {
            background: #090a0c;
            color: #ffffff;
        }

        .trip-dot {
            border-color: #090a0c;
        }

        .booking-box .action {
            background: #090a0c;
            color: #ffffff;
        }

        .booking-box .action:hover {
            background: #2b2e33;
        }

        .ticker i,
        .destination .tag,
        .fleet-badge {
            background: #090a0c;
            color: #ffffff;
        }

        .bone .eyebrow,
        .bone .destination span,
        .bone .destination a,
        .bone .section-head .eyebrow {
            color: #090a0c;
        }

        .step-number {
            background: #090a0c;
            color: #ffffff;
        }

        :focus-visible {
            outline-color: #8a8f96;
        }

        @media (max-width: 1040px) {
            .hero-grid {
                grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
                gap: 34px;
            }

            .hero-media {
                padding-left: 38px;
            }

            .booking-box {
                margin-left: -38px;
            }
        }

        @media (max-width: 820px) {
            .nav {
                background: #ffffff;
            }

            .nav a {
                border-color: #e1e3e6;
            }

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

            .hero-media {
                min-height: 640px;
                padding-left: 54px;
            }

            .booking-box {
                margin-left: -54px;
            }
        }

        @media (max-width: 560px) {
            .hero {
                padding-bottom: 86px;
            }

            .hero h1 {
                font-size: clamp(58px, 19vw, 82px);
            }

            .hero-media {
                min-height: 660px;
                padding: 0 0 50px;
            }

            .hero-photo {
                inset: 0 0 206px;
                border-radius: 22px 22px 74px 22px;
            }

            .booking-box {
                width: calc(100% - 18px);
                margin: 292px 0 0 auto;
            }

            .quick-actions .book {
                border-color: #ffffff;
                background: #ffffff;
                color: #090a0c;
            }
        }

        /* Refinements requested after the first V4 review. */
        .hero h1 {
            font-size: clamp(58px, 6vw, 92px);
            letter-spacing: -.035em;
            line-height: .9;
        }

        .hero h1 span {
            margin-top: .12em;
            padding-top: .02em;
        }

        .hero-media {
            min-height: 600px;
            padding: 0 0 58px 74px;
        }

        .hero-photo {
            inset: 0 0 auto 0;
            aspect-ratio: 5 / 3;
            border-radius: 28px 28px 82px 28px;
        }

        .hero-photo img {
            object-fit: contain;
            object-position: center center;
            background: #090a0c;
        }

        .booking-box {
            margin-top: 250px;
        }

        .promise {
            grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);
        }

        .promise-image {
            min-height: 640px;
            background: #111317;
        }

        .promise-image img {
            object-position: center center;
        }

        .fleet {
            display: block;
        }

        .fleet-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            grid-template-rows: none;
            gap: 14px;
        }

        .fleet-card {
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            overflow: hidden;
            padding: 0;
            border-color: rgba(255,255,255,.18);
            background: #15171a;
        }

        .fleet-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 3 / 2;
            object-fit: cover;
            object-position: center;
            border-bottom: 1px solid rgba(255,255,255,.16);
        }

        .fleet-card-copy {
            min-height: 214px;
            display: flex;
            flex-direction: column;
            padding: 25px;
        }

        .fleet-card-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
        }

        .fleet-card-head span {
            padding: 7px 10px;
            border: 1px solid rgba(255,255,255,.23);
            border-radius: 999px;
        }

        .fleet-card-copy p {
            margin-top: 14px;
            font-size: 14px;
            line-height: 1.55;
        }

        .fleet-features {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: auto;
            padding-top: 22px;
        }

        .fleet-features small {
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,.08);
            color: #d6d9dd;
            font-size: 10px;
            font-weight: 750;
        }

        .steps {
            gap: 16px;
        }

        .step {
            min-height: 390px;
            padding: 30px;
            border-color: #d8dade;
            box-shadow: 0 18px 50px rgba(9,10,12,.06);
        }

        .step-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .step-icon {
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: #090a0c;
            color: #ffffff;
        }

        .step-icon svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .step-kicker {
            margin: auto 0 0;
            color: #6d7279;
            font-size: 11px;
            font-weight: 850;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .step h3 {
            margin: 12px 0 10px;
        }

        .step p {
            min-height: 66px;
        }

        .step-detail {
            margin-top: 20px;
            padding-top: 17px;
            border-top: 1px solid #e2e4e7;
            color: #25282d;
            font-size: 12px;
            font-weight: 760;
        }

        @media (max-width: 1040px) {
            .hero-media {
                padding-left: 38px;
            }

            .fleet-options {
                grid-template-columns: 1fr 1fr;
            }

            .fleet-card:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 820px) {
            .hero-media {
                min-height: 610px;
                padding-left: 54px;
            }

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

            .promise-image {
                min-height: 560px;
            }

            .fleet-options {
                grid-template-columns: 1fr;
            }

            .fleet-card:last-child {
                grid-column: auto;
            }
        }

        @media (max-width: 560px) {
            .hero h1 {
                letter-spacing: -.02em;
                line-height: .88;
            }

            .hero h1 span {
                margin-top: .15em;
            }

            .hero-media {
                min-height: 590px;
                padding: 0 0 42px;
            }

            .hero-photo {
                inset: 0 0 auto;
                aspect-ratio: 5 / 3;
                border-radius: 22px 22px 58px 22px;
            }

            .booking-box {
                margin-top: 178px;
            }

            .promise-image {
                min-height: 480px;
            }

            .fleet-card-copy {
                min-height: 205px;
            }

            .step {
                min-height: 360px;
            }
        }

        /* Usability, navigation and performance refinement. */
        .section-head h2,
        .promise-copy h2,
        .final-card h2 {
            letter-spacing: -.035em;
        }

        .fleet-card h3,
        .step h3,
        .destination h3 {
            letter-spacing: -.025em;
        }

        .nav {
            position: relative;
            isolation: isolate;
            gap: 2px;
            padding: 4px;
        }

        .nav a {
            position: relative;
            z-index: 2;
            padding: 9px 13px;
            border-radius: 999px;
            transition: color .32s ease;
        }

        .nav a.is-active {
            color: #ffffff;
        }

        .nav-liquid {
            position: absolute;
            z-index: 1;
            top: 4px;
            left: 0;
            width: 0;
            height: calc(100% - 8px);
            border-radius: 999px;
            background: #090a0c;
            box-shadow:
                0 8px 22px rgba(9,10,12,.16),
                inset 0 0 0 1px rgba(255,255,255,.06);
            opacity: 0;
            transform: translate3d(0, 0, 0) scale(.88);
            transform-origin: center;
            transition:
                transform .62s cubic-bezier(.16,1,.3,1),
                width .62s cubic-bezier(.16,1,.3,1),
                opacity .2s ease,
                border-radius .62s ease;
            pointer-events: none;
        }

        .nav-liquid.is-moving {
            border-radius: 44% 62% 58% 46%;
            animation: totovtc-nav-liquid .62s cubic-bezier(.16,1,.3,1) both;
        }

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

        .nav-liquid::before {
            inset: 5px -13px;
            z-index: -1;
            border-radius: inherit;
            background: rgba(9,10,12,.2);
            filter: blur(10px);
            opacity: 0;
            transform: scale(.72, .56);
            transition: opacity .26s ease, transform .62s cubic-bezier(.16,1,.3,1);
        }

        .nav-liquid::after {
            top: 50%;
            right: 9px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255,255,255,.72);
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .nav-liquid.is-moving::before {
            opacity: 1;
            transform: scale(1.04, .9);
        }

        .nav-liquid.is-moving::after {
            animation: totovtc-nav-spark .62s ease both;
        }

        @keyframes totovtc-nav-liquid {
            0% { border-radius: 999px; }
            38% { border-radius: 62% 42% 58% 46%; }
            100% { border-radius: 999px; }
        }

        @keyframes totovtc-nav-spark {
            18%, 72% { opacity: .88; transform: translateY(-50%) scale(1); }
            100% { opacity: 0; transform: translateY(-50%) scale(.2); }
        }

        .hero-media {
            min-height: 0;
            display: block;
            overflow: visible;
            padding: 0;
            border: 1px solid rgba(255,255,255,.16);
            border-radius: 28px;
            background: #ffffff;
            box-shadow: 0 30px 90px rgba(0,0,0,.34);
        }

        .hero-photo {
            position: relative;
            inset: auto;
            aspect-ratio: 16 / 7;
            border: 0;
            border-bottom: 1px solid #d8dade;
            overflow: hidden;
            border-radius: 27px 27px 0 0;
            box-shadow: none;
        }

        .hero-photo img {
            object-fit: cover;
            object-position: center 58%;
        }

        .booking-box {
            position: relative;
            z-index: 5;
            width: 100%;
            margin: 0;
            padding: 24px;
            overflow: visible;
            border: 0;
            border-radius: 0 0 27px 27px;
            background: #fff;
            box-shadow: none;
        }

        .booking-box h2 {
            max-width: 330px;
            font-size: 28px;
            letter-spacing: -.025em;
        }

        .trip-field input,
        .trip-time input,
        .trip-time select {
            width: 100%;
            min-width: 0;
            margin: 2px 0 0;
            padding: 0;
            border: 0;
            outline: 0;
            background: transparent;
            color: #090a0c;
            font: inherit;
            font-size: 14px;
            font-weight: 760;
        }

        .trip-field input::placeholder {
            color: #6f747b;
            opacity: 1;
        }

        .trip-time input,
        .trip-time select {
            margin-top: 5px;
        }

        .trip-field:focus-within,
        .trip-time div:focus-within {
            background: #f3f4f5;
            box-shadow: inset 3px 0 0 #090a0c;
        }

        .trip-field:focus-within,
        .trip-field:has(.home-address-suggestions.open) {
            z-index: 120;
        }

        .trip-field input:focus,
        .trip-time input:focus,
        .trip-time select:focus,
        .trip-field input:focus-visible,
        .trip-time input:focus-visible,
        .trip-time select:focus-visible {
            outline: 0;
            box-shadow: none;
        }

        .trip-route-icon {
            width: 19px;
            height: 19px;
            margin-top: 3px;
            color: #090a0c;
        }

        .trip-route-icon svg {
            display: block;
            width: 100%;
            height: 100%;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .trip-input-row {
            display: grid;
            grid-template-columns: minmax(0,1fr) 34px;
            align-items: center;
            gap: 7px;
        }

        .trip-input-row.no-location {
            grid-template-columns: minmax(0,1fr);
        }

        .trip-geolocate {
            display: grid;
            width: 32px;
            height: 32px;
            place-items: center;
            padding: 0;
            border: 1px solid #d7dade;
            border-radius: 10px;
            background: #f2f3f3;
            color: #090a0c;
            cursor: pointer;
        }

        .trip-geolocate:hover,
        .trip-geolocate.is-loading {
            border-color: #090a0c;
            background: #090a0c;
            color: #fff;
        }

        .trip-geolocate svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .home-address-suggestions {
            position: absolute;
            z-index: 1000;
            top: calc(100% + 9px);
            right: 0;
            left: 0;
            display: none;
            max-height: min(300px, 46vh);
            padding: 8px;
            overflow: auto;
            overscroll-behavior: contain;
            border: 1px solid rgba(9,10,12,.16);
            border-radius: 16px;
            background: rgba(255,255,255,.985);
            box-shadow: 0 28px 70px rgba(9,10,12,.24),0 5px 14px rgba(9,10,12,.12);
            scrollbar-color: #a9adb2 transparent;
            scrollbar-width: thin;
            transform-origin: top center;
        }

        .home-address-suggestions::-webkit-scrollbar { width:8px; }
        .home-address-suggestions::-webkit-scrollbar-thumb { border:2px solid transparent;border-radius:999px;background:#a9adb2;background-clip:padding-box; }
        .home-address-suggestions.open { display:block;animation:totovtc-address-panel-in .16s ease-out both; }
        .home-address-suggestion { display:block;width:100%;min-height:50px;padding:11px 12px;border:1px solid transparent;border-radius:11px;background:transparent;color:#15181b;text-align:left;cursor:pointer;transition:background .16s,border-color .16s,transform .16s; }
        .home-address-suggestion + .home-address-suggestion { margin-top:2px; }
        .home-address-suggestion:hover,.home-address-suggestion.active { border-color:#e0e2e4;background:#f2f3f3;transform:translateX(2px); }
        .home-address-suggestion:focus-visible { outline:2px solid #090a0c;outline-offset:-2px; }
        .home-address-suggestion.is-manual { margin-bottom:6px;border-color:#d0e1e2;background:#edf5f5;box-shadow:inset 3px 0 0 #35676b; }
        .home-address-suggestion.is-manual:hover,.home-address-suggestion.is-manual.active { border-color:#bdd5d6;background:#e2eeee; }
        .home-address-suggestion strong { display:block;margin:0;color:#15181b;font-size:12px;font-weight:850;line-height:1.35; }
        .home-address-suggestion span { display:block;margin-top:4px;color:#6e747a;font-size:10px;line-height:1.35; }
        .home-address-suggestion.is-manual span { color:#35676b;font-weight:850; }
        .home-address-empty { padding:13px;color:#656b71;font-size:10px;line-height:1.5; }
        @keyframes totovtc-address-panel-in { from{opacity:0;transform:translateY(-5px) scale(.985)} to{opacity:1;transform:none} }
        .home-address-status { display:none;grid-column:2/-1;margin-top:5px;color:#2f7650;font-size:9px;font-weight:850;line-height:1.35; }
        .trip-field.is-selected .home-address-status,.trip-field.is-freeform .home-address-status,.trip-field.is-locating .home-address-status,.trip-field.has-location-error .home-address-status { display:block; }
        .trip-field.has-location-error .home-address-status { color:#a33b30; }

        .trip-field:focus-within .trip-route-icon {
            color: #454b53;
            transform: translateY(-1px);
        }

        .booking-box button.action {
            width: 100%;
            margin-top: 12px;
            border: 0;
            cursor: pointer;
        }

        .booking-box button.action::after {
            content: "→";
        }

        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-meta svg {
            width: 15px;
            height: 15px;
            flex: 0 0 auto;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ticker {
            position: relative;
        }

        .ticker-track {
            width: max-content;
            min-width: 0;
            justify-content: flex-start;
            gap: 24px;
            padding: 0 6vw;
            animation: totovtc-ticker-pan 26s ease-in-out infinite alternate;
            will-change: transform;
        }

        .ticker-track span {
            font-size: 12px;
            letter-spacing: .02em;
        }

        .ticker:hover .ticker-track {
            animation-play-state: paused;
        }

        @keyframes totovtc-ticker-pan {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-100% + 100vw)); }
        }

        section[id] {
            scroll-margin-top: 105px;
        }

        /* Équipe, destinations et services : trois intentions clairement séparées. */
        .about-grid {
            display: grid;
            grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr);
            align-items: stretch;
            gap: 16px;
        }

        .team-slider {
            position: relative;
            min-height: 0;
            aspect-ratio: 16 / 10;
            align-self: center;
            overflow: hidden;
            border: 1px solid var(--line-dark);
            border-radius: var(--radius);
            background: #111317;
        }

        .team-slides,
        .team-slide {
            position: absolute;
            inset: 0;
        }

        .team-slide {
            margin: 0;
            opacity: 0;
            transform: scale(1.025);
            transition: opacity .48s ease, transform .7s cubic-bezier(.22,1,.36,1);
            pointer-events: none;
        }

        .team-slide.is-current {
            z-index: 1;
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .team-slide::after {
            content: "";
            position: absolute;
            inset: 42% 0 0;
            background: linear-gradient(to bottom, transparent, rgba(4,5,6,.88));
            pointer-events: none;
        }

        .team-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: translate3d(0, var(--team-parallax, 0px), 0) scale(1.075);
            will-change: transform;
            transition: transform .18s linear;
        }

        .team-slide:nth-child(1) img {
            object-position: 51% center;
        }

        .team-slide:nth-child(2) img {
            object-position: center 48%;
        }

        .team-slide:nth-child(3) img {
            object-position: 58% center;
        }

        .team-slide figcaption {
            position: absolute;
            z-index: 2;
            right: 112px;
            bottom: 28px;
            left: 28px;
            display: flex;
            flex-direction: column;
            color: white;
        }

        .team-slide figcaption strong {
            font-size: 24px;
            letter-spacing: -.025em;
        }

        .team-slide figcaption span {
            margin-top: 3px;
            color: #d2cec8;
            font-size: 12px;
        }

        .team-controls {
            position: absolute;
            z-index: 4;
            right: 24px;
            bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px;
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 999px;
            background: rgba(9,9,9,.76);
            backdrop-filter: blur(12px);
        }

        .team-arrow {
            width: 36px;
            height: 36px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: transparent;
            color: white;
            cursor: pointer;
        }

        .team-arrow:hover,
        .team-arrow:focus-visible {
            background: var(--orange);
            color: var(--black);
        }

        .team-dots {
            display: flex;
            gap: 6px;
        }

        .team-dots button {
            width: 7px;
            height: 7px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255,255,255,.42);
            cursor: pointer;
            transition: width .25s ease, background .25s ease;
        }

        .team-dots button.is-current {
            width: 20px;
            background: var(--orange);
        }

        .about-copy {
            display: flex;
            flex-direction: column;
            padding: clamp(32px, 4vw, 54px);
            border-radius: var(--radius);
            background: var(--orange);
            color: var(--black);
        }

        .about-copy .eyebrow {
            color: var(--black);
        }

        .about-copy h2 {
            max-width: 620px;
            margin: 0;
            font-size: clamp(44px, 4.8vw, 68px);
            letter-spacing: -.035em;
            line-height: .94;
        }

        .about-intro {
            margin: 28px 0 0;
            color: rgba(9,9,9,.76);
            font-size: 16px;
        }

        .about-points {
            margin-top: 30px;
            border-top: 1px solid rgba(9,9,9,.24);
        }

        .about-points article {
            display: grid;
            gap: 4px;
            padding: 17px 0;
            border-bottom: 1px solid rgba(9,9,9,.24);
        }

        .about-points strong {
            font-size: 15px;
        }

        .about-points span {
            color: rgba(9,9,9,.65);
            font-size: 12px;
        }

        .about-link,
        .destination-card-link,
        .service-card-link {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            font-weight: 900;
            line-height: 1;
            transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
        }

        .about-link {
            margin-top: 26px;
            padding: 15px 20px;
            background: #090a0c;
            color: #fff;
            box-shadow: 0 12px 28px rgba(9,10,12,.2);
            font-size: 12px;
            letter-spacing: .015em;
        }

        .about-link:hover {
            background: #fff;
            color: #090a0c;
            box-shadow: 0 15px 34px rgba(9,10,12,.24);
            transform: translateY(-2px);
        }

        .about-territories {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 24px;
        }

        .about-territories span {
            padding: 8px 11px;
            border: 1px solid rgba(9,9,9,.22);
            border-radius: 999px;
            background: rgba(255,255,255,.16);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .025em;
        }

        .about-link::after,
        .destination-card-link::after,
        .service-card-link::after {
            content: "↗";
            font-size: 1.05em;
        }

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

        .destination-card {
            --destination-position: center;
            --destination-veil: .38;
            position: relative;
            min-height: 340px;
            overflow: hidden;
            isolation: isolate;
            border: 1px solid rgba(255,255,255,.2);
            border-radius: var(--radius);
            background: #17191c;
            color: #fff;
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }

        .destination-card::after {
            content: "";
            position: absolute;
            z-index: 1;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(6,7,9,.08) 0%, rgba(6,7,9,var(--destination-veil)) 45%, rgba(6,7,9,.94) 100%);
            pointer-events: none;
        }

        .destination-card > img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: var(--destination-position);
            filter: saturate(.9) contrast(1.04);
            transition: transform .7s cubic-bezier(.22,1,.36,1), filter .35s ease;
        }

        .destination-card-content {
            position: relative;
            z-index: 2;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            padding: 28px;
        }

        .destination-card:hover {
            z-index: 1;
            border-color: rgba(255,255,255,.58);
            box-shadow: 0 22px 55px rgba(31,24,18,.22);
            transform: translateY(-4px);
        }

        .destination-card:hover > img {
            transform: scale(1.04);
            filter: saturate(1) contrast(1.06);
        }

        .destination-icon,
        .service-icon {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 15px;
        }

        .destination-icon {
            border: 1px solid rgba(255,255,255,.2);
            background: #090a0c;
            color: #fff;
            box-shadow: 0 10px 28px rgba(0,0,0,.22);
        }

        .destination-icon svg,
        .service-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .destination-icon .filled-mark {
            fill: currentColor;
            stroke: none;
        }

        .fleur-de-lis {
            display: block;
            font-family: "Segoe UI Symbol", "Noto Sans Symbols", Georgia, serif;
            font-size: 29px;
            font-weight: 400;
            line-height: 1;
            transform: translateY(-1px);
        }

        .destination-kicker {
            margin-top: 26px;
            color: rgba(255,255,255,.72);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .11em;
            text-transform: uppercase;
        }

        .destination-card h3 {
            max-width: 540px;
            margin: 9px 0 0;
            font-size: clamp(25px, 2.5vw, 36px);
            letter-spacing: -.025em;
            line-height: 1;
        }

        .destination-card p {
            max-width: 660px;
            margin: 14px 0 0;
            color: rgba(255,255,255,.76);
            font-size: 13px;
        }

        .destination-card-link {
            margin-top: auto;
            padding: 11px 15px;
            background: rgba(255,255,255,.94);
            color: #0b0c0e;
            box-shadow: 0 10px 24px rgba(0,0,0,.2);
            font-size: 11px;
            backdrop-filter: blur(8px);
        }

        .destination-card:hover .destination-card-link,
        .coast-card:hover .destination-card-link {
            background: var(--orange);
            color: #090a0c;
            transform: translateY(-1px);
        }

        .coast-heading {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
            gap: 40px;
            align-items: end;
            margin: 42px 0 18px;
            padding-top: 34px;
            border-top: 1px solid #d9cec2;
        }

        .coast-heading h3 {
            margin: 0;
            font-size: clamp(32px, 4vw, 56px);
            letter-spacing: -.035em;
            line-height: .95;
        }

        .coast-heading p {
            margin: 0;
            color: #716a62;
            font-size: 14px;
        }

        .coast-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .coast-card {
            --coast-a: #172737;
            --coast-b: #0b1118;
            position: relative;
            min-height: 290px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 24px;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: var(--radius);
            background:
                radial-gradient(circle at 88% 8%, rgba(255,255,255,.18), transparent 28%),
                repeating-radial-gradient(ellipse at 100% 100%, transparent 0 18px, rgba(255,255,255,.05) 19px 21px),
                linear-gradient(145deg, var(--coast-a), var(--coast-b));
            color: #fff;
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }

        .coast-card:hover {
            border-color: rgba(255,255,255,.5);
            box-shadow: 0 20px 48px rgba(38,31,26,.2);
            transform: translateY(-4px);
        }

        .coast-card:nth-child(2) {
            --coast-a: #443128;
            --coast-b: #17100d;
        }

        .coast-card:nth-child(3) {
            --coast-a: #153438;
            --coast-b: #091417;
        }

        .coast-card:nth-child(4) {
            --coast-a: #423847;
            --coast-b: #161119;
        }

        .coast-card .destination-icon {
            flex: 0 0 auto;
        }

        .coast-card .destination-kicker {
            margin-top: auto;
            padding-top: 30px;
        }

        .coast-card h4 {
            margin: 8px 0 0;
            font-size: clamp(23px, 2.1vw, 31px);
            letter-spacing: -.025em;
            line-height: 1;
        }

        .coast-card p {
            margin: 13px 0 0;
            color: rgba(255,255,255,.7);
            font-size: 12px;
        }

        .coast-card .destination-card-link {
            margin-top: 18px;
            padding: 10px 13px;
            font-size: 10px;
        }

        .recent-areas {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 18px;
            border: 1px solid #ded5ca;
            border-radius: var(--radius);
            background: rgba(255,255,255,.62);
        }

        .recent-label {
            margin-right: 4px;
            color: #5e554d;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .recent-areas a {
            padding: 8px 11px;
            border: 1px solid #d9cec2;
            border-radius: 999px;
            background: #fff;
            color: #28231f;
            font-size: 11px;
            font-weight: 800;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }

        .recent-areas a:hover {
            border-color: #a99b8f;
            color: #28231f;
            transform: translateY(-1px);
        }

        .services-section {
            border-top: 1px solid var(--line-dark);
            background:
                radial-gradient(circle at 92% 8%, rgba(255,93,56,.13), transparent 30%),
                var(--black);
        }

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

        .service-card {
            --veil: .42;
            position: relative;
            min-height: 370px;
            overflow: hidden;
            isolation: isolate;
            border: 1px solid var(--line-dark);
            border-radius: var(--radius);
            background: #15171a;
            transition: border-color .28s ease, transform .28s ease;
        }

        .service-card::after {
            content: "";
            position: absolute;
            z-index: 1;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(6,7,9,.14) 0%, rgba(6,7,9,var(--veil)) 48%, rgba(6,7,9,.94) 100%);
            pointer-events: none;
        }

        .service-card > img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(.88) contrast(1.04);
            transition: transform .7s cubic-bezier(.22,1,.36,1), filter .35s ease;
        }

        .service-card:nth-child(1) > img {
            object-position: center 55%;
        }

        .service-card:nth-child(2) > img {
            object-position: center 46%;
        }

        .service-card:nth-child(3) > img {
            object-position: center 64%;
        }

        .service-card:nth-child(4) > img {
            object-position: center 50%;
        }

        .service-card:nth-child(5) > img {
            object-position: center 46%;
        }

        .service-card:nth-child(6) > img {
            object-position: center;
        }

        .service-card-content {
            position: relative;
            z-index: 2;
            min-height: 370px;
            display: flex;
            flex-direction: column;
            padding: 28px;
        }

        .service-card:hover {
            border-color: #f8c36d;
            transform: translateY(-4px);
        }

        .service-card:hover > img {
            transform: scale(1.035);
            filter: saturate(1) contrast(1.06);
        }

        .service-icon {
            border: 1px solid rgba(255,255,255,.15);
            background: rgba(10,11,13,.52);
            color: var(--orange);
            backdrop-filter: blur(9px);
        }

        .service-number {
            margin: auto 0 8px;
            color: var(--orange);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .12em;
        }

        .service-card h3 {
            margin: 0;
            font-size: 27px;
            letter-spacing: -.025em;
            line-height: 1;
        }

        .service-card p {
            margin: 14px 0 0;
            color: var(--muted);
            font-size: 13px;
        }

        .service-card-link {
            margin-top: 18px;
            padding: 10px 14px;
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(255,255,255,.94);
            color: #0b0c0e;
            box-shadow: 0 10px 24px rgba(0,0,0,.2);
            font-size: 10px;
            backdrop-filter: blur(8px);
        }

        .service-card-link:hover {
            border-color: var(--orange);
            background: var(--orange);
            color: #090a0c;
            transform: translateY(-1px);
        }

        .services-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            margin-top: 18px;
            padding: 26px 28px;
            border: 1px solid var(--line-dark);
            border-radius: var(--radius);
        }

        .services-cta p {
            margin: 0;
            color: #d4d0ca;
            font-weight: 700;
        }

        .final {
            padding: 38px 0 112px;
            background: #090a0c;
        }

        .final-card {
            position: relative;
            overflow: hidden;
            padding: clamp(30px, 4.5vw, 64px);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 32px;
            background:
                radial-gradient(circle at 88% 8%, rgba(255,255,255,.12), transparent 28%),
                linear-gradient(145deg, #111419, #08090b);
        }

        .final-card::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .42;
            background-image:
                linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
            background-size: 36px 36px;
            pointer-events: none;
        }

        .final-card::after {
            content: "";
            position: absolute;
            top: auto;
            right: -110px;
            bottom: -180px;
            width: 430px;
            height: 430px;
            border: 70px solid rgba(255,255,255,.045);
            border-radius: 50%;
            background: transparent;
            pointer-events: none;
        }

        .final-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
            gap: clamp(30px, 5vw, 72px);
            align-items: stretch;
        }

        .final-main {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .final-eyebrow {
            margin: 0 0 24px;
            color: rgba(255,255,255,.66);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .13em;
            text-transform: uppercase;
        }

        .final-card h2 {
            max-width: 760px;
            margin: 0;
            font-size: clamp(48px, 6.2vw, 88px);
            letter-spacing: -.035em;
            line-height: .9;
        }

        .final-card .final-intro {
            max-width: 690px;
            margin: 26px 0 0;
            color: rgba(255,255,255,.72);
            font-size: 16px;
        }

        .final-proofs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
        }

        .final-proofs span {
            padding: 9px 12px;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 999px;
            background: rgba(255,255,255,.05);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
        }

        .final-actions {
            margin-top: 34px;
        }

        .contact-liquid-nav {
            position: relative;
            isolation: isolate;
            display: inline-grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 4px;
            width: min(100%, 510px);
            padding: 5px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 999px;
            background: rgba(255,255,255,.07);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        }

        .contact-liquid {
            position: absolute;
            z-index: -1;
            top: 5px;
            bottom: 5px;
            left: 0;
            width: 0;
            border-radius: 999px;
            background: #fff;
            box-shadow: 0 10px 28px rgba(0,0,0,.3);
            opacity: 0;
            transform: translate3d(0,0,0);
            transition: width .55s cubic-bezier(.16,1,.3,1), transform .68s cubic-bezier(.16,1,.3,1), opacity .2s ease;
            will-change: width, transform;
        }

        .contact-liquid.is-moving {
            animation: totovtc-nav-liquid .62s cubic-bezier(.16,1,.3,1) both;
        }

        .contact-liquid::before {
            content: "";
            position: absolute;
            inset: 5px -14px;
            z-index: -1;
            border-radius: inherit;
            background: rgba(255,255,255,.2);
            filter: blur(12px);
            opacity: 0;
            transition: opacity .2s ease;
        }

        .contact-liquid.is-moving::before {
            opacity: 1;
        }

        .contact-liquid-nav a {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: 52px;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 999px;
            color: #fff;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .02em;
            text-align: center;
            text-decoration: none;
            transition: color .28s ease;
        }

        .contact-liquid-nav a.is-active,
        .contact-liquid-nav a:hover,
        .contact-liquid-nav a:focus-visible {
            color: #090a0c;
        }

        .contact-liquid-nav a:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 3px;
        }

        .final-local {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            padding: clamp(28px, 3vw, 42px);
            border-radius: 24px;
            background: #fff;
            color: #090a0c;
        }

        .final-local-kicker {
            margin: 0;
            color: #6c645d;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .final-local h3 {
            margin: 12px 0 0;
            font-size: clamp(30px, 3vw, 45px);
            letter-spacing: -.035em;
            line-height: .95;
        }

        .final-local > p:not(.final-local-kicker) {
            margin: 18px 0 0;
            color: #6b645d;
            font-size: 13px;
        }

        .final-routes {
            display: grid;
            margin-top: auto;
            padding-top: 26px;
        }

        .final-routes span {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 13px 0;
            border-top: 1px solid #ddd6cf;
            font-size: 12px;
            font-weight: 850;
        }

        .final-routes span::after {
            content: "→";
            font-size: 15px;
        }

        @media (max-width: 1040px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .team-slider {
                width: min(100%, 780px);
                aspect-ratio: 16 / 9;
            }

            .about-link {
                margin-top: 30px;
            }

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

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

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

        @media (max-width: 560px) {
            .contact-liquid-nav {
                grid-template-columns: 1fr;
                border-radius: 24px;
            }

            .contact-liquid {
                display: none;
            }

            .contact-liquid-nav a {
                min-height: 50px;
                border: 1px solid rgba(255,255,255,.16);
            }

            .contact-liquid-nav a:first-of-type {
                background: #fff;
                color: #090a0c;
            }
        }

        @media (max-width: 820px) {
            section[id] {
                scroll-margin-top: 84px;
            }

            .team-slider {
                aspect-ratio: 16 / 10;
            }

            .coast-heading {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .services-cta {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 560px) {
            .team-slider {
                width: 100%;
                aspect-ratio: 4 / 3;
            }

            .team-slide figcaption {
                right: 24px;
                bottom: 92px;
                left: 22px;
            }

            .team-controls {
                right: 18px;
                bottom: 18px;
                left: 18px;
                justify-content: space-between;
            }

            .about-copy {
                padding: 32px 24px;
            }

            .about-copy h2 {
                font-size: 43px;
            }

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

            .destination-card {
                grid-column: auto;
                min-height: 315px;
            }

            .destination-card-content {
                min-height: 315px;
                padding: 24px;
            }

            .coast-card {
                min-height: 265px;
            }

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

            .service-card-content {
                min-height: 330px;
            }
        }

        @media (max-width: 820px) {
            .nav {
                position: fixed;
                padding: 16px;
            }

            .nav-liquid {
                display: none;
            }

            .nav a.is-active {
                background: #090a0c;
                color: #ffffff;
            }

            .hero-media {
                min-height: 0;
                padding: 0;
                border-radius: 22px;
            }

            .hero-photo {
                inset: auto;
                aspect-ratio: 5 / 3;
                border-radius: 21px 21px 0 0;
            }

            .booking-box {
                margin: 0;
                padding: 22px;
            }
        }

        @media (max-width: 560px) {
            .hero-media {
                min-height: 0;
                padding: 0;
            }

            .hero-photo {
                inset: auto;
                aspect-ratio: 5 / 3;
            }

            .booking-box {
                width: 100%;
                margin: 0;
            }

            .booking-box h2 {
                font-size: 26px;
            }

            .trip-time {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .ticker-track {
                animation: none;
            }

            .nav-liquid {
                transition: none;
            }

            .team-slide {
                transition: none;
            }
        }

        .nav a.nav-home {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav a.nav-home svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

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

        .reservation-primary {
            min-width: 210px;
            min-height: 58px;
            margin-bottom: 18px;
            font-size: 13px;
            box-shadow: 0 14px 32px rgba(9,10,12,.16);
        }

        .step-icon {
            display: none;
        }

        .step {
            min-height: 335px;
            overflow: hidden;
            background:
                radial-gradient(circle at 100% 0, rgba(9,10,12,.055), transparent 34%),
                linear-gradient(145deg, #fff, #f1f1ef);
        }

        .step-top {
            min-height: 92px;
            justify-content: flex-end;
            border-bottom: 1px solid #e0e2e4;
        }

        .step-number {
            width: auto;
            height: auto;
            background: transparent;
            color: #090a0c;
            font-size: 66px;
            font-weight: 950;
            letter-spacing: -.08em;
            line-height: .8;
        }

        .step-kicker {
            margin-top: auto;
        }

        @media (min-width: 1041px) {
            .about-grid {
                grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
                align-items: start;
            }

            .about-copy {
                grid-column: 1;
                grid-row: 1;
            }

            .team-slider {
                position: sticky;
                top: 112px;
                grid-column: 2;
                grid-row: 1;
                width: 100%;
                align-self: start;
            }
        }

        @media (max-width: 1160px) and (min-width: 821px) {
            .nav a {
                padding-right: 8px;
                padding-left: 8px;
                font-size: 9px;
            }
        }

/* Named visual variants formerly declared inline in the page markup. */
.destination-card--airport{--destination-position:70% center;--destination-veil:.34}
.destination-card--vineyard{--destination-position:center;--destination-veil:.34}
.destination-card--vendee{--destination-position:center;--destination-veil:.32}
.destination-card--loire{--destination-position:center;--destination-veil:.36}
.destination-card--stations{--destination-position:center 55%;--destination-veil:.4}
.destination-card--nantes{--destination-position:center;--destination-veil:.34}
.service-card--1{--veil:.35}.service-card--2{--veil:.52}.service-card--3{--veil:.31}
.service-card--4{--veil:.46}.service-card--5{--veil:.25}.service-card--6{--veil:.45}

/* Identité visuelle dorée au-dessus de l’accroche du hero. */
.hero-brand-logo {
    display: block;
    width: 150px;
    max-width: 38vw;
    height: auto;
    margin: 0 0 14px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 560px) {
    .hero-brand-logo {
        width: 136px;
        margin-bottom: 12px;
    }
}
