/* =========================================================
   The Moroccans of the World Organization — Premium Theme
   Brand: #eb1135 (red) · #1c1e36 (navy)
   ========================================================= */

:root {
    --brand-red: #eb1135;
    --brand-red-dark: #c00d2a;
    --brand-red-soft: #fde7eb;
    --brand-navy: #1c1e36;
    --brand-navy-light: #2a2d4d;
    --brand-navy-soft: #f3f4f9;

    --text: #1c1e36;
    --text-muted: #5a607a;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: rgba(255, 255, 255, 0.72);

    --bg: #ffffff;
    --bg-alt: #f7f8fb;
    --border: #e6e8ef;
    --border-strong: #d4d8e3;

    --shadow-sm: 0 1px 2px rgba(28, 30, 54, 0.06);
    --shadow-md: 0 8px 24px -8px rgba(28, 30, 54, 0.18);
    --shadow-lg: 0 24px 60px -20px rgba(28, 30, 54, 0.35);
    --shadow-xl: 0 32px 80px -24px rgba(28, 30, 54, 0.4);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --container: 1240px;
    --container-narrow: 880px;
    --nav-h: 84px;
    --nav-h-scrolled: 68px;

    --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-red); text-decoration: none; transition: color 0.22s var(--ease); }
a:hover { color: var(--brand-red-dark); }
h1, h2, h3, h4, h5 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--brand-navy);
    margin: 0 0 0.5em;
    font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.2rem; letter-spacing: -0.02em; }
p  { margin: 0 0 1em; color: var(--text-muted); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand-red); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--brand-red); border-radius: 3px; }

/* ─── Containers / utilities ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--brand-navy); color: var(--text-on-dark); position: relative; overflow: hidden; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-on-dark); }
.section-dark p { color: var(--text-on-dark-muted); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.text-center { text-align: center; }

/* Section label (eyebrow with bar) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--brand-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--brand-red);
}
.section-label.center {
    justify-content: center;
}
.section-label.on-dark { color: rgba(235, 17, 53, 0.9); }

/* Display heading variants */
.display-1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--brand-navy);
}
.display-1.on-dark { color: #fff; }
.display-1 .accent { color: var(--brand-red); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.3s var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--brand-red); color: #fff; box-shadow: 0 10px 26px -10px rgba(235, 17, 53, 0.55); }
.btn-primary:hover { background: var(--brand-red); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(235, 17, 53, 0.7); }
.btn-outline { background: transparent; color: var(--brand-navy); border-color: var(--brand-navy); }
.btn-outline:hover { background: var(--brand-navy); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: #fff; transform: translateY(-2px); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--brand-red);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 0;
    transition: gap 0.22s var(--ease);
}
.btn-ghost:hover { color: var(--brand-red-dark); gap: 14px; }

/* ─── Header / Navigation ─── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    background: transparent;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(28, 30, 54, 0.92);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    padding: 12px 0;
    box-shadow: 0 8px 24px -16px rgba(0,0,0,0.4);
}

/* Light-nav variant — for pages without dark hero (default header text is dark) */
.site-header.nav-light { background: rgba(255, 255, 255, 0.96); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--border); padding: 14px 0; }
.site-header.nav-light .brand-name { color: var(--brand-navy); }
.site-header.nav-light .nav-links a { color: var(--brand-navy); }
.site-header.nav-light .nav-toggle { color: var(--brand-navy); border-color: var(--border-strong); }
.site-header.nav-light.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 1px 0 var(--border); padding: 10px 0; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    transition: color 0.22s var(--ease);
}
.brand:hover { color: #fff; }
.brand img {
    height: 48px; width: 48px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.4s var(--ease-out);
}
.brand:hover img { transform: rotate(-8deg); }
.brand-name { display: flex; flex-direction: column; }
.brand-name small {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
    display: inline-block;
    padding: 10px 16px;
    color: rgba(255,255,255,0.85);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color 0.22s var(--ease);
    position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px; background: var(--brand-red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 12px 22px; font-size: 12px; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 9px;
    color: #fff;
    transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        inset: 64px 0 auto 0;
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        background: var(--brand-navy);
        padding: 24px 20px 28px;
        box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
        max-height: calc(100dvh - 80px);
        overflow-y: auto;
    }
    .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
    .nav-links a { padding: 14px 18px; width: 100%; color: #fff; font-size: 15px; }
    .nav-links a::after { display: none; }
    .nav-links a.active { color: var(--brand-red); }
    .nav-links .nav-cta { margin: 12px 0 0; width: 100%; }
    .nav-links .nav-cta .btn { width: 100%; padding: 16px 22px; }
    .nav-toggle { display: inline-flex; }
    .site-header.nav-light .nav-links a { color: #fff; }
    .site-header.nav-light .nav-toggle { color: var(--brand-navy); border-color: var(--border-strong); }
}

/* ─── Progress bar ─── */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0;
    background: var(--brand-red);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ─── Hero (video) ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--brand-navy);
    overflow: hidden;
    isolation: isolate;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -3;
}
.hero-overlay {
    position: absolute; inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(235, 17, 53, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, rgba(28, 30, 54, 0.88) 0%, rgba(28, 30, 54, 0.72) 55%, rgba(28, 30, 54, 0.85) 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}
.hero-shape-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(235,17,53,0.25) 0%, transparent 70%); top: -160px; right: -80px; animation: drift 14s ease-in-out infinite; }
.hero-shape-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(235,17,53,0.16) 0%, transparent 70%); bottom: -100px; left: 8%; animation: drift 18s ease-in-out infinite reverse; }
@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(40px,-25px) scale(1.06); }
    66%      { transform: translate(-25px,18px) scale(0.96); }
}

.hero-inner {
    width: 100%;
    padding: 140px 0 100px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 130px 0 80px; }
}

.hero-headline {
    margin: 0 0 24px;
    color: #fff;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
    display: inline-block;
    transform: translateY(105%);
    will-change: transform;
}
.hero-headline.in .line span {
    animation: lineUp 1s var(--ease-out) both;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.30s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.45s; }
@keyframes lineUp {
    from { transform: translateY(105%); }
    to   { transform: translateY(0); }
}

.hero p.lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.7s both;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.85s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero floating card */
.hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 24px;
    padding: 28px 30px;
    color: #fff;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.6s both;
}
.hero-card-head {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-head .dot {
    width: 10px; height: 10px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(52,211,153,0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,0.2); }
    50%       { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
}
.hero-card-head .title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}
.hero-card-head .sub { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hero-card li { display: flex; align-items: center; gap: 14px; }
.hero-card li .num {
    flex: 0 0 36px; height: 36px;
    border-radius: 10px;
    background: rgba(235,17,53,0.18);
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 14px;
}
.hero-card li .city {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 14px; color: #fff;
    display: block; line-height: 1.2;
}
.hero-card li .country { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-badge {
    position: absolute;
    background: #fff;
    color: var(--brand-navy);
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4);
    font-family: 'Bricolage Grotesque', sans-serif;
}
.hero-badge .num {
    font-size: 22px; font-weight: 800; color: var(--brand-red); line-height: 1; letter-spacing: -0.02em;
}
.hero-badge .label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.hero-badge-1 { top: -18px; left: -18px; animation: float 6s ease-in-out infinite; }
.hero-badge-2 { bottom: -22px; right: -16px; background: var(--brand-red); color: #fff; animation: float 8s ease-in-out infinite 1.5s; }
.hero-badge-2 .num { color: #fff; }
.hero-badge-2 .label { color: rgba(255,255,255,0.8); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.hero-card-wrap { position: relative; max-width: 380px; margin-left: auto; }
@media (max-width: 980px) { .hero-card-wrap { margin: 0 auto; } }

/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.6);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.3s both;
}
.scroll-cue::after {
    content: '';
    width: 1px; height: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50%       { transform: scaleY(0.3); transform-origin: bottom; }
}

/* Compact hero for subpages */
.page-header {
    position: relative;
    background: var(--brand-navy);
    color: #fff;
    padding: calc(var(--nav-h) + 60px) 0 90px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0; z-index: -2;
    background: radial-gradient(ellipse at center top, rgba(235,17,53,0.28), transparent 60%);
}
.page-header::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px; color: rgba(255,255,255,0.7);
    letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
    margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ─── Marquee ─── */
.marquee {
    background: var(--brand-red);
    padding: 18px 0;
    overflow: hidden;
    color: #fff;
    border-block: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.marquee-sep {
    display: inline-block;
    width: 24px; height: 24px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.7);
}
.marquee-sep svg { width: 100%; height: 100%; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── About / Mission split ─── */
.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 56px; } }

.image-stack {
    position: relative;
    aspect-ratio: 4 / 5;
}
.image-stack .img-main {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.image-stack .img-mini {
    position: absolute;
    bottom: -32px; right: -32px;
    width: 45%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
}
.image-stack::after {
    content: '';
    position: absolute;
    top: -22px; left: -22px;
    width: 110px; height: 110px;
    border: 3px solid var(--brand-red);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.image-stack .floating-tag {
    position: absolute;
    top: 24px; left: -22px;
    background: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--brand-navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: float 7s ease-in-out infinite;
}
.image-stack .floating-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); animation: pulse 2s infinite; }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text); font-weight: 500; }
.check-list .ico {
    flex: 0 0 22px; width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(235,17,53,0.12);
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
}
.check-list .ico svg { width: 12px; height: 12px; stroke-width: 3; }
@media (max-width: 540px) { .check-list { grid-template-columns: 1fr; } }

/* ─── Principles ─── */
.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.principle-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.principle-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s var(--ease-out);
}
.principle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.principle-card:hover::before { transform: scaleX(1); }
.principle-card .num {
    position: absolute;
    top: 16px; right: 22px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: rgba(235,17,53,0.08);
    line-height: 1;
}
.principle-card .icon-circle {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.principle-card:hover .icon-circle { transform: scale(1.08) rotate(-4deg); }
.principle-card .icon-circle svg { width: 26px; height: 26px; }
.principle-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.principle-card p { margin: 0; font-size: 0.95rem; }

/* ─── Stats ─── */
.section-dark .stats-shape {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(235,17,53,0.2) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    z-index: 0;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.6rem, 5.4vw, 4rem);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.stat .stat-num .plus { color: var(--brand-red); }
.stat .stat-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* ─── Destinations ─── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}
.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    background: var(--brand-navy);
    color: #fff;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    text-decoration: none;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.dest-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.7s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,30,54,0.1) 0%, rgba(28,30,54,0.45) 50%, rgba(28,30,54,0.95) 100%);
    z-index: -1;
}
.dest-card-body { padding: 30px 26px; width: 100%; }
.dest-card .country {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--brand-red);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.dest-card h3 { color: #fff; margin: 0 0 8px; font-size: 1.75rem; }
.dest-card p { color: rgba(255,255,255,0.85); margin: 0 0 16px; font-size: 0.95rem; }
.dest-card .read-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.22s var(--ease);
}
.dest-card:hover .read-more { gap: 14px; }
.dest-card .read-more svg { width: 14px; height: 14px; }

/* ─── Gallery ─── */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28, 30, 54, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 6; aspect-ratio: 16 / 10; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 6; aspect-ratio: 16 / 10; }
.gallery-item:nth-child(7) { grid-column: span 12; aspect-ratio: 21 / 9; }
@media (max-width: 720px) {
    .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; aspect-ratio: 1 / 1; }
}

/* ─── News cards ─── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.news-card-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.news-card:hover .news-card-media img { transform: scale(1.07); }
.news-card-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.news-card .meta {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}
.news-card .meta .tag { color: var(--brand-red); }
.news-card h3 { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.2; }
.news-card h3 a { color: var(--brand-navy); }
.news-card h3 a:hover { color: var(--brand-red); }
.news-card p { font-size: 0.95rem; flex: 1; }
.news-card .btn-ghost { margin-top: 12px; align-self: flex-start; }

.news-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 56px;
    border: 1px solid var(--border);
}
.news-featured-media { aspect-ratio: 4 / 3; overflow: hidden; }
.news-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.news-featured:hover .news-featured-media img { transform: scale(1.05); }
.news-featured-body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.news-featured h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 18px; }
@media (max-width: 880px) { .news-featured { grid-template-columns: 1fr; } .news-featured-body { padding: 36px 30px; } }

/* ─── Testimonial / Quote ─── */
.quote-block {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.quote-block .quote-mark {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 120px;
    color: var(--brand-red);
    line-height: 0.5;
    height: 60px;
    opacity: 0.25;
    margin-bottom: 8px;
}
.quote-block p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    line-height: 1.35;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.quote-block.on-dark p { color: #fff; }
.quote-block cite {
    font-style: normal;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
}

/* ─── Partners ─── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 22px;
    align-items: center;
}
.partner-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 4 / 3;
    transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.partner-item:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-item img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.partner-item:hover img { filter: grayscale(0%); opacity: 1; }

/* ─── CTA banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 28px; font-size: 1.1rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: #fff; color: var(--brand-red); }
.cta-banner .btn:hover { background: var(--brand-navy); color: #fff; }

/* ─── Features row (icon + title + text) ─── */
.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.feature-row .feature {
    display: flex; flex-direction: column; gap: 14px;
}
.feature .ico {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.1rem; margin: 0; }
.feature p { margin: 0; font-size: 0.92rem; }

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info-card {
    background: var(--bg-alt);
    padding: 38px 34px;
    border-radius: var(--radius-xl);
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item .icon {
    flex: 0 0 46px;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-red);
}
.contact-info-item .icon svg { width: 20px; height: 20px; }
.contact-info-item .label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-item .value { color: var(--brand-navy); font-weight: 500; word-break: break-word; }
.contact-info-item .value a { color: var(--brand-navy); }
.contact-info-item .value a:hover { color: var(--brand-red); }

.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px; font-weight: 700;
    color: var(--brand-navy); letter-spacing: 0.12em; text-transform: uppercase;
}
.form-field input, .form-field textarea, .form-field select {
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    padding: 14px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(235, 17, 53, 0.1);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-status { font-size: 14px; margin-top: 8px; min-height: 1.4em; }
.form-status.success { color: #15803d; }
.form-status.error { color: var(--brand-red-dark); }

.map-frame { width: 100%; height: 380px; border: 0; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); margin-top: 48px; }

/* ─── Timeline ─── */
.timeline {
    border-left: 2px solid var(--border);
    margin-left: 8px;
    padding-left: 32px;
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px; top: 6px;
    width: 14px; height: 14px;
    background: var(--brand-red);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--brand-red);
}
.timeline-item .date {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px; color: var(--brand-red); font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px;
}
.timeline-item h4 { font-size: 1.2rem; margin: 0 0 6px; color: var(--brand-navy); }

/* ─── Article body ─── */
.article-content { max-width: 760px; margin: 0 auto; }
.article-content p { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 1.4em; }
.article-content h2 { margin-top: 1.8em; }

/* ─── Footer ─── */
.site-footer {
    background: var(--brand-navy);
    color: var(--text-on-dark-muted);
    padding: 88px 0 28px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(235,17,53,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
    position: relative;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 60px; width: 60px; object-fit: contain; background: transparent; margin-bottom: 18px; }
.footer-brand h4 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }

.footer-col h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 8px 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    transition: color 0.22s var(--ease), padding-left 0.22s var(--ease);
    display: inline-block;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }

.social-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.social-list a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: background 0.22s var(--ease), transform 0.22s var(--ease-out);
}
.social-list a:hover { background: var(--brand-red); transform: translateY(-3px); }
.social-list svg { width: 18px; height: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-on-dark-muted);
    flex-wrap: wrap;
    position: relative;
}
.footer-bottom a { color: var(--text-on-dark-muted); }
.footer-bottom a:hover { color: #fff; }

/* ─── Newsletter ─── */
.newsletter {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 8px;
}
.newsletter input {
    flex: 1; min-width: 180px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-pill);
    padding: 12px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.22s var(--ease);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter input:focus { border-color: var(--brand-red); }
.newsletter button {
    background: var(--brand-red);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.22s var(--ease), transform 0.22s var(--ease-out);
}
.newsletter button:hover { background: var(--brand-red-dark); transform: translateY(-1px); }

/* ─── Reveal animations ─── */
.reveal-up    { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-fade  { opacity: 0; transition: opacity 1s var(--ease-out); }
.reveal-zoom  { opacity: 0; transform: scale(0.94); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-fade.visible, .reveal-zoom.visible { opacity: 1; transform: none; }

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Page transition overlay */
.page-transition {
    position: fixed; inset: 0;
    background: var(--brand-navy);
    z-index: 9990;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal-up, .reveal-left, .reveal-right, .reveal-fade, .reveal-zoom { opacity: 1; transform: none; }
    .hero-headline .line span { transform: none; animation: none; }
    .hero p.lead, .hero-actions, .hero-card, .scroll-cue { opacity: 1; animation: none; }
}

/* Skip-to-content for accessibility */
.skip-link {
    position: absolute;
    left: -9999px; top: 8px;
    background: var(--brand-navy); color: #fff;
    padding: 10px 16px; border-radius: 6px;
    font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 16px; color: #fff; }

/* ═════════════════════════════════════════════
   Language switcher
   ═════════════════════════════════════════════ */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-left: 6px;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lang-switcher a {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 11px;
    border-radius: var(--radius-pill);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
    line-height: 1;
}
.lang-switcher a:hover { color: #fff; }
.lang-switcher a.active {
    background: var(--brand-red);
    color: #fff;
}
.lang-switcher a::after { display: none !important; }
.site-header.scrolled .lang-switcher { background: rgba(255, 255, 255, 0.06); }

@media (max-width: 960px) {
    .nav-links .lang-switcher { margin: 14px 0 0; align-self: center; }
}

/* ═════════════════════════════════════════════
   Arabic typography (lang=ar)
   ═════════════════════════════════════════════ */
[lang="ar"] body,
[lang="ar"] {
    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
}
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4, [lang="ar"] h5,
[lang="ar"] .display-1,
[lang="ar"] .brand-name,
[lang="ar"] .section-label,
[lang="ar"] .btn,
[lang="ar"] .nav-links a,
[lang="ar"] .stat-num,
[lang="ar"] .stat-label,
[lang="ar"] .quote-block p,
[lang="ar"] .quote-block cite,
[lang="ar"] .timeline-item .date,
[lang="ar"] .timeline-item h4,
[lang="ar"] .footer-col h5,
[lang="ar"] .form-field label,
[lang="ar"] .contact-info-item .label,
[lang="ar"] .dest-card .country,
[lang="ar"] .dest-card h3,
[lang="ar"] .dest-card .read-more,
[lang="ar"] .principle-card h3,
[lang="ar"] .news-card .meta,
[lang="ar"] .news-card h3,
[lang="ar"] .hero-card-head .title,
[lang="ar"] .hero-card-head .sub,
[lang="ar"] .hero-card li .city,
[lang="ar"] .hero-card li .country,
[lang="ar"] .hero-card li .num,
[lang="ar"] .hero-badge,
[lang="ar"] .scroll-cue,
[lang="ar"] .marquee-item,
[lang="ar"] .breadcrumb,
[lang="ar"] .floating-tag,
[lang="ar"] .lang-switcher a {
    font-family: 'Cairo', 'Inter', sans-serif;
    letter-spacing: 0;
}
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4,
[lang="ar"] .display-1 {
    font-weight: 800;
    line-height: 1.25;
}
[lang="ar"] .display-1 { font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.2; }
[lang="ar"] h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ═════════════════════════════════════════════
   RTL adjustments (dir=rtl)
   ═════════════════════════════════════════════ */
[dir="rtl"] body { text-align: right; }

/* Nav cta — flip margin */
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 6px; }

/* Brand-name small label */
[dir="rtl"] .brand-name small { letter-spacing: 0.06em; }

/* Section labels: bar comes BEFORE in DOM; flip so it sits on the right side of the row visually */
[dir="rtl"] .section-label { flex-direction: row-reverse; }

/* Buttons: arrow icons should appear on the LEFT in RTL; flex-direction reverse handles this */
[dir="rtl"] .btn { flex-direction: row-reverse; }
[dir="rtl"] .btn-ghost { flex-direction: row-reverse; }
[dir="rtl"] .btn-ghost:hover { gap: 14px; }
[dir="rtl"] .read-more,
[dir="rtl"] .dest-card .read-more { flex-direction: row-reverse; }
[dir="rtl"] .btn svg,
[dir="rtl"] .btn-ghost svg,
[dir="rtl"] .read-more svg { transform: scaleX(-1); }

/* Breadcrumb chevron flip */
[dir="rtl"] .breadcrumb svg { transform: scaleX(-1); }

/* Hero card numbers */
[dir="rtl"] .hero-card li { flex-direction: row-reverse; text-align: right; }

/* Check list — icon should appear right of text */
[dir="rtl"] .check-list li { flex-direction: row-reverse; }

/* Hero card wrap floating badges — swap sides */
[dir="rtl"] .hero-badge-1 { left: auto; right: -18px; }
[dir="rtl"] .hero-badge-2 { right: auto; left: -16px; }
[dir="rtl"] .hero-card-wrap { margin-right: auto; margin-left: 0; }
@media (max-width: 980px) {
    [dir="rtl"] .hero-card-wrap { margin: 0 auto; }
}

/* Image stack — flip mini, floating tag, decoration */
[dir="rtl"] .image-stack .img-mini { right: auto; left: -32px; }
[dir="rtl"] .image-stack .floating-tag { left: auto; right: -22px; flex-direction: row-reverse; }
[dir="rtl"] .image-stack::after { left: auto; right: -22px; }

/* Timeline border switches sides; dots move accordingly */
[dir="rtl"] .timeline { border-left: 0; border-right: 2px solid var(--border); margin-left: 0; margin-right: 8px; padding-left: 0; padding-right: 32px; }
[dir="rtl"] .timeline-item::before { left: auto; right: -41px; }

/* Contact info item */
[dir="rtl"] .contact-info-item { flex-direction: row-reverse; }

/* Principle card number */
[dir="rtl"] .principle-card .num { right: auto; left: 22px; }
[dir="rtl"] .principle-card::before { transform-origin: right; }

/* News card meta */
[dir="rtl"] .news-card .meta { flex-direction: row-reverse; justify-content: flex-end; }

/* Newsletter — keep flex but flip */
[dir="rtl"] .newsletter { flex-direction: row-reverse; }

/* Footer col link hover slide flips */
[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 4px; }

/* Marquee — keep scrolling visually left-to-right reading flow in Arabic (reverse the animation) */
[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* Nav active underline — origin from right */
[dir="rtl"] .nav-links a::after { transform-origin: right; }

/* Nav links cluster on mobile */
@media (max-width: 960px) {
    [dir="rtl"] .nav-links { right: 0; left: 0; }
}

/* Scrollbar on right side in RTL is the default in Latin scripts, keep it.
   But ::-webkit-scrollbar already handles cross-browser. */

/* Section header text alignment stays centered */
[dir="rtl"] .section-header { text-align: center; }
[dir="rtl"] .section-header .section-label { justify-content: center; }

/* Stats stay centered */
[dir="rtl"] .stats { text-align: center; }

/* Floating tag dot in RTL — already inside the row-reverse */

/* ═════════════════════════════════════════════
   FAQ accordion
   ═════════════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 22px 26px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--brand-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 22px;
    font-weight: 300;
    line-height: 0;
    transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
    background: var(--brand-red);
    color: #fff;
}
.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 0.8em; }

[lang="ar"] .faq-item summary { font-family: 'Cairo', sans-serif; }
