/* ==========================================================================
   UrbanPeak Tours and Transfers
   LightForge homepage stylesheet
   Palette: ink #0E1318, cream #F5F2EC, sand #ECE6DC, brown #5C3B29, gold #937840
   Type: Cormorant Garamond (display), Jost (body and labels)
   ========================================================================== */

:root {
    --ink:        #0E1318;
    --ink-soft:   #1a2129;
    --cream:      #F5F2EC;
    --sand:       #ECE6DC;
    --brown:      #5C3B29;
    --gold:       #937840;
    --gold-soft:  #b79a63;
    --line:       rgba(14, 19, 24, 0.14);
    --line-light: rgba(245, 242, 236, 0.20);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

    --shell:  1220px;
    --gutter: clamp(20px, 5vw, 64px);
    --sp-sec: clamp(72px, 11vw, 148px);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* Mobile-only line break: inert on desktop, switched on in responsive.css */
.br-mobile { display: none; }

/* ---- Shared type helpers ------------------------------------------------- */
.eyebrow,
.kicker {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--brown);
}
.kicker-light { color: var(--gold-soft); }

.section-head { margin-bottom: clamp(38px, 5vw, 64px); }
.section-head-center { text-align: center; }
.section-head-center .kicker { display: block; margin-bottom: 18px; }

.section-title {
    font-family: var(--serif);
    font-weight: 300; /* lightest cut Cormorant Garamond ships */
    font-size: clamp(1.9rem, 4.6vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
}
.section-title-light { color: var(--cream); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 17px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: background .5s ease, color .5s ease, letter-spacing .5s ease;
    cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--cream); letter-spacing: 0.34em; }

.btn-hero {
    color: var(--cream);
    border-color: rgba(245, 242, 236, 0.55);
    margin-top: 38px;
}
.btn-hero:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    padding: 22px 0;
    transition: background .5s ease, padding .5s ease, border-color .5s ease;
    border-bottom: 1px solid transparent;
}
/* Subtle dark wash from the top so the menu reads over the video */
.site-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(14, 19, 24, 0.6), rgba(14, 19, 24, 0));
    pointer-events: none;
    z-index: -1;
    transition: opacity .5s ease;
}
.site-header.scrolled::before { opacity: 0; }
/* Subtle top-down dark fade so the menu reads over the video;
   hidden once the solid scrolled header takes over */
.site-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(14, 19, 24, 0.6), rgba(14, 19, 24, 0));
    pointer-events: none;
    z-index: -1;
    transition: opacity .5s ease;
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled {
    background: rgba(14, 19, 24, 0.92);
    backdrop-filter: blur(8px);
    padding: 14px 0;
    border-bottom-color: var(--line-light);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
/* Brand stays left, links sit to the right with a clear gap between them */
.site-nav { margin-left: auto; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.brand-logo {
    height: 56px;
    width: auto;
    display: block;
    /* Wordmark, black on transparent; invert to read as cream on the dark header */
    filter: invert(1);
}
.site-header.scrolled .brand-logo { height: 56px; transition: height .5s ease; }
.brand-mark {
    width: 30px; height: 30px;
    border: 1px solid var(--gold-soft);
    position: relative;
    flex: none;
}
.brand-mark::before {
    content: "";
    position: absolute; inset: 8px;
    border-left: 1px solid var(--gold-soft);
    border-top: 1px solid var(--gold-soft);
    transform: rotate(45deg);
    transform-origin: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--serif);
    font-size: 1.4rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.brand-suffix {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 0.56rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-top: 4px;
}

.site-nav ul { display: flex; gap: 42px; list-style: none; }
.site-nav a {
    color: var(--cream);
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}
.site-nav a::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--gold-soft);
    transition: width .4s ease;
}
.site-nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none; border: none; cursor: pointer;
    padding: 6px;
    /* Keep the toggle above the .mobile-nav overlay (z-index 55) so it stays
       visible as an X while the menu is open. */
    position: relative;
    z-index: 60;
}
.nav-toggle span { width: 26px; height: 1px; background: var(--cream); transition: transform .4s ease, opacity .4s ease; }
/* When the menu is open the two bars cross into an X to close it.
   The toggle sits above the overlay (header z-index beats the panel). */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    z-index: 55;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 26px 0; }
.mobile-nav a {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ---- Loader -------------------------------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
    position: relative;
    width: min(300px, 66vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto 34px;
}
.loader-ring,
.loader-up {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
/* Only the outer ring spins; the UP monogram stays put */
.loader-ring { animation: loader-spin 10s linear infinite; }
@keyframes loader-spin { to { transform: rotate(360deg); } }
.loader-bar {
    width: 160px; height: 2px;
    background: rgba(0,0,0,.12);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}
.loader-bar span {
    display: block; height: 100%; width: 0;
    background: #000;
    animation: loader-fill 6s ease forwards;
}
@keyframes loader-fill { to { width: 100%; } }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0; z-index: 0;
    /* Poster still from the Vimeo video, shown while the player loads */
    background: var(--ink) url("../images/hero-poster.jpg") center / cover no-repeat;
}
/* Vimeo iframe cannot use object-fit, so it is oversized to cover the
   viewport at any ratio: 16:9 locked, centred, edges cropped. */
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(14,19,24,.55), rgba(14,19,24,.32) 40%, rgba(14,19,24,.66));
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-logo {
    width: clamp(200px, 34vw, 340px); /* circular logo — square, so keep it modest */
    height: auto;
    filter: invert(1); /* black circle logo -> white over the video */
    opacity: 0;
    animation: heroUp 1s ease forwards .2s;
    margin-bottom: 36px;
}
.hero-line { opacity: 0; transform: translateY(18px); animation: heroUp 1s ease forwards; }
.hero-line-1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 6.4vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation-delay: .2s;
}
.hero-rule {
    width: 66px; height: 1px;
    background: var(--gold-soft);
    margin: 26px 0;
    opacity: 0;
    animation: heroUp .9s ease forwards .5s;
}
.hero-line-2 {
    font-family: var(--sans);
    font-weight: 300;
    font-size: clamp(0.82rem, 1.7vw, 1.05rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    max-width: 40ch;
    animation-delay: .6s;
}
.hero-line-3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 2.3vw, 1.55rem);
    letter-spacing: 0.03em;
    margin-top: 16px;
    color: var(--cream);
    animation-delay: .8s;
}
.btn-hero { opacity: 0; animation: heroUp 1s ease forwards 1s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* Mouse-shaped scroll cue: outlined mouse with a wheel dot that drops */
.hero-scroll {
    position: absolute;
    left: 50%; bottom: 30px;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1px solid rgba(245, 242, 236, 0.55);
    border-radius: 13px;
    z-index: 3;
}
.hero-scroll span {
    position: absolute;
    top: 7px; left: 50%;
    width: 3px; height: 8px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--gold-soft);
    animation: scrollWheel 2.2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%       { opacity: 0; transform: translateY(0); }
    25%      { opacity: 1; }
    65%,100% { opacity: 0; transform: translateY(15px); }
}

/* ---- Inner pages (Tours) ------------------------------------------------- */
/* On pages without a hero the fixed header needs its solid treatment from the
   start so it reads over the content beneath it. */
body.page-inner .site-header {
    background: rgba(14, 19, 24, 0.92);
    backdrop-filter: blur(8px);
    border-bottom-color: var(--line-light);
    padding: 14px 0;
}
body.page-inner .site-header::before { opacity: 0; }

.tours-page { padding-top: 98px; background: var(--cream); color: var(--ink); }

.tour { padding: clamp(46px, 6vw, 92px) 0; }
.tour + .tour { border-top: 1px solid rgba(0, 0, 0, .08); }

/* Section title, deliberately larger than the stop labels below.
   Scoped to .tours-page so it doesn't collide with the homepage card title. */
.tours-page .tour-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
/* Description sits directly under the title, before the images */
.tour-intro {
    max-width: 72ch;
    margin: 0 auto clamp(40px, 5vw, 66px);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, .68);
}

/* Reserve button beneath each tour */
.tour-cta { text-align: center; margin-top: clamp(34px, 5vw, 60px); }

/* Two edge-hugging columns with a wide centre gutter for the connectors */
.tour-map { position: relative; }
.tour-cols {
    display: grid;
    grid-template-columns: repeat(2, clamp(200px, 26vw, 340px));
    justify-content: space-between;
    row-gap: clamp(30px, 4vw, 58px);
    position: relative;
    z-index: 1;
    counter-reset: stop; /* restarts the stop numbering for each tour */
}
.map-stop { position: relative; margin: 0; counter-increment: stop; }
.map-label {
    /* Reserve room for up to two lines and sit the text at the bottom, so a long
       (wrapping) label doesn't push its image down out of line with its neighbour. */
    min-height: 2.5em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.05rem, 1.7vw, 1.45rem);   /* smaller than the section title */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.map-media { overflow: hidden; }

/* Lone last stop (odd count): centred across the section and larger */
.map-stop--wide {
    grid-column: 1 / -1;
    justify-self: center;
    width: clamp(280px, 46vw, 560px);
}
.map-stop--wide .map-media img { height: clamp(240px, 30vw, 400px); }
.map-media img {
    width: 100%;
    height: clamp(170px, 20vw, 250px);
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.map-stop:hover .map-media img { transform: scale(1.06); }   /* zoom-in kept */

/* Dotted connector arrows tracing the tour order through the centre */
.tour-connectors { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; overflow: visible; }
.tour-connectors line {
    stroke: rgba(14, 19, 24, 0.5);
    stroke-width: 1.3;
    stroke-dasharray: 1.5 7;
    stroke-linecap: round;
}
/* Solid arrowhead so every connector clearly points to its destination */
.connector-head { fill: rgba(14, 19, 24, 0.6); stroke: none; }

@media (max-width: 760px) {
    .tour-cols { grid-template-columns: 1fr; justify-content: stretch; max-width: 420px; margin: 0 auto; row-gap: 56px; }
    .map-media img { height: clamp(200px, 52vw, 300px); }

    /* The zig-zag connectors are off on mobile, so show tour order as a
       gold number beside each stop label instead. */
    .map-label::before {
        content: counter(stop, decimal-leading-zero);
        color: var(--gold);
        font-size: 1.25em;
        letter-spacing: 0.1em;
        margin-right: 12px;
    }

    /* Even out the lone "wide" finale stop so its image matches the others. */
    .map-stop--wide { width: auto; justify-self: stretch; }
    .map-stop--wide .map-media img { height: clamp(200px, 52vw, 300px); }
}

/* ---- Tours page (suggestion 2): grid over faded background photos -------- */
.tours2 { padding-top: 98px; background: #fff; color: var(--ink); }
.tours2 .shell { max-width: 1360px; }   /* a touch wider so the tiles are larger */

.t2 {
    position: relative;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Solid white at the top and bottom edges forms the seam that blends one
   section's photo into the next; a light veil over the middle keeps the
   background readable behind the grid. Sections stay attached (no gaps). */
.t2::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Wider solid-white bands top and bottom so adjacent sections are clearly
       separated by white rather than blending into one continuous strip. */
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #ffffff 12%,
        rgba(255, 255, 255, 0.58) 30%,
        rgba(255, 255, 255, 0.58) 70%,
        #ffffff 88%,
        #ffffff 100%);
    pointer-events: none;
}
.t2-inner { position: relative; z-index: 1; padding: clamp(64px, 9vw, 122px) 0; }

.t2-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    text-align: center;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
/* Description sits under the title, before the grid */
.t2-intro {
    max-width: 68ch;
    margin: 0 auto clamp(32px, 4vw, 52px);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(14, 19, 24, 0.72);
}

.t2-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 5), 1fr);
    gap: clamp(14px, 1.6vw, 24px);
    position: relative;      /* anchor for the connecting-thread overlay */
    perspective: 1400px;     /* depth for the 3D flip */
}
.t2-cell { margin: 0; position: relative; z-index: 1; }  /* above the thread */

/* Each image sits edge-on and invisible until its turn, then flips open (slow) */
.t2-media {
    overflow: hidden;
    box-shadow: 0 16px 36px -24px rgba(14, 19, 24, 0.6);
    transform-origin: 50% 50%;
    transform: rotateY(90deg);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(.2,.75,.2,1), opacity 1.1s ease;
    will-change: transform, opacity;
}
.t2-cell.is-revealed .t2-media { transform: rotateY(0deg); opacity: 1; }
.t2-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.t2-cell:hover .t2-media img { transform: scale(1.05); }

/* Title sits beneath a large, faint number that reads behind it */
.t2-cap { position: relative; text-align: center; margin-top: 18px; min-height: 3em; }
.t2-num {
    position: absolute;
    top: -0.4em; left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-weight: 300;
    font-size: 3.6rem;
    line-height: 1;
    color: rgba(147, 120, 64, 0.34);   /* gold, sits behind the title */
    z-index: 0;
    pointer-events: none;
}
.t2-name {
    position: relative;
    z-index: 1;
    display: block;
    padding-top: 1.15em;               /* drop below the numeral */
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--ink);
}

/* Connecting thread runs BEHIND the images (z-index 0) so it shows only in the
   gaps between them; the shimmer travels along it. */
.t2-thread { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 0; }
.thread-base { fill: none; stroke: rgba(147, 120, 64, 0.5); stroke-width: 1.4; stroke-linecap: round; }
.thread-glow { fill: #e3d19a; filter: drop-shadow(0 0 5px rgba(227, 209, 154, 0.95)) drop-shadow(0 0 13px rgba(227, 209, 154, 0.55)); }

@media (prefers-reduced-motion: reduce) {
    .t2-media { transform: none; opacity: 1; transition: none; }
    .t2-thread { display: none; }
}

@media (max-width: 900px) {
    .t2-grid { grid-template-columns: repeat(3, 1fr); }  /* cap at 3 across on tablet */
}
@media (max-width: 560px) {
    .t2-grid { grid-template-columns: repeat(2, 1fr); }  /* 2 across on mobile */
}

/* ---- Booking page (custom form + PayFast) -------------------------------- */
.booking { padding-top: 98px; background: var(--cream); color: var(--ink); }
.booking-head { padding: clamp(40px, 7vw, 90px) var(--gutter) clamp(6px, 2vw, 18px); text-align: center; }
.booking-head .kicker { color: var(--gold); }
.booking-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 0.02em; margin: 10px 0 18px; }
.booking-lead { max-width: 62ch; margin: 0 auto; color: rgba(14, 19, 24, .7); line-height: 1.9; }

.booking-note { margin: 14px auto 0; padding: 15px 20px; font-size: .95rem; }
.booking-note.is-success { background: rgba(147, 120, 64, .12); border: 1px solid var(--gold-soft); }
.booking-note.is-cancel  { background: rgba(0, 0, 0, .05); border: 1px solid var(--line); }
.booking-note.is-error   { background: #fbeaea; border: 1px solid #e2b3b3; display: flex; flex-direction: column; gap: 4px; }

.booking-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(28px, 4vw, 58px);
    padding-top: clamp(22px, 4vw, 42px);
    padding-bottom: var(--sp-sec);
    align-items: start;
}
.booking-step { border: none; margin-bottom: clamp(28px, 4vw, 46px); }
.booking-step legend {
    font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
    color: var(--ink); padding-bottom: 14px; margin-bottom: 22px; width: 100%; border-bottom: 1px solid var(--line);
}
.booking-step legend span { color: var(--gold); margin-right: 6px; }

.field { display: block; margin-bottom: 18px; }
.field-label { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(14, 19, 24, .55); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: .98rem; color: var(--ink);
    background: #fff; border: 1px solid var(--line); border-radius: 0; outline: none; transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.booking-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 18px; }
.check { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.check input { width: 16px; height: 16px; accent-color: var(--gold); }

/* Optional paid upgrade row under the guest count */
.check-upgrade {
    display: flex; align-items: flex-start; gap: 12px; margin-top: 20px;
    padding: 16px 18px; border: 1px solid var(--line); background: rgba(147, 120, 64, .05);
    font-size: .95rem; line-height: 1.5; cursor: pointer;
}
.check-upgrade input { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); }
.check-upgrade strong { color: var(--gold); font-weight: 500; white-space: nowrap; }

/* margin-top lines the summary's top up with the "Tour *" field (past the
   step legend: 34px legend + 22px margin). Reset when the grid stacks. */
.booking-summary { margin-top: 56px; background: var(--ink); color: var(--cream); padding: clamp(26px, 3vw, 38px); }
.summary-kicker { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }
.summary-tour { font-family: var(--serif); font-size: 1.6rem; margin-top: 14px; }
.summary-length { font-size: .9rem; color: rgba(245, 242, 236, .6); margin-top: 4px; }
.summary-list { margin: 24px 0; border-top: 1px solid var(--line-light); padding-top: 22px; }
.summary-list h3 { font-family: var(--sans); font-weight: 400; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; }
.summary-list ul { list-style: none; margin: 0 0 18px; }
.summary-list li { font-size: .92rem; line-height: 1.6; padding-left: 22px; position: relative; color: rgba(245, 242, 236, .85); }
.summary-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-soft); }
.summary-list .is-excluded li::before { content: "×"; }
.summary-rows { border-top: 1px solid var(--line-light); padding-top: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: .95rem; padding: 6px 0; color: rgba(245, 242, 236, .82); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line-light); }
.summary-total span:first-child { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.summary-total span:last-child { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }

.btn-book {
    display: block; width: 100%; margin-top: 24px; padding: 16px; border: none; cursor: pointer;
    background: var(--gold); color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .2em;
    text-transform: uppercase; transition: background .3s ease;
}
.btn-book:hover { background: var(--brown); }
.summary-secure { text-align: center; font-size: .72rem; color: rgba(245, 242, 236, .6); margin-top: 12px; }
.summary-fine { text-align: center; font-size: .72rem; line-height: 1.6; color: rgba(245, 242, 236, .45); margin-top: 10px; }

@media (max-width: 860px) {
    .booking-grid { grid-template-columns: 1fr; }
    .booking-summary { margin-top: 0; }
}
@media (max-width: 520px) {
    .field-row, .booking-checks { grid-template-columns: 1fr; }
}

/* ---- Contact page -------------------------------------------------------- */
.contact-page { padding-top: 98px; background: var(--cream); color: var(--ink); }
/* White intro band so it separates cleanly from the cream form section below */
.contact-head { background: #fff; text-align: center; padding: clamp(40px, 7vw, 90px) 0 clamp(36px, 4vw, 60px); }
.contact-head .kicker { color: var(--gold); }
.contact-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 0.02em; margin: 10px 0 18px; }
.contact-lead { max-width: 60ch; margin: 0 auto; color: rgba(14, 19, 24, .7); line-height: 1.9; }

/* Founder card sits on a full-width tinted panel so the top block matches the
   width of the two columns below (no more narrow card floating over wide content). */
.contact-figure { padding-top: clamp(30px, 5vw, 56px); }
.contact-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sand);
    padding: clamp(30px, 5vw, 72px);
    box-shadow: 0 24px 60px rgba(14, 19, 24, .08);
}
.contact-card img {
    width: 100%;
    max-width: 760px;
    height: auto;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(14, 19, 24, .14);
}

/* Two columns: enquiry form beside a dark info box (mirrors the booking summary) */
.contact-columns {
    padding-top: clamp(40px, 6vw, 72px);
    padding-bottom: var(--sp-sec);
}
/* Single centred column: title, description, form and the gold contact bar
   all stack down the middle of the page. */
.contact-form-wrap { max-width: 720px; margin: 0 auto; }
.contact-form-head { text-align: center; margin-bottom: clamp(24px, 3vw, 34px); }
.contact-form-head .kicker { color: var(--gold); display: block; margin-bottom: 14px; }
.contact-form-title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.contact-form-lead { max-width: 54ch; margin: 0 auto; color: rgba(14, 19, 24, .7); line-height: 1.8; }
.contact-form { margin-top: 26px; }
.contact-form .booking-note { margin-bottom: 22px; }
.contact-form-actions { margin-top: 14px; text-align: center; }
.contact-form-actions .btn { border: none; background: var(--gold); color: #fff; }
.contact-form-actions .btn:hover { background: var(--brown); color: #fff; }
.contact-form .captcha-notice { text-align: center; } /* centred under the Send button */

/* "Reach us directly" card, now inside the white Get-in-touch band. Dark ink
   card (same language as the booking summary); phone + email side by side. */
.contact-directbar {
    max-width: 620px;
    margin: clamp(30px, 4vw, 48px) auto 0;
    background: var(--ink);
    color: var(--cream);
    padding: clamp(26px, 3.5vw, 38px) clamp(26px, 4vw, 44px);
    text-align: center;
}
.directbar-kicker { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
/* Phone + email side by side on desktop; stacked on small screens */
.directbar-items { display: flex; justify-content: center; gap: clamp(16px, 3vw, 40px); }
.directbar-item { display: flex; flex-direction: column; gap: 7px; border: 1px solid var(--gold); padding: 16px 28px; }
.directbar-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.directbar-item a { font-size: 1.05rem; color: var(--cream); transition: color .25s ease; word-break: break-word; }
.directbar-item a:hover { color: var(--gold-soft); }
@media (max-width: 600px) {
    .directbar-items { flex-direction: column; align-items: center; } /* stack on mobile */
}

@media (max-width: 520px) {
    .contact-form .field-row { grid-template-columns: 1fr; }
}

/* ---- Forms / reCAPTCHA (Site Completion Protocol) ------------------------ */
.grecaptcha-badge { visibility: hidden !important; } /* allowed while the notice below is shown */
.captcha-notice {
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(14, 19, 24, .5);
    margin-top: 0.9rem;
}
.captcha-notice a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-status { font-size: 0.9rem; min-height: 1.4em; margin: 0.75rem 0; }
.form-status.is-success { color: #3f7d54; }
.form-status.is-error { color: #c05656; }
/* On the dark booking summary the notice needs light text */
.booking-summary .captcha-notice { color: rgba(245, 242, 236, .55); }
.booking-summary .captcha-notice a { color: rgba(245, 242, 236, .8); }

/* ---- Legal pages (Privacy / Terms) --------------------------------------- */
.legal-page { padding-top: 98px; background: var(--cream); color: var(--ink); }
.legal-inner { max-width: 72ch; padding-top: clamp(48px, 8vw, 100px); padding-bottom: var(--sp-sec); }
.legal-inner .kicker { color: var(--gold); }
.legal-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: .02em; margin: 10px 0 10px; }
.legal-updated { font-size: .8rem; letter-spacing: .05em; color: rgba(14, 19, 24, .5); margin-bottom: clamp(28px, 4vw, 46px); }
.legal-inner h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: clamp(30px, 4vw, 44px) 0 12px; }
.legal-inner p { font-weight: 300; line-height: 1.9; color: rgba(14, 19, 24, .78); margin-bottom: 14px; }
.legal-inner ul { margin: 0 0 14px 1.1em; }
.legal-inner li { font-weight: 300; line-height: 1.8; color: rgba(14, 19, 24, .78); margin-bottom: 8px; }
.legal-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-inner a:hover { color: var(--brown); }
.legal-note { margin-top: clamp(34px, 5vw, 54px); padding-top: 18px; border-top: 1px solid var(--line); font-size: .85rem; color: rgba(14, 19, 24, .55) !important; }

/* ---- Intro --------------------------------------------------------------- */
.intro { padding: var(--sp-sec) 0 calc(var(--sp-sec) * 0.6); background: var(--cream); }
.intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.intro .eyebrow { display: block; margin-bottom: 22px; }
.intro-body {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    line-height: 1.5;
    color: var(--ink);
}

/* ---- Signature Experiences ---------------------------------------------- */
.experiences { padding: calc(var(--sp-sec) * 0.6) 0 var(--sp-sec); background: var(--cream); }
.experiences-grid {
    display: grid;
    grid-template-columns: 1fr 1.62fr; /* map column widened ~75px total */
    gap: clamp(38px, 6vw, 90px);
    align-items: center;
    margin-top: clamp(30px, 4vw, 56px); /* space between the title and the image/text below */
}
.experiences-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(14,19,24,.82);
    max-width: 46ch;
}
.feature-list { list-style: none; margin-top: 34px; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.tick { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 5px; }

.experiences-map {
    position: relative;
    background: var(--sand);
    border: 1px solid var(--line);
    padding: 16px;
}
.experiences-map::after {
    content: "";
    position: absolute; inset: 10px;
    border: 1px solid var(--line);
    pointer-events: none;
}
.experiences-map img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Signature Private Tours -------------------------------------------- */
.tours { padding: var(--sp-sec) 0; background: var(--sand); }
.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 2vw, 30px);
}
.tour-card {
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px -30px rgba(14,19,24,.5); }
.tour-media { overflow: hidden; aspect-ratio: 4 / 3; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-body { padding: 26px 24px 30px; display: flex; flex-direction: column; flex: 1; }
.tour-region {
    font-size: 0.64rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.tour-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.05;
}
.tour-blurb {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(14,19,24,.7);
    margin-top: 12px;
    flex: 1;
}
.tour-price {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brown);
}
.tour-cta {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
}
.tour-cta:hover { letter-spacing: 0.28em; }

/* ---- Seamless Transfers (Signature Collection style) -------------------- */
.transfers { padding: var(--sp-sec) 0; background: var(--cream); }
.transfers-collection {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(28px, 4vw, 60px);
    align-items: stretch;
}
.transfers-stage {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--line);
    background: var(--sand);
    overflow: hidden;
}
.transfers-photo {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.2s cubic-bezier(.2,.8,.2,1), visibility .8s ease;
}
.transfers-photo.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.transfers-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Airport photo: keep the guest at the right of frame in view */
.transfers-photo[data-photo="0"] img { object-position: right center; }

.transfers-panel { display: flex; flex-direction: column; }
.transfers-list { list-style: none; border-top: 1px solid var(--line); }
.transfers-list li { border-bottom: 1px solid var(--line); }
.transfers-tab {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 20px 4px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: rgba(14,19,24,.55);
    transition: color .4s ease, padding-left .4s ease;
}
.transfers-tab:hover { color: var(--ink); padding-left: 10px; }
.transfers-tab.is-active { color: var(--ink); padding-left: 10px; }
.transfers-tab-index {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}
.transfers-tab-name {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}
.transfers-tab.is-active .transfers-tab-name { color: var(--brown); }

.transfers-hint {
    margin-top: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(14, 19, 24, 0.55);
}

/* Accordion detail: slides open beneath its own title.
   grid-template-rows 0fr -> 1fr animates height without a fixed value. */
.transfers-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}
.transfers-content-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 4px 0 10px;
    transition: padding-bottom .55s cubic-bezier(.2,.8,.2,1);
}
.transfers-content.is-active { grid-template-rows: 1fr; opacity: 1; }
.transfers-content.is-active .transfers-content-inner { padding-bottom: 26px; }
/* Inline photo lives inside each accordion panel for mobile; hidden on
   desktop, where the large left-hand stage image is used instead. */
.transfers-inline-photo { display: none; }
.transfers-blurb {
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(14,19,24,.72);
    max-width: 44ch;
    margin-bottom: 24px;
}
.rate-list { border-top: 1px solid var(--line); }
.rate-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.rate-row dt { font-size: 0.94rem; color: rgba(14,19,24,.82); }
.rate-row dd {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--brown);
    white-space: nowrap;
}
.rate-note {
    margin-top: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---- Testimonials -------------------------------------------------------- */
.testimonials {
    padding: var(--sp-sec) 0;
    background:
        linear-gradient(rgba(14, 19, 24, 0.85), rgba(14, 19, 24, 0.85)),
        url("../images/testimonial-bg.jpg") center / cover no-repeat;
    background-color: var(--ink);
    color: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(22px, 3vw, 40px);
}
.testimonial-card {
    border: 1px solid var(--line-light);
    padding: 26px 34px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(255,255,255,0.015);
}
.quote-mark {
    font-family: var(--serif);
    font-size: 4.5rem;
    line-height: 0.5;
    color: var(--gold-soft);
    height: 32px;
}
.testimonial-card blockquote {
    font-family: var(--serif);
    font-size: 1.32rem;
    line-height: 1.5;
    color: var(--cream);
    flex: 1;
    margin-bottom: 18px;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 4px; }
.testimonial-author {
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream);
}
.testimonial-place {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink-soft); color: var(--cream); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(34px, 6vw, 90px);
    padding: clamp(60px, 8vw, 96px) var(--gutter);
}
.footer-logo {
    width: min(265px, 62vw);
    height: auto;
    display: block;
    /* Artwork is black on transparent; invert to read as cream on the dark footer */
    filter: invert(1);
}
.footer-name {
    font-family: var(--serif);
    font-size: 1.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
}
.footer-suffix {
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold-soft);
    display: block;
    margin-top: 6px;
}
.footer-blurb {
    margin-top: 22px;
    max-width: 40ch;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245,242,236,.68);
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-col h4 {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; color: rgba(245,242,236,.78); }
.footer-col a { transition: color .3s ease; }
.footer-col a:hover { color: var(--gold-soft); }

.footer-base { border-top: 1px solid var(--line-light); }
.footer-base-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px var(--gutter);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,242,236,.5);
}
.footer-credit { color: var(--gold-soft); }
.footer-legal { display: inline-flex; gap: 20px; }
.footer-legal a { color: rgba(245,242,236,.5); transition: color .25s ease; }
.footer-legal a:hover { color: var(--gold-soft); }
@media (max-width: 700px) {
    .footer-base-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}

/* ---- Scroll reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
