/* ================================================================
   Homepage V2  —  hm-  prefix
   Editorial Adventure Commerce / Experience-Led Travel Design
   Mobile-first. Desktop is the expansion.
   ================================================================ */

/* ── 1. Cinematic Entrance ───────────────────────────────────── */

.hm-hero {
    position: relative;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: #060c17;
}

.hm-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: transform, opacity;
}
.hm-hero__bg.is-active {
    opacity: 1;
    animation: hm-kenburns 22s ease-in-out infinite alternate;
}
@keyframes hm-kenburns {
    from { transform: scale(1.0) translate(0, 0); }
    to   { transform: scale(1.09) translate(-1.5%, -1%); }
}

.hm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4,9,18,0.58) 0%,
        rgba(4,9,18,0.12) 38%,
        rgba(4,9,18,0.50) 65%,
        rgba(4,9,18,0.88) 100%
    );
}

.hm-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(56px, 9vh, 104px);
    padding-top: 24px;
}

.hm-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    margin-bottom: 22px;
}
.hm-hero__kicker::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--hv2-gold);
    flex-shrink: 0;
}

.hm-hero__headline {
    font-size: clamp(48px, 8.5vw, 96px);
    font-weight: 800;
    color: #fff;
    line-height: 0.96;
    letter-spacing: -2px;
    margin-bottom: 36px;
    max-width: 820px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hm-hero__headline em {
    font-style: normal;
    color: var(--hv2-primary);
}

.hm-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hm-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hv2-primary);
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid var(--hv2-primary);
    transition: background .2s, transform .2s, border-color .2s;
}
.hm-hero__cta:hover {
    background: #a84f1e;
    border-color: #a84f1e;
    color: #fff;
    transform: translateY(-2px);
}
/* Mobile: no blue tap-highlight, keep text white on tap/focus/visited. */
.hm-hero__cta { -webkit-tap-highlight-color: transparent; }
.hm-hero__cta:active,
.hm-hero__cta:focus,
.hm-hero__cta:visited { color: #fff; }
.hm-hero__cta--ghost:active,
.hm-hero__cta--ghost:focus,
.hm-hero__cta--ghost:visited { color: #fff; }
.hm-hero__cta--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.35);
    color: #fff;
}
.hm-hero__cta--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    transform: translateY(-2px);
}
.hm-hero__trust {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    padding-left: 4px;
}
.hm-hero__trust-stars { color: #f59e0b; letter-spacing: 1px; font-size: 11px; }

.hm-hero__scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 32px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: hm-scrollpulse 2.8s ease-in-out infinite;
}
.hm-hero__scroll-hint-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
}
@keyframes hm-scrollpulse {
    0%, 100% { opacity: .35; transform: translateY(0); }
    50%       { opacity: .8;  transform: translateY(5px); }
}

@media (max-width: 576px) {
    .hm-hero__headline { letter-spacing: -1px; margin-bottom: 28px; }
    .hm-hero__scroll-hint { display: none; }
    .hm-hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }
    .hm-hero__cta { width: 100%; justify-content: center; }
    .hm-hero__trust { display: none; }
}

/* ── 2. Manifesto Strip ──────────────────────────────────────── */

.hm-manifesto {
    background: var(--hv2-dark);
    padding: clamp(72px, 9vw, 120px) 0;
}
.hm-manifesto__text {
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}
.hm-manifesto__text em {
    font-style: normal;
    color: var(--hv2-primary);
}
.hm-manifesto__text .dim {
    color: rgba(255,255,255,.35);
}
.hm-manifesto__rule {
    width: 44px;
    height: 2px;
    background: var(--hv2-primary);
    margin: 40px auto 32px;
}
.hm-manifesto__sub {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

/* ── 3. Mood Discovery ───────────────────────────────────────── */

.hm-moods {
    padding: clamp(64px, 6vw, 96px) 0;
    background: var(--hv2-cream);
}
.hm-moods__hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
}
.hm-moods__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 10px;
}
.hm-moods__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.1;
    margin: 0;
}
.hm-moods__see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border-bottom: 1.5px solid var(--hv2-primary);
    padding-bottom: 1px;
    transition: opacity .15s;
}
.hm-moods__see-all:hover { opacity: .7; color: var(--hv2-primary); }

/* Desktop: asymmetric 12-col grid */
.hm-mood-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 270px 270px;
    gap: 12px;
}
.hm-mood-tile:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
.hm-mood-tile:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
.hm-mood-tile:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.hm-mood-tile:nth-child(4) { grid-column: 1 / 4;  grid-row: 2; }
.hm-mood-tile:nth-child(5) { grid-column: 4 / 9;  grid-row: 2; }

.hm-mood-tile {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: var(--hv2-dark);
    text-decoration: none;
    display: block;
}
.hm-mood-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}
.hm-mood-tile:hover .hm-mood-tile__img { transform: scale(1.08); }
.hm-mood-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.58) 100%);
    transition: background .3s;
}
.hm-mood-tile:hover .hm-mood-tile__overlay {
    background: linear-gradient(155deg, rgba(200,98,42,.14) 0%, rgba(0,0,0,.68) 100%);
}
.hm-mood-tile__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.hm-mood-tile__label {
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.4px;
    line-height: 1.1;
    transition: transform .3s;
}
.hm-mood-tile:hover .hm-mood-tile__label { transform: translateY(-5px); }
.hm-mood-tile__sub {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s .06s, transform .3s .06s;
}
.hm-mood-tile:hover .hm-mood-tile__sub { opacity: 1; transform: translateY(0); }

/* Mobile: horizontal scroll snap */
@media (max-width: 768px) {
    .hm-mood-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-padding-inline-start: 20px;
        gap: 10px;
        padding-bottom: 8px;
        scrollbar-width: none;
        padding-inline: 20px;
    }
    .hm-mood-grid::-webkit-scrollbar { display: none; }
    .hm-mood-tile {
        flex: 0 0 76vw;
        height: 310px;
        scroll-snap-align: start;
        border-radius: 12px;
    }
    .hm-mood-tile:nth-child(3) { flex: 0 0 76vw; }
    .hm-moods__hd { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── 4. Editorial Feature ────────────────────────────────────── */

.hm-feature {
    padding: clamp(64px, 6vw, 96px) 0;
    background: #fff;
}
.hm-feature__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-muted);
    margin-bottom: 20px;
    text-align: center;
}
.hm-feature__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 540px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(28,45,69,.13);
}
.hm-feature__photo {
    position: relative;
    overflow: hidden;
    background: var(--hv2-dark);
}
.hm-feature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .9s ease;
}
.hm-feature__inner:hover .hm-feature__photo img { transform: scale(1.04); }
.hm-feature__copy {
    background: var(--hv2-dark);
    padding: clamp(40px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}
.hm-feature__tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-gold);
}
.hm-feature__tag::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--hv2-gold);
}
.hm-feature__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin: 0;
}
.hm-feature__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hm-feature__meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.hm-feature__meta-item i { color: var(--hv2-primary); font-size: 12px; }
.hm-feature__quote {
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    border-left: 3px solid var(--hv2-primary);
    padding-left: 18px;
    margin: 0;
    font-style: italic;
}
.hm-feature__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hv2-primary);
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    align-self: flex-start;
    transition: background .2s, transform .2s;
}
.hm-feature__cta:hover { background: #a84f1e; color: #fff; transform: translateY(-2px); }

@media (max-width: 768px) {
    .hm-feature__inner { grid-template-columns: 1fr; min-height: auto; }
    .hm-feature__photo { height: 300px; }
    .hm-feature__cta { width: 100%; justify-content: center; }
}

/* ── 5. Real Voice ───────────────────────────────────────────── */

.hm-voice {
    padding: clamp(64px, 6vw, 96px) 0;
    background: var(--hv2-cream);
}
.hm-voice__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
}
.hm-voice__photo-wrap { position: relative; }
.hm-voice__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 24px 56px rgba(28,45,69,.18);
}
.hm-voice__photo-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 72px;
    height: 72px;
    background: var(--hv2-primary);
    border-radius: 12px;
    z-index: -1;
}
.hm-voice__mark {
    font-size: 96px;
    line-height: .65;
    color: var(--hv2-primary);
    opacity: .2;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 16px;
    user-select: none;
}
.hm-voice__text {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 600;
    color: var(--hv2-dark);
    line-height: 1.48;
    margin-bottom: 32px;
}
.hm-voice__person { display: flex; align-items: center; gap: 14px; }
.hm-voice__person-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-dark);
}
.hm-voice__person-detail {
    font-size: 12px;
    color: var(--hv2-muted);
}
.hm-voice__stars {
    font-size: 13px;
    color: #f59e0b;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}
.hm-voice__divider {
    width: 1px;
    height: 36px;
    background: var(--hv2-border);
}

@media (max-width: 768px) {
    .hm-voice__inner { grid-template-columns: 1fr; gap: 40px; }
    .hm-voice__photo-wrap { max-width: 220px; margin: 0 auto; }
    .hm-voice__photo { aspect-ratio: 1/1; border-radius: 50%; }
    .hm-voice__photo-accent { display: none; }
    .hm-voice__text { font-size: 20px; text-align: center; }
    .hm-voice__person { justify-content: center; }
    .hm-voice__mark { text-align: center; }
}

/* ── 6. Egypt Fragments ──────────────────────────────────────── */

.hm-fragments {
    padding: clamp(64px, 6vw, 96px) 0;
    background: #fff;
}
.hm-fragments__hd {
    margin-bottom: 36px;
}
.hm-fragments__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 10px;
}
.hm-fragments__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.1;
    margin: 0;
}

.hm-frags-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 230px 230px;
    gap: 10px;
}
.hm-frag-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.hm-frag-tile:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.hm-frag-tile:nth-child(3) { grid-column: 5 / 7; grid-row: 1 / 3; }
.hm-frag-tile:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
.hm-frag-tile:nth-child(5) { grid-column: 2 / 4; grid-row: 2; }
.hm-frag-tile:nth-child(6) { grid-column: 4 / 6; grid-row: 2; }

.hm-frag-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--hv2-dark);
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.hm-frag-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: saturate(.88);
}
.hm-frag-tile:hover .hm-frag-tile__img { transform: scale(1.07); filter: saturate(1); }
.hm-frag-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}
.hm-frag-tile__label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
}
.hm-frag-tile__name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    display: block;
}
.hm-frag-tile__days {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    display: block;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hm-frags-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px;
    }
    .hm-frag-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .hm-frag-tile:nth-child(2) { grid-column: 1; grid-row: 2; }
    .hm-frag-tile:nth-child(3) { grid-column: 2; grid-row: 2 / 4; }
    .hm-frag-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
    .hm-frag-tile:nth-child(5) { grid-column: 1 / 3; grid-row: 4; height: 180px; }
    .hm-frag-tile:nth-child(6) { display: none; }
}

/* ── 7. Stats Strip ──────────────────────────────────────────── */

.hm-stats {
    background: var(--hv2-dark);
}
.hm-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hm-stat-block {
    padding: clamp(40px, 5vw, 64px) 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.hm-stat-block:last-child { border-right: none; }
.hm-stat-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 2px;
    background: var(--hv2-primary);
    transition: transform .4s;
}
.hm-stat-block:hover::after { transform: translateX(-50%) scaleX(1); }
.hm-stat-block__num {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
}
.hm-stat-block__num [data-counter] { display: inline; }
.hm-stat-block__suffix { color: var(--hv2-primary); }
.hm-stat-block__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-top: 10px;
}

@media (max-width: 576px) {
    .hm-stats__inner { grid-template-columns: repeat(2, 1fr); }
    .hm-stat-block:nth-child(2) { border-right: none; }
    .hm-stat-block:nth-child(1),
    .hm-stat-block:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ── 8. Concierge Promise ────────────────────────────────────── */

.hm-concierge {
    padding: clamp(64px, 6vw, 96px) 0;
    background: var(--hv2-cream);
}
.hm-concierge__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hm-concierge__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 14px;
}
.hm-concierge__title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.18;
    margin-bottom: 36px;
}
.hm-concierge__steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}
.hm-concierge__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.hm-concierge__step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hv2-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(200,98,42,.3);
    margin-top: 2px;
}
.hm-concierge__step-text { }
.hm-concierge__step-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-dark);
    margin-bottom: 2px;
}
.hm-concierge__step-sub {
    font-size: 13px;
    color: var(--hv2-muted);
}
.hm-concierge__ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.hm-concierge__wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    animation: hm-wa-pulse 4s ease-in-out infinite;
}
.hm-concierge__wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); animation: none; }
@keyframes hm-wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.0); }
    50%       { box-shadow: 0 0 0 10px rgba(37,211,102,.14); }
}
.hm-concierge__alt {
    font-size: 13px;
    color: var(--hv2-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
    padding-left: 6px;
}
.hm-concierge__alt:hover { color: var(--hv2-primary); }
.hm-concierge__alt i { font-size: 11px; }

.hm-concierge__visual { position: relative; }
.hm-concierge__img-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(28,45,69,.16);
}
.hm-concierge__img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.hm-concierge__badge {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 36px rgba(28,45,69,.13);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hm-concierge__badge-icon {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 18px;
    flex-shrink: 0;
}
.hm-concierge__badge-label { font-size: 11px; color: var(--hv2-muted); }
.hm-concierge__badge-value { font-size: 13px; font-weight: 600; color: var(--hv2-dark); }

@media (max-width: 768px) {
    .hm-concierge__inner { grid-template-columns: 1fr; }
    .hm-concierge__visual { display: none; }
    .hm-concierge__wa { width: 100%; justify-content: center; }
    .hm-concierge__ctas { width: 100%; }
    .hm-concierge__alt { align-self: center; }
}

/* ── 9. Live Moments ─────────────────────────────────────────── */

.hm-moments {
    padding: clamp(48px, 5vw, 72px) 0;
    background: #fff;
    overflow: hidden;
}
.hm-moments__label {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(107,114,128,.5);
    margin-bottom: 28px;
}
.hm-moments__track-wrap { overflow: hidden; }
.hm-moments__track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: hm-strip-scroll 50s linear infinite;
}
.hm-moments__track:hover { animation-play-state: paused; }
@keyframes hm-strip-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.hm-moment-img {
    height: 240px;
    width: 320px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    filter: saturate(.78) brightness(.94);
    transition: filter .4s, transform .4s;
    cursor: pointer;
    display: block;
}
.hm-moment-img:hover { filter: saturate(1) brightness(1); transform: scale(1.02); }

@media (max-width: 576px) {
    .hm-moment-img { height: 180px; width: 240px; }
}

/* ── 10. The Close ───────────────────────────────────────────── */

.hm-close {
    position: relative;
    min-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--hv2-dark);
}
.hm-close__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: hm-kenburns 30s ease-in-out infinite alternate;
}
.hm-close__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4,9,18,.94) 0%,
        rgba(4,9,18,.68) 40%,
        rgba(4,9,18,.52) 100%
    );
}
.hm-close__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}
.hm-close__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    margin-bottom: 24px;
}
.hm-close__headline {
    font-size: clamp(64px, 13vw, 130px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -4px;
    line-height: .9;
    margin-bottom: 52px;
}
.hm-close__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hm-close__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid var(--hv2-primary);
    background: var(--hv2-primary);
    color: #fff;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.hm-close__cta-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.hm-close__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.hm-close__cta:hover::before { transform: scaleX(1); }
.hm-close__cta:hover { color: var(--hv2-primary); }
.hm-close__cta--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
}
.hm-close__cta--ghost::before { display: none; }
.hm-close__cta--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

@media (max-width: 576px) {
    .hm-close__headline { letter-spacing: -2px; }
    .hm-close__actions { flex-direction: column; align-items: center; }
    .hm-close__cta { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Scroll Reveal ───────────────────────────────────────────── */

.hm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.hm-reveal--d1 { transition-delay: .1s; }
.hm-reveal--d2 { transition-delay: .2s; }
.hm-reveal--d3 { transition-delay: .3s; }
.hm-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   Mobile-First Signature Interaction  —  Egypt Story Hero
   Only active on max-width: 767px. Desktop hero unchanged.
   ================================================================ */

/* Hide desktop hero on mobile */
@media (max-width: 767px) {
    .hm-hero { display: none !important; }
}

/* ── Story Hero wrapper ───────────────────────────────────────── */
.hm-story-hero {
    display: none; /* hidden by default, shown only on mobile via media query */
}
@media (max-width: 767px) {
    .hm-story-hero {
        display: block;
        position: relative;
        height: 100dvh;
        min-height: 600px;
        overflow: hidden;
        background: #060c17;
        touch-action: pan-y;
    }
}

/* ── Progress segments ───────────────────────────────────────── */
.hm-story-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 4px;
    padding: 76px 16px 10px;
}
.hm-story-seg {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.25);
    border-radius: 2px;
    overflow: hidden;
}
.hm-story-seg__fill {
    height: 100%;
    background: #fff;
    width: 0%;
    border-radius: 2px;
}
.hm-story-seg.is-done .hm-story-seg__fill { width: 100%; }
.hm-story-seg.is-active .hm-story-seg__fill {
    animation: hm-seg-fill var(--story-dur, 4000ms) linear forwards;
}
@keyframes hm-seg-fill {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ── Story backgrounds ───────────────────────────────────────── */
.hm-story-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .4s ease;
    transform: scale(1.0);
}
.hm-story-bg.is-active {
    opacity: 1;
    animation: hm-story-kenburns 5s ease-in-out forwards;
}
@keyframes hm-story-kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}

/* ── Gradient overlay ────────────────────────────────────────── */
.hm-story-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(4,9,18,.65) 0%,
        rgba(4,9,18,.15) 40%,
        rgba(4,9,18,.55) 70%,
        rgba(4,9,18,.92) 100%
    );
}

/* ── Tap zones (invisible, full-height) ──────────────────────── */
.hm-story-tap-prev,
.hm-story-tap-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 8;
    width: 38%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.hm-story-tap-prev { left: 0; }
.hm-story-tap-next { right: 0; }

/* ── Slide content ───────────────────────────────────────────── */
.hm-story-slides {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}
.hm-story-slide {
    position: absolute;
    bottom: 170px;
    left: 24px;
    right: 24px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
}
.hm-story-slide.is-active {
    opacity: 1;
    transform: translateY(0);
}
.hm-story-slide__dest {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    margin-bottom: 14px;
}
.hm-story-slide__dest::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--hv2-gold);
    flex-shrink: 0;
}
.hm-story-slide__headline {
    font-size: clamp(40px, 10vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -1.5px;
    margin: 0;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hm-story-slide__headline em {
    font-style: normal;
    color: var(--hv2-primary);
}

/* ── Story CTA bar ───────────────────────────────────────────── */
.hm-story-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 16px 16px calc(32px + env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
    background: linear-gradient(to top, rgba(4,9,18,.85) 0%, transparent 100%);
}
.hm-story-cta__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--hv2-primary);
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 100px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.hm-story-cta__wa {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

/* Keep mobile CTA text/icons white in every link state. Bootstrap's Reboot sets
   a:hover { color: blue }, which outranks a bare button class — so on mobile tap
   (which fires :hover/:active) these flashed the default link blue. */
.hm-story-cta__main:link,  .hm-story-cta__main:visited,
.hm-story-cta__main:hover, .hm-story-cta__main:active, .hm-story-cta__main:focus,
.hm-sticky-cta__main:link,  .hm-sticky-cta__main:visited,
.hm-sticky-cta__main:hover, .hm-sticky-cta__main:active, .hm-sticky-cta__main:focus,
.hm-story-cta__wa:hover,  .hm-story-cta__wa:active,  .hm-story-cta__wa:focus,  .hm-story-cta__wa:visited,
.hm-sticky-cta__wa:hover, .hm-sticky-cta__wa:active, .hm-sticky-cta__wa:focus, .hm-sticky-cta__wa:visited {
    color: #fff;
}

/* ── Story dots indicator ────────────────────────────────────── */
.hm-story-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    gap: 8px;
    pointer-events: none;
}
.hm-story-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: background .25s, transform .25s;
}
.hm-story-dot.is-active {
    background: #fff;
    transform: scale(1.4);
}

/* ── Sticky mobile CTA ───────────────────────────────────────── */
.hm-sticky-cta {
    display: none;
}
@media (max-width: 767px) {
    .hm-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 997;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(4, 9, 18, .97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(255,255,255,.08);
        gap: 10px;
        align-items: center;
        transform: translateY(110%);
        transition: transform .4s cubic-bezier(.4,0,.2,1);
        pointer-events: none;
    }
    .hm-sticky-cta.is-visible {
        transform: translateY(0);
        pointer-events: all;
    }
    .hm-sticky-cta__main {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--hv2-primary);
        color: #fff;
        font-family: 'Lexend', sans-serif;
        font-size: 14px;
        font-weight: 600;
        padding: 13px 18px;
        border-radius: 100px;
        text-decoration: none;
        transition: background .2s;
        white-space: nowrap;
    }
    .hm-sticky-cta__wa {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25d366;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        flex-shrink: 0;
        transition: background .2s;
    }

    /* ── Mobile mood rail enhancement ──────────────────────────── */
    .hm-moods { padding: 48px 0; }
    .hm-moods__hd { padding: 0 0 4px; }

    /* ── Mobile swipeable editorial cards ───────────────────────── */
    .hm-feature { padding: 48px 0; }
    .hm-feature__label { text-align: left; margin-left: 0; margin-bottom: 16px; }

    /* ── Mobile section spacing ─────────────────────────────────── */
    .hm-manifesto { padding: 56px 0; }
    .hm-voice { padding: 48px 0; }
    .hm-fragments { padding: 48px 0; }
    .hm-concierge { padding: 48px 0; }
    .hm-close { min-height: 70dvh; }
    .hm-close__headline { letter-spacing: -2px; }

    /* Add bottom padding to last section so sticky CTA doesn't overlap */
    .hm-close { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
}

/* ================================================================
   Section overflow containment  —  prevents horizontal scroll
   ================================================================ */
html { overflow-x: hidden; }

.hm-hero,
.hm-story-hero,
.hm-manifesto,
.hm-feature,
.hm-voice,
.hm-trips,
.hm-stats,
.hm-concierge,
.hm-moments,
.hm-quote { overflow-x: hidden; }
/* .hm-moods intentionally excluded — mobile horizontal scroll needs overflow visible */
@media (min-width: 769px) { .hm-moods { overflow-x: hidden; } }

/* ================================================================
   Trip Cards  —  hm-trips / hm-prog-card
   ================================================================ */

.hm-trips {
    padding: clamp(64px, 7vw, 96px) 0;
    background: var(--hv2-cream);
}

.hm-trips__hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
}

.hm-trips__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-primary);
    margin-bottom: 10px;
}

.hm-trips__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--hv2-dark);
    line-height: 1.1;
    margin: 0;
}


.hm-trips__more {
    text-align: center;
    margin-top: 44px;
}
.hm-trips__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--hv2-dark);
    color: var(--hv2-dark);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.hm-trips__more-btn:hover {
    background: var(--hv2-dark);
    color: #fff;
    text-decoration: none;
}

/* ================================================================
   Quote / Contact Form  —  hm-quote
   ================================================================ */

.hm-quote {
    background: var(--hv2-dark);
    padding: clamp(72px, 8vw, 112px) 0
             calc(clamp(72px, 8vw, 112px) + env(safe-area-inset-bottom));
}

.hm-quote__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

/* Stack the copy + form into full-width rows on tablet/mobile.
   home.css loads after home-v2.css, so this must live here to win the cascade. */
@media (max-width: 991px) {
    .hm-quote__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.hm-quote__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--hv2-gold);
    margin-bottom: 20px;
}

.hm-quote__title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
}

.hm-quote__sub {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hm-quote__trust {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hm-quote__trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}
.hm-quote__trust .fa-check {
    color: var(--hv2-primary);
    font-size: 12px;
    flex-shrink: 0;
}

.hm-quote__wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border: 1.5px solid rgba(74,222,128,.3);
    border-radius: 100px;
    transition: background .2s, border-color .2s;
}
.hm-quote__wa:hover {
    background: rgba(74,222,128,.08);
    border-color: rgba(74,222,128,.55);
    color: #4ade80;
    text-decoration: none;
}
.hm-quote__wa .fa-whatsapp { font-size: 17px; }

