/* ============================================================
   Crown Global Services — Design System
   Type: Fraunces (display) + Inter (text)
   Palette: Ink, Pine, Champagne Gold, Ivory, Sand
   ============================================================ */

:root {
    --ink: #131530;
    --ink-soft: #1e2048;
    --pine: #2b2b72;
    --pine-deep: #1e1e55;
    --gold: #b6912d;
    --gold-bright: #d4af4e;
    --ivory: #faf7f1;
    --sand: #f0eadd;
    --white: #ffffff;
    --text: #30334a;
    --text-muted: #6b6e82;
    --line: #e3ddd0;
    --line-dark: rgba(255, 255, 255, 0.14);

    --font-display: 'Fraunces', Georgia, serif;
    --font-text: 'Inter', 'Segoe UI', sans-serif;

    --container: 1200px;
    --container-wide: 1360px;
    --radius: 10px;
    --shadow-soft: 0 2px 24px rgba(19, 21, 48, 0.07);
    --shadow-lift: 0 18px 44px rgba(19, 21, 48, 0.14);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-text);
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.12;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--pine);
    text-decoration: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 44px);
}

.container-wide {
    max-width: var(--container-wide);
}

section {
    position: relative;
}

.section {
    padding: clamp(72px, 9vw, 128px) 0;
}

.section-tight {
    padding: clamp(48px, 6vw, 80px) 0;
}

.bg-sand {
    background-color: var(--sand);
    background-image: radial-gradient(circle at center, rgba(240, 234, 221, 0.1) 0%, rgba(240, 234, 221, 0.95) 85%), url('../public/topographic_bg.png');
    background-size: 600px;
    background-repeat: repeat;
    position: relative;
}

.bg-ink {
    background: var(--ink);
}

.bg-pine {
    background: var(--pine-deep);
}

.bg-about-teaser {
    position: relative;
    background-image: linear-gradient(rgba(19, 21, 48, 0.82), rgba(19, 21, 48, 0.82)), url('../public/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Custom premium card style for features in About Teaser */
.bg-about-teaser .feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--ease);
}

.bg-about-teaser .feature:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(212, 175, 78, 0.45);
    box-shadow: 0 15px 35px rgba(212, 175, 78, 0.12), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bg-about-teaser .feature .feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(212, 175, 78, 0.1);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 175, 78, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(212, 175, 78, 0.08);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.bg-about-teaser .feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 78, 0.2);
    border-color: var(--gold-bright);
    box-shadow: 0 6px 20px rgba(212, 175, 78, 0.25);
}

.bg-about-teaser .feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    transition: color 0.4s var(--ease);
}

.bg-about-teaser .feature:hover h3 {
    color: var(--gold-bright);
}

.bg-about-teaser .feature p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72) !important;
}

.bg-ink h2,
.bg-ink h3,
.bg-pine h2,
.bg-pine h3,
.bg-about-teaser h2,
.bg-about-teaser h3 {
    color: var(--white);
}

.bg-ink p,
.bg-pine p,
.bg-about-teaser p {
    color: rgba(255, 255, 255, 0.78);
}

/* ---------- Eyebrow + headings ---------- */

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head p.lead {
    font-size: 1.12rem;
    color: var(--text-muted);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: var(--font-text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-solid {
    background: var(--pine);
    color: #fff;
}

.btn-solid:hover {
    background: var(--ink);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-bright);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
}

.btn-ghost:hover {
    background: #fff;
    color: var(--ink);
}

.btn-outline {
    border-color: var(--pine);
    color: var(--pine);
    background: transparent;
}

.btn-outline:hover {
    background: var(--pine);
    color: #fff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pine);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover {
    gap: 14px;
    color: var(--gold);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header .header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header .logo {
    display: inline-flex;
    align-items: center;
    transition: all 0.35s var(--ease);
    animation: logoEntrance 0.8s ease-out 0.2s both;
}

@media (min-width: 1081px) {
    .site-header .logo {
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-header .nav-cta {
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-header:not(.scrolled):not(.solid) .logo img {
        height: 80px;
    }
}

.site-header .logo img {
    height: 96px;
    width: auto;
    transition: height 0.35s var(--ease), filter 0.4s var(--ease), transform 0.35s var(--ease);
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(13, 14, 38, 0.45));
}

.site-header .logo:hover img {
    transform: scale(1.04);
}

.site-header:not(.scrolled):not(.solid) .logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(212, 175, 78, 0.45));
}

.site-header.scrolled .logo img,
.site-header.solid:not(.scrolled) .logo img {
    filter: none;
}

.site-header.scrolled .logo:hover img,
.site-header.solid:not(.scrolled) .logo:hover img {
    filter: drop-shadow(0 4px 16px rgba(13, 14, 38, 0.08));
}

@keyframes logoEntrance {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: clamp(18px, 2.4vw, 34px);
}

.site-header nav a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}

.site-header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1.5px;
    background: var(--gold-bright);
    transition: right 0.35s var(--ease);
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
    right: 0;
}

.site-header nav a:hover {
    color: var(--gold-bright);
}

.site-header .nav-cta {
    padding: 11px 24px;
    border-radius: 100px;
    background: var(--gold);
    color: #fff !important;
    transition: background 0.3s;
}

.site-header .nav-cta::after {
    display: none;
}

.site-header .nav-cta:hover {
    background: var(--gold-bright);
    color: var(--ink) !important;
}

.site-header.scrolled {
    background: rgba(250, 247, 241, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid rgba(182, 145, 45, 0.22);
    box-shadow: 0 10px 40px rgba(19, 21, 48, 0.08);
}

.site-header.scrolled .header-inner {
    height: 84px;
}

.site-header.scrolled .logo img {
    height: 72px;
}

.site-header.scrolled nav a {
    color: var(--ink);
}

.site-header.scrolled nav a:hover {
    color: var(--gold);
}

.site-header.scrolled nav a::after {
    background: var(--gold);
}

.site-header.scrolled .nav-cta {
    color: #fff !important;
}

.site-header.scrolled .nav-cta:hover {
    color: var(--ink) !important;
}

/* Solid header variant for pages without dark hero */
.site-header.solid:not(.scrolled) {
    background: var(--ivory);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid rgba(182, 145, 45, 0.15);
}

.site-header.solid:not(.scrolled) nav a {
    color: var(--ink);
}

.site-header.solid:not(.scrolled) nav a:hover {
    color: var(--gold);
}

.site-header.solid:not(.scrolled) nav a::after {
    background: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-header.scrolled .menu-toggle span,
.site-header.solid .menu-toggle span {
    background: var(--ink);
}

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.drawer.open {
    opacity: 1;
    visibility: visible;
}

.drawer a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ivory);
    padding: 10px;
    transition: color 0.3s;
}

.drawer a:hover {
    color: var(--gold-bright);
}

.drawer .drawer-close {
    position: absolute;
    top: 26px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

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

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero.hero-short,
.page-hero.hero-short {
    min-height: 100svh;
}

.hero video,
.hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 14, 38, 0.65) 0%, rgba(13, 14, 38, 0.48) 50%, rgba(13, 14, 38, 0.8) 100%);
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px clamp(20px, 4vw, 44px) 100px;
    width: 100%;
}

.hero h1 {
    color: #fff;
    max-width: 15ch;
    text-shadow: 0 2px 24px rgba(13, 14, 38, 0.45);
}

.hero .hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 52ch;
    margin-bottom: 40px;
    text-shadow: 0 1px 16px rgba(13, 14, 38, 0.4);
}

.hero .eyebrow {
    color: var(--gold-bright);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.scroll-cue::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 4px;
    background: var(--gold-bright);
    animation: cue 2.2s infinite var(--ease);
}

@keyframes cue {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(14px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* ---------- Stats ---------- */

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

/* Hero Stats Band Overlay */
.hero-stats-band {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    padding: 24px 0;
}

.hero-stats-band .stat .stat-number {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 500;
}

.hero-stats-band .stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }

    .hero .hero-content {
        padding-top: 140px;
        padding-bottom: 60px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-stats-band {
        position: relative;
        bottom: auto;
        left: auto;
        background: transparent;
        padding: 36px 0 48px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    color: var(--gold-bright);
    line-height: 1;
}

.stat .stat-number sup {
    font-size: 0.5em;
    color: var(--gold-bright);
}

.stat .stat-label {
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* ---------- Cards ---------- */

.card-grid {
    display: grid;
    gap: clamp(20px, 2.6vw, 32px);
}

.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.card .card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

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

.card:hover .card-media img {
    transform: scale(1.06);
}

/* Slideshow + video media (home pillars) */
.card .card-media .card-slideshow {
    position: absolute;
    inset: 0;
}

.card .card-media .card-slideshow img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease), transform 0.9s var(--ease);
}

.card .card-media .card-slideshow img.active {
    opacity: 1;
}

.card .card-media .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.card:hover .card-media .card-video,
.card:hover .card-media .card-slideshow img {
    transform: scale(1.06);
}

.card .card-media .media-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 21, 48, 0.72);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.card .card-media .media-badge i {
    color: var(--gold-bright);
    font-size: 0.82rem;
}

.card .card-body {
    padding: 26px 26px 30px;
}

.card .card-body h3 {
    margin-bottom: 8px;
}

.card .card-body p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 18px;
}

.card .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(19, 21, 48, 0.82);
    color: var(--gold-bright);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

/* Simple feature card (no image) */
.feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--gold);
}

.feature .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    color: var(--pine);
    font-size: 1.15rem;
    margin-bottom: 22px;
}

.feature h3 {
    font-size: 1.25rem;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.bg-ink .feature,
.bg-pine .feature {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-dark);
}

.bg-ink .feature h3,
.bg-pine .feature h3 {
    color: var(--ivory);
}

.bg-ink .feature .feature-icon,
.bg-pine .feature .feature-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-bright);
}

/* ---------- Horizontal scroller ---------- */

.scroller-wrap {
    position: relative;
}

.scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(270px, 24vw, 360px);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 6px 26px;
    scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
    display: none;
}

.scroller>* {
    scroll-snap-align: start;
}

.scroller-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.scroller-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.scroller-nav button:hover {
    background: var(--pine);
    border-color: var(--pine);
    color: #fff;
}

/* Destination tall card */
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    color: #fff;
    cursor: pointer;
}

.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 14, 38, 0.85) 0%, rgba(13, 14, 38, 0.05) 55%);
    transition: background 0.5s;
}

.dest-card .dest-info {
    position: relative;
    z-index: 2;
    padding: 26px;
}

.dest-card .dest-info h3 {
    color: #fff;
    margin-bottom: 6px;
}

.dest-card .dest-info p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.55s var(--ease), opacity 0.55s;
}

.dest-card:hover .dest-info p {
    max-height: 120px;
    opacity: 1;
}

/* ---------- Split editorial section ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
}

.split .split-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.split .split-media img,
.split .split-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split .split-media::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
}

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

/* ---------- Timeline ---------- */

.timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    padding: 0 0 48px 72px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--ivory);
    border: 2px solid var(--gold);
}

.timeline-item .timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.timeline-item h3 {
    margin: 4px 0 8px;
}

.timeline-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Steps ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
    gap: 28px;
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: 18px;
}

.step .step-num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    margin-bottom: 14px;
}

.step h3 {
    font-size: 1.18rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin: 0;
}

.bg-ink .step .step-num,
.bg-pine .step .step-num {
    -webkit-text-stroke: 1px var(--gold-bright);
}

.bg-ink .step h3,
.bg-pine .step h3 {
    color: var(--ivory);
}

.bg-ink .step p,
.bg-pine .step p {
    color: rgba(255, 255, 255, 0.68);
}

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

.quote-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.quote-card .quote-mark {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 0.6;
    color: var(--gold);
}

.quote-card blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.16rem;
    line-height: 1.55;
    color: var(--ink-soft);
    flex: 1;
}

.quote-card .quote-author {
    font-size: 0.92rem;
}

.quote-card .quote-author strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.quote-card .quote-author span {
    color: var(--text-muted);
    font-size: 0.84rem;
}


/* ---------- Testimonial spotlight ---------- */

.spotlight {
    max-width: 940px;
    margin: 0 auto;
}

.spotlight-panel {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(44px, 6vw, 76px) clamp(28px, 6vw, 88px) clamp(40px, 5vw, 60px);
    border-radius: 26px;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(212, 175, 78, 0.16) 0%, rgba(212, 175, 78, 0) 60%),
        linear-gradient(160deg, #1b1d3c 0%, #131530 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(19, 21, 48, 0.28);
}

.spotlight-panel::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.spotlight-mark {
    position: absolute;
    top: clamp(-6px, 1vw, 10px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(9rem, 16vw, 15rem);
    line-height: 1;
    color: rgba(212, 175, 78, 0.12);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.spotlight-tag {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding: 7px 16px;
    border: 1px solid rgba(212, 175, 78, 0.4);
    border-radius: 100px;
    margin-bottom: 22px;
}

.spotlight-stars {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--gold-bright);
    font-size: 0.85rem;
    margin-bottom: 22px;
}

.spotlight-quote {
    position: relative;
    z-index: 1;
    margin: 0 auto 32px;
    max-width: 30ch;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.7vw, 2.15rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ivory);
    min-height: 2.7em;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.spotlight-person {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: opacity 0.28s var(--ease);
}

.spotlight-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #1a1a2e;
    background: linear-gradient(150deg, var(--gold-bright), var(--gold));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.spotlight-meta {
    display: flex;
    flex-direction: column;
}

.spotlight-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.spotlight-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.spotlight-panel.is-fading .spotlight-quote {
    opacity: 0;
    transform: translateY(8px);
}

.spotlight-panel.is-fading .spotlight-person {
    opacity: 0;
}

.spotlight-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
}

.sp-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--pine);
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.35s var(--ease), color 0.35s var(--ease),
        background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sp-arrow:hover {
    color: #1a1a2e;
    background: linear-gradient(150deg, var(--gold-bright), var(--gold));
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(182, 145, 45, 0.35);
    transform: translateY(-2px);
}

.sp-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.sp-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
    background: rgba(19, 21, 48, 0.18);
    transition: width 0.4s var(--ease), background 0.4s var(--ease);
}

.sp-dot.active {
    width: 30px;
    background: var(--gold);
}

@media (max-width: 560px) {
    .spotlight-person {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sp-arrow {
        width: 46px;
        height: 46px;
    }
}


/* ---------- Culture image cards (Explore Sri Lanka) ---------- */
.culture-grid {
    align-items: stretch;
}

.culture-card {
    position: relative;
    min-height: 300px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    isolation: isolate;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.culture-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 1.1s var(--ease);
}

.culture-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(19, 21, 48, 0.15) 0%, rgba(19, 21, 48, 0.5) 45%, rgba(15, 16, 40, 0.92) 100%);
    transition: background 0.5s var(--ease);
}

.culture-card-inner {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 26px 24px 28px;
    color: #fff;
}

.culture-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 78, 0.92);
    color: #1a1a2e;
    font-size: 1.05rem;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.5s var(--ease);
}

.culture-card h3 {
    color: #fff;
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.culture-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: max-height 0.55s var(--ease), opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.culture-card:hover {
    border-color: rgba(212, 175, 78, 0.4);
}

.culture-card:hover .culture-card-bg {
    transform: scale(1.09);
}

.culture-card:hover::after {
    background: linear-gradient(180deg, rgba(19, 21, 48, 0.1) 0%, rgba(19, 21, 48, 0.55) 40%, rgba(15, 16, 40, 0.95) 100%);
}

.culture-card:hover .culture-icon {
    transform: translateY(-2px) rotate(-6deg);
}

.culture-card:hover p {
    max-height: 140px;
    opacity: 1;
    transform: none;
}

@media (max-width: 600px) {
    .culture-card p {
        max-height: 140px;
        opacity: 1;
        transform: none;
    }
}


/* ---------- Global Opportunities: full-bleed parallax video ---------- */
.opp-section {
    position: relative;
    overflow: hidden;
    height: clamp(560px, 96vh, 980px);
    background: #0d0e26;
}

.opp-video,
.parallax-video {
    position: absolute;
    left: 0;
    top: -9%;
    width: 100%;
    height: 118%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}

.opp-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(212, 175, 78, 0.14) 0%, rgba(19, 21, 48, 0) 55%),
        linear-gradient(180deg, rgba(19, 21, 48, 0.82) 0%, rgba(15, 16, 40, 0.9) 100%);
}

.opp-content {
    position: relative;
    z-index: 2;
}

.opp-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.opp-inner h2 {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom: 18px;
}

.opp-inner>p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 60ch;
    margin: 0 auto 32px;
}

.opp-inner .eyebrow {
    color: var(--gold-bright);
}

.opp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: inline-grid;
    gap: 14px;
    text-align: left;
}

.opp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.opp-list li i {
    color: var(--gold-bright);
    margin-top: 5px;
}

.opp-section .hero-actions {
    justify-content: center;
}

/* ---------- FAQ ---------- */

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 4px;
    font-family: var(--font-display);
    font-size: 1.22rem;
    color: var(--ink);
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-text);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.35s var(--ease);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--pine);
}

.faq-item .faq-body {
    padding: 0 4px 26px;
    color: var(--text-muted);
    max-width: 66ch;
}

/* ---------- CTA band ---------- */

.cta-band {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-band .cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-band .scrim {
    position: absolute;
    inset: 0;
    background: rgba(15, 16, 46, 0.78);
}

.cta-band .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(80px, 10vw, 140px) 24px;
}

.cta-band h2 {
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

/* ---------- Forms ---------- */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

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

.field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-text);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--pine);
    box-shadow: 0 0 0 3px rgba(43, 43, 114, 0.1);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-status {
    display: none;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 16px;
}

.form-status.ok {
    display: block;
    background: #e8f3ec;
    color: #16603f;
    border: 1px solid #bcdcc8;
}

.form-status.err {
    display: block;
    background: #faeceb;
    color: #90322c;
    border: 1px solid #eccfcd;
}

/* ---------- Modal ---------- */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(14, 15, 36, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--ivory);
    border-radius: 14px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: clamp(28px, 4vw, 48px);
    position: relative;
    transform: translateY(24px);
    transition: transform 0.4s var(--ease);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal .modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 1.2rem;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    z-index: 5;
}

.modal .modal-close:hover {
    background: var(--ink);
    color: #fff;
}

.modal h3 {
    padding-right: 48px;
}

/* ---------- Itinerary modal ---------- */

#itinerary-modal .modal {
    padding: 0;
    overflow: hidden;
}

#itinerary-modal .modal-body {
    max-height: 88vh;
    overflow-y: auto;
}

#itinerary-modal .modal-close {
    background: rgba(19, 21, 48, 0.55);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(6px);
}

#itinerary-modal .modal-close:hover {
    background: var(--ink);
    color: #fff;
}

.itin-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.itin-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 21, 48, 0.92) 0%, rgba(19, 21, 48, 0.35) 55%, rgba(19, 21, 48, 0.25) 100%);
}

.itin-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(24px, 4vw, 38px);
}

.itin-hero-content .eyebrow {
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.itin-hero-content .eyebrow::before {
    background: var(--gold-bright);
}

.itin-hero-content h3 {
    color: #fff;
    margin: 0;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.itin-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.itin-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}

.itin-chip i {
    color: var(--gold-bright);
}

.itin-chip-price {
    background: var(--gold);
    border-color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.itin-body {
    padding: clamp(28px, 4vw, 44px);
}

.itin-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 22px;
}

.itin-highlights {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--sand);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 34px;
}

.itin-highlights i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
}

.itin-highlights strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pine);
    margin-bottom: 4px;
}

.itin-highlights div {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.55;
}

.itin-days {
    position: relative;
}

.itin-day {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
}

.itin-day-rail {
    position: relative;
    display: flex;
    justify-content: center;
}

.itin-day-rail::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.itin-day:first-child .itin-day-rail::before {
    top: 22px;
}

.itin-day:last-child .itin-day-rail::before {
    bottom: calc(100% - 44px);
}

.itin-day-num {
    position: relative;
    z-index: 1;
    margin-top: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    border: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--pine);
}

.itin-day-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    align-items: center;
    transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.itin-day-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.itin-day-card.no-img {
    grid-template-columns: 1fr;
}

.itin-day-card .itin-img {
    width: 132px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.itin-day-text .itin-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.itin-day-text h4 {
    font-size: 1.1rem;
    margin: 4px 0 6px;
}

.itin-day-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* Inclusions / exclusions */
.itin-incexc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 8px;
}

.itin-inc {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    background: var(--white);
}

.itin-inc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.itin-inc.is-inc .itin-inc-head {
    color: #1f7a4d;
}

.itin-inc.is-exc .itin-inc-head {
    color: #9a3b34;
}

.itin-inc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.itin-inc li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.itin-inc li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.72rem;
}

.itin-inc.is-inc li::before {
    content: '\f00c';
    color: #1f7a4d;
}

.itin-inc.is-exc li::before {
    content: '\f00d';
    color: #9a3b34;
}

.itin-cta {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 560px) {
    .itin-incexc {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .itin-day {
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .itin-day-num {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .itin-day:last-child .itin-day-rail::before {
        bottom: calc(100% - 34px);
    }

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

    .itin-day-card .itin-img {
        width: 100%;
        height: 160px;
    }
}

/* ---------- Tour cards ---------- */

.tour-card {
    display: flex;
    flex-direction: column;
}

.tour-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tour-meta .tour-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--pine);
}

.tour-meta .tour-days {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--sand);
    padding: 5px 12px;
    border-radius: 100px;
}

.tour-card .card-body .tour-desc {
    flex: 1;
    margin-bottom: 20px;
}

.btn-itinerary,
.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 22px;
    font-family: var(--font-text);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pine);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-itinerary i,
.btn-apply i {
    transition: transform 0.35s var(--ease);
    font-size: 0.8rem;
}

.btn-itinerary:hover,
.btn-apply:hover {
    background: var(--pine);
    border-color: var(--pine);
    color: #fff;
}

.btn-itinerary:hover i,
.btn-apply:hover i {
    transform: translateX(4px);
}

/* ---------- Job cards ---------- */

.job-card {
    display: flex;
    flex-direction: column;
}

.job-card .job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.job-card .feature-icon {
    margin-bottom: 0;
}

.job-card .job-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pine);
    background: var(--sand);
    padding: 6px 13px;
    border-radius: 100px;
}

.job-card .job-country i {
    color: var(--gold);
    font-size: 0.72rem;
}

.job-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.job-card p {
    flex: 1;
    margin-bottom: 22px;
}

/* ---------- Success story gallery ---------- */

.story-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.story-item {
    position: relative;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.story-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 21, 48, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.story-item:hover img {
    transform: scale(1.06);
}

.story-item:hover::after {
    opacity: 1;
}

.story-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    z-index: 2;
}

.story-item:hover .story-zoom {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .story-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .story-gallery {
        grid-template-columns: 1fr;
    }
}

/* ---------- Lightbox ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(10, 11, 30, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(92vw, 900px);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.94);
    transition: transform 0.4s var(--ease);
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ---------- Filter pills ---------- */

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-pill {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.filter-pill:hover {
    border-color: var(--pine);
    color: var(--pine);
}

.filter-pill.active {
    background: var(--pine);
    border-color: var(--pine);
    color: #fff;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(32px, 4vw, 64px);
    padding: clamp(64px, 8vw, 96px) 0 56px;
}

@media (max-width: 900px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr;
    }
}

.site-footer .footer-brand img {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.site-footer .footer-brand p {
    font-size: 0.95rem;
    max-width: 34ch;
}

.site-footer h4 {
    color: var(--gold-bright);
    font-family: var(--font-text);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: var(--gold-bright);
}

.site-footer .footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.site-footer .footer-contact i {
    color: var(--gold-bright);
    margin-top: 5px;
}

.site-footer .footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding: 26px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.license-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.66);
    margin-top: 22px;
}

.license-chip i {
    color: var(--gold-bright);
}

/* ---------- WhatsApp float ---------- */

.wa-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 150;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s var(--ease);
}

.wa-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ---------- Reveal animations ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: none;
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.14s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.23s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.32s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.41s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.5s;
}

.reveal-stagger.visible>*:nth-child(7) {
    transition-delay: 0.59s;
}

.reveal-stagger.visible>*:nth-child(8) {
    transition-delay: 0.68s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-cue::after {
        animation: none;
    }
}

/* ---------- Video cards (education) ---------- */

.video-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 12;
    object-fit: cover;
    background: #000;
}

.video-card .video-caption {
    padding: 18px 22px;
}

.video-card .video-caption strong {
    display: block;
    color: var(--ink);
}

.video-card .video-caption span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Blog ---------- */

.article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.article .article-img {
    width: 100%;
    height: clamp(240px, 34vw, 420px);
    object-fit: cover;
}

.article .article-body {
    padding: clamp(28px, 4vw, 52px);
}

.article .article-date {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.article h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-top: 10px;
}

.article ol {
    padding-left: 22px;
    color: var(--text);
}

.article ol li {
    margin-bottom: 10px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

@media (max-width: 960px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

.sidebar-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 28px;
}

.sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
}

.sidebar-box li:last-child {
    border-bottom: none;
}

.sidebar-box li span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.page-hero video,
.page-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 14, 38, 0.6), rgba(13, 14, 38, 0.42) 50%, rgba(13, 14, 38, 0.85));
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 160px clamp(20px, 4vw, 44px) 72px;
}

.page-hero h1 {
    color: #fff;
    max-width: 18ch;
    text-shadow: 0 2px 24px rgba(13, 14, 38, 0.45);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 56ch;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 1px 16px rgba(13, 14, 38, 0.4);
}

.page-hero .eyebrow {
    color: var(--gold-bright);
}

/* ---------- Map ---------- */

.map-frame {
    border: 0;
    width: 100%;
    height: 440px;
    border-radius: var(--radius);
    filter: grayscale(0.35) sepia(0.08);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {

    .site-header nav,
    .site-header .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .hero .hero-content {
        padding-top: 120px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Majestic background section with gold ambient radial glow */
.bg-majestic {
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 78, 0.14) 0%, rgba(250, 247, 241, 0) 70%), var(--ivory);
    position: relative;
    overflow: hidden;
}

.bg-majestic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 100px;
}

.bg-majestic {
    background-image: linear-gradient(to bottom, rgba(14, 15, 36, 0.95), rgba(14, 15, 36, 0.88)), url('../public/doors_section_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.bg-majestic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 78, 0.08) 0%, rgba(212, 175, 78, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.bg-majestic .section-head h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.bg-majestic .section-head p.lead {
    font-size: 1.15rem;
    max-width: 60ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

/* ---------- Pillars: Editorial Alternating Rows ---------- */
.pillars-editorial {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 7vw, 104px);
    margin-top: 20px;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(36px, 6vw, 96px);
}

.pillar-row:nth-child(even) .pillar-visual {
    order: 2;
}

/* ---- Visual side ---- */
.pillar-visual {
    position: relative;
    padding: 26px;
}

/* offset gold frame behind the media */
.pillar-visual::before {
    content: '';
    position: absolute;
    inset: 0 46px 46px 0;
    border: 1px solid rgba(212, 175, 78, 0.45);
    border-radius: 150px 10px 10px 10px;
    transition: inset 0.6s var(--ease), border-color 0.6s var(--ease);
    pointer-events: none;
}

.pillar-row:nth-child(even) .pillar-visual::before {
    inset: 0 0 46px 46px;
    border-radius: 10px 150px 10px 10px;
}

.pillar-row:hover .pillar-visual::before {
    inset: 20px 26px 26px 20px;
    border-color: var(--gold-bright);
}

.pillar-row:nth-child(even):hover .pillar-visual::before {
    inset: 20px 20px 26px 26px;
}

.pillar-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 150px 10px 10px 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.pillar-row:nth-child(even) .pillar-media {
    border-radius: 10px 150px 10px 10px;
}

.pillar-media img,
.pillar-media .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.pillar-media .card-slideshow {
    position: absolute;
    inset: 0;
}

.pillar-media .card-slideshow img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1.1s var(--ease);
}

.pillar-media .card-slideshow img.active {
    opacity: 1;
}

.pillar-row:hover .pillar-media img,
.pillar-row:hover .pillar-media .card-video {
    transform: scale(1.05);
}

.pillar-media .media-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 21, 48, 0.74);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-media .media-badge i {
    color: var(--gold-bright);
    font-size: 0.8rem;
}

/* giant index number bleeding off the media corner */
.pillar-index {
    position: absolute;
    top: -26px;
    right: 8px;
    z-index: 3;
    font-family: var(--font-display);
    font-size: clamp(4.4rem, 8vw, 7rem);
    line-height: 0.8;
    font-weight: 600;
    color: rgba(212, 175, 78, 0.18);
    -webkit-text-stroke: 2px var(--gold-bright);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    transition: color 0.5s var(--ease), -webkit-text-stroke-color 0.5s var(--ease);
    pointer-events: none;
}

.pillar-row:nth-child(even) .pillar-index {
    right: auto;
    left: 8px;
}

.pillar-row:hover .pillar-index {
    color: rgba(212, 175, 78, 0.42);
}

/* ---- Copy side ---- */
.pillar-copy {
    max-width: 46ch;
}

.pillar-row:nth-child(even) .pillar-copy {
    order: 1;
}

.pillar-copy .door-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 18px;
}

.pillar-copy .door-kicker i {
    font-size: 0.9rem;
}

.pillar-copy h3 {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--ivory);
    transition: color 0.3s var(--ease);
}

.pillar-row:hover h3 {
    color: var(--gold-bright);
}

.pillar-copy p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 28px;
}

.pillar-copy .door-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(212, 175, 78, 0.4);
    transition: color 0.3s var(--ease), gap 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pillar-copy .door-link i {
    transition: transform 0.3s var(--ease);
}

.pillar-row:hover .door-link {
    color: #fff;
    gap: 16px;
    border-color: var(--gold-bright);
}

.pillar-row:hover .door-link i {
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .pillar-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pillar-row:nth-child(even) .pillar-visual {
        order: 0;
    }

    .pillar-row:nth-child(even) .pillar-copy {
        order: 0;
    }

    .pillar-visual {
        padding: 18px;
    }

    .pillar-visual::before,
    .pillar-row:nth-child(even) .pillar-visual::before {
        inset: 0 22px 22px 0;
    }

    .pillar-copy {
        max-width: none;
        text-align: center;
    }

    .pillar-copy .door-kicker {
        justify-content: center;
    }
}

/* ---------- Step by Step Recruitment Section Background ---------- */
.bg-recruitment-steps {
    background-image: linear-gradient(to right, rgba(19, 21, 48, 0.94), rgba(19, 21, 48, 0.88)), url('../public/recruitment_steps_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bg-recruitment-steps h2,
.bg-recruitment-steps h3 {
    color: var(--white);
}

.bg-recruitment-steps p {
    color: rgba(255, 255, 255, 0.76);
}

.bg-recruitment-steps .step .step-num {
    -webkit-text-stroke: 1px var(--gold-bright);
    color: transparent;
}

.bg-recruitment-steps .step h3 {
    color: var(--ivory);
}

.bg-recruitment-steps .step p {
    color: rgba(255, 255, 255, 0.68);
}

/* ---------- Global Hero Parallax Scrolling ---------- */
.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
    /* Clips the fixed background child within the section */
}

.hero video,
.hero .hero-img,
.page-hero video,
.page-hero>img {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.hero .scrim,
.page-hero .scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .hero-content,
.page-hero .hero-content,
.hero .scroll-cue,
.page-hero .scroll-cue {
    position: relative;
    z-index: 2;
}

/* ---------- Story Grid & Timeline Redesign ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.story-intro {
    position: sticky;
    top: 120px;
}

.story-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-top: 12px;
    margin-bottom: 24px;
}

.story-intro .lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.story-badge .number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.story-badge .label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--ink);
}

/* Custom Vertical Timeline */
.timeline-wrap {
    position: relative;
    padding-left: 20px;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--line) 100%);
    border-radius: 2px;
}

.timeline-wrap .timeline-item {
    position: relative;
    padding-left: 44px;
    padding-bottom: 48px;
}

.timeline-wrap .timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-wrap .timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    /* center dot on the line (which is at left: 0 of container) */
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px var(--ivory);
    transition: all 0.35s var(--ease);
    z-index: 2;
}

.timeline-wrap .timeline-item:hover::before {
    background: var(--gold-bright);
    border-color: var(--pine);
    transform: scale(1.2);
}

.timeline-wrap .timeline-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.3s var(--ease);
}

.timeline-wrap .timeline-item:hover .timeline-year {
    color: var(--gold-bright);
}

.timeline-wrap h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
}

.timeline-wrap p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Story Section Background ---------- */
.bg-story {
    background-image: linear-gradient(rgba(250, 247, 241, 0.94), rgba(250, 247, 241, 0.94)), url('../public/story_section_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ---------- Vision & Mission Section ---------- */
.bg-vision-mission {
    background: radial-gradient(circle at 50% 120%, rgba(212, 175, 78, 0.12) 0%, rgba(30, 30, 85, 0) 65%), linear-gradient(135deg, rgba(30, 30, 85, 0.9) 0%, rgba(15, 16, 43, 0.95) 100%), url('../public/vision_mission_pattern.png');
    background-size: auto, auto, 500px;
    background-repeat: no-repeat, no-repeat, repeat;
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vw, 160px) 0;
    clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
    margin: -4vw 0;
    z-index: 2;
}

.bg-vision-mission .section-head h2 {
    color: var(--white);
}

.vision-mission-grid {
    gap: clamp(24px, 4vw, 48px);
}

.vision-mission-grid .feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 54px) clamp(28px, 4vw, 44px);
    box-shadow: 0 20px 50px rgba(13, 14, 38, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease);
}

.vision-mission-grid .feature:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 175, 78, 0.5);
    box-shadow: 0 30px 60px rgba(13, 14, 38, 0.35), 0 0 30px rgba(212, 175, 78, 0.18);
}

.vision-mission-grid .feature .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(212, 175, 78, 0.12);
    border: 1.5px solid rgba(212, 175, 78, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-bright);
    margin-bottom: 26px;
    transition: all 0.5s var(--ease);
}

.vision-mission-grid .feature:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold-bright);
    box-shadow: 0 8px 20px rgba(212, 175, 78, 0.3);
}

.vision-mission-grid .feature h3 {
    font-size: 1.65rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    transition: color 0.3s var(--ease);
}

.vision-mission-grid .feature:hover h3 {
    color: var(--gold-bright);
}

.vision-mission-grid .feature p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* ---------- Premium Journey Steps (Timeline) ---------- */
.bg-journey-premium {
    background: radial-gradient(circle at 50% 120%, rgba(212, 175, 78, 0.15) 0%, rgba(19, 21, 48, 0) 65%), linear-gradient(135deg, rgba(19, 21, 48, 0.92) 0%, rgba(10, 11, 26, 0.96) 100%), url('../public/journey_steps_bg.png');
    background-size: auto, auto, cover;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vw, 160px) 0;
    clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
    margin: -4vw 0;
    z-index: 2;
}

.bg-journey-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 78, 0.12) 0%, rgba(212, 175, 78, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.bg-journey-premium .section-head h2 {
    color: var(--white);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .journey-timeline {
        grid-template-columns: repeat(5, 1fr);
    }

    .journey-timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(to right, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, rgba(212, 175, 55, 0.05) 100%);
        z-index: 1;
    }
}

.journey-step-card {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 32px 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.journey-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 20px 40px rgba(16, 94, 66, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.step-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #071711;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.journey-step-card:hover .step-node {
    background: var(--gold);
    border-color: var(--gold-bright);
    color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.journey-step-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.journey-step-card:hover .journey-step-icon {
    color: var(--gold-bright);
    transform: scale(1.15);
}

.journey-step-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--ivory);
    margin-bottom: 12px;
    transition: color 0.4s var(--ease);
}

.journey-step-card:hover h3 {
    color: var(--gold-bright);
}

.journey-step-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s var(--ease);
}

.journey-step-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Premium Travel Solutions Split Section ---------- */
.bg-sand-premium {
    background-color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.travel-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: stretch;
}

@media (max-width: 900px) {
    .travel-split {
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: start;
    }
}

.travel-split-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-lift);
}

@media (max-width: 900px) {
    .travel-split-media {
        aspect-ratio: 4 / 3;
        height: auto;
    }
}

.travel-split-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 21, 48, 0.7) 0%, rgba(19, 21, 48, 0.1) 60%);
    z-index: 1;
}

.travel-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.travel-split-media:hover img {
    transform: scale(1.04);
}

.media-overlay-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.media-overlay-card h4 {
    font-size: 1.35rem;
    font-family: var(--font-display);
    color: #fff;
    margin: 8px 0 0;
}

.media-overlay-card .gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.travel-solutions-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
}

.travel-solution-item {
    display: flex;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.travel-solution-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lift);
}

.solution-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sand);
    color: var(--pine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
    border: 1px solid rgba(182, 145, 45, 0.15);
}

.travel-solution-item:hover .solution-icon-box {
    background: var(--pine);
    color: #fff;
    transform: scale(1.08) rotate(4deg);
}

.solution-text h3 {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.solution-text p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.74rem;
}

/* ---------- Corporate Travel Solutions Card Grid ---------- */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.corp-card {
    background: var(--white);
    border-top: 3px solid var(--gold);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(19, 21, 48, 0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-top-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.corp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-top-color: var(--gold-bright);
}

.corp-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 24px;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
    border: 1px solid rgba(182, 145, 45, 0.15);
}

.corp-card:hover .corp-icon {
    background: var(--pine);
    color: var(--white);
    border-color: var(--pine);
    transform: scale(1.08) rotate(4deg);
}

.corp-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.corp-card:hover h3 {
    color: var(--pine);
}

.corp-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Plane Custom Scrollbar ---------- */
/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
}

/* Vertical Thumb: Plane pointing UP */
::-webkit-scrollbar-thumb:vertical {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23b6912d'><path d='M448 336v-40L288 192V72a40 40 0 0 0-80 0v120L48 296v40l160-48v96l-48 36v32l88-24 88 24v-32l-48-36v-96z'/></svg>");
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23d4af4e'><path d='M448 336v-40L288 192V72a40 40 0 0 0-80 0v120L48 296v40l160-48v96l-48 36v32l88-24 88 24v-32l-48-36v-96z'/></svg>");
}

/* Horizontal Thumb: Plane pointing RIGHT */
::-webkit-scrollbar-thumb:horizontal {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23b6912d'><g transform='rotate(90 256 256)'><path d='M448 336v-40L288 192V72a40 40 0 0 0-80 0v120L48 296v40l160-48v96l-48 36v32l88-24 88 24v-32l-48-36v-96z'/></g></svg>");
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23d4af4e'><g transform='rotate(90 256 256)'><path d='M448 336v-40L288 192V72a40 40 0 0 0-80 0v120L48 296v40l160-48v96l-48 36v32l88-24 88 24v-32l-48-36v-96z'/></g></svg>");
}

/* Firefox Fallback */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(182, 145, 45, 0.25) transparent;
}

/* ---------- Premium Page Preloader / Splash Screen ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #ffffff 0%, var(--ivory) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1), transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
    opacity: 1;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 280px;
    width: 100%;
}

.preloader-logo {
    height: 150px;
    width: auto;
    opacity: 0;
    filter: drop-shadow(0 12px 30px rgba(182, 145, 45, 0.15));
    animation: preloaderEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, preloaderFloat 3s ease-in-out infinite 1.2s;
}

.preloader-bar-wrap {
    width: 140px;
    height: 3px;
    background: rgba(182, 145, 45, 0.12);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--gold);
    border-radius: 100px;
    box-shadow: 0 0 8px rgba(182, 145, 45, 0.4);
    animation: preloaderProgress 1.4s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

@keyframes preloaderEntrance {
    0% {
        transform: translateY(24px) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes preloaderFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes preloaderProgress {
    0% {
        left: -40%;
        width: 30%;
    }

    50% {
        width: 60%;
    }

    100% {
        left: 110%;
        width: 30%;
    }
}
/* ---------- Tours hero: image stage that blends into next section ---------- */
.hero-video { position: relative; }

.hero-video-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video .scrim {
    background: linear-gradient(180deg, rgba(13, 14, 38, 0.55) 0%, rgba(13, 14, 38, 0.4) 42%, rgba(13, 14, 38, 0.82) 100%);
    z-index: 1;
}

/* Bottom blend that dissolves the hero into the ivory section below */
.hero-blend {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(120px, 20vh, 240px);
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(250, 247, 241, 0) 0%, rgba(250, 247, 241, 0.35) 55%, var(--ivory) 100%);
}

.page-hero.hero-video .hero-content { z-index: 5; }
.page-hero.hero-video .scroll-cue { z-index: 6; }

/* Staggered entrance animation for hero copy */
.hero-anim {
    opacity: 0;
    transform: translateY(26px);
    animation: heroRise 1s var(--ease) forwards;
}
.hero-anim:nth-child(1) { animation-delay: 0.15s; }
.hero-anim:nth-child(2) { animation-delay: 0.32s; }
.hero-anim:nth-child(3) { animation-delay: 0.49s; }
.hero-anim:nth-child(4) { animation-delay: 0.66s; }

@keyframes heroRise {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim { opacity: 1; transform: none; animation: none; }
}

/* ---------- Hero copy centering (site-wide) ---------- */
.hero .hero-content,
.page-hero .hero-content {
    text-align: center;
}

.hero h1,
.page-hero h1,
.hero .hero-sub,
.page-hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    justify-content: center;
}

.hero .hero-content .eyebrow,
.page-hero .hero-content .eyebrow {
    justify-content: center;
}

/* ---------- Cinematic video band overlays (home) ---------- */
.opp-video {
    filter: saturate(1.08) contrast(1.04) brightness(0.96);
}

.opp-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(115% 90% at 50% 50%, rgba(13, 14, 38, 0) 52%, rgba(13, 14, 38, 0.55) 100%);
}

.opp-blend {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.opp-blend-top {
    top: -1px;
    height: clamp(90px, 24vh, 220px);
    background: linear-gradient(to bottom, rgb(13, 14, 38) 0%, rgba(13, 14, 38, 0.55) 45%, rgba(13, 14, 38, 0) 100%);
}

.opp-blend-bottom {
    bottom: -1px;
    height: clamp(110px, 28vh, 260px);
    background: linear-gradient(to top, rgb(14, 15, 36) 0%, rgba(14, 15, 36, 0.6) 45%, rgba(14, 15, 36, 0) 100%);
}

/* Delicate gold ornament marking the passage into the next chapter */
.opp-ornament {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%) rotate(45deg);
    z-index: 3;
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--gold-bright);
    box-shadow: 0 0 18px rgba(212, 175, 78, 0.5);
    pointer-events: none;
}

.opp-ornament::before,
.opp-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 54px;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 78, 0), rgba(212, 175, 78, 0.7));
}

.opp-ornament::before { right: 16px; transform: rotate(-45deg) translateY(-50%); transform-origin: right center; }
.opp-ornament::after { left: 16px; transform: rotate(-45deg) translateY(-50%); transform-origin: left center; background: linear-gradient(to left, rgba(212, 175, 78, 0), rgba(212, 175, 78, 0.7)); }

/* ---------- Mobile hardening ---------- */

/* iOS Safari does not support background-attachment: fixed — it renders
   zoomed/broken. Fall back to scroll on touch and small screens. */
@media (max-width: 1024px), (hover: none) {
    .bg-majestic,
    .bg-about-teaser,
    .bg-recruitment-steps,
    [class*="bg-"] {
        background-attachment: scroll !important;
    }
}

/* Inputs below 16px make iOS auto-zoom the page on focus */
@media (max-width: 640px) {
    .field input,
    .field select,
    .field textarea {
        font-size: 16px;
    }

    /* trim the oversized logo and header on phones */
    .site-header .header-inner { height: 76px; }
    .site-header .logo img { height: 60px; }
    .site-header.scrolled .header-inner { height: 66px; }
    .site-header.scrolled .logo img { height: 50px; }

    /* comfortable edge spacing for modals on small screens */
    .modal-overlay { padding: 14px; }

    /* WhatsApp float slightly smaller so it covers less content */
    .wa-float { width: 52px; height: 52px; font-size: 1.5rem; right: 18px; bottom: 18px; }
}

/* Mobile: size the cinematic band to the video's 16:9 frame so the
   footage is never cropped to a narrow center sliver */
@media (max-width: 768px) {
    .opp-section {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 230px;
    }

    .opp-video,
    .parallax-video {
        top: 0;
        height: 100%;
        transform: none !important;
    }

    .opp-blend-top { height: 56px; }
    .opp-blend-bottom { height: 64px; }

    .opp-ornament {
        bottom: 14px;
        width: 8px;
        height: 8px;
    }
    .opp-ornament::before, .opp-ornament::after { width: 34px; }
}
