/* ============================================================
   Moaid Mahjoub — Investor-grade redesign
   Light "private-bank" system · English-only
   ============================================================ */

:root {
    --violet:      #7C3AED;   /* primary accent */
    --violet-dark: #6D28D9;   /* hover / deep accent */
    --lav:         #A78BFA;   /* soft lavender */
    --lav-pale:    #D8B4FE;   /* washes only */
    --gold:        #C8A04B;   /* prestige accent, key figures */
    --gold-soft:   #e3c987;   /* gold highlight */
    --cream:       #F7F4EF;   /* warm alt background */
    --charcoal:    #1E293B;   /* text + dark sections */
    --charcoal-2:  #14202e;   /* deeper charcoal */
    --white:       #FFFFFF;

    --text:        #1E293B;
    --muted:       #5b6472;   /* secondary text */
    --muted-light: #94a3b8;
    --border:      #ece8f3;
    --border-2:    #e7e2d8;

    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max:       1240px;
    --radius:    14px;
    --radius-lg: 22px;
    --shadow:    0 10px 40px rgba(30,41,59,0.07);
    --shadow-lg: 0 22px 60px rgba(30,41,59,0.12);
    --ease:      cubic-bezier(.22,.61,.36,1);
    --spad:      clamp(72px, 9vw, 130px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
canvas#particleCanvas { display: none; }          /* removed for restraint */
.c-dot, .c-ring { display: none !important; }      /* custom cursor off */

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; color: var(--charcoal); letter-spacing: -0.01em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

.grad { color: var(--gold); }                      /* key figures / highlights */
.serif { font-family: var(--serif); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.spad { padding: var(--spad) 0; }
.tc   { text-align: center; }
section { position: relative; }
.bg-cream { background: var(--cream); }

.sec-label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}
.sec-label::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 20px; height: 1.5px; background: var(--gold); transform: translateY(-50%);
}
.tc .sec-label { padding-left: 0; }
.tc .sec-label::before { display: none; }
.tc .sec-label::after {
    content: ""; display: block; width: 32px; height: 2px; background: var(--gold);
    margin: 14px auto 0;
}
.sec-intro { color: var(--muted); max-width: 620px; font-size: 1.08rem; }
.tc .sec-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-glow, .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 10px;
    font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.01em; transition: all .3s var(--ease);
}
.btn-glow {
    background: var(--violet); color: #fff;
    box-shadow: 0 8px 24px rgba(124,58,237,0.28);
}
.btn-glow:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(124,58,237,0.36); }
.btn-glow svg { transition: transform .3s var(--ease); }
.btn-glow:hover svg { transform: translateX(4px); }
.btn-ghost {
    background: transparent; color: var(--violet);
    border: 1.5px solid var(--violet);
}
.btn-ghost:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* On dark backgrounds */
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.on-dark .btn-ghost:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
    padding: 20px 0;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 var(--border), 0 6px 24px rgba(30,41,59,0.06);
    padding: 12px 0;
}
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-img { display: block; }
/* Logo rendered solid gold (alpha used as a mask) — same in every state */
.logo-img img, .footer-logo img {
    content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
    background-color: var(--gold);
    filter: none !important;
    -webkit-mask: url("../img/logo.png") center / contain no-repeat;
            mask: url("../img/logo.png") center / contain no-repeat;
}
.logo-img img { width: 44px; height: 46px; transition: width .35s var(--ease), height .35s var(--ease); }
.scrolled .logo-img img { width: 38px; height: 40px; }

.nav-list { display: flex; align-items: center; gap: 34px; }
.nav-link { position: relative; font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.92); transition: color .25s; letter-spacing: 0.01em; }
.scrolled .nav-link { color: var(--charcoal); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #fff; }
.scrolled .nav-link:hover, .scrolled .nav-link.active { color: var(--violet); }

.nav-has-drop { position: relative; }
.nav-drop {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 10px; min-width: 180px; display: flex; flex-direction: column; gap: 2px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .25s var(--ease); margin-top: 14px;
}
.nav-has-drop:hover .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop a { padding: 9px 14px; border-radius: 8px; font-size: 0.9rem; color: var(--charcoal); transition: background .2s, color .2s; }
.nav-drop a:hover { background: var(--cream); color: var(--violet); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 9px;
    background: var(--violet); color: #fff; font-size: 0.88rem; font-weight: 600; transition: all .3s var(--ease);
    box-shadow: 0 6px 18px rgba(124,58,237,0.28);
}
.nav-cta:hover { background: var(--violet-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; width: 30px; height: 22px; position: relative; }
.hamburger span { position: absolute; left: 0; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.scrolled .hamburger span { background: var(--charcoal); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }
.hamburger.open span { background: var(--charcoal); }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 340px);
    background: #fff; box-shadow: -10px 0 60px rgba(30,41,59,0.18);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99;
    padding: 100px 32px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link { padding: 14px 0; font-size: 1.05rem; font-weight: 500; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.mobile-sub-link { padding: 9px 0 9px 18px; font-size: 0.92rem; color: var(--muted); display: block; }
.mobile-cta { margin-top: 24px; }

/* ============================================================
   HERO  (deep charcoal · Diriyah → KAFD · globe)
   ============================================================ */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; color: #fff; padding: 140px 0 80px;
    background:
        radial-gradient(120% 90% at 80% 20%, rgba(124,58,237,0.30) 0%, transparent 55%),
        linear-gradient(105deg,
            #2a2118 0%,            /* Diriyah warm earth */
            #3a2d1c 20%,
            #4a3a22 34%,
            #1f2334 50%,           /* gold seam → cool */
            #1b2236 66%,
            #181a2e 100%);          /* KAFD cool */
}
/* warm→cool seam glow + legibility scrim from bottom-left */
.hero-section::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(60% 100% at 50% 60%, rgba(200,160,75,0.18) 0%, transparent 60%),
        linear-gradient(to top, rgba(15,18,28,0.92) 0%, rgba(15,18,28,0.35) 45%, transparent 75%),
        linear-gradient(to right, rgba(15,18,28,0.75) 0%, transparent 50%);
}
.hero-section::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; z-index: 2;
    background: linear-gradient(to bottom, transparent, var(--white));
}
.grid-bg {
    position: absolute; inset: 0; z-index: 0; opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 70%);
            mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 70%);
}
#globeContainer {
    position: absolute; top: 50%; right: 3%; transform: translateY(-50%);
    width: 680px; height: 680px; max-width: 52vw; max-height: 86vh; z-index: 1;
    opacity: 0.95;
    -webkit-mask-image: radial-gradient(closest-side, #000 70%, transparent 100%);
            mask-image: radial-gradient(closest-side, #000 70%, transparent 100%);
}
.hero-section .container { position: relative; z-index: 3; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-soft); margin-bottom: 26px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.hero-title { font-size: clamp(2.6rem, 5.6vw, 4.3rem); line-height: 1.08; color: #fff; margin-bottom: 24px; }
.hero-title .grad {
    background: linear-gradient(100deg, var(--gold) 0%, var(--gold-soft) 60%, var(--gold) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold);
}
.hero-sub { font-size: 1.18rem; line-height: 1.75; color: rgba(255,255,255,0.86); max-width: 600px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-social { display: flex; gap: 12px; }
.hero-social-btn {
    width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.85); transition: all .3s var(--ease);
    backdrop-filter: blur(4px);
}
.hero-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-3px); }

/* Globe pulse rings (kept from theme, restyled gold) */
.g-pulse-ring { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; border: 1.5px solid var(--gold); border-radius: 50%; transform: translate(-50%,-50%); animation: gpulse 2.4s ease-out infinite; }
.g-pulse-dot { position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 10px var(--gold); }
@keyframes gpulse { 0% { width: 8px; height: 8px; opacity: .9; } 100% { width: 46px; height: 46px; opacity: 0; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--border-2); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 54px 0; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: var(--border-2); }
.stat-item > div:first-child { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat-plus { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 600; }
.stat-label { margin-top: 12px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.25fr 0.95fr; gap: 70px; align-items: start; }
.about-body p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 16px; }
.about-body strong { color: var(--charcoal); }
.about-body .fig { color: var(--gold); font-weight: 600; white-space: nowrap; }
.about-img-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); margin-bottom: 28px;
}
.about-img-wrap::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(200,160,75,0.4); border-radius: var(--radius-lg);
}
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-sticky { position: sticky; top: 110px; }

.cred-title { font-family: var(--sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet); margin-bottom: 16px; }
.cred-list { display: flex; flex-direction: column; gap: 12px; }
.cred-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--charcoal); line-height: 1.5; }
.cred-item svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.cred-item span { color: var(--muted); }

/* ============================================================
   VISION & MISSION
   ============================================================ */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vm-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 44px 40px; box-shadow: var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    position: relative; overflow: hidden;
}
.vm-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--violet), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vm-card:hover::before { transform: scaleX(1); }
.vm-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(200,160,75,0.12)); color: var(--violet); margin-bottom: 22px; }
.vm-card h3 { margin-bottom: 14px; }
.vm-card p { color: var(--muted); font-size: 1.06rem; line-height: 1.8; margin: 0; }

/* ============================================================
   SERVICES  (flat 01–14 grid)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.svc-card {
    position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 26px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    overflow: hidden;
}
.svc-top-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--violet), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover .svc-top-line { transform: scaleX(1); }
/* header is a plain block on desktop; becomes the tap target on mobile */
.svc-head { display: block; width: 100%; background: none; border: 0; padding: 0; margin: 0; font: inherit; color: inherit; text-align: left; cursor: default; }
.svc-chevron { display: none; }
.svc-num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; margin-bottom: 16px; opacity: .9; }
.svc-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--cream); color: var(--violet); margin-bottom: 18px; transition: background .35s var(--ease), color .35s var(--ease); }
.svc-card:hover .svc-icon { background: var(--violet); color: #fff; }
.svc-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; line-height: 1.25; }
.svc-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.ins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.ins-channel-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 34px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    height: 100%;
}
.ins-channel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ins-channel-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(200,160,75,0.12)); color: var(--violet); margin-bottom: 22px; }
.ins-channel-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }
.ins-channel-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 22px; flex: 1; }
.ins-channel-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--violet); transition: gap .3s var(--ease); }
.ins-channel-card:hover .ins-channel-cta { gap: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--charcoal); color: #fff; }
.contact-section h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.contact-section .sec-label { color: var(--lav); }
.contact-section .sec-label::before { background: var(--gold); }
.contact-desc { color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.8; margin-bottom: 30px; max-width: 480px; }
.contact-cta-big {
    display: inline-flex; align-items: center; gap: 12px; padding: 17px 34px; border-radius: 11px;
    background: var(--gold); color: var(--charcoal); font-weight: 700; font-size: 1rem; transition: all .3s var(--ease);
    box-shadow: 0 12px 30px rgba(200,160,75,0.3);
}
.contact-cta-big:hover { background: var(--gold-soft); transform: translateY(-2px); }
.contact-or { margin: 22px 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: .04em; }

.form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 36px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; border-radius: 10px; font-family: var(--sans); font-size: 0.95rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #fff; transition: border-color .25s, background .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.09); }
.form-group select option { color: #1E293B; }
.form-notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.92rem; }
.form-notice--ok { background: rgba(34,197,94,0.16); border: 1px solid rgba(34,197,94,0.4); color: #bbf7d0; }
.form-notice--err { background: rgba(239,68,68,0.16); border: 1px solid rgba(239,68,68,0.4); color: #fecaca; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal-2); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { width: 45px; height: 50px; margin-bottom: 22px; }
.footer-tagline { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 0.95rem; line-height: 1.75; max-width: 420px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social .soc { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); transition: all .3s var(--ease); }
.footer-social .soc:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-3px); }
.foot-h { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.foot-links { display: flex; flex-direction: column; gap: 12px; }
.foot-links a { font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: color .25s; }
.foot-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ============================================================
   INNER PAGES — ARTICLES
   ============================================================ */
.page-hero {
    padding: 150px 0 56px; color: #fff;
    background: radial-gradient(120% 120% at 80% 0%, rgba(124,58,237,0.35) 0%, transparent 55%), var(--charcoal);
}
.page-hero h1 { color: #fff; margin: 8px 0 14px; }
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; margin: 0; }

/* Articles: toolbar + 9-per-page grid (3×3) with sort toggle */
.article-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.article-count { font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); }
.sort-toggle { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--border-2); border-radius: 10px; background: #fff; color: var(--charcoal); font-weight: 600; font-size: 0.9rem; transition: all .25s var(--ease); }
.sort-toggle svg { color: var(--gold); }
.sort-toggle:hover { border-color: var(--violet); color: var(--violet); }
.sort-toggle:hover svg { color: var(--violet); }
.article-store { display: none; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; transition: opacity .25s var(--ease); }
.article-grid.fading { opacity: 0; }
.article-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    height: 100%;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-cover { position: relative; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover.tone-gold   { background: linear-gradient(135deg, #4a3a22, #8a6c2f 60%, #c8a04b); }
.article-cover.tone-violet { background: linear-gradient(135deg, #241646, #4b2c9c 60%, #7c3aed); }
.article-cover.tone-mixed  { background: linear-gradient(135deg, #3a2d1c, #2c1d56 55%, #6d28d9); }
.article-cover-mark { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.08em; }
.article-cover::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -40px 50px rgba(0,0,0,0.18); }
.article-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.article-meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.article-title { font-size: 1.2rem; line-height: 1.3; margin-bottom: 12px; }
.article-excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.article-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--violet); transition: gap .3s var(--ease); }
.article-card:hover .article-cta { gap: 14px; }

/* ============================================================
   GALLERY ALBUM (people) — 12 per set, auto-rotating
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; transition: opacity .25s var(--ease); }
.gallery-grid.fading { opacity: 0; }

.gallery-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.gallery-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); transition: all .25s var(--ease); }
.gallery-dot:hover { background: var(--lav); }
.gallery-dot.active { background: var(--violet); width: 26px; border-radius: 5px; }
.gallery-rotate-note { text-align: center; margin-top: 14px; font-size: 0.85rem; color: var(--muted-light); }

.gallery-card { margin: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-photo { position: relative; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-photo.tone-gold   { background: linear-gradient(135deg, #4a3a22, #8a6c2f 60%, #c8a04b); }
.gallery-photo.tone-violet { background: linear-gradient(135deg, #241646, #4b2c9c 60%, #7c3aed); }
.gallery-photo.tone-mixed  { background: linear-gradient(135deg, #3a2d1c, #2c1d56 55%, #6d28d9); }
.gallery-initials { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; }
.gallery-info { padding: 22px 22px 24px; }
.gallery-name { font-size: 1.22rem; margin-bottom: 6px; }
.gallery-role { font-size: 0.86rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.gallery-org { color: var(--muted); font-weight: 500; }
.gallery-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   SINGLE ARTICLE (blog post)
   ============================================================ */
.post-hero { padding: 140px 0 0; color: #fff; background: radial-gradient(120% 120% at 80% 0%, rgba(124,58,237,0.32) 0%, transparent 55%), var(--charcoal); }
.post-hero .container { max-width: 820px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--lav); margin-bottom: 22px; }
.post-back svg { transform: rotate(180deg); }
.post-meta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.post-title { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; margin-bottom: 12px; }
.post-excerpt { color: rgba(255,255,255,0.82); font-size: 1.15rem; line-height: 1.6; margin: 0 0 40px; }
.post-cover { aspect-ratio: 16/8; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-cover.tone-gold   { background: linear-gradient(135deg, #4a3a22, #8a6c2f 60%, #c8a04b); }
.post-cover.tone-violet { background: linear-gradient(135deg, #241646, #4b2c9c 60%, #7c3aed); }
.post-cover.tone-mixed  { background: linear-gradient(135deg, #3a2d1c, #2c1d56 55%, #6d28d9); }
.post-cover .gallery-initials { font-size: 3rem; }
.post-body { max-width: 760px; margin: 0 auto; padding: 56px 0 0; }
.post-body p { font-size: 1.12rem; line-height: 1.85; color: #2a3340; margin-bottom: 1.4rem; }
.post-body h2 { font-size: 1.7rem; margin: 2.2rem 0 1rem; }
.post-body h3 { font-size: 1.35rem; margin: 1.8rem 0 0.8rem; }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 24px; margin: 1.8rem 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; color: var(--charcoal); }
.post-placeholder { background: var(--cream); border: 1px dashed var(--border-2); border-radius: var(--radius); padding: 28px 26px; color: var(--muted); font-size: 0.98rem; line-height: 1.7; }
.post-share { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-share-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.post-share-links { display: flex; gap: 10px; }
.share-btn { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-2); color: var(--charcoal); transition: all .25s var(--ease); }
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-li:hover { background: #0a66c2; border-color: #0a66c2; }
.share-x:hover  { background: #111; border-color: #111; }
.share-fb:hover { background: #1877f2; border-color: #1877f2; }
.post-cta-row { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PRESS — photo frame + reference link, 6 per page (3×2)
   ============================================================ */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; transition: opacity .25s var(--ease); }
.press-grid.fading { opacity: 0; }
.press-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.press-frame { position: relative; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.press-frame img { width: 100%; height: 100%; object-fit: cover; }
.press-frame.tone-gold   { background: linear-gradient(135deg, #4a3a22, #8a6c2f 60%, #c8a04b); }
.press-frame.tone-violet { background: linear-gradient(135deg, #241646, #4b2c9c 60%, #7c3aed); }
.press-frame.tone-mixed  { background: linear-gradient(135deg, #3a2d1c, #2c1d56 55%, #6d28d9); }
.press-frame-mark { font-family: var(--serif); font-size: 1.2rem; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
.press-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), inset 0 -36px 46px rgba(0,0,0,0.18); }
.press-info { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.press-outlet { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.press-title { font-size: 1.18rem; line-height: 1.3; margin-bottom: 16px; }
.press-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--violet); transition: gap .3s var(--ease); }
.press-card:hover .press-cta { gap: 14px; }

/* ============================================================
   MAGAZINE — flipping reader
   ============================================================ */
.mag-section { background: var(--cream); }

/* Magazine rack — editions */
.mag-rack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.mag-issue { display: block; }
.mag-issue-cover { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; }
.mag-issue:hover .mag-issue-cover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mag-issue-cover img { width: 100%; height: 100%; object-fit: cover; }
.mag-issue-cover.tone-gold   { background: linear-gradient(150deg, #4a3a22, #8a6c2f 65%, #c8a04b); }
.mag-issue-cover.tone-violet { background: linear-gradient(150deg, #241646, #4b2c9c 65%, #7c3aed); }
.mag-issue-cover.tone-mixed  { background: linear-gradient(150deg, #221a30, #3a2d1c 50%, #6d28d9); }
.mag-issue-cover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: rgba(0,0,0,0.22); }
.mag-issue-cover-inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 30px 26px; color: #fff; }
.mag-issue-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.mag-issue-name { font-family: var(--serif); font-size: 1.7rem; line-height: 1.1; }
.mag-issue-tag { margin-top: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.mag-issue-open { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; gap: 8px; justify-content: center; padding: 12px; background: rgba(0,0,0,0.35); color: #fff; font-size: 0.82rem; font-weight: 600; opacity: 0; transition: opacity .3s var(--ease); }
.mag-issue:hover .mag-issue-open { opacity: 1; }
.mag-issue-meta { display: flex; flex-direction: column; padding: 14px 4px 0; }
.mag-issue-month { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.mag-issue-title { font-family: var(--serif); font-size: 1.15rem; color: var(--charcoal); margin-top: 4px; }

.mag-loading { text-align: center; color: var(--muted); font-size: 0.95rem; padding: 40px 0; }

/* Stage with clickable left/right page-turn zones */
.mag-stage { position: relative; display: flex; align-items: center; justify-content: center; }
.mag-zone { position: absolute; top: 0; bottom: 0; width: 11%; min-width: 56px; display: flex; align-items: center; justify-content: center; color: var(--violet); background: transparent; z-index: 5; transition: background .25s var(--ease), color .25s var(--ease); }
.mag-zone--left { left: 0; justify-content: flex-start; padding-left: 8px; }
.mag-zone--right { right: 0; justify-content: flex-end; padding-right: 8px; }
.mag-zone:hover { background: linear-gradient(90deg, rgba(124,58,237,0.10), transparent); }
.mag-zone--right:hover { background: linear-gradient(270deg, rgba(124,58,237,0.10), transparent); }
.mag-zone svg { opacity: .55; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mag-zone:hover svg { opacity: 1; }
.mag-zone--left:hover svg { transform: translateX(-3px); }
.mag-zone--right:hover svg { transform: translateX(3px); }
.flipbook { margin: 0 auto; max-width: 1100px; touch-action: pan-y; }
.flipbook .page { background: #fff; overflow: hidden; box-shadow: 0 0 1px rgba(0,0,0,0.2); }
.mag-page { position: relative; }
.mag-page-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mag-page-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 12% 11%; }
.mag-page.tone-cream  { background: #fbf8f2; color: var(--charcoal); }
.mag-page.tone-gold   { background: linear-gradient(150deg, #4a3a22, #8a6c2f 65%, #c8a04b); color: #fff; }
.mag-page.tone-violet { background: linear-gradient(150deg, #241646, #4b2c9c 65%, #7c3aed); color: #fff; }
.mag-page.tone-mixed  { background: linear-gradient(150deg, #221a30, #3a2d1c 50%, #6d28d9); color: #fff; }
.mag-page--cover .mag-page-inner { justify-content: center; align-items: flex-start; }
.mag-kicker { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tone-cream .mag-kicker { color: var(--violet); }
.mag-title { font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2.3rem); font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
.mag-text { font-size: 0.96rem; line-height: 1.7; opacity: 0.92; white-space: pre-line; }
.mag-page--cover .mag-title { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }

.mag-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 32px; }
.mag-btn { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border-2); color: var(--violet); box-shadow: var(--shadow); transition: all .25s var(--ease); }
.mag-btn:hover { background: var(--violet); color: #fff; transform: translateY(-2px); border-color: var(--violet); }
.mag-pageno { font-family: var(--serif); font-size: 1rem; color: var(--muted); min-width: 70px; text-align: center; }
.mag-hint { text-align: center; margin-top: 14px; font-size: 0.85rem; color: var(--muted-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---------- Globe fallback (static, no WebGL) ---------- */
#globeContainer.globe-fallback { display: flex; align-items: center; justify-content: center; }
#globeContainer.globe-fallback svg { width: 100%; height: 100%; }

/* ---------- TABLET ---------- */
@media (max-width: 1100px) {
    :root { --spad: clamp(58px, 7vw, 92px); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .ins-grid { grid-template-columns: repeat(2, 1fr); }
    #globeContainer { right: 0; opacity: .7; }
}
@media (max-width: 900px) {
    .nav-list, .header-actions .nav-cta { display: none; }
    .hamburger { display: block; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-sticky { position: static; }
    .vm-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   MOBILE (phones) — compact, one-screen hero, accordions
   ============================================================ */
@media (max-width: 768px) {
    :root { --spad: 46px; }
    .container { padding: 0 18px; }
    h2 { font-size: clamp(1.6rem, 6.6vw, 2rem); }
    .sec-intro { font-size: 0.98rem; }
    .sec-label { margin-bottom: 12px; }

    /* Buttons: full-width, comfortable 50px tap target */
    .btn-glow, .btn-ghost, .contact-cta-big { width: 100%; justify-content: center; min-height: 50px; }

    /* HERO — about one screen: globe above, headline, primary CTA */
    .hero-section { min-height: 100vh; min-height: 100svh; padding: 88px 0 30px; flex-direction: column; justify-content: center; }
    .hero-section::after { height: 56px; }
    .grid-bg { display: none; }
    #globeContainer {
        position: relative; right: auto; left: auto; top: auto; transform: none;
        display: block; opacity: 1;
        width: min(60vw, 220px); height: min(60vw, 220px);
        max-width: none; max-height: none; margin: 0 auto 4px;
    }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-eyebrow { font-size: 0.64rem; letter-spacing: 0.1em; margin-bottom: 12px; justify-content: center; }
    .hero-eyebrow::before { width: 18px; }
    .hero-title { font-size: clamp(1.95rem, 8.4vw, 2.6rem); margin-bottom: 12px; }
    .hero-sub { font-size: 0.98rem; line-height: 1.6; margin-bottom: 20px; }
    .hero-actions { flex-direction: column; gap: 11px; margin-bottom: 22px; }
    .hero-social { justify-content: center; }

    /* STATS — compact 2x2 */
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px 10px; padding: 32px 0; }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-num { font-size: clamp(2rem, 9vw, 2.6rem); }
    .stat-label { margin-top: 8px; font-size: 0.72rem; }

    /* ABOUT — compact */
    .about-grid { gap: 26px; }
    .about-body p { font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
    .about-img-wrap { max-width: 300px; margin: 0 auto 22px; }

    /* VISION / MISSION — compact */
    .vm-grid { gap: 14px; }
    .vm-card { padding: 26px 22px; }
    .vm-icon { width: 50px; height: 50px; margin-bottom: 16px; }
    .vm-card p { font-size: 0.98rem; line-height: 1.65; }

    /* SERVICES — single-column tap-to-expand accordion */
    .services-grid { grid-template-columns: 1fr; gap: 9px; margin-top: 26px; }
    .svc-card { padding: 0; }
    .svc-card:hover { transform: none; box-shadow: var(--shadow); border-color: var(--border); }
    .svc-card:hover .svc-icon { background: var(--cream); color: var(--violet); }
    .svc-head { display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 16px; min-height: 52px; cursor: pointer; }
    .svc-num { margin: 0; font-size: 1.1rem; min-width: 24px; }
    .svc-icon { display: none; }
    .svc-name { margin: 0; font-size: 0.98rem; line-height: 1.3; flex: 1; }
    .svc-chevron { display: block; color: var(--violet); transition: transform .3s var(--ease); flex-shrink: 0; }
    .svc-card.open .svc-chevron { transform: rotate(180deg); }
    .svc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
    .svc-card.open .svc-panel { max-height: 400px; }
    .svc-desc { padding: 0 16px 15px; font-size: 0.9rem; line-height: 1.6; }

    /* INSIGHTS — compact 2x2 */
    .ins-grid { grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 26px; }
    .ins-channel-card { padding: 18px 15px; }
    .ins-channel-icon { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 12px; }
    .ins-channel-name { font-size: 1.02rem; margin-bottom: 7px; }
    .ins-channel-desc { font-size: 0.82rem; line-height: 1.5; margin-bottom: 12px; }
    .ins-channel-cta { font-size: 0.8rem; }

    /* CONTACT — CTA first, compact form */
    .contact-grid { gap: 22px; }
    .contact-desc { font-size: 0.98rem; line-height: 1.65; margin-bottom: 20px; }
    .form-wrap { padding: 20px 16px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 14px; }

    /* FOOTER — compact */
    .site-footer { padding: 44px 0 24px; }
    .footer-grid { gap: 26px; padding-bottom: 28px; }
    .footer-desc { max-width: 100%; }

    /* ARTICLES / GALLERY / BLOG — single column, compact hero */
    .page-hero { padding: 110px 0 40px; }
    .page-hero-sub { font-size: 1rem; }
    .article-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-grid, .gallery-slide { grid-template-columns: 1fr 1fr; gap: 14px; }
    .gallery-info { padding: 16px 15px 18px; }
    .gallery-name { font-size: 1.05rem; }
    .gallery-desc { font-size: 0.86rem; }
    .post-hero { padding: 104px 0 0; }
    .post-excerpt { font-size: 1.05rem; margin-bottom: 26px; }
    .post-body { padding-top: 36px; }
    .post-body p { font-size: 1.04rem; line-height: 1.75; }
    .post-cta-row .btn-glow, .post-cta-row .btn-ghost { width: 100%; justify-content: center; }
    .mag-rack { grid-template-columns: 1fr 1fr; gap: 18px; }
    .mag-issue-name { font-size: 1.3rem; }
    .mag-zone { display: none; }   /* use arrows / swipe / keyboard on phones */
    .article-toolbar { margin-bottom: 22px; }
    .press-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 769px) {
    .article-grid, .article-slide { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .press-grid { grid-template-columns: repeat(2, 1fr); }
    .mag-rack { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Small phones (≤380px) ---------- */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 1.85rem; }
    #globeContainer { width: 190px; height: 190px; }
    .stats-inner { gap: 20px 8px; }
    .ins-grid { gap: 9px; }
    .ins-channel-card { padding: 16px 13px; }
}
