/*
 * Excellent Guides — luxury design layer on top of Bootstrap 5.
 * Editorial direction: large light serif headlines, warm neutral palette,
 * generous whitespace, full-bleed photography, restrained motion.
 *
 * Tokens first, then components. Content images come from Django media;
 * everything in static/img/ is brand/placeholder only.
 */


/* ---------- Fonts (self-hosted) ---------- */

@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces-latin-300-normal.65f4bc346e99.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces-latin-400-normal.15ccd91d7a8f.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces-latin-300-italic.0b90a59a4f3c.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-300-normal.a473493e759c.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-400-normal.da03732a27e1.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-500-normal.51205681a1ba.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* ---------- Design tokens ---------- */

:root {
    /* palette: warm neutrals + deep safari green accent */
    --eg-ink: #23211c;
    --eg-ink-soft: #4a453d;
    --eg-green: #1f3d2b;
    --eg-green-deep: #162b1f;
    --eg-taupe: #a89f92;
    --eg-stone: #cfc9bf;
    --eg-sand: #efece4;
    --eg-cream: #f7f5f0;
    --eg-white: #ffffff;
    --eg-brown: #5f514b;
    /* warm footer brown, as in the reference */
    --eg-font-heading: "Fraunces", Georgia, "Times New Roman", serif;
    --eg-font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
    /* fluid display scale — mirrors the reference: heading-l is 32px mobile,
     48px desktop; nothing on the site exceeds 3rem */
    --eg-text-hero: clamp(2rem, 3.4vw, 3rem);
    --eg-text-display: clamp(1.75rem, 3vw, 3rem);
    --eg-text-title: clamp(1.4rem, 2.4vw, 2rem);
    --eg-text-eyebrow: 0.72rem;
    --eg-section-pad: clamp(4.5rem, 10vw, 9rem);
    --eg-ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ---------- Base ---------- */

body {
    font-family: var(--eg-font-body);
    font-weight: 300;
    color: var(--eg-ink);
    background-color: var(--eg-cream);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.eg-serif {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    letter-spacing: -0.01em;
}

::selection {
    background: var(--eg-green);
    color: var(--eg-cream);
}


/* ---------- Type components ---------- */

.eg-eyebrow {
    font-size: var(--eg-text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 1.4rem;
}

.eg-display {
    font-size: var(--eg-text-display);
    line-height: 1.08;
}

.eg-lead {
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--eg-ink-soft);
    max-width: 34rem;
}

.text-light .eg-lead,
.eg-dark-section .eg-lead {
    color: var(--eg-stone);
}


/* arrow text link — the primary "button" of the site */

.eg-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--eg-ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.45rem;
    transition: color 0.3s var(--eg-ease);
}

.eg-link::after {
    content: "\2192";
    display: inline-block;
    margin-left: 0.7em;
    transition: transform 0.35s var(--eg-ease);
}

.eg-link:hover {
    color: var(--eg-green);
}

.eg-link:hover::after {
    transform: translateX(0.35em);
}

.eg-link--light {
    color: var(--eg-cream);
}

.eg-link--light:hover {
    color: var(--eg-stone);
}


/* ghost button */

.eg-btn {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--eg-cream);
    border: 1px solid rgba(247, 245, 240, 0.5);
    padding: 1.05rem 2.4rem;
    transition: background-color 0.35s var(--eg-ease), color 0.35s var(--eg-ease), border-color 0.35s var(--eg-ease);
}

.eg-btn:hover {
    background-color: var(--eg-cream);
    border-color: var(--eg-cream);
    color: var(--eg-ink);
}

.eg-btn--dark {
    color: var(--eg-ink);
    border-color: rgba(35, 33, 28, 0.4);
}

.eg-btn--dark:hover {
    background-color: var(--eg-ink);
    border-color: var(--eg-ink);
    color: var(--eg-cream);
}

/* ---------- WhatsApp widget ---------- */

.eg-whatsapp-widget {
    position: fixed;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(1rem, 2.5vw, 2rem);
    z-index: 1035;
    display: grid;
    place-items: center;
    width: 3.65rem;
    height: 3.65rem;
    color: #fff;
    background-color: #25d366;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    box-shadow: 0 0.75rem 2rem rgba(18, 49, 29, 0.28);
    transition: transform 0.25s var(--eg-ease), background-color 0.25s var(--eg-ease), box-shadow 0.25s var(--eg-ease);
}

.eg-whatsapp-widget svg {
    width: 1.85rem;
    height: 1.85rem;
    fill: currentColor;
}

.eg-whatsapp-widget:hover,
.eg-whatsapp-widget:focus-visible {
    color: #fff;
    background-color: #1cad53;
    box-shadow: 0 1rem 2.4rem rgba(18, 49, 29, 0.36);
    transform: translateY(-0.2rem);
}

@media (max-width: 575.98px) {
    .eg-whatsapp-widget {
        width: 3.25rem;
        height: 3.25rem;
    }

    .eg-whatsapp-widget svg {
        width: 1.65rem;
        height: 1.65rem;
    }
}


/* ---------- Header ---------- */

.eg-header {
    position: fixed;
    z-index: 1040;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
    color: var(--eg-cream);
    background: transparent;
    transition: background-color 0.4s var(--eg-ease), padding 0.4s var(--eg-ease);
}

.eg-header--solid {
    background-color: rgba(28, 26, 22, 0.92);
    backdrop-filter: blur(8px);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.eg-header__toggle {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: none;
    border: 0;
    color: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 0;
}

.eg-header__toggle .bars {
    display: inline-block;
    width: 22px;
}

.eg-header__toggle .bars span {
    display: block;
    height: 1px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.3s var(--eg-ease);
}

.eg-header__brand {
    justify-self: center;
}

.eg-header__brand img {
    height: 44px;
    width: auto;
    display: block;
}

.eg-header__actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.eg-header__mobile-actions {
    display: none;
}

.eg-header__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--eg-cream);
    color: var(--eg-ink);
    transition: background-color 0.3s var(--eg-ease), color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-header__search:hover,
.eg-header__search:focus-visible {
    background-color: var(--eg-cream);
    color: var(--eg-ink);
    transform: scale(1.03);
}

.eg-header__search:focus-visible {
    outline: 2px solid rgba(247, 245, 240, 0.55);
    outline-offset: 3px;
}

.eg-header__cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--eg-ease);
}

.eg-header__cta:hover {
    color: inherit;
    border-bottom-color: currentColor;
}

.eg-search .modal-dialog {
    width: 100%;
    max-width: none;
    margin: 0;
}

.eg-search .modal-content.eg-search__shell {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at top left, rgba(191, 167, 128, 0.09), transparent 28%),
        linear-gradient(135deg, rgba(20, 18, 15, 0.995), rgba(14, 12, 10, 0.99));
    color: var(--eg-cream);
    box-shadow: none;
}

.eg-search__surface {
    position: relative;
    width: min(100%, 1280px);
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(1.2rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.eg-search__header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 980px);
    padding-right: 4.6rem;
}

.eg-search__header-row .btn-close {
    position: absolute;
    top: clamp(1rem, 2vw, 1.8rem);
    right: clamp(1rem, 2vw, 1.8rem);
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 1px solid rgba(247, 245, 240, 0.08);
    border-radius: 999px;
    background-color: var(--eg-ink);
    background-image: none;
    filter: none;
    opacity: 0.96;
    box-shadow: none;
    margin-top: 0;
}

.eg-search__header-row .btn-close::before,
.eg-search__header-row .btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 1.5px;
    background: var(--eg-cream);
    transform: translate(-50%, -50%) rotate(45deg);
}

.eg-search__header-row .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.eg-search__eyebrow {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}

.eg-search__title {
    font-family: var(--eg-font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--eg-cream);
}

.eg-search__form {
    margin-top: 0.35rem;
    width: min(100%, 980px);
}

.eg-search__field {
    position: relative;
    width: 100%;
    max-width: 980px;
}

.eg-search__field-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--eg-taupe);
    pointer-events: none;
}

.eg-search__input {
    width: 100%;
    height: 64px;
    padding: 0 1rem 0 3rem;
    border: 0;
    border-bottom: 1px solid rgba(247, 245, 240, 0.3);
    border-radius: 0;
    background: transparent;
    color: var(--eg-cream);
    font-family: var(--eg-font-body);
    font-size: 1rem;
    box-shadow: none;
    transition: border-bottom-color 0.3s var(--eg-ease);
}

.eg-search__input::placeholder {
    color: rgba(247, 245, 240, 0.54);
}

.eg-search__input:focus {
    outline: none;
    border-bottom-color: var(--eg-sand);
    background: transparent;
    box-shadow: none;
}

.eg-search__hint {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--eg-stone);
}

.eg-search__results {
    display: grid;
    gap: 0.7rem;
    max-height: min(56vh, 32rem);
    overflow: auto;
    padding-right: 0.15rem;
    width: min(100%, 980px);
}

.eg-search__result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(247, 245, 240, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.025);
    color: var(--eg-cream);
    text-decoration: none;
    transition: background-color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease), border-color 0.3s var(--eg-ease);
}

.eg-search__result:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(191, 167, 128, 0.26);
    transform: translateY(-1px);
}

.eg-search__result span {
    display: block;
    margin-bottom: 0.28rem;
    font-family: var(--eg-font-heading);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
}

.eg-search__result small {
    display: block;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--eg-stone);
}

.eg-search__result-arrow {
    color: var(--eg-taupe);
    opacity: 0.8;
}

.eg-search__empty {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--eg-stone);
}

@media (max-width: 575.98px) {
    .eg-search__surface {
        width: 100%;
        padding: 1rem;
        justify-content: flex-start;
    }

    .eg-search__header-row {
        padding-right: 3.8rem;
    }

    .eg-search__header-row .btn-close {
        width: 2.5rem;
        height: 2.5rem;
        top: 0.9rem;
        right: 0.9rem;
    }

    .eg-search__title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        max-width: 12ch;
    }

    .eg-search__input {
        height: 58px;
        border-radius: 0;
    }

    .eg-search__results {
        max-height: 62vh;
    }
}

/* FAM Trip accommodations: an editorial, hotel-folio presentation. */
#fam-trip-accommodations .eg-famtrip__stay-slider {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

#fam-trip-accommodations .eg-famtrip__stay-slider-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 0 0 1.25rem;
}

#fam-trip-accommodations .eg-famtrip__stay-slider-meta > p {
    margin: 0;
    color: var(--eg-taupe);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

#fam-trip-accommodations .eg-famtrip__stay-slider-controls,
#fam-trip-accommodations .eg-famtrip__stay-nav {
    display: flex;
    align-items: center;
}

#fam-trip-accommodations .eg-famtrip__stay-slider-controls {
    gap: 1rem;
}

#fam-trip-accommodations .eg-famtrip__stay-counter {
    display: inline-flex;
    gap: 0.35rem;
    align-items: baseline;
    color: var(--eg-ink);
    font-family: var(--eg-font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    white-space: nowrap;
}

#fam-trip-accommodations .eg-famtrip__stay-counter i {
    color: var(--eg-taupe);
    font-family: var(--eg-font-body);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.16em;
}

#fam-trip-accommodations .eg-famtrip__stay-progress {
    width: clamp(5.5rem, 10vw, 8rem);
    height: 1px;
    overflow: hidden;
    background: rgba(35, 33, 28, 0.18);
}

#fam-trip-accommodations .eg-famtrip__stay-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #a88042;
    transform: scaleX(0.25);
    transform-origin: left center;
    transition: transform 0.65s var(--eg-ease);
}

#fam-trip-accommodations .eg-famtrip__stay-nav {
    gap: 0.55rem;
}

#fam-trip-accommodations .eg-famtrip__slider-btn {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(35, 33, 28, 0.12);
    border-radius: 50%;
    background: var(--eg-ink);
    color: var(--eg-cream);
    box-shadow: none;
    transform: none;
}

#fam-trip-accommodations .eg-famtrip__slider-btn:hover {
    background: #a88042;
    box-shadow: none;
    transform: translateY(-2px);
}

#fam-trip-accommodations .eg-famtrip__stay-track {
    gap: clamp(1rem, 2vw, 1.8rem);
    overflow: auto hidden;
    padding: 0 18vw 0.4rem 0;
    scroll-padding-inline: 0;
}

#fam-trip-accommodations .eg-famtrip__stay-slide,
#fam-trip-accommodations .eg-famtrip__stay-slide--reverse {
    flex: 0 0 min(84vw, 1160px);
    min-height: clamp(30rem, 44vw, 38rem);
    flex-direction: row;
    border: 0;
    border-radius: 0;
    background: var(--eg-cream);
    box-shadow: 0 22px 60px rgba(35, 33, 28, 0.1);
}

#fam-trip-accommodations .eg-famtrip__stay-slide-media {
    flex: 1.62 1 0;
}

#fam-trip-accommodations .eg-famtrip__stay-slide-media::after {
    background: linear-gradient(180deg, rgba(15, 14, 12, 0.02) 35%, rgba(15, 14, 12, 0.56) 100%);
}

#fam-trip-accommodations .eg-famtrip__stay-preview {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(247, 245, 240, 0.75);
    border-radius: 50%;
    background: rgba(23, 21, 17, 0.62);
    color: var(--eg-cream);
    opacity: 0;
    cursor: zoom-in;
    transform: translate(-50%, -42%) scale(0.88);
    transition: opacity 0.35s var(--eg-ease), background-color 0.35s var(--eg-ease), transform 0.35s var(--eg-ease);
}

#fam-trip-accommodations .eg-famtrip__stay-slide-media:hover .eg-famtrip__stay-preview,
#fam-trip-accommodations .eg-famtrip__stay-slide-media:focus-within .eg-famtrip__stay-preview {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#fam-trip-accommodations .eg-famtrip__stay-preview:hover,
#fam-trip-accommodations .eg-famtrip__stay-preview:focus-visible {
    border-color: var(--eg-cream);
    background: var(--eg-cream);
    color: var(--eg-ink);
    outline: 0;
}

.eg-famtrip__lightbox .modal-dialog {
    max-width: min(92vw, 74rem);
}

.eg-famtrip__lightbox .modal-content {
    border: 1px solid rgba(247, 245, 240, 0.18);
    border-radius: 0;
    background: var(--eg-ink);
    color: var(--eg-cream);
    overflow: hidden;
}

.eg-famtrip__lightbox .modal-body {
    padding: clamp(0.8rem, 1.8vw, 1.35rem);
}

.eg-famtrip__lightbox-figure {
    margin: 0;
}

.eg-famtrip__lightbox-figure img {
    display: block;
    width: 100%;
    max-height: min(67vh, 47rem);
    object-fit: contain;
}

.eg-famtrip__lightbox-figure figcaption {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 0.65rem 1.5rem;
    align-items: end;
    padding: 1.15rem 0.2rem 0.1rem;
}

.eg-famtrip__lightbox-figure figcaption p {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(247, 245, 240, 0.62);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.eg-famtrip__lightbox-figure h2 {
    margin: 0;
    font-family: var(--eg-font-heading);
    font-size: clamp(1.65rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.05;
}

.eg-famtrip__lightbox-figure figcaption span {
    color: rgba(247, 245, 240, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
}

.eg-famtrip__lightbox-close {
    position: absolute;
    z-index: 2;
    top: 1.35rem;
    right: 1.35rem;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    background-color: var(--eg-cream);
    opacity: 1;
    transition: background-color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-famtrip__lightbox-close:hover {
    background-color: #d7b978;
    transform: scale(1.05);
}

#fam-trip-accommodations .eg-famtrip__stay-pill {
    top: auto;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--eg-cream);
    font-size: 0.62rem;
}

#fam-trip-accommodations .eg-famtrip__stay-slide-copy {
    flex: 0.88 1 0;
    gap: clamp(1rem, 1.8vw, 1.55rem);
    padding: clamp(1.75rem, 4vw, 4.35rem);
}

#fam-trip-accommodations .eg-famtrip__stay-slide-kicker {
    color: #a88042;
}

#fam-trip-accommodations .eg-famtrip__stay-slide-copy h3 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 3.2vw, 3.35rem);
    line-height: 1.04;
}

#fam-trip-accommodations .eg-famtrip__stay-slide-text {
    max-width: 30rem;
    font-size: 0.98rem;
    line-height: 1.85;
}

#fam-trip-accommodations .eg-famtrip__stay-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.4rem;
}

#fam-trip-accommodations .eg-famtrip__stay-specs > div:nth-child(3),
#fam-trip-accommodations .eg-famtrip__stay-highlights {
    display: none;
}

#fam-trip-accommodations .eg-famtrip__stay-specs strong {
    font-size: 0.86rem;
    line-height: 1.55;
}

#fam-trip-accommodations .eg-famtrip__accom-strip {
    align-items: flex-start;
    gap: 0.7rem 1.5rem;
    padding: 1.25rem 0 0;
    border: 0;
    border-top: 1px solid rgba(35, 33, 28, 0.15);
    background: transparent;
    box-shadow: none;
}

#fam-trip-accommodations .eg-famtrip__accom-strip strong {
    max-width: 33rem;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

@media (max-width: 991.98px) {
    #fam-trip-accommodations .eg-famtrip__stay-track {
        padding-right: 10vw;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slide,
    #fam-trip-accommodations .eg-famtrip__stay-slide--reverse {
        flex-basis: min(90vw, 880px);
    }
}

@media (max-width: 575.98px) {
    #fam-trip-accommodations .eg-famtrip__stay-slider-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slider-controls {
        width: 100%;
        justify-content: space-between;
    }

    #fam-trip-accommodations .eg-famtrip__stay-track {
        padding-right: 6vw;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slide,
    #fam-trip-accommodations .eg-famtrip__stay-slide--reverse {
        flex-basis: 94vw;
        min-height: auto;
        flex-direction: column;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slide-media {
        min-height: 23rem;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slide-copy {
        padding: 1.6rem 1.3rem 1.8rem;
    }

    #fam-trip-accommodations .eg-famtrip__stay-slide-copy h3 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    #fam-trip-accommodations .eg-famtrip__stay-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #fam-trip-accommodations .eg-famtrip__stay-preview {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .eg-famtrip__lightbox-figure figcaption {
        grid-template-columns: 1fr;
    }

    .eg-famtrip__lightbox-close {
        top: 1.2rem;
        right: 1.2rem;
    }
}


/* ---------- Canonical safari package cards ---------- */

.eg-home-package {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eg-home-package__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 0.1rem;
}

.eg-home-package__desc {
    margin: 0.9rem 0 1.35rem;
    color: var(--eg-ink-soft);
    font-size: 0.96rem;
    line-height: 1.72;
}

.eg-home-package__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.7rem;
    margin-top: auto;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(35, 33, 28, 0.16);
    border-radius: 999px;
    background: transparent;
    color: var(--eg-ink);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.eg-home-package__btn::after {
    content: "→";
    font-size: 0.95rem;
    letter-spacing: 0;
}

.eg-home-package__btn:hover,
.eg-home-package__btn:focus-visible {
    border-color: var(--eg-ink);
    background: var(--eg-ink);
    color: var(--eg-cream);
}

@media (min-width: 768px) {
    .eg-package-grid--official .eg-pkg__meta {
        min-height: 1.45rem;
    }

    .eg-package-grid--official .eg-pkg__title {
        min-height: 4.2rem;
    }

    .eg-package-grid--official .eg-home-package__desc {
        display: -webkit-box;
        overflow: hidden;
        min-height: 4.95rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 575.98px) {
    .eg-header {
        grid-template-columns: 1fr auto 1fr;
        padding-inline: 0.8rem;
    }

    .eg-header__brand {
        position: absolute;
        left: 50%;
        justify-self: center;
        transform: translateX(-50%);
    }

    .eg-header__brand img {
        height: 31px;
    }

    .eg-header__actions {
        display: none;
    }

    .eg-header__mobile-actions {
        grid-column: 3;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 0.32rem;
    }

    .eg-header__mobile-actions a {
        display: grid;
        place-items: center;
        width: 1.75rem;
        height: 1.75rem;
        color: inherit;
        border: 1px solid rgba(247, 245, 240, 0.24);
        border-radius: 50%;
        text-decoration: none;
    }

    .eg-header__mobile-actions svg {
        width: 0.85rem;
        height: 0.85rem;
        fill: currentColor;
    }

    .eg-header__mobile-actions .eg-header__mobile-icon--outline {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
    }

    .eg-header__mobile-actions .eg-header__instagram-dot {
        fill: currentColor;
        stroke: none;
    }

    .eg-header__toggle {
        gap: 0.5rem;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .eg-header__toggle .bars {
        width: 18px;
    }
}


/* ---------- Offcanvas menu ---------- */

.eg-menu {
    background-color: var(--eg-ink);
    color: var(--eg-cream);
    width: min(92vw, 460px);
}

.eg-menu .offcanvas-header {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--eg-ink);
    border-bottom: 1px solid rgba(247, 245, 240, 0.08);
}

.eg-menu .btn-close {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0 0 auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(247, 245, 240, 0.12);
    filter: invert(1);
    opacity: 0.82;
    box-shadow: none;
    transition: background-color 0.3s var(--eg-ease), border-color 0.3s var(--eg-ease), opacity 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-menu .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 245, 240, 0.22);
    opacity: 1;
    transform: scale(1.04);
}

.eg-menu__nav a {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: clamp(0.95rem, 1.55vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-cream);
    text-decoration: none;
    line-height: 1.35;
    padding: 0.45rem 0 15px;
    transition: color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease), letter-spacing 0.3s var(--eg-ease);
}

.eg-menu__nav {
    padding-top: 0.5rem;
}

.eg-menu__nav a:hover {
    color: var(--eg-taupe);
    transform: translateX(0.28rem);
    letter-spacing: 0.18em;
}

.eg-menu__socials {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
}

.eg-menu__socials-label {
    color: var(--eg-taupe);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.eg-menu__socials-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.eg-menu__socials-links a {
    display: grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    color: var(--eg-cream);
    border: 1px solid rgba(247, 245, 240, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: color 0.3s var(--eg-ease), background-color 0.3s var(--eg-ease), border-color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-menu__socials-links svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}

.eg-menu__social-icon--outline {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.7;
}

.eg-menu__social-icon--outline .eg-menu__instagram-dot {
    fill: currentColor;
    stroke: none;
}

.eg-menu__socials-links a:hover,
.eg-menu__socials-links a:focus-visible {
    color: var(--eg-ink);
    background-color: var(--eg-cream);
    border-color: var(--eg-cream);
    transform: translateY(-0.15rem);
}

.eg-menu__contact {
    border-top: 1px solid rgba(247, 245, 240, 0.08);
    margin-top: 1.75rem;
    padding-top: 1.35rem;
}

.eg-menu__contact-label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}

.eg-menu__contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--eg-font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--eg-cream);
    text-decoration: none;
    margin-bottom: 0.95rem;
    transition: color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-menu__contact-phone svg {
    flex: 0 0 auto;
}

.eg-menu__contact-phone:hover {
    color: var(--eg-taupe);
    transform: translateX(0.22rem);
}

.eg-menu__contact-copy {
    max-width: 20rem;
    font-size: 0.86rem;
    line-height: 1.75;
    color: var(--eg-stone);
}

.eg-menu__contact-copy a {
    color: var(--eg-cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(247, 245, 240, 0.28);
    transition: color 0.3s var(--eg-ease), border-color 0.3s var(--eg-ease);
}

.eg-menu__contact-copy a:hover {
    color: var(--eg-taupe);
    border-bottom-color: currentColor;
}

html.eg-menu-open,
body.eg-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}


/* ---------- Hero ---------- */

.eg-hero {
    position: relative;
    min-height: 100svh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* title sits mid-height, as in the reference */
    color: var(--eg-cream);
}


/* keep the photo fresh: no global tint, just a soft scrim on the left
   where the title sits so the text stays readable */

.eg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(24, 22, 18, 0.45) 0%, rgba(24, 22, 18, 0.18) 38%, rgba(24, 22, 18, 0) 62%);
}

.eg-hero__title {
    text-shadow: 0 1px 24px rgba(24, 22, 18, 0.35);
}

.eg-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.eg-hero__title {
    font-size: var(--eg-text-hero);
    line-height: 1.04;
    max-width: 14em;
    margin: 0;
}

.eg-hero__scroll {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-cream);
    text-decoration: none;
}

.eg-hero__scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 3.4rem;
    margin: 0.9rem auto 0;
    background: linear-gradient(to bottom, var(--eg-cream), transparent);
    animation: eg-scroll-pulse 2.4s var(--eg-ease) infinite;
}

@keyframes eg-scroll-pulse {
    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.9;
    }
    50% {
        transform: scaleY(0.55);
        opacity: 0.4;
    }
}


/* page hero: shorter than the home hero, title centered over a soft
   symmetric scrim (used by inner pages such as About) */

.eg-hero--page {
    min-height: 68vh;
    text-align: center;
    justify-content: center;
}
.eg-hero--page::before {
    background: linear-gradient(to bottom, rgba(24, 22, 18, 0.35), rgba(24, 22, 18, 0.5));
}
.eg-hero--page .eg-hero__inner {
    text-align: center;
    padding-top: 4rem;
}
.eg-hero--page .eg-hero__title {
    max-width: 16em;
    margin-inline: auto;
}
.eg-hero__eyebrow {
    display: block;
    font-size: var(--eg-text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-stone);
    margin-bottom: 1.5rem;
}


/* ---------- Numbered editorial list (Why Excellent Guides) ---------- */

.eg-vlist__head { max-width: 22rem; }
@media (min-width: 992px) {
    .eg-vlist__head { position: sticky; top: 6.5rem; }
}
.eg-vlist__item {
    display: flex;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    padding: clamp(1.75rem, 3.2vw, 2.75rem) 0;
    border-top: 1px solid rgba(35, 33, 28, 0.16);
}
.eg-vlist__item:last-child { padding-bottom: 0; }
.eg-vlist__num {
    flex: 0 0 auto;
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1;
    color: var(--eg-taupe);
}
.eg-vlist__title {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    margin-bottom: 0.6rem;
}
.eg-vlist p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--eg-ink-soft);
    max-width: 30rem;
    margin: 0;
}


/* ---------- Team roster ---------- */

.eg-roster {
    list-style: none;
    margin: 0;
    padding: 0;
}
.eg-roster li {
    padding: 1rem 0;
    border-top: 1px solid rgba(207, 201, 191, 0.18);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}
.eg-roster li span {
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--eg-font-heading);
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--eg-cream);
}


/* ---------- Contact form (light background) ---------- */

.eg-contact__details { max-width: 22rem; }
.eg-contact__group + .eg-contact__group { margin-top: 2rem; }
.eg-contact__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.5rem;
}
.eg-contact__value {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--eg-ink);
}
.eg-contact__value a { color: inherit; text-decoration: none; }
.eg-contact__value a:hover { color: var(--eg-green); }

/* boxed variant: form sits in a refined cream card (used on sand) */
.eg-form--boxed {
    background: var(--eg-cream);
    border: 1px solid rgba(35, 33, 28, 0.10);
    padding: clamp(1.75rem, 4vw, 3.5rem);
}
.eg-form--boxed .eg-btn--dark { width: 100%; }

/* underline variant: minimal bottom-border inputs, tuned for dark sections.
   Uses .eg-form.eg-form--underline (both classes) to outrank the base
   .eg-form input rules regardless of source order. */
.eg-form.eg-form--underline input,
.eg-form.eg-form--underline select,
.eg-form.eg-form--underline textarea {
    border: 0;
    border-bottom: 1px solid rgba(207, 201, 191, 0.35);
    padding: 0.75rem 0;
}
.eg-dark-section .eg-form.eg-form--underline input,
.eg-dark-section .eg-form.eg-form--underline select,
.eg-dark-section .eg-form.eg-form--underline textarea {
    color: var(--eg-cream);
}
.eg-dark-section .eg-form.eg-form--underline label { color: var(--eg-stone); }
.eg-dark-section .eg-form.eg-form--underline input::placeholder,
.eg-dark-section .eg-form.eg-form--underline textarea::placeholder { color: var(--eg-taupe); }
.eg-dark-section .eg-form.eg-form--underline select option { color: var(--eg-ink); }
.eg-form.eg-form--underline input:focus,
.eg-form.eg-form--underline select:focus,
.eg-form.eg-form--underline textarea:focus {
    border-bottom-color: var(--eg-cream);
}
.eg-form--underline .eg-btn { margin-top: 1rem; }
.eg-dark-section .eg-form--underline .eg-form__success p { color: var(--eg-cream); }

.eg-form__field { margin-bottom: 1.4rem; }
.eg-form__field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.55rem;
}
.eg-form input,
.eg-form select,
.eg-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(35, 33, 28, 0.22);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-family: var(--eg-font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--eg-ink);
    transition: border-color 0.3s var(--eg-ease);
}
.eg-form input::placeholder,
.eg-form textarea::placeholder { color: var(--eg-taupe); }
.eg-form input:focus,
.eg-form select:focus,
.eg-form textarea:focus {
    outline: none;
    border-color: var(--eg-green);
}
.eg-form__phone {
    display: grid;
    grid-template-columns: minmax(10rem, 0.75fr) minmax(0, 1.25fr);
    gap: 0.75rem;
}
.eg-form__phone--international {
    display: block;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 240, 231, 0.72));
    border: 1px solid rgba(35, 33, 28, 0.18);
    border-radius: 0.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: border-color 0.25s var(--eg-ease), box-shadow 0.25s var(--eg-ease), background 0.25s var(--eg-ease);
}
.eg-form__phone--international:focus-within {
    background: var(--eg-cream);
    border-color: var(--eg-green);
    box-shadow: 0 0 0 0.2rem rgba(31, 61, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.eg-form__phone--international .iti { display: block; width: 100%; }
.eg-form__phone--international .iti__tel-input {
    min-height: 3.65rem;
    border: 0;
    border-radius: 0.35rem;
    background: transparent;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.eg-form__phone--international .iti__tel-input:focus {
    border: 0;
    box-shadow: none;
}
.eg-form__phone--international .iti__selected-country {
    min-height: 3.65rem;
    padding-inline: 0.95rem 0.8rem;
    background: rgba(35, 33, 28, 0.045);
    border-right: 1px solid rgba(35, 33, 28, 0.12);
    border-radius: 0.35rem 0 0 0.35rem;
    transition: background 0.2s var(--eg-ease);
}
.eg-form__phone--international .iti__selected-country:hover,
.eg-form__phone--international .iti__selected-country[aria-expanded="true"] {
    background: rgba(31, 61, 43, 0.08);
}
.eg-form__phone--international .iti__arrow {
    border-top-color: var(--eg-green);
}
.eg-form__phone--international .iti__arrow--up {
    border-bottom-color: var(--eg-green);
}
.eg-form__phone--international .iti__country-list {
    z-index: 1060;
    width: min(23rem, calc(100vw - 2rem));
    margin-top: 0.55rem;
    padding: 0.45rem;
    border: 1px solid rgba(35, 33, 28, 0.15);
    border-radius: 0.35rem;
    background: var(--eg-cream);
    box-shadow: 0 1.25rem 3rem rgba(35, 33, 28, 0.18);
    color: var(--eg-ink);
    font-family: var(--eg-font-body);
}
.eg-form__phone--international .iti__search-input {
    margin: 0.15rem 0.15rem 0.5rem;
    border-color: rgba(35, 33, 28, 0.18);
    border-radius: 0.2rem;
    background: rgba(255, 255, 255, 0.68);
}
.eg-form__phone--international .iti__country {
    padding: 0.65rem 0.7rem;
    border-radius: 0.2rem;
}
.eg-form__phone--international .iti__country.iti__highlight,
.eg-form__phone--international .iti__country:hover {
    background: rgba(31, 61, 43, 0.08);
}
.eg-form__phone--international .iti__country-name { font-size: 0.92rem; }
.eg-form__phone--international .iti__country-list .iti__dial-code { display: none; }
.eg-form textarea { resize: vertical; min-height: 8rem; }
.eg-form__consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--eg-ink-soft);
}
.eg-form__consent input { width: auto; margin-top: 0.2rem; flex: 0 0 auto; }
.eg-form__success {
    display: none;
    padding: 2rem 0;
}
.eg-form__success p {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.35rem;
    color: var(--eg-ink);
    margin: 0;
}
.eg-form.is-done .eg-form__fields { display: none; }
.eg-form.is-done .eg-form__success { display: block; }

@media (max-width: 575.98px) {
    .eg-form__phone { grid-template-columns: 1fr; }
    .eg-form__phone--international .iti__selected-country { padding-inline: 0.75rem 0.6rem; }
    .eg-form__phone--international .iti__country-list { width: calc(100vw - 2rem); }
}

.eg-form__error {
  color: #9c3f32;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 1rem 0 0;
}

.eg-newsletter__error {
  color: var(--eg-cream);
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
  margin-top: 0.65rem;
}

.eg-form--boxed {
    padding: clamp(1.2rem, 2.5vw, 2rem);
    background: var(--eg-cream);
    border: 1px solid rgba(35, 33, 28, 0.12);
    box-shadow: 0 30px 80px rgba(35, 33, 28, 0.14);
}

.eg-form__group {
    padding-top: 1.4rem;
    margin-bottom: 1.4rem;
    border-top: 1px solid rgba(35, 33, 28, 0.1);
}

.eg-form__group:first-child {
    padding-top: 0;
    border-top: 0;
}

.eg-form__group-title {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--eg-ink);
    margin-bottom: 1rem;
}

.eg-form--boxed .eg-form__success p {
    color: var(--eg-ink);
}

.eg-private-tailored__head {
    max-width: 22rem;
}

@media (min-width: 992px) {
    .eg-private-tailored__head {
        position: sticky;
        top: 6.5rem;
    }
}


/* ---------- Private safari request section ---------- */

.eg-private-form {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #181510;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--eg-cream);
}

.eg-private-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(18, 16, 13, 0.92) 0%, rgba(18, 16, 13, 0.8) 46%, rgba(18, 16, 13, 0.66) 100%),
        radial-gradient(circle at 14% 18%, rgba(201, 173, 115, 0.18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(31, 61, 43, 0.42), transparent 26%),
        linear-gradient(180deg, rgba(18, 16, 13, 0.32), rgba(18, 16, 13, 0.58));
    pointer-events: none;
}

.eg-private-form::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 245, 240, 0.045) 0, rgba(247, 245, 240, 0.045) 1px, transparent 1px, transparent 100%),
        linear-gradient(180deg, rgba(247, 245, 240, 0.045) 0, rgba(247, 245, 240, 0.045) 1px, transparent 1px, transparent 100%);
    background-size: 100% 100%, 100% 100%;
    opacity: 0.14;
    pointer-events: none;
}

.eg-private-form__layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.6rem, 3.8vw, 3.2rem);
}

@media (min-width: 992px) {
    .eg-private-form__layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        align-items: start;
    }
}

.eg-private-form__intro {
    position: relative;
    max-width: 34rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgba(247, 245, 240, 0.14);
    background:
        linear-gradient(180deg, rgba(247, 245, 240, 0.09), rgba(247, 245, 240, 0.045)),
        rgba(20, 18, 14, 0.38);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.eg-private-form__intro::before {
    content: "";
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 173, 115, 0.9), transparent);
}

@media (min-width: 992px) {
    .eg-private-form__intro {
        position: sticky;
        top: 6.5rem;
    }
}

.eg-private-form__intro .eg-eyebrow {
    color: var(--eg-stone);
}

.eg-private-form__intro .eg-lead,
.eg-private-form__intro .eg-display {
    color: var(--eg-cream);
}

.eg-private-form__signals {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.eg-private-form__signal {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(247, 245, 240, 0.12);
    background: rgba(247, 245, 240, 0.045);
    backdrop-filter: blur(10px);
}

.eg-private-form__signal span {
    align-self: start;
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-stone);
    line-height: 1;
    padding-top: 0.15rem;
}

.eg-private-form__signal strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: 1.04rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--eg-cream);
    margin-bottom: 0.3rem;
}

.eg-private-form__signal p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(247, 245, 240, 0.78);
    margin: 0;
}

.eg-private-form__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}

@media (max-width: 575.98px) {
    .eg-private-form__meta {
        grid-template-columns: 1fr;
    }
}

.eg-private-form__meta > div {
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(247, 245, 240, 0.12);
    background: rgba(247, 245, 240, 0.06);
}

.eg-private-form__meta span {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-stone);
    margin-bottom: 0.55rem;
}

.eg-private-form__meta strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.35;
    color: var(--eg-cream);
}

.eg-private-form__panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eg-private-form__panel-head {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    border: 1px solid rgba(247, 245, 240, 0.18);
    background:
        linear-gradient(180deg, rgba(247, 245, 240, 0.98), rgba(240, 236, 228, 0.95)),
        var(--eg-cream);
    color: var(--eg-ink);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
    .eg-private-form__panel-head {
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
        align-items: start;
    }
}

.eg-private-form__panel-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right top, rgba(201, 173, 115, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(31, 61, 43, 0.05), transparent 45%);
    pointer-events: none;
}

.eg-private-form__panel-head > * {
    position: relative;
    z-index: 1;
}

.eg-private-form__panel-copy {
    padding-right: 0.5rem;
}

.eg-private-form__panel-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-stone);
    margin-bottom: 0.9rem;
}

.eg-private-form__panel-head h3 {
    font-family: var(--eg-font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
    font-weight: 300;
    line-height: 1.15;
    margin: 0 0 0.85rem;
}

.eg-private-form__panel-head p {
    max-width: 34rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-private-form__panel-stat {
    position: relative;
    align-self: start;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(35, 33, 28, 0.08);
    border-left: 3px solid rgba(201, 173, 115, 0.9);
    background: rgba(255, 255, 255, 0.75);
}

.eg-private-form__panel-stat span {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.5rem;
}

.eg-private-form__panel-stat strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: 1.24rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--eg-ink);
    margin-bottom: 0.55rem;
}

.eg-private-form__panel-stat p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-private-form__form.eg-form--boxed {
    position: relative;
    background: linear-gradient(180deg, rgba(247, 245, 240, 0.99), rgba(239, 236, 228, 0.98));
    border: 1px solid rgba(247, 245, 240, 0.22);
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.24);
    padding: clamp(1.4rem, 3vw, 2.15rem);
}

.eg-private-form__form.eg-form--boxed::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(201, 173, 115, 0.06), transparent 28%);
}

.eg-private-form__form .eg-form__group {
    border-top-color: rgba(35, 33, 28, 0.08);
}

.eg-private-form__form .eg-form__field label {
    color: var(--eg-ink);
}

.eg-private-form__form .eg-form__field input,
.eg-private-form__form .eg-form__field select,
.eg-private-form__form .eg-form__field textarea {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(35, 33, 28, 0.12);
}

.eg-private-form__form .eg-btn--dark {
    width: 100%;
}

.eg-private-form__form .eg-form__success p {
    color: var(--eg-ink);
}

.eg-private-form__form .eg-form__group-title {
    font-size: 1.08rem;
}


/* ---------- Brochure request page ---------- */

.eg-brochure-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: var(--eg-cream);
    background-size: cover;
    background-position: center;
}

.eg-brochure-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(19, 17, 14, 0.84) 0%, rgba(19, 17, 14, 0.56) 42%, rgba(19, 17, 14, 0.2) 100%),
        radial-gradient(circle at top right, rgba(201, 173, 115, 0.22), transparent 34%);
}

.eg-brochure-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 12rem;
    background: linear-gradient(to top, rgba(19, 17, 14, 0.58), transparent);
}

.eg-brochure-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(7rem, 13vw, 10rem) 0 clamp(4.5rem, 8vw, 6rem);
}

.eg-brochure-hero__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
}

@media (min-width: 992px) {
    .eg-brochure-hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
    }
}

.eg-brochure-hero__content {
    max-width: 42rem;
}

.eg-brochure-hero__title {
    font-size: clamp(2.25rem, 4.8vw, 4.1rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    margin: 0;
}

.eg-brochure-hero__lead {
    font-size: 1.06rem;
    line-height: 1.9;
    color: rgba(247, 245, 240, 0.88);
    max-width: 34rem;
    margin: 1.5rem 0 0;
}

.eg-brochure-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.15rem;
    margin-top: 2rem;
}

.eg-brochure-hero__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.2rem;
}

.eg-brochure-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(247, 245, 240, 0.2);
    background: rgba(247, 245, 240, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-cream);
}

.eg-brochure-hero__panel {
    position: relative;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .eg-brochure-hero__panel {
        margin-top: 0;
        justify-self: end;
        width: min(100%, 420px);
    }
}

.eg-brochure-hero__panel-card {
    position: relative;
    overflow: hidden;
    padding: 1.4rem;
    border: 1px solid rgba(247, 245, 240, 0.16);
    background:
        linear-gradient(180deg, rgba(247, 245, 240, 0.15), rgba(247, 245, 240, 0.05)),
        rgba(19, 17, 14, 0.42);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
}

.eg-brochure-hero__panel-card + .eg-brochure-hero__panel-card {
    margin-top: -1.2rem;
    margin-left: 1.7rem;
}

.eg-brochure-hero__panel-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: rgba(255, 255, 255, 0.08);
}

.eg-brochure-hero__panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eg-brochure-hero__panel-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 245, 240, 0.14);
}

.eg-brochure-hero__panel-meta span {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.5rem;
}

.eg-brochure-hero__panel-meta strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--eg-cream);
}

.eg-brochure__preview {
    position: relative;
    max-width: 34rem;
    margin-left: auto;
}

.eg-brochure__preview-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(35, 33, 28, 0.12);
    background-color: var(--eg-stone);
    box-shadow: 0 24px 70px rgba(35, 33, 28, 0.12);
    aspect-ratio: 5 / 6;
}

.eg-brochure__preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eg-brochure__preview-note {
    position: absolute;
    right: clamp(0.9rem, 2vw, 1.5rem);
    bottom: clamp(0.9rem, 2vw, 1.5rem);
    max-width: 16rem;
    padding: 1rem 1.1rem;
    background: rgba(247, 245, 240, 0.92);
    color: var(--eg-ink);
    border-left: 3px solid var(--eg-green);
    box-shadow: 0 18px 48px rgba(35, 33, 28, 0.16);
}

.eg-brochure__preview-note span {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.45rem;
}

.eg-brochure__preview-note p {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.eg-brochure__benefits {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .eg-brochure__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.eg-brochure__benefit {
    padding: 1.35rem 1.2rem 1.3rem;
    border: 1px solid rgba(247, 245, 240, 0.12);
    background: rgba(247, 245, 240, 0.04);
    min-height: 100%;
}

.eg-brochure__benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid rgba(247, 245, 240, 0.18);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--eg-stone);
    margin-bottom: 1rem;
}

.eg-brochure__benefit h3 {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.eg-brochure__benefit p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--eg-stone);
    margin: 0;
}

.eg-brochure__steps {
    display: grid;
    gap: 1rem;
}

.eg-brochure__step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 1.1rem;
    background: rgba(247, 245, 240, 0.7);
    border: 1px solid rgba(35, 33, 28, 0.09);
}

.eg-brochure__step strong {
    flex: 0 0 auto;
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--eg-green);
}

.eg-brochure__step span {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.35rem;
}

.eg-brochure__step p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-brochure__form-shell {
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
    background: linear-gradient(180deg, rgba(247, 245, 240, 0.98), rgba(239, 236, 228, 0.96));
    border: 1px solid rgba(247, 245, 240, 0.18);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.18);
}

.eg-brochure__form-shell .eg-form__success p {
    color: var(--eg-ink);
}

.eg-brochure__closing {
    text-align: center;
}

.eg-brochure__closing .eg-purpose__rule {
    margin-left: auto;
    margin-right: auto;
}

.eg-brochure__closing .eg-purpose__text {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.eg-brochure__partners {
    padding-top: 0.5rem;
}


/* ---------- Accreditation / partner logos ---------- */

.eg-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3.5vw, 3.25rem);
}
.eg-logos img {
    height: clamp(2.6rem, 4vw, 3.6rem);
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter 0.4s var(--eg-ease), opacity 0.4s var(--eg-ease);
}
.eg-logos a:hover img,
.eg-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}
/* square marks (ATTA/TATO) carry descriptive text, so give them a small
   lift while keeping the whole strip a clean single horizontal line */
.eg-logos img.eg-logos__tall { height: clamp(3.2rem, 4.9vw, 4.4rem); }


/* ---------- Sections ---------- */

.eg-section {
    padding-block: var(--eg-section-pad);
}


/* keep anchored sections clear of the fixed header */

section[id] {
    scroll-margin-top: 5rem;
}


/* editorial block, mirroring the reference layout:
   left column (55%): indented statement above a large image;
   right column (45%): narrow note hugging the image, bottom-aligned. */

.eg-statement {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    /* reference heading-m: 24px mobile, 32px desktop */
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.35;
    letter-spacing: 0;
    margin: 0 0 clamp(2.5rem, 6vw, 5rem) clamp(0.5rem, 4vw, 4.5rem);
}

.eg-editorial {
    display: flex;
    flex-direction: column;
}

.eg-editorial__media {
    overflow: hidden;
    background-color: var(--eg-stone);
}

.eg-editorial__media img {
    width: 100%;
    height: auto;
    display: block;
}

.eg-editorial__right {
    padding-top: 2.2rem;
}

.eg-editorial__note {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--eg-ink-soft);
}

@media (min-width: 768px) {
    .eg-editorial {
        flex-direction: row;
        align-items: flex-end;
    }
    .eg-editorial__left {
        width: 55%;
    }
    .eg-editorial__right {
        width: 45%;
        display: flex;
        align-items: flex-end;
        padding-top: 0;
        padding-left: clamp(1.25rem, 2.8vw, 2.5rem);
    }
    .eg-editorial__right>div {
        max-width: 320px;
    }
}

.eg-dark-section {
    background-color: var(--eg-ink);
    color: var(--eg-cream);
}

.eg-sand-section {
    background-color: var(--eg-sand);
}


/* ---------- Card slider (reference: cards_horizontal_scroll) ----------
   The text block is the FIRST slide, so it glides along with the cards.
   On mobile the text renders above the track instead. Native scroll-snap
   plus prev/next buttons — no slider library needed. */

.eg-cards {
    position: relative;
}

.eg-cards__track {
    display: flex;
    align-items: stretch;
    gap: clamp(1.25rem, 2.6vw, 2.5rem);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 0.5rem clamp(1.2rem, 4vw, 3rem) 1.5rem;
    /* keep snapped slides clear of the track's inline padding so the
     text slide is never clipped at the left edge */
    scroll-padding-inline: clamp(1.2rem, 4vw, 3rem);
    scrollbar-width: none;
}

.eg-cards__track::-webkit-scrollbar {
    display: none;
}


/* text-as-first-slide (desktop only) */

.eg-cards__intro {
    display: none;
    flex: 0 0 min(34vw, 460px);
    scroll-snap-align: start;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 1rem;
}

.eg-cards__intro-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--eg-ink-soft);
    max-width: 300px;
    margin: 2.2rem 0 0;
}

@media (min-width: 640px) {
    .eg-cards__intro {
        display: flex;
    }
    .eg-cards__intro--mobile {
        display: none;
    }
}

.eg-cards__intro--mobile {
    padding: 0 clamp(1.2rem, 4vw, 3rem) 2.5rem;
}

.eg-cards__card {
    flex: 0 0 min(76vw, 400px);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.eg-cards__media {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--eg-stone);
}

.eg-cards__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.1s var(--eg-ease);
}

.eg-cards__card:hover .eg-cards__media img {
    transform: scale(1.05);
}

.eg-cards__title-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.4rem;
}

.eg-cards__title {
    font-family: var(--eg-font-heading);
    font-size: 1.35rem;
    font-weight: 300;
    margin: 0;
}

.eg-cards__arrow {
    width: 11px;
    height: 17px;
    color: var(--eg-ink);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-cards__card:hover .eg-cards__arrow {
    opacity: 1;
    transform: translateX(0) scale(1.1);
}

.eg-cards__label {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}

.eg-home-journeys .eg-cards__track {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.eg-home-journeys .eg-cards__title-row {
    margin-top: 1.5rem;
}


/* prev/next buttons, vertically centered at the sides (desktop only) */

.eg-cards__btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--eg-cream);
    border: 1px solid rgba(35, 33, 28, 0.15);
    color: var(--eg-ink);
    cursor: pointer;
    transition: background-color 0.3s var(--eg-ease), opacity 0.3s var(--eg-ease);
}

.eg-cards__btn:hover {
    background: var(--eg-white);
}

.eg-cards__btn[disabled] {
    opacity: 0.3;
    cursor: default;
}

.eg-cards__btn--prev {
    left: clamp(0.6rem, 1.5vw, 1.5rem);
}

.eg-cards__btn--next {
    right: clamp(0.6rem, 1.5vw, 1.5rem);
}

@media (min-width: 640px) {
    .eg-cards__btn {
        display: flex;
    }
}

#fam-trip-available .eg-cards__intro {
    justify-content: flex-start;
    gap: 1rem;
}

#fam-trip-available .eg-cards__intro-text {
    margin-top: 0;
    max-width: 340px;
}

#fam-trip-available .eg-famtrip__intro-stats {
    width: min(100%, 26rem);
    margin-top: 0.25rem;
}


/* ---------- Luxury stay collection ----------
   A featured full-bleed stay anchors two smaller companion panels. This is
   intentionally shared by destination pages so accommodation storytelling
   remains consistent while each destination retains its own imagery. */

.eg-luxury-stays__collection {
    display: grid;
    gap: 1.35rem;
}

.eg-luxury-stay {
    background: var(--eg-ink);
    isolation: isolate;
    min-height: 25rem;
    overflow: hidden;
    position: relative;
}

.eg-luxury-stay__media {
    inset: 0;
    position: absolute;
    z-index: -2;
}

.eg-luxury-stay__media::after {
    background:
        linear-gradient(180deg, rgba(16, 14, 11, 0.06) 15%, rgba(16, 14, 11, 0.24) 45%, rgba(16, 14, 11, 0.9) 100%),
        linear-gradient(90deg, rgba(16, 14, 11, 0.52), transparent 66%);
    content: "";
    inset: 0;
    position: absolute;
}

.eg-luxury-stay__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--eg-ease);
    width: 100%;
}

.eg-luxury-stay:hover .eg-luxury-stay__media img {
    transform: scale(1.055);
}

.eg-luxury-stay__content {
    align-items: flex-start;
    color: var(--eg-cream);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 2.7rem);
}

.eg-luxury-stay__label {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    width: 100%;
}

.eg-luxury-stay__type {
    color: rgba(255, 255, 255, 0.84);
    font-size: var(--eg-text-eyebrow);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 0;
    text-transform: uppercase;
}

.eg-luxury-stay__number {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--eg-font-heading);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.eg-luxury-stay h3 {
    color: var(--eg-cream);
    font-family: var(--eg-font-heading);
    font-size: clamp(1.85rem, 2.8vw, 2.65rem);
    font-weight: 300;
    line-height: 1.05;
    margin: 0 0 0.85rem;
    max-width: 25rem;
}

.eg-luxury-stay__content > p:last-child {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.96rem;
    line-height: 1.75;
    margin: 0;
    max-width: 31rem;
}

.eg-luxury-stay--featured h3 {
    font-size: clamp(2.35rem, 4vw, 4rem);
    max-width: 29rem;
}

@media (min-width: 992px) {
    .eg-luxury-stays__collection {
        grid-template-columns: 1.35fr 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        height: clamp(39rem, 53vw, 47rem);
    }

    .eg-luxury-stay--featured {
        grid-row: span 2;
    }

    .eg-luxury-stay--secondary,
    .eg-luxury-stay--tertiary {
        min-height: 0;
    }

    .eg-luxury-stay--secondary .eg-luxury-stay__content,
    .eg-luxury-stay--tertiary .eg-luxury-stay__content {
        padding: 1.5rem 1.75rem;
    }

    .eg-luxury-stay--secondary h3,
    .eg-luxury-stay--tertiary h3 {
        font-size: clamp(1.6rem, 2.25vw, 2.15rem);
        margin-bottom: 0.6rem;
    }

    .eg-luxury-stay--secondary .eg-luxury-stay__content > p:last-child,
    .eg-luxury-stay--tertiary .eg-luxury-stay__content > p:last-child {
        font-size: 0.88rem;
        line-height: 1.55;
    }
}

@media (max-width: 991.98px) {
    .eg-luxury-stay--featured {
        min-height: 34rem;
    }
}


/* ---------- Sticky destinations (reference:
   sections_with_sticky_background_images) ----------
   A tall scroll runway pins a full-viewport stage; scenes (background +
   caption) crossfade as you scroll. Without JS each scene is simply a
   stacked full-height section — fully readable. */

.eg-dest {
    background-color: var(--eg-ink);
    color: var(--eg-cream);
}

html.js .eg-dest__runway {
    height: calc(var(--eg-scenes, 4) * 120vh);
}

html.js .eg-dest__stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

html.js .eg-dest__scene {
    position: absolute;
    inset: 0;
    opacity: 0;
}

html.js .eg-dest__scene:first-child {
    opacity: 1;
}


/* no-JS fallback: normal stacked full-screen sections */

.eg-dest__scene {
    position: relative;
    min-height: 100vh;
}

.eg-dest__bg,
.eg-dest__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.eg-dest__bg img {
    object-fit: cover;
}

.eg-dest__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 26, 22, 0.15);
}

.eg-dest__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: clamp(1.2rem, 4vw, 3rem);
}

html.js .eg-dest__content {
    will-change: opacity, transform;
}


/* scene 0: centered intro */

.eg-dest__content--center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eg-dest__content--center .eg-dest__heading {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.3;
    max-width: 17em;
    color: var(--eg-white);
}


/* destination scenes: caption bottom-right */

.eg-dest__content--corner {
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: clamp(3.5rem, 9vh, 6rem);
}

.eg-dest__caption {
    max-width: 320px;
}

.eg-dest__caption h3 {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.25;
    color: var(--eg-white);
    margin-bottom: 1.6rem;
}

.eg-dest__caption p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--eg-sand);
    margin-bottom: 1.8rem;
}

.eg-dest__caption .eg-btn {
    background-color: var(--eg-cream);
    border-color: var(--eg-cream);
    box-shadow: 0 12px 28px rgba(16, 15, 12, 0.28);
    color: var(--eg-ink);
    padding-block: 0.72rem;
}

.eg-dest__caption .eg-btn:hover,
.eg-dest__caption .eg-btn:focus-visible {
    background-color: var(--eg-white);
    border-color: var(--eg-white);
    box-shadow: 0 12px 28px rgba(16, 15, 12, 0.28);
    color: var(--eg-ink);
}

.eg-dest__label {
    font-size: var(--eg-text-eyebrow);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-stone);
    display: block;
    margin-bottom: 1.4rem;
}

@media (prefers-reduced-motion: reduce) {
    html.js .eg-dest__runway {
        height: auto;
    }
    html.js .eg-dest__stage {
        position: static;
        height: auto;
        overflow: visible;
    }
    html.js .eg-dest__scene {
        position: relative;
        opacity: 1 !important;
    }
    html.js .eg-dest__content {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ---------- Split (image + content) ---------- */

.eg-split__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--eg-stone);
}

.eg-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- Full-bleed slogan banner ---------- */

.eg-banner {
    position: relative;
    min-height: 72vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--eg-cream);
}

.eg-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 22, 18, 0.45);
}

.eg-banner blockquote {
    position: relative;
    z-index: 1;
    font-family: var(--eg-font-heading);
    font-style: italic;
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    line-height: 1.25;
    max-width: 22em;
    padding-inline: 1.5rem;
    margin: 0;
}


/* ---------- Experiences (reference: side_by_side_images_content) ----------
   Two staggered columns: left has an indented label + statement with an
   image below; right has an image up top and a narrow note + link
   pinned to the bottom. On mobile the images offset to opposite sides. */

.eg-exp {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.eg-exp__intro {
    padding-left: clamp(1rem, 5vw, 5rem);
    padding-right: clamp(0rem, 4vw, 5rem);
}

.eg-exp__left .eg-exp__media {
    margin-top: clamp(2.5rem, 6vw, 5rem);
    margin-right: 30%;
}

.eg-exp__right .eg-exp__media {
    margin-left: 30%;
}

.eg-exp__media {
    overflow: hidden;
}

.eg-exp__media img {
    width: 100%;
    height: auto;
    display: block;
}

.eg-exp__note {
    max-width: 320px;
    padding-left: clamp(1rem, 5vw, 0rem);
    margin-top: 1.5rem;
}

.eg-exp__note p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--eg-ink-soft);
    margin-bottom: 1.4rem;
}

@media (min-width: 640px) {
    .eg-exp {
        flex-direction: row;
        gap: clamp(1.25rem, 3vw, 2.5rem);
    }
    .eg-exp__left,
    .eg-exp__right {
        width: 50%;
    }
    .eg-exp__left .eg-exp__media {
        margin-right: 0;
    }
    .eg-exp__right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .eg-exp__right .eg-exp__media {
        margin-left: 0;
    }
    .eg-exp__note {
        padding-left: 0;
        margin-top: 2rem;
    }
}


/* ---------- Travel with purpose ---------- */

.eg-purpose__rule {
    width: 3.5rem;
    height: 1px;
    background: var(--eg-taupe);
    margin-bottom: 2rem;
}

.eg-purpose__text {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
    line-height: 1.65;
    color: var(--eg-ink);
    margin: 0;
}
.eg-dark-section .eg-purpose__text { color: var(--eg-cream); }


/* value pillars beneath the statement */

.eg-pillar {
    border-top: 1px solid rgba(35, 33, 28, 0.18);
    padding-top: 1.6rem;
    height: 100%;
}

.eg-pillar__num {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    color: var(--eg-taupe);
    margin-bottom: 1.1rem;
}

.eg-pillar__title {
    font-family: var(--eg-font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.eg-pillar p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-dark-section .eg-pillar {
    border-top-color: rgba(247, 245, 240, 0.2);
}

.eg-dark-section .eg-pillar__num {
    color: var(--eg-stone);
}

.eg-dark-section .eg-pillar__title {
    color: var(--eg-cream);
}

.eg-dark-section .eg-pillar p {
    color: rgba(247, 245, 240, 0.82);
}


/* ---------- Testimonials slider ---------- */

.eg-testi__track {
    display: flex;
    overflow-x: auto;
    /* proximity: full-width slides snap identically for users, but
     programmatic smooth scrolls never fight the snap engine */
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.eg-testi__track::-webkit-scrollbar {
    display: none;
}

.eg-testi__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    text-align: center;
    padding: 0.5rem clamp(0.5rem, 4vw, 3rem);
    margin: 0;
}

.eg-testi__stars {
    color: var(--eg-taupe);
    font-size: 0.8rem;
    letter-spacing: 0.55em;
    margin-bottom: 1.8rem;
}

.eg-testi__title {
    display: block;
    font-family: var(--eg-font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    margin-bottom: 1.4rem;
    color: inherit;
    text-decoration: none;
}

.eg-testi__title:hover,
.eg-testi__title:focus-visible {
    color: inherit;
    text-decoration: none;
}

.eg-testi__slide blockquote {
    max-width: 44rem;
    margin: 0 auto;
}

.eg-testi__slide blockquote p {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.75;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-testi__slide figcaption {
    margin-top: 2.2rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}


/* nav: arrows + counter, centered under the quote */

.eg-testi__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 3rem;
}

.eg-testi__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(35, 33, 28, 0.25);
    border-radius: 50%;
    color: var(--eg-ink);
    cursor: pointer;
    transition: background-color 0.3s var(--eg-ease), color 0.3s var(--eg-ease), opacity 0.3s var(--eg-ease);
}

.eg-testi__btn:hover {
    background: var(--eg-ink);
    color: var(--eg-cream);
}

.eg-testi__btn[disabled] {
    opacity: 0.25;
    cursor: default;
}

.eg-testi__btn[disabled]:hover {
    background: transparent;
    color: var(--eg-ink);
}

.eg-testi__count {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--eg-ink-soft);
    min-width: 5.5em;
    text-align: center;
}

.eg-testi__review-action {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.eg-testi__review-action .eg-btn {
    min-height: 0;
    padding: 0.35rem 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--eg-ink);
}

.eg-testi__review-action .eg-btn:hover,
.eg-testi__review-action .eg-btn:focus-visible {
    background: transparent;
    color: var(--eg-green);
}


/* ---------- Journal / blog (featured + list) ---------- */

.eg-blog { text-decoration: none; color: inherit; }
.eg-blog__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eg-taupe);
}
.eg-blog__meta span { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.eg-blog__title {
  font-family: var(--eg-font-heading);
  font-weight: 300;
  transition: color 0.3s var(--eg-ease);
}
.eg-blog:hover .eg-blog__title { color: var(--eg-green); }

/* featured (left) */
.eg-blog--feat { display: block; }
.eg-blog__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-color: var(--eg-stone);
}
.eg-blog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.1s var(--eg-ease);
}
.eg-blog--feat:hover .eg-blog__media img { transform: scale(1.04); }
.eg-blog--feat .eg-blog__meta { margin: 1.8rem 0 0.9rem; }
.eg-blog--feat .eg-blog__title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 18em;
}
.eg-blog__excerpt {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--eg-ink-soft);
  max-width: 34rem;
  margin: 0 0 1.6rem;
}

/* side list (right): thumbnail + text rows split by hairlines */
.eg-blog-list { display: flex; flex-direction: column; }
.eg-blog--row {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  align-items: center;
  padding: clamp(1.4rem, 2.2vw, 1.9rem) 0;
  border-top: 1px solid rgba(35, 33, 28, 0.15);
}
.eg-blog-list .eg-blog--row:first-child { padding-top: 0; border-top: 0; }
.eg-blog--row .eg-blog__thumb {
  flex: 0 0 clamp(6rem, 12vw, 9rem);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--eg-stone);
}
.eg-blog--row .eg-blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.1s var(--eg-ease);
}
.eg-blog--row:hover .eg-blog__thumb img { transform: scale(1.06); }
.eg-blog--row .eg-blog__meta { margin-bottom: 0.55rem; }
.eg-blog--row .eg-blog__title {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.3;
  margin: 0;
}

/* ---------- Footer (two parts, mirroring the reference) ----------
   1. Tall CTA block over a background image blended into a warm dark tone,
      split into two centered halves divided by a hairline.
   2. Flat dark nav area: logo + tagline, link columns, legal row. */

.eg-footer {
    background-color: var(--eg-brown);
    color: var(--eg-cream);
    font-weight: 300;
}


/* part 1 — image CTA */

.eg-footer__cta {
    position: relative;
    overflow: hidden;
}

.eg-footer__cta-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.eg-footer__brand-logo {
    display: inline-block;
    width: auto;
    height: 88px;
    max-width: 100%;
}

@media (max-width: 575.98px) {
    .eg-footer__brand-logo {
        height: 72px;
    }
}

.eg-footer__cta::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(400px, 60%);
    background: linear-gradient(to top, var(--eg-brown), transparent);
}


/* reference scale: 80px vertical on mobile up to ~395px on desktop */

.eg-footer__cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-block: 5rem;
}

.eg-footer__half {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 0;
}

.eg-footer__half>* {
    width: 100%;
    max-width: 24rem;
}

.eg-footer__half-title {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.3;
    color: var(--eg-white);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .eg-footer__cta-inner {
        flex-direction: row;
        padding-block: 24.6875rem;
    }
    .eg-footer__half {
        width: 50%;
        padding-block: 5rem;
    }
    .eg-footer__half:first-child {
        border-right: 1px solid rgba(156, 147, 140, 0.8);
    }
}

@media (max-width: 767.98px) {
    .eg-footer__half + .eg-footer__half {
        margin-top: 5rem;
    }
}


/* solid cream button (reference: btn-white) */

.eg-btn--solid {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: var(--eg-ink);
    background-color: var(--eg-sand);
    border: 1px solid var(--eg-sand);
    padding: 0.95rem 2.4rem;
    transition: background-color 0.35s var(--eg-ease);
}

.eg-btn--solid:hover {
    background-color: var(--eg-white);
    border-color: var(--eg-white);
    color: var(--eg-ink);
}


/* newsletter form */

.eg-newsletter {
    position: relative;
}

.eg-newsletter__wrap {
    display: flex;
    width: 100%;
}

.eg-newsletter input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding-inline: 1rem;
    background: transparent;
    border: 1px solid var(--eg-sand);
    border-right: 0;
    border-radius: 0;
    color: var(--eg-white);
    font-family: var(--eg-font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s var(--eg-ease);
}

.eg-newsletter input[type="email"]::placeholder {
    color: var(--eg-stone);
}

.eg-newsletter input[type="email"]:hover {
    border-color: var(--eg-sand);
}

.eg-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--eg-sand);
}

.eg-newsletter button {
    height: 48px;
    padding-inline: 1.4rem;
    background-color: var(--eg-sand);
    border: 1px solid var(--eg-sand);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-ink);
    white-space: nowrap;
    transition: background-color 0.35s var(--eg-ease);
}

.eg-newsletter button:hover {
    background-color: var(--eg-white);
    border-color: var(--eg-white);
}

.eg-newsletter__success {
    display: none;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--eg-white);
}

.eg-newsletter.is-done .eg-newsletter__wrap {
    display: none;
}

.eg-newsletter.is-done .eg-newsletter__success {
    display: block;
}


/* part 2 — nav area */

.eg-footer__nav {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .eg-footer__nav > .row {
        --bs-gutter-y: 0;
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}


/* reference heading-s: 24px serif, line-height 1.1 */

.eg-footer__tagline {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.35;
    color: var(--eg-stone);
    max-width: 18rem;
}

.eg-footer__col-title {
    font-family: var(--eg-font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--eg-taupe);
    margin-bottom: 0.9rem;
}

.eg-footer__nav a {
    display: block;
    padding-block: 0.55rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--eg-sand);
    transition: color 0.3s var(--eg-ease);
}

.eg-footer__nav a:hover {
    color: var(--eg-white);
}

.eg-footer__social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.55rem;
}
.eg-footer__social-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.86;
    transition: opacity 0.25s var(--eg-ease), transform 0.25s var(--eg-ease);
}
.eg-footer__social-fill { fill: currentColor; stroke: none; }
.eg-footer__social-link:hover .eg-footer__social-icon {
    opacity: 1;
    transform: translateY(-1px);
}

.eg-footer__contact {
    color: var(--eg-sand);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.13em;
    line-height: 1.55;
    text-transform: uppercase;
}

.eg-footer__contact p {
    margin: 0 0 1.15rem;
}

.eg-footer__contact p span,
.eg-footer__contact p a {
    display: block;
}

.eg-footer__contact p span {
    color: var(--eg-taupe);
}

.eg-footer__contact a.eg-footer__advisor {
    display: inline-block;
    margin-top: 0.55rem;
}

.eg-footer__legal {
    font-size: 0.85rem;
    color: var(--eg-taupe);
}

.eg-footer__legal a {
    color: var(--eg-taupe);
    text-decoration: none;
}

.eg-footer__legal a:hover {
    text-decoration: underline;
    color: var(--eg-taupe);
}

/* Minimal legal footer used across the site. */
.eg-footer--minimal .eg-footer__legal--minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.85rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    font-size: clamp(0.88rem, 1.15vw, 1rem);
    color: var(--eg-sand);
}

.eg-footer--minimal .eg-footer__legal--minimal a {
    color: inherit;
    text-decoration: none;
}

.eg-footer--minimal .eg-footer__legal--minimal a:hover,
.eg-footer--minimal .eg-footer__legal--minimal a:focus-visible {
    color: var(--eg-white);
    text-decoration: underline;
}


/* ---------- Scroll-reveal (progressive enhancement) ---------- */


/* Same timings as the reference site: text rises 40px over 0.7s,
   images fade over 1s, both with a 0.1s delay. Hidden states apply
   only when JS is present (html.js), so the site is fully readable
   with JavaScript disabled. */

html.js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-in-out 0.1s, transform 0.7s ease-in-out 0.1s;
}

html.js .reveal.in-view {
    opacity: 1;
    transform: none;
}

html.js .reveal-img {
    opacity: 0;
    transition: opacity 1s ease-in-out 0.1s;
}

html.js .reveal-img.in-view {
    opacity: 1;
}

/* Carousel cards can enter horizontally after the page observer has run. */
html.js .eg-itinerary-related .reveal-img {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html.js .reveal,
    html.js .reveal-img {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .eg-hero__scroll::after {
        animation: none;
    }
    .eg-card__media img {
        transition: none;
    }
}


/* ---------- Safari packages grid (reference: clean 3-across editorial
   grid, portrait 3:4 images, muted meta line, generous serif title,
   wide row gaps) ---------- */

.eg-pkg-grid {
    row-gap: clamp(3.5rem, 7vw, 6rem);
}

.eg-pkg {
    display: block;
    text-decoration: none;
    color: inherit;
}

.eg-pkg__media {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--eg-stone);
}

.eg-pkg__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 1.1s var(--eg-ease);
}

.eg-pkg:hover .eg-pkg__media img {
    transform: scale(1.04);
}

.eg-pkg__meta {
    margin: 1.7rem 0 0.55rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: var(--eg-ink-soft);
}

.eg-pkg__title {
    font-family: var(--eg-font-heading);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 300;
    margin: 0;
    transition: color 0.3s var(--eg-ease);
}

.eg-pkg:hover .eg-pkg__title {
    color: var(--eg-green);
}

/* Keep itinerary card titles evenly spaced across every package grid. */
.eg-pkg .eg-pkg__title {
    margin: 10px 0 5px !important;
}


/* ---------- Guest video reviews ---------- */

.eg-review--featured {
    text-align: center;
}

.eg-review--featured .eg-review__name {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin: 1.6rem auto 0.45rem;
}

.eg-video-modal .modal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
}

.eg-video-modal .modal-body {
    padding: 0;
}

.eg-video-modal__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--eg-ink);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.eg-video-modal__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.eg-video-modal__close {
    position: absolute;
    z-index: 2;
    top: -0.9rem;
    right: -0.9rem;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0;
    border: 1px solid rgba(247, 245, 240, 0.22);
    border-radius: 50%;
    background-color: var(--eg-cream);
    opacity: 1;
    transition: background-color 0.3s var(--eg-ease), transform 0.3s var(--eg-ease);
}

.eg-video-modal__close:hover {
    background-color: var(--eg-green);
    transform: scale(1.05);
}

@media (max-width: 575.98px) {
    .eg-video-modal .modal-dialog {
        margin: 1rem;
    }

    .eg-video-modal__close {
        top: 0.65rem;
        right: 0.65rem;
    }
}

.eg-review__poster {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.eg-review__poster img,
.eg-review__poster iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.eg-review__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 22, 18, 0.25);
    transition: background-color 0.4s var(--eg-ease);
}

.eg-review__poster:hover::after {
    background: rgba(24, 22, 18, 0.1);
}

.eg-review__poster.is-playing::after {
    display: none;
}

.eg-review__play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 245, 240, 0.8);
    border-radius: 50%;
    color: var(--eg-cream);
    background: rgba(24, 22, 18, 0.25);
    transition: background-color 0.35s var(--eg-ease), color 0.35s var(--eg-ease), transform 0.35s var(--eg-ease);
}

.eg-review__poster:hover .eg-review__play {
    background: var(--eg-cream);
    color: var(--eg-ink);
    transform: translate(-50%, -50%) scale(1.06);
}

.eg-review__play svg {
    margin-left: 3px;
}

.eg-review__name {
    font-family: var(--eg-font-heading);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--eg-white);
    margin: 1.4rem 0 0.2rem;
}

.eg-review__meta {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}


/* ---------- Fam trip page ---------- */

.eg-famtrip-hero::before {
    background: linear-gradient(90deg, rgba(18, 16, 13, 0.74) 0%, rgba(18, 16, 13, 0.42) 42%, rgba(18, 16, 13, 0.08) 100%);
}

.eg-famtrip-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 30%, rgba(201, 173, 115, 0.16), transparent 30%);
    pointer-events: none;
}

.eg-famtrip-hero .eg-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 48rem;
}

.eg-famtrip-hero .eg-hero__title {
    max-width: 9em;
}

.eg-famtrip-hero__sub {
    max-width: 28rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(247, 245, 240, 0.84);
    margin: 0;
}

.eg-famtrip-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.eg-famtrip-hero__actions .eg-btn {
    color: var(--eg-ink);
    background-color: var(--eg-cream);
    border-color: var(--eg-cream);
}

.eg-famtrip-hero__actions .eg-btn:hover,
.eg-famtrip-hero__actions .eg-btn:focus-visible {
    color: var(--eg-ink);
    background-color: var(--eg-white);
    border-color: var(--eg-white);
}

.eg-famtrip-hero__notice {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.9);
}

.eg-famtrip-hero__notice::before {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: var(--eg-cream);
    content: "";
    flex: 0 0 auto;
}

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

.eg-famtrip__intro-stats > div {
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(247, 245, 240, 0.14);
    background: rgba(247, 245, 240, 0.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.eg-sand-section .eg-famtrip__intro-stats > div {
    border-color: rgba(35, 33, 28, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 32px rgba(35, 33, 28, 0.06);
}

.eg-famtrip__intro-stats span {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--eg-cream);
    margin-bottom: 0.45rem;
}

.eg-sand-section .eg-famtrip__intro-stats span {
    color: var(--eg-ink);
}

.eg-famtrip__intro-stats p {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--eg-stone);
}

.eg-sand-section .eg-famtrip__intro-stats p {
    color: var(--eg-taupe);
}

#fam-trip-accommodations .eg-famtrip__stay-heading {
    max-width: 88rem;
    margin-inline: auto;
}

#fam-trip-accommodations .eg-famtrip__stay-heading .eg-display {
    max-width: 18ch;
}

#fam-trip-accommodations .eg-famtrip__stay-intro {
    padding-left: clamp(1.25rem, 3vw, 3.5rem);
    border-left: 1px solid rgba(35, 33, 28, 0.2);
}

#fam-trip-accommodations .eg-famtrip__stay-intro > p {
    margin: 0;
    color: var(--eg-ink-soft);
    font-family: var(--eg-font-heading);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.6;
}

#fam-trip-accommodations .eg-famtrip__intro-stats {
    width: min(100%, 26rem);
    margin-top: 1.75rem;
}

#fam-trip-accommodations .eg-famtrip__intro-stats > div {
    text-align: left;
}

@media (max-width: 991.98px) {
    #fam-trip-accommodations .eg-famtrip__stay-heading .eg-display {
        max-width: 23ch;
    }

    #fam-trip-accommodations .eg-famtrip__stay-intro {
        padding: 1.4rem 0 0;
        border-top: 1px solid rgba(35, 33, 28, 0.2);
        border-left: 0;
    }
}

.eg-famtrip__package,
.eg-famtrip__stay {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.35s var(--eg-ease), box-shadow 0.35s var(--eg-ease), border-color 0.35s var(--eg-ease);
}

.eg-famtrip__package {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(247, 245, 240, 0.16);
    background: linear-gradient(180deg, rgba(247, 245, 240, 0.98), rgba(239, 236, 228, 0.94));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.eg-famtrip__package:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 173, 115, 0.35);
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.28);
}

.eg-famtrip__package-media,
.eg-famtrip__stay-media {
    position: relative;
    overflow: hidden;
    background: var(--eg-ink);
}

.eg-famtrip__package-media {
    aspect-ratio: 4 / 5;
}

.eg-famtrip__stay-media {
    aspect-ratio: 4 / 3;
}

.eg-famtrip__package-media img,
.eg-famtrip__stay-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--eg-ease);
}

.eg-famtrip__package:hover .eg-famtrip__package-media img,
.eg-famtrip__stay:hover .eg-famtrip__stay-media img {
    transform: scale(1.04);
}

.eg-famtrip__package-media::after,
.eg-famtrip__stay-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 14, 12, 0.06) 0%, rgba(15, 14, 12, 0.42) 100%);
}

.eg-famtrip__package-chip,
.eg-famtrip__stay-badge {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
}

.eg-famtrip__package-chip {
    top: 1rem;
    right: 1rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(35, 33, 28, 0.08);
    background: rgba(247, 245, 240, 0.96);
    color: var(--eg-ink);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.eg-famtrip__stay-badge {
    left: 1rem;
    bottom: 1rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(24, 22, 18, 0.72);
    color: var(--eg-cream);
    backdrop-filter: blur(10px);
}

.eg-famtrip__package-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.95rem;
    padding: 1.2rem 1.2rem 1.35rem;
}

.eg-famtrip__package-eyebrow {
    display: block;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-brown);
    margin: 0;
}

.eg-famtrip__package-title {
    font-family: var(--eg-font-heading);
    font-size: clamp(1.45rem, 2.1vw, 1.88rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--eg-ink);
    margin: 0;
}

.eg-famtrip__package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0.95rem;
    padding-top: 0.25rem;
}

.eg-famtrip__package-grid > div {
    min-width: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(35, 33, 28, 0.1);
}

.eg-famtrip__package-grid > div:last-child {
    grid-column: 1 / -1;
}

.eg-famtrip__package-grid span {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.34rem;
}

.eg-famtrip__package-grid strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--eg-ink);
}

.eg-famtrip__package .eg-btn--dark {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.eg-famtrip__stays {
    row-gap: clamp(1.4rem, 3vw, 2.2rem);
}

.eg-famtrip__stay {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(35, 33, 28, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 245, 240, 0.96));
    box-shadow: 0 22px 60px rgba(35, 33, 28, 0.08);
}

.eg-famtrip__stay:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 173, 115, 0.28);
    box-shadow: 0 28px 72px rgba(35, 33, 28, 0.12);
}

.eg-famtrip__stay-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.3rem 1.3rem 1.35rem;
}

.eg-famtrip__stay-num {
    display: block;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--eg-taupe);
    margin: 0;
}

.eg-famtrip__stay h3 {
    font-family: var(--eg-font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--eg-ink);
    margin: 0;
}

.eg-famtrip__stay p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--eg-ink-soft);
    margin: 0;
}

.eg-famtrip__stay-highlights {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0.35rem 0 0;
}

.eg-famtrip__stay-highlights li {
    position: relative;
    padding: 0.78rem 0.9rem 0.78rem 1.45rem;
    border: 1px solid rgba(35, 33, 28, 0.08);
    border-radius: 0.85rem;
    background: rgba(247, 245, 240, 0.7);
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--eg-ink-soft);
}

.eg-famtrip__stay-highlights li::before {
    content: "";
    position: absolute;
    left: 0.78rem;
    top: 1.08rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--eg-green), #8b7442);
    box-shadow: 0 0 0 4px rgba(31, 61, 43, 0.08);
}

.eg-famtrip__stay-slider {
    position: relative;
    border: 1px solid rgba(35, 33, 28, 0.08);
    background:
        radial-gradient(circle at top left, rgba(201, 173, 115, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 245, 240, 0.94));
    box-shadow: 0 26px 70px rgba(35, 33, 28, 0.1);
    padding: clamp(0.85rem, 1.7vw, 1.2rem);
}

.eg-famtrip__stay-track {
    display: flex;
    align-items: stretch;
    gap: clamp(1rem, 2vw, 1.4rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(0.2rem, 1vw, 0.6rem);
    padding: 0.15rem 3.8rem 0.45rem 0.15rem;
    scrollbar-width: none;
}

.eg-famtrip__stay-track::-webkit-scrollbar {
    display: none;
}

.eg-famtrip__stay-slide {
    flex: 0 0 min(92vw, 1180px);
    scroll-snap-align: start;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: clamp(29rem, 58vw, 38rem);
    border: 1px solid rgba(35, 33, 28, 0.08);
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 233, 0.94));
    box-shadow: 0 20px 55px rgba(35, 33, 28, 0.08);
}

.eg-famtrip__stay-slide--reverse {
    flex-direction: row-reverse;
}

.eg-famtrip__stay-slide-media {
    position: relative;
    flex: 1.08 1 0;
    min-width: 0;
    overflow: hidden;
    background: var(--eg-ink);
}

.eg-famtrip__stay-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.85s var(--eg-ease);
}

.eg-famtrip__stay-slide:hover .eg-famtrip__stay-slide-media img {
    transform: scale(1.045);
}

.eg-famtrip__stay-slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 14, 12, 0.02) 0%, rgba(15, 14, 12, 0.42) 100%),
        linear-gradient(90deg, rgba(15, 14, 12, 0.15) 0%, transparent 45%);
}

.eg-famtrip__stay-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(20, 18, 14, 0.68);
    color: var(--eg-cream);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.eg-famtrip__stay-slide-copy {
    flex: 0.92 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2.8rem);
}

.eg-famtrip__stay-slide-kicker {
    margin: 0;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}

.eg-famtrip__stay-slide-copy h3 {
    margin: 0;
    font-family: var(--eg-font-heading);
    font-size: clamp(1.55rem, 2.7vw, 2.35rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--eg-ink);
    max-width: 16ch;
}

.eg-famtrip__stay-slide-text {
    margin: 0;
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--eg-ink-soft);
}

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

.eg-famtrip__stay-specs > div {
    min-width: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(35, 33, 28, 0.09);
}

.eg-famtrip__stay-specs span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--eg-taupe);
}

.eg-famtrip__stay-specs strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--eg-ink);
}

.eg-famtrip__stay-slide .eg-famtrip__stay-highlights {
    gap: 0.8rem;
    margin-top: 0.15rem;
}

.eg-famtrip__stay-slide .eg-famtrip__stay-highlights li {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(35, 33, 28, 0.09);
}

.eg-famtrip__slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(35, 33, 28, 0.12);
    border-radius: 999px;
    background: rgba(247, 245, 240, 0.94);
    color: var(--eg-ink);
    box-shadow: 0 12px 30px rgba(35, 33, 28, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.3s var(--eg-ease), background-color 0.3s var(--eg-ease), box-shadow 0.3s var(--eg-ease), opacity 0.3s var(--eg-ease);
}

.eg-famtrip__slider-btn:hover {
    background: var(--eg-white);
    box-shadow: 0 16px 34px rgba(35, 33, 28, 0.16);
}

.eg-famtrip__slider-btn[disabled] {
    opacity: 0.35;
    cursor: default;
}

.eg-famtrip__slider-btn svg {
    width: 0.56rem;
    height: 1rem;
}

.eg-famtrip__slider-btn--prev {
    left: 0.7rem;
}

.eg-famtrip__slider-btn--next {
    right: 0.7rem;
}

.eg-famtrip__accom-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.4rem;
    padding: 1.1rem 1.35rem;
    border: 1px solid rgba(35, 33, 28, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 240, 0.92));
    box-shadow: 0 16px 36px rgba(35, 33, 28, 0.06);
}

.eg-famtrip__accom-strip span {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-taupe);
    margin-bottom: 0.45rem;
}

.eg-famtrip__accom-strip strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--eg-ink);
    margin-bottom: 0.3rem;
}

.eg-famtrip__accom-strip p {
    margin: 0;
    max-width: 42rem;
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--eg-ink-soft);
}

.eg-famtrip__status {
    padding: 1.25rem 1.2rem 1.15rem;
    border: 1px solid rgba(247, 245, 240, 0.14);
    background: rgba(247, 245, 240, 0.06);
}

.eg-famtrip__status span {
    display: block;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eg-stone);
    margin-bottom: 0.7rem;
}

.eg-famtrip__status strong {
    display: block;
    font-family: var(--eg-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1;
    color: var(--eg-cream);
    margin-bottom: 0.4rem;
}

.eg-famtrip__status p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(247, 245, 240, 0.8);
}

.eg-famtrip__form {
    position: relative;
}

.eg-famtrip__form .eg-btn--dark {
    width: 100%;
    background-color: var(--eg-ink);
    border-color: var(--eg-ink);
    color: var(--eg-cream);
}

.eg-famtrip__form .eg-btn--dark:hover,
.eg-famtrip__form .eg-btn--dark:focus-visible {
    background-color: var(--eg-cream);
    border-color: var(--eg-cream);
    color: var(--eg-ink);
}

.eg-logos__text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(2.6rem, 4vw, 3.6rem);
    padding: 0 1rem;
    border: 1px solid rgba(35, 33, 28, 0.12);
    background: linear-gradient(180deg, rgba(247, 245, 240, 0.9), rgba(255, 255, 255, 0.82));
    font-family: var(--eg-font-heading);
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eg-ink);
}

@media (max-width: 575.98px) {
    .eg-famtrip__intro-stats {
        grid-template-columns: 1fr;
    }

    .eg-famtrip__stay-track {
        padding-right: 0.15rem;
    }

    .eg-famtrip__stay-slide {
        min-height: auto;
        flex-direction: column;
    }

    .eg-famtrip__stay-slide--reverse {
        flex-direction: column;
    }

    .eg-famtrip__stay-slide-media {
        min-height: 16.5rem;
    }

    .eg-famtrip__stay-slide-copy {
        padding: 1.15rem 1.05rem 1.2rem;
    }

    .eg-famtrip__stay-specs {
        grid-template-columns: 1fr;
    }

    .eg-famtrip__slider-btn {
        width: 44px;
        height: 44px;
        top: 1rem;
        transform: none;
    }

    .eg-famtrip__slider-btn--prev {
        left: 0.45rem;
    }

    .eg-famtrip__slider-btn--next {
        right: 0.45rem;
    }

    .eg-famtrip__accom-strip {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 1rem 1.05rem;
    }
}
.eg-hero__overview {
  color: rgba(247, 245, 240, 0.9);
  font-size: clamp(0.94rem, 1.3vw, 1.06rem);
  line-height: 1.72;
  margin: 1.1rem 0 0;
  max-width: 38rem;
}

.eg-hero__primary-action {
  background-color: var(--eg-cream);
  border-color: var(--eg-cream);
  color: var(--eg-ink);
  margin-top: 1.45rem;
}

.eg-hero__primary-action:hover,
.eg-hero__primary-action:focus-visible {
  background-color: var(--eg-white);
  border-color: var(--eg-white);
  color: var(--eg-ink);
}
