/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
    --gold: #c9a84c;
    --gold-l: #e8c76a;
    --gold-pale: #f7efd8;
    --gold-pale2: #f0e4bc;
    --gold-d: #9a7a30;
    --green: #7a8c6e;
    --green-pale: #edf2ea;
    --bg: #f8f6f1;
    --bg2: #f0ede6;
    --bg3: #e8e4dc;
    --surf: #ffffff;
    --ink: #1c1c1a;
    --ink2: #3c3c38;
    --ink3: #7a7a72;
    --ink4: #b0afa8;
    --bdr: rgba(28, 28, 26, 0.09);
    --bdr-s: rgba(28, 28, 26, 0.15);
    --sh0: 0 1px 4px rgba(28, 28, 26, 0.05);
    --sh1: 0 4px 18px rgba(28, 28, 26, 0.08);
    --sh2: 0 10px 40px rgba(28, 28, 26, 0.11);
    --sh3: 0 20px 64px rgba(28, 28, 26, 0.14);
    --shg: 0 8px 28px rgba(201, 168, 76, 0.22);
    --font: "Plus Jakarta Sans", sans-serif;
    --font-ar: "Tajawal", sans-serif;
}
[data-lang="ar"] {
    direction: rtl;
    font-family: var(--font-ar);
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
* {
    box-sizing: border-box;
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
[data-lang="ar"] h1,
[data-lang="ar"] h2,
[data-lang="ar"] h3,
[data-lang="ar"] h4,
[data-lang="ar"] h5 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}
p {
    line-height: 1.8;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.ju-nav {
    background: var(--ink) !important;
    padding: 11px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ju-nav .navbar-brand {
    font-size: 17px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.01em;
}
.ju-nav .navbar-brand span {
    color: var(--gold);
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: var(--shg);
    flex-shrink: 0;
}
[data-lang="ar"] .logo-mark {
    margin-right: 0;
    margin-left: 8px;
}
.nav-link-ju {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 6px 13px !important;
    border-radius: 20px;
    transition: all 0.2s;
}
.nav-link-ju:hover,
.nav-link-ju.cur {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.09) !important;
}
[data-lang="ar"] .nav-link-ju {
    font-family: var(--font-ar);
    font-size: 14px;
}
.lang-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}
.lang-pill button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}
.lang-pill button.on {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--shg);
}
.nav-cta {
    background: var(--gold);
    color: #fff !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    transition: all 0.2s !important;
}
.nav-cta:hover {
    background: var(--gold-d) !important;
    transform: translateY(-1px);
}

/* ════════════════════════════════════════
   SHARED HELPERS
════════════════════════════════════════ */
.sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale);
    color: var(--gold-d);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sec-pill.lite {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-l);
}
[data-lang="ar"] .sec-pill {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 12px 26px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: var(--shg);
}
.btn-gold:hover {
    background: var(--gold-d);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 168, 76, 0.3);
    color: #fff;
}
[data-lang="ar"] .btn-gold {
    font-family: var(--font-ar);
}
.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 26px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    transform: translateY(-2px);
}
[data-lang="ar"] .btn-ghost-dark {
    font-family: var(--font-ar);
}
.gold-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 3px;
    margin-bottom: 20px;
}

/* ════════════════════════════════════════
   §1  HERO / ARTICLE
════════════════════════════════════════ */
#hero {
    background: var(--ink);
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 700px 600px at 8% 40%,
            rgba(201, 168, 76, 0.11) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 500px 500px at 92% 70%,
            rgba(122, 140, 110, 0.07) 0%,
            transparent 60%
        );
    animation: atmo 12s ease-in-out infinite alternate;
}
@keyframes atmo {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}
#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px
    );
    background-size: 42px 42px;
}
/* animated floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(201, 168, 76, 0.12);
    animation: float linear infinite;
}
@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.14);
    color: var(--gold-l);
    padding: 6px 14px 6px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
}
.hero-kicker-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
[data-lang="ar"] .hero-kicker {
    font-family: var(--font-ar);
}
.hero-h1 {
    font-size: clamp(42px, 5.5vw, 80px);
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 28px;
}
.hero-h1 .gold {
    color: var(--gold);
}
.hero-h1 .stroke {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28);
    color: transparent;
}
[data-lang="ar"] .hero-h1 {
    font-family: var(--font-ar);
    letter-spacing: 0;
    line-height: 1.2;
    font-size: clamp(34px, 5vw, 64px);
}

/* article typography */
.article-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    max-width: 560px;
}
[data-lang="ar"] .article-body {
    font-family: var(--font-ar);
}
.article-body p {
    margin-bottom: 16px;
}
.pull-quote {
    margin: 28px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: rgba(201, 168, 76, 0.07);
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    line-height: 1.8;
}
[data-lang="ar"] .pull-quote {
    border-left: none;
    border-right: 3px solid var(--gold);
    border-radius: 12px 0 0 12px;
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--gold),
        rgba(201, 168, 76, 0.1)
    );
}
[data-lang="ar"] .timeline::before {
    left: auto;
    right: 15px;
}
.tl-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}
.tl-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    background: var(--ink);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
}
.tl-content {
    padding-top: 4px;
}
.tl-year {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}
[data-lang="ar"] .tl-year {
    letter-spacing: 0;
    font-family: var(--font-ar);
}
.tl-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}
[data-lang="ar"] .tl-text {
    font-family: var(--font-ar);
}

/* hero image side */
.hero-img-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(8px);
    transition: all 0.4s;
}
.hero-img-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.hero-img-inner {
    height: 280px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-img-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 50%,
        rgba(201, 168, 76, 0.18) 0%,
        transparent 65%
    );
}
.hero-img-wm {
    position: absolute;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
}
.hero-img-svg {
    width: 88%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.5));
}
.hero-img-foot {
    padding: 22px 24px;
}
.hero-img-foot h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
[data-lang="ar"] .hero-img-foot h5 {
    font-family: var(--font-ar);
}
.hero-img-foot p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
.hero-stats-mini {
    display: flex;
    gap: 0;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}
.hsm {
    flex: 1;
    padding: 12px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}
.hsm:last-child {
    border-right: none;
}
[data-lang="ar"] .hsm {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}
[data-lang="ar"] .hsm:last-child {
    border-left: none;
}
.hsm-n {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}
.hsm-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    margin-top: 2px;
}
[data-lang="ar"] .hsm-l {
    font-family: var(--font-ar);
}

/* ════════════════════════════════════════
   §2  VALUES & FEATURES
════════════════════════════════════════ */
#values {
    background: var(--bg);
    padding: 100px 0;
}
.values-header {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 64px;
}
.values-header h2 {
    font-size: clamp(28px, 3vw, 46px);
    color: var(--ink);
}
[data-lang="ar"] .values-header h2 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}
.values-header p {
    font-size: 15px;
    color: var(--ink3);
    margin-top: 10px;
    line-height: 1.8;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.val-card {
    background: var(--surf);
    border: 1px solid var(--bdr);
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.val-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.val-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh3);
    border-color: rgba(201, 168, 76, 0.22);
}
.val-card:hover::after {
    opacity: 1;
}
.val-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
    font-size: 28px;
}
.val-card:hover .val-icon-wrap {
    background: var(--gold);
    transform: rotate(-5deg) scale(1.08);
}
.val-card:hover .val-icon-wrap i {
    color: #fff !important;
}
.val-card h5 {
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
[data-lang="ar"] .val-card h5 {
    font-family: var(--font-ar);
}
.val-card p {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.7;
    margin: 0;
}
/* accent bottom bar */
.val-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.val-card:hover .val-bar {
    transform: scaleX(1);
}

/* ════════════════════════════════════════
   §3  VISION & MISSION
════════════════════════════════════════ */
#vm {
    background: var(--ink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
#vm::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 700px 500px at 80% 20%,
            rgba(201, 168, 76, 0.09) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 500px 500px at 10% 80%,
            rgba(122, 140, 110, 0.06) 0%,
            transparent 60%
        );
}
#vm::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px
    );
    background-size: 44px 44px;
}
.vm-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    height: 100%;
}
.vm-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-4px);
}
.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.vm-card:hover::before {
    opacity: 1;
}
.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 24px;
}
.vm-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
[data-lang="ar"] .vm-label {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.vm-title {
    font-size: clamp(20px, 2vw, 28px);
    color: #fff;
    margin-bottom: 16px;
}
[data-lang="ar"] .vm-title {
    font-family: var(--font-ar);
    letter-spacing: 0;
}
.vm-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
}
[data-lang="ar"] .vm-text {
    font-family: var(--font-ar);
}
.vm-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.vm-pillar {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-l);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}
[data-lang="ar"] .vm-pillar {
    font-family: var(--font-ar);
}
/* centre statement */
.vm-centre {
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.12),
        rgba(201, 168, 76, 0.04)
    );
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vm-centre-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: pulse-slow 3s ease-in-out infinite;
}
@keyframes pulse-slow {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}
.vm-centre-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
[data-lang="ar"] .vm-centre-tag {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.vm-centre-quote {
    font-size: clamp(16px, 2vw, 22px);
    color: #fff;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}
[data-lang="ar"] .vm-centre-quote {
    font-family: var(--font-ar);
    font-style: normal;
}

/* ════════════════════════════════════════
   §4  STATS COUNTER
════════════════════════════════════════ */
#stats {
    background: var(--bg2);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
#stats::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 70%
    );
    top: -200px;
    left: -200px;
    pointer-events: none;
}
.stat-block {
    text-align: center;
    padding: 36px 24px;
    background: var(--surf);
    border-radius: 22px;
    border: 1px solid var(--bdr);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.stat-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh2);
    border-color: rgba(201, 168, 76, 0.2);
}
.stat-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.stat-block:hover::after {
    transform: scaleX(1);
}
.stat-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.stat-num {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}
.stat-suffix {
    color: var(--gold);
}
.stat-label {
    font-size: 13px;
    color: var(--ink3);
    margin-top: 6px;
    font-weight: 500;
}
[data-lang="ar"] .stat-label {
    font-family: var(--font-ar);
}

/* ════════════════════════════════════════
   §5  PHOTO GALLERY
════════════════════════════════════════ */
#gallery {
    background: var(--bg);
    padding: 100px 0;
}
.gallery-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 52px;
}
.gallery-header h2 {
    font-size: clamp(26px, 3vw, 44px);
    color: var(--ink);
}
[data-lang="ar"] .gallery-header h2 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}
/* masonry-style grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 14px;
}
.gal-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: var(--ink);
    cursor: zoom-in;
    transition: all 0.35s;
}
.gal-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--sh3);
}
/* span sizes */
.gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gal-item:nth-child(4) {
    grid-column: span 2;
}
.gal-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
}
.gal-inner {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.55));
}
.gal-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
}
.gal-item:nth-child(1) .gal-wm {
    font-size: 80px;
}
.gal-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
}
.gal-item:hover .gal-label {
    opacity: 1;
    transform: none;
}
[data-lang="ar"] .gal-label {
    left: auto;
    right: 16px;
    text-align: right;
    font-family: var(--font-ar);
}
.gal-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.85);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
[data-lang="ar"] .gal-cat {
    left: auto;
    right: 12px;
    letter-spacing: 0;
    font-family: var(--font-ar);
}
/* lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-inner {
    max-width: 840px;
    width: 90%;
    background: var(--ink);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}
.lightbox-vis {
    height: 420px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.lightbox-vis::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 50%,
        rgba(201, 168, 76, 0.15) 0%,
        transparent 65%
    );
}
.lightbox-vis-wm {
    position: absolute;
    font-size: 140px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.05em;
}
.lightbox-vis svg {
    width: 70%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.6));
}
.lightbox-footer {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lightbox-footer h5 {
    font-size: 17px;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.lightbox-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gal-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 180px;
    }
}


/* ─────────────────────────────────────────────
   ② BRANDS CAROUSEL (full-width)
───────────────────────────────────────────── */
#brands {
    background: var(--ink);
    padding: 0 0 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brands-full-strip {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.brands-full-strip::before,
.brands-full-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.brands-full-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--ink), transparent);
}
.brands-full-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ink), transparent);
}
.brands-row {
    display: flex;
    width: max-content;
}
.brands-row.row1 {
    animation: brandL 30s linear infinite;
}
.brands-row.row2 {
    animation: brandR 30s linear infinite;
    margin-top: 0;
}
@keyframes brandL {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes brandR {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}
.b-item {
    padding: 0 40px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--ease);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 28px;
}
.b-item:hover {
    color: rgba(255, 255, 255, 0.35);
}
.b-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}
.brands-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
    max-width: 1300px;
    margin: 0 auto;
}
.brands-count {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}
.brands-count strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}
[data-lang="ar"] .brands-count {
    font-family: var(--font-ar);
}

/* ════════════════════════════════════════
   §7  FOOTER
════════════════════════════════════════ */
#footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}
#footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 500px 400px at 100% 0%,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 65%
    );
}
.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 575px) {
    .ft-top {
        grid-template-columns: 1fr;
    }
}
.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.ft-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-logo-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.ft-logo-name span {
    color: var(--gold);
}
.ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    max-width: 230px;
}
.ft-socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}
.ft-soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 700;
}
.ft-soc:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.ft-col h6 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
[data-lang="ar"] .ft-col h6 {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 12px;
}
.ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.36);
    transition: color 0.2s;
}
.ft-col ul li a:hover {
    color: var(--gold);
}
[data-lang="ar"] .ft-col ul li a {
    font-family: var(--font-ar);
    font-size: 14px;
}
.ft-mid {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ft-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ft-info-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.ft-info-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}
[data-lang="ar"] .ft-info-lbl {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 11px;
}
.ft-info-val {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.ft-bot {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}
.ft-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}
[data-lang="ar"] .ft-copy {
    font-family: var(--font-ar);
    font-size: 13px;
}
.ft-links {
    display: flex;
    gap: 18px;
}
.ft-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}
.ft-links a:hover {
    color: var(--gold);
}
[data-lang="ar"] .ft-links a {
    font-family: var(--font-ar);
    font-size: 13px;
}
.ft-gold {
    color: var(--gold);
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
