/* ============================================================
   ELITE TOURS IRELAND — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --et-green:        #1A4F31;
    --et-green-dark:   #123320;
    --et-green-light:  #22593e;
    --et-white:        #FFFFFF;
    --et-off-white:    #F2F7F2;
    --et-gold:         #C4A265;
    --et-black:        #000000;
    --et-grey-dark:    #1A1A1A;
    --et-grey:         #6B6B6B;
    --et-grey-light:   #D0D0D0;

    --et-font-heading: 'Old Standard TT', Georgia, serif;
    --et-font-body:    'Arial Nova', Arial, sans-serif;

    --et-header-h:     80px;
    --et-radius:       2px;
    --et-transition:   0.4s ease;

    --et-container:    1280px;
    --et-container-pad: 40px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Defensive: hide the WP admin toolbar on the front-end and undo the
   margin-top WordPress injects for logged-in users. Functions.php
   already filters show_admin_bar off, but a stray cookie / cache /
   plugin can still leak the markup. !important is appropriate here
   because WordPress writes the margin rule with !important itself. */
html { margin-top: 0 !important; }
@media screen and (max-width: 782px) {
    html { margin-top: 0 !important; }
}
#wpadminbar { display: none !important; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
body {
    font-family: var(--et-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--et-grey-dark);
    background: var(--et-white);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* iOS: prevent body scroll-chaining elastic-bouncing the page sideways */
    overflow-wrap: break-word;
    word-wrap: break-word;
}
/* iOS Safari: long URLs/words can push past container width and force the
   whole body wider than the viewport. Force long strings to break only when
   they would actually overflow — not aggressive hyphenation. */
h1, h2, h3, h4, h5, h6, p, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* iOS Safari hero / section titles: extra-defensive overflow guard. These
   titles use clamp() font-sizes + negative letter-spacing, and content
   sometimes lacks spaces (e.g. "Ireland,through" or "Ireland.Very" when a
   <br> sits between two sentences). On narrow viewports those tokens push
   the container past 100vw on iOS even with overflow-x:clip on body.
   `overflow-wrap: anywhere` lets the browser break at any character as a
   last resort — readable text stays unbroken; only true overflow forces a
   break. Added max-width:100% so the element itself can never exceed its
   parent's content box. */
.et-page-hero__title,
.et-page-hero__sub,
.et-section__title,
.et-section__subtitle,
.et-hero__headline,
.et-hero__subheading,
.et-experiences__heading {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;          /* webkit fallback */
}
img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* iOS Safari overflow guard: hard-clip the body at viewport width on
   mobile/tablet to absolutely prevent right-edge clipping. */
@media (max-width: 1024px) {
    html {
        overflow-x: clip;
        max-width: 100vw;
    }
    body {
        overflow-x: clip;
        max-width: 100vw;
        width: 100vw;
        position: relative;
    }
    /* Every section/wrapper: force inside the viewport */
    section, header, footer, main, article, aside,
    .et-section, .et-page-hero, .et-hero, .et-intro, .et-offers,
    .et-process, .et-experiences, .et-testimonials, .et-founder,
    .et-footer, .et-bespoke-journeys, .et-exp-funnel, .et-exp__hero {
        max-width: 100vw;
        overflow-x: clip;
    }
    /* Container: hard-cap at 100vw, explicit symmetric padding */
    .et-container {
        max-width: 100vw !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    /* Direct children of containers cannot exceed parent */
    .et-container > *,
    section > *,
    .et-section > * {
        max-width: 100%;
    }
    /* Media + form controls bound to parent */
    img, video, iframe, picture, svg, canvas {
        max-width: 100% !important;
        height: auto;
    }
    /* Anything with explicit inline width="..." attribute capped */
    [width] {
        max-width: 100% !important;
    }
}

/* Mobile: long-text buttons (e.g. "The Elite Tours Story & About Us") would
   overflow the container as inline-flex. Make all primary/secondary buttons
   full-width with centered content + wrapping text on narrow phones. */
@media (max-width: 600px) {
    .et-btn--primary,
    .et-btn--secondary,
    .et-btn--lg {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        max-width: 100%;
    }
}

/* ── Scroll reveal ────────────────────────────────────────── */
.et-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.et-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.et-reveal--delay-1 { transition-delay: 0.1s; }
.et-reveal--delay-2 { transition-delay: 0.2s; }
.et-reveal--delay-3 { transition-delay: 0.3s; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    -webkit-appearance: none;  /* iOS strips default rounded button styling */
    appearance: none;
}
/* iOS Safari: strip default rounded native styling so our CSS wins. */
input, textarea, select {
    -webkit-appearance: none;
    appearance: none;
}

/* ── Container ─────────────────────────────────────────────── */
.et-container {
    width: 100%;
    max-width: var(--et-container);
    margin-inline: auto;
    padding-inline: var(--et-container-pad);
    /* iOS: respect notch in landscape on iPhone X+ */
    padding-left: max(var(--et-container-pad), env(safe-area-inset-left));
    padding-right: max(var(--et-container-pad), env(safe-area-inset-right));
}

/* ── Buttons ───────────────────────────────────────────────── */
.et-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--et-radius);
    font-family: var(--et-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--et-transition), color var(--et-transition),
                border-color var(--et-transition), opacity var(--et-transition);
    white-space: nowrap;
}
.et-btn--primary {
    background: var(--et-green);
    color: var(--et-white);
    border: 2px solid var(--et-green);
}
.et-btn--primary:hover {
    background: var(--et-green-dark);
    border-color: var(--et-green-dark);
    transform: translateY(-1px);
}
.et-btn--ghost {
    background: transparent;
    color: var(--et-white);
    border: 2px solid rgba(255,255,255,0.6);
}
.et-btn--ghost:hover {
    border-color: var(--et-white);
    background: rgba(255,255,255,0.1);
}
.et-btn--lg {
    padding: 15px 36px;
    font-size: 14px;
}

/* Pill buttons — Adams & Butler style */
.et-btn--pill {
    border-radius: 100px;
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
}
.et-btn--pill-light {
    background: rgba(255,255,255,0.92);
    color: var(--et-black);
    border: 2px solid transparent;
}
.et-btn--pill-light:hover {
    background: var(--et-white);
    color: var(--et-green);
}
.et-btn--pill-outline {
    background: transparent;
    color: var(--et-white);
    border: 2px solid rgba(255,255,255,0.55);
}
.et-btn--pill-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.9);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.et-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--et-header-h);
    background: transparent;
    transition: background var(--et-transition), box-shadow var(--et-transition);
}

/* Scrolled state — frosted glass */
.et-header.is-scrolled {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.et-header.is-scrolled .et-nav__link,
.et-header.is-scrolled .et-header__phone {
    color: var(--et-grey-dark);
}
.et-header.is-scrolled .et-header__logo-text .et-header__logo-since {
    color: var(--et-grey);
}
.et-header.is-scrolled .et-header__logo-text .et-header__logo-et {
    color: var(--et-green);
}
.et-header.is-scrolled .et-header__logo-text .et-header__logo-name {
    color: var(--et-grey-dark);
}
.et-header.is-scrolled .et-hamburger__bar {
    background: var(--et-grey-dark);
}

.et-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--et-container);
    margin-inline: auto;
    padding-inline: var(--et-container-pad);
    gap: 16px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.et-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.et-header__logo img {
    height: 48px;
    width: auto;
}
.et-header__logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 1px;
}
.et-header__logo-since {
    font-family: var(--et-font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.et-header__logo-et {
    font-family: var(--et-font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--et-white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.et-header__logo-name {
    font-family: var(--et-font-body);
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}

/* ── Nav ────────────────────────────────────────────────────── */
.et-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.et-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.et-nav__link {
    display: block;
    padding: 8px 14px;
    font-family: var(--et-font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.88);
    border-radius: var(--et-radius);
    transition: color var(--et-transition), background var(--et-transition);
    white-space: nowrap;
}
.et-nav__link:hover,
.et-nav__link--active {
    color: var(--et-white);
    background: rgba(255,255,255,0.1);
}

/* Bespoke Tours — priority highlight */
.et-nav__link--bespoke {
    color: var(--et-gold);
    font-weight: 600;
}
.et-nav__link--bespoke:hover {
    color: var(--et-white);
    background: rgba(196,162,101,0.15);
}
.et-header.is-scrolled .et-nav__link:hover,
.et-header.is-scrolled .et-nav__link--active {
    color: var(--et-green);
    background: rgba(26,71,49,0.06);
}

/* ── Header Actions ─────────────────────────────────────────── */
.et-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.et-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    transition: color var(--et-transition);
    white-space: nowrap;
}
.et-header__phone:hover { color: var(--et-white); }
.et-header__phone svg { opacity: 0.7; }

/* ── Hamburger ──────────────────────────────────────────────── */
.et-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;                          /* 44×44 — Apple HIG minimum touch target */
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}
.et-hamburger:hover { background: rgba(255,255,255,0.08); }
.et-hamburger:focus-visible {
    outline: 2px solid var(--et-gold);
    outline-offset: 2px;
}
.et-header.is-scrolled .et-hamburger:hover { background: rgba(0,0,0,0.05); }

.et-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--et-white);
    border-radius: 2px;
    /* Tiny shadow keeps bars readable over light hero areas before is-scrolled
       kicks in. Imperceptible over dark heros, gives ~1px contrast over white. */
    box-shadow: 0 1px 2px rgba(0,0,0,0.25);
    transition: transform var(--et-transition), opacity var(--et-transition), background var(--et-transition);
}

/* Hamburger open state */
.et-hamburger[aria-expanded="true"] .et-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.et-hamburger[aria-expanded="true"] .et-hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.et-hamburger[aria-expanded="true"] .et-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Header tap-highlight + focus-visible — mobile UX polish ─── */
.et-header a,
.et-header button {
    -webkit-tap-highlight-color: transparent;
}
.et-nav__link:focus-visible,
.et-header__phone:focus-visible,
.et-nav-wishlist:focus-visible,
.et-header__logo:focus-visible {
    outline: 2px solid var(--et-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced-motion: keep functionality, drop animation */
@media (prefers-reduced-motion: reduce) {
    .et-nav,
    .et-hamburger__bar,
    .et-header { transition-duration: 0.01ms !important; }
}

/* ============================================================
   HERO SECTION — Adams & Butler inspired
   ============================================================ */
.et-hero {
    position: relative;
    width: 100%;
    height: 100vh;             /* fallback for older browsers */
    height: 100svh;            /* iOS Safari: small viewport (URL bar visible) */
    min-height: 640px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@supports (height: 100dvh) {
    .et-hero { height: 100dvh; }
}

/* ── Background ─────────────────────────────────────────────── */
.et-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.et-hero__video,
.et-hero__image,
.et-hero__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
/* Ken Burns — slow cinematic zoom */
.et-hero__image {
    animation: et-kenburns 18s ease-in-out infinite alternate;
}
@keyframes et-kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.05); }
}
.et-hero__placeholder {
    background: linear-gradient(160deg, #0d2b1c 0%, var(--et-green) 55%, #2a5e3e 100%);
}

/* Overlay — dark at top (nav) + bottom (text), clear in middle to show landscape */
.et-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.5) 0%,
            rgba(0,0,0,0.1) 30%,
            rgba(0,0,0,0.05) 50%,
            rgba(0,0,0,0.35) 70%,
            rgba(0,0,0,0.75) 100%
        );
}

/* ── Content — anchored to bottom-left ────────────────────── */
.et-hero__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    padding-top: var(--et-header-h);
}

.et-hero__inner {
    max-width: 640px;
}

.et-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-family: var(--et-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--et-off-white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.et-hero__label::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--et-gold);
    flex-shrink: 0;
}

.et-hero__headline {
    font-family: var(--et-font-heading);
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.06;
    color: var(--et-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.et-hero__subheading {
    font-family: var(--et-font-body);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 28px;
}

/* TripAdvisor proof badge — sits above CTAs, near-buttons social proof */
.et-hero__proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
}
.et-hero__proof-stars {
    font-size: 13px;
    color: #34E0A1;
    letter-spacing: 1px;
    line-height: 1;
}
.et-hero__proof-text {
    font-family: var(--et-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--et-off-white);
}

/* CTAs — pill style like Adams & Butler */
.et-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Pill buttons — clean, outlined, premium feel */
.et-btn--pill {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.et-btn--pill-light {
    background: var(--et-white);
    color: var(--et-green);
    border: none;
}
.et-btn--pill-light:hover {
    background: var(--et-gold);
    color: var(--et-white);
    transform: translateY(-1px);
}
.et-btn--pill-outline {
    background: transparent;
    color: var(--et-white);
    border: 1px solid rgba(255,255,255,0.5);
}
.et-btn--pill-outline:hover {
    border-color: var(--et-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.et-hero__trust {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-block: 14px;
    overflow: hidden;
}

.et-trust-wrap {
    display: flex;
    align-items: center;
}
.et-trust-arrow { display: none; }

.et-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
}

.et-trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 12px;
    text-align: center;
    flex-shrink: 0;
}

.et-trust-bar__badge {
    font-family: var(--et-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--et-white);
    line-height: 1.2;
}
.et-trust-bar__badge--gold {
    color: var(--et-gold);
}
.et-trust-bar__sub {
    font-family: var(--et-font-body);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    line-height: 1.2;
}

/* TripAdvisor inline SVG */
.et-trust-bar__svg {
    height: 18px;
    width: auto;
    display: block;
    margin-bottom: 3px;
}
.et-trust-bar__stars {
    font-size: 10px;
    color: #34E0A1;
    letter-spacing: 1px;
    line-height: 1;
}

/* Partner logo images */
.et-trust-bar__logo {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);   /* force white on dark bg */
    opacity: 0.9;
}
/* IAGTO logo is colour-based — keep it, just slightly dim */
.et-trust-bar__logo--iagto {
    filter: none;
    opacity: 0.85;
}
/* TripAdvisor SVG is dark green — invert to white on dark hero */
.et-trust-bar__logo--ta {
    filter: brightness(0) invert(1);
    height: 22px;
    max-width: 140px;
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* ── Shared ─────────────────────────────────────────────────── */
.et-label {
    display: block;
    font-family: var(--et-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-green);
    margin-bottom: 14px;
}
.et-label--light { color: rgba(255,255,255,0.7); }

.et-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--et-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--et-green);
    text-decoration: none;
    transition: gap var(--et-transition);
}
.et-link-arrow:hover { gap: 12px; }

.et-btn--lg { padding: 16px 36px; font-size: 15px; }

/* ── Stats Strip ─────────────────────────────────────────────── */
.et-stats {
    background: var(--et-white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding-block: 48px;
}

.et-stats__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
}

.et-stats__divider {
    width: 1px;
    height: 52px;
    background: rgba(0,0,0,0.1);
    justify-self: center;
}

.et-stats__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 32px;
}

.et-stats__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--et-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--et-green);
    margin-top: 2px;
}

.et-stats__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.et-stats__label {
    font-family: var(--et-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--et-black);
    line-height: 1.3;
}

.et-stats__desc {
    font-family: var(--et-font-body);
    font-size: 13px;
    color: var(--et-grey);
    line-height: 1.5;
}

/* ── Intro / Who We Are ──────────────────────────────────────── */
.et-intro {
    padding-block: 120px;
    background: var(--et-white);
}

.et-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.et-intro__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--et-black);
    line-height: 1.2;
    margin-bottom: 28px;
}

.et-intro__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.et-intro__body p {
    font-family: var(--et-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a3a;
}

.et-intro__media { position: relative; }

.et-intro__img-wrap {
    position: relative;
    border-radius: 4px;
}
.et-intro__media { overflow: hidden; }

.et-intro__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.et-intro__badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--et-green);
    color: var(--et-white);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.et-intro__badge-num {
    display: block;
    font-family: var(--et-font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.et-intro__badge-text {
    font-family: var(--et-font-body);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1.4;
}

/* ── Core Offers Cards ───────────────────────────────────────── */
.et-offers {
    padding-block: 120px;
    background: var(--et-white);
}

.et-offers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.et-offer-card {
    position: relative;
    min-height: 480px;
    background-image: var(--et-offer-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 8px;
}

.et-offer-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: background 0.4s ease;
}
.et-offer-card:hover .et-offer-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.et-offer-card__content {
    position: relative;
    z-index: 1;
    padding: 48px;
    max-width: 480px;
}

.et-offer-card__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 400;
    color: var(--et-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.et-offer-card__desc {
    font-family: var(--et-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

.et-btn--outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: var(--et-radius);
    font-family: var(--et-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--et-white);
    text-decoration: none;
    transition: background var(--et-transition), border-color var(--et-transition);
}
.et-btn--outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--et-white);
    transform: translateY(-1px);
}

/* ── How It Works / Process ──────────────────────────────────── */
.et-process {
    padding-block: 120px;
    background: var(--et-off-white);
}

.et-process__header {
    text-align: center;
    margin-bottom: 64px;
}

.et-process__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: var(--et-black);
    line-height: 1.2;
}

.et-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-bottom: 56px;
}

.et-process__step {
    padding: 28px;
    position: relative;
    background: rgba(26,79,49,0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(26,79,49,0.08);
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.et-process__step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26,79,49,0.08);
}

.et-process__num {
    display: block;
    font-family: var(--et-font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--et-gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 16px;
}

.et-process__title {
    font-family: var(--et-font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--et-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.et-process__desc {
    font-family: var(--et-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--et-grey);
    overflow-wrap: break-word;
}

.et-process__cta {
    text-align: center;
}

/* ── Experiences Grid ────────────────────────────────────────── */
.et-experiences {
    padding-block: 120px;
    background: var(--et-white);
}

.et-experiences__header {
    text-align: center;
    margin-bottom: 32px;
}

.et-experiences__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: var(--et-black);
    line-height: 1.2;
}

.et-experiences__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Carousel mode — horizontal scroll-snap variant ─────────── */
.et-experiences__header--with-controls {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.et-experiences__header--with-controls .et-experiences__heading { margin: 0; }

.et-carousel-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.et-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--et-light-grey, #d4d4d4);
    background: var(--et-white);
    color: var(--et-green);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s, transform 0.15s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    padding: 0;
}
.et-carousel-btn:hover:not(:disabled) {
    background: var(--et-green);
    color: var(--et-white);
    border-color: var(--et-green);
}
.et-carousel-btn:active:not(:disabled) { transform: scale(0.95); }
.et-carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.et-carousel-btn:focus-visible {
    outline: 2px solid var(--et-gold);
    outline-offset: 2px;
}

.et-experiences__grid--carousel {
    display: flex !important;        /* override the base grid rule */
    grid-template-columns: none;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    /* Bleed the scroll track to the container edges so the next/prev
       card can peek beyond the viewport edge. Padding restores the
       in-flow gutter for the snap stop. */
    margin-inline: calc(var(--et-container-pad, 24px) * -1);
    padding: 4px var(--et-container-pad, 24px) 24px;
    /* Hide native scrollbar — touch + buttons are the input modes */
    scrollbar-width: none;
}
.et-experiences__grid--carousel::-webkit-scrollbar { display: none; }
.et-experiences__grid--carousel:focus-visible { outline: 2px solid var(--et-gold); outline-offset: -2px; border-radius: 4px; }

.et-experiences__grid--carousel .et-exp-card {
    flex: 0 0 calc((100% - 48px) / 3);   /* 3 visible at desktop, gap 24×2 */
    scroll-snap-align: start;
    height: 400px;                       /* match base */
}

/* ── Experience filter tabs ──────────────────────────────────── */
.et-experiences__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}
.et-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.et-filter-group__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    white-space: nowrap;
}
.et-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.et-filter-tab {
    background: none;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-family: var(--et-font-body);
    color: #555;
    cursor: pointer;
    transition: all .2s;
}
.et-filter-tab:hover {
    border-color: var(--et-green);
    color: var(--et-green);
}
.et-filter-tab.is-active {
    background: var(--et-green);
    border-color: var(--et-green);
    color: #fff;
}
.et-experiences__empty {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px 0;
}

.et-experiences__cta {
    text-align: center;
    margin-top: 40px;
}
.et-exp-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.et-exp-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.et-exp-card:hover .et-exp-card__img { transform: scale(1.06); }

.et-exp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    transition: background var(--et-transition);
}
.et-exp-card:hover .et-exp-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}

.et-exp-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.et-exp-card__label {
    display: block;
    font-family: var(--et-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-gold);
    margin-bottom: 6px;
}

.et-exp-card__title {
    font-family: var(--et-font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--et-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.et-exp-card__desc {
    font-family: var(--et-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    display: none;
    transition: opacity 0.3s;
}
.et-exp-card:hover .et-exp-card__desc { display: block; }

.et-exp-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--et-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--et-gold);
    letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (max 1024px) ────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Show hamburger at 1024px — 7 nav items don't fit */
    .et-hamburger { display: flex; }
    .et-nav {
        position: fixed;
        top: var(--et-header-h);
        left: 0;
        width: 100%;
        max-width: 100vw;                              /* never overflow viewport */
        height: calc(100vh - var(--et-header-h));
        height: calc(100svh - var(--et-header-h));     /* iOS dynamic viewport */
        background: var(--et-green-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px var(--et-container-pad);
        padding-bottom: calc(32px + env(safe-area-inset-bottom));  /* iOS home-indicator */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;             /* iOS momentum scroll */
        overscroll-behavior: contain;                  /* don't chain to body */
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        /* No box-shadow here — at translateX(-100%) the shadow leaks 30px
           into the viewport from the left edge, showing as a vertical
           black bar even when the drawer is "closed". */
    }
    .et-nav.is-open {
        transform: translateX(0);
        box-shadow: 4px 0 30px rgba(0,0,0,0.3);  /* shadow only when open */
    }
    .et-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
    .et-nav__link { padding: 12px 0; font-size: 16px; width: 100%; }

    /* Phone link — hidden on tablet+mobile (original behaviour) */
    .et-header__phone { display: none; }

    /* Logo image — scale down so it doesn't crowd the header */
    .et-header__logo img { height: 40px; }
    /* Trust bar: hide last item + its divider, collapse to 4 items */
    /* Trust bar — keep flex, hide last item on tablet */
    .et-trust-bar { gap: 28px; }
    .et-trust-bar__item:last-child { display: none; }

    /* Stats */
    .et-stats__item { padding: 0 20px; }

    /* Intro */
    .et-intro__grid { gap: 48px; }

    /* Process */
    .et-process__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .et-process__step { border-left: none; padding: 24px 0 0; border-top: 2px solid rgba(0,0,0,0.08); }
    .et-process__step:nth-child(-n+2) { border-top: none; padding-top: 0; }

    /* Experiences */
    .et-experiences__grid { grid-template-columns: repeat(2, 1fr); }
    .et-experiences__grid--carousel .et-exp-card { flex: 0 0 calc((100% - 24px) / 2); }  /* tablet: 2 visible */

    /* Intro badge — keep inside bounds */
    .et-intro__badge { left: 12px; }
}

/* ── Mobile (max 768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --et-header-h: 64px; }

    /* Tighter container padding on small phones — gives 16px each side */
    .et-header__inner { padding-inline: 16px; gap: 8px; }

    .et-nav__item { width: 100%; }
    .et-nav__link {
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.88);
    }
    /* Override scrolled state — mobile nav is always on dark green background */
    .et-header.is-scrolled .et-nav__link {
        color: rgba(255,255,255,0.88);
    }
    .et-header.is-scrolled .et-nav__link:hover {
        color: var(--et-white);
    }

    /* Hide desktop CTA in mobile nav */
    .et-header__actions .et-btn { display: none; }

    /* Header actions row — tighter spacing on phones */
    .et-header__actions { gap: 4px; }

    /* Smaller logo on phones */
    .et-header__logo img { height: 36px; }

    /* Hero */
    .et-hero__content { padding-bottom: 48px; }
    .et-hero__inner { max-width: 100%; }
    .et-hero__label { margin-bottom: 12px; font-size: 10px; gap: 10px; }
    .et-hero__label::before { width: 22px; }
    .et-hero__headline { font-size: 38px; margin-bottom: 14px; }
    .et-hero__subheading { font-size: 14px; margin-bottom: 16px; line-height: 1.5; }
    .et-hero__proof { gap: 8px; padding: 5px 11px; margin-bottom: 18px; }
    .et-hero__proof-stars,
    .et-hero__proof-text { font-size: 11px; }
    .et-hero__ctas { gap: 10px; }
    .et-btn--pill { width: 100%; justify-content: center; padding: 12px 24px; font-size: 12px; }

    /* Trust bar — compact row on mobile */
    /* Trust bar — scrollable strip with arrows */
    .et-trust-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        color: rgba(255,255,255,0.4);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .et-trust-bar {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 28px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .et-trust-bar::-webkit-scrollbar { display: none; }
    .et-trust-bar__item { padding: 4px 8px; }
    .et-trust-bar__item:last-child { display: flex; }
    .et-trust-bar__logo { height: 22px; }
    .et-trust-bar__sub { font-size: 9px; }
    .et-trust-bar__stars { font-size: 10px; }
    .et-hero__trust { padding-block: 10px; }
    .et-hero__trust { padding-block: 10px; }

    /* Global mobile: tighter sections, smaller body text */
    .et-container { --et-container-pad: 20px; }
    .et-label { font-size: 10px; margin-bottom: 10px; }

    /* Intro — compact */
    .et-intro { padding-block: 56px; }
    .et-intro__grid { grid-template-columns: 1fr; gap: 32px; }
    .et-intro__heading { font-size: 26px; margin-bottom: 16px; }
    .et-intro__body { font-size: 14px; line-height: 1.6; }
    .et-intro__body p { margin-bottom: 12px; }
    .et-intro__body p:nth-child(2),
    .et-intro__body p:nth-child(3) { display: none; }
    .et-intro__img-wrap img { height: 280px; }
    .et-intro__badge { bottom: -12px; left: 12px; padding: 14px; }
    .et-intro__badge-num { font-size: 28px; }

    /* Offers — compact */
    .et-offers__grid { grid-template-columns: 1fr; }
    .et-offer-card { min-height: 360px; }
    .et-offer-card__content { padding: 24px; }
    .et-offer-card__heading { font-size: 22px; }
    .et-offer-card__desc { font-size: 13px; line-height: 1.5; }

    /* Process — compact */
    .et-process { padding-block: 56px; }
    .et-process__heading { font-size: 24px; }
    .et-process__steps { grid-template-columns: 1fr 1fr; gap: 12px; }
    .et-process__step { padding: 20px; }
    .et-process__num { font-size: 28px; }
    .et-process__title { font-size: 15px; margin-bottom: 8px; }
    .et-process__desc { font-size: 13px; line-height: 1.5; }

    /* Experiences — compact */
    .et-experiences { padding-block: 56px; }
    .et-experiences__heading { font-size: 24px; margin-bottom: 24px; }
    .et-experiences__filters { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 20px; }
    .et-filter-group { flex-direction: row; align-items: center; gap: 8px; }
    .et-filter-group__label { font-size: 10px; white-space: nowrap; }
    .et-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        min-width: 0;
    }
    .et-filter-tabs::-webkit-scrollbar { display: none; }
    .et-filter-tab { padding: 5px 12px; font-size: 11px; white-space: nowrap; }
    .et-experiences__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .et-exp-card { height: 180px; border-radius: 6px; }
    .et-exp-card__content { padding: 14px; }
    .et-exp-card__label { font-size: 8px; margin-bottom: 4px; }
    .et-exp-card__title { font-size: 13px; margin-bottom: 0; }
    .et-exp-card__desc { display: none !important; }
    .et-exp-card__cta { display: none; }

    /* Carousel mode on mobile — swipe is the input, hide arrow controls.
       Cards become tall and editorial-grade since only one is visible at
       a time, so they get back the description + CTA the grid mode hides. */
    .et-experiences__header--with-controls {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
    .et-carousel-controls { display: none; }
    .et-experiences__grid--carousel .et-exp-card {
        flex: 0 0 80%;             /* one visible + ~10% peek of next on each side */
        height: 360px;
        border-radius: 8px;
    }
    .et-experiences__grid--carousel .et-exp-card__content { padding: 22px; }
    .et-experiences__grid--carousel .et-exp-card__label   { font-size: 10px; margin-bottom: 8px; }
    .et-experiences__grid--carousel .et-exp-card__title   { font-size: 20px; margin-bottom: 8px; }
    .et-experiences__grid--carousel .et-exp-card__desc    { display: block !important; font-size: 13px; }
    .et-experiences__grid--carousel .et-exp-card__cta     { display: inline-flex; }
}

/* ── Small phones (max 480px) ──────────────────────────────── */
@media (max-width: 480px) {
    .et-hero__headline { font-size: 32px; }
    /* trust bar already scrollable from 768px */
    .et-experiences__grid { grid-template-columns: 1fr; gap: 12px; }
    .et-exp-card { height: 200px; }
    .et-exp-card__content { padding: 18px; }
    .et-exp-card__title { font-size: 16px; }
    .et-exp-card__label { font-size: 9px; }
    .et-process__steps { grid-template-columns: 1fr; gap: 12px; }
    .et-process__step { padding: 20px; }
}