/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    padding-top: calc(var(--nav-h) + 48px);
}
.hero-card {
    width: 1216px; max-width: 100%;
    margin: 0 auto;
    padding: 45px 64px;
    background: rgba(247, 95, 37, 0.05);
    border-radius: 16px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
}
.hero-card::before {
    content: '';
    position: absolute; top: -96px; right: 0;
    width: 384px; height: 384px;
    background: linear-gradient(135deg, #FFB59D 0%, #F75F25 100%);
    opacity: 0.10; border-radius: 12px;
    filter: blur(50px);
    pointer-events: none;
}
.hero-h1 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(28px, 5vw, 48px); font-weight: 800;
    line-height: 1.15; letter-spacing: 0;
    margin-bottom: 18px;
    color: #DFE2EB;
}
.hero-h1 .accent { color: #FFB596; }
.hero-sub {
    font-size: 18px; font-weight: 300; color: #EDEEF0;
    line-height: 28px; max-width: 864px;
    margin-bottom: 18px;
}
.hero-tagline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(41, 184, 216, 0.10);
    border-radius: 6px;
}
.hero-tagline .tw {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 20px; font-weight: 700; color: #55D6F7;
    text-transform: uppercase; letter-spacing: 1px;
    line-height: 15px;
}
.hero-tagline .tw-static {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 20px; font-weight: 700; color: #ffffff;
    text-transform: uppercase; letter-spacing: 1px;
    line-height: 15px;
}
.hero-tagline .tw-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #55D6F7; display: inline-block; flex-shrink: 0;
}

/* ─── TWO-COL SECTIONS ──────────────────────────────────── */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}
.two-col.reverse { direction: ltr; }
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child { order: 1; }

/* ─── IMAGE PLACEHOLDER ─────────────────────────────────── */
.img-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: #181C22;
    border-radius: 16px;
    position: relative; overflow: hidden;
}
.img-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
}
.img-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,181,150,0.07) 0%, transparent 70%);
}
.img-placeholder.dynamic { aspect-ratio: unset; height: 100%; min-height: 300px; }

/* ─── PRINCIPLE CARDS ───────────────────────────────────── */
.principle-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-top: 32px;
}
.principle-card {
    background: #181C22;
    outline: 1px solid rgba(122,133,153,0.15);
    outline-offset: -1px;
    border-radius: 5px;
    padding: 24px;
    display: flex; flex-direction: column;
}
.principle-num {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 32px; font-weight: 800;
    color: rgba(255,181,150,0.80);
    line-height: 1; margin-bottom: 16px;
}
.principle-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px; font-weight: 700; color: #DFE2EB;
    line-height: 1.3; margin-bottom: 12px;
}
.principle-body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 400; color: #EDEEF0;
    line-height: 22.75px;
}

/* ─── LOCATION CARDS ────────────────────────────────────── */
.loc-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 24px;
}
.loc-card {
    background: #181C22;
    outline: 1px solid rgba(122,133,153,0.15);
    outline-offset: -1px;
    border-radius: 5px;
    padding: 20px 24px;
}
.loc-name {
    font-size: 15px; font-weight: 700; color: var(--text);
    margin-bottom: 2px;
}
.loc-country {
    font-size: 12px; font-weight: 600; color: var(--orange);
    letter-spacing: 0.04em; margin-bottom: 8px;
}
.loc-desc {
    font-size: 13px; color: var(--text2); line-height: 1.65;
}

/* ─── CTA BAND ──────────────────────────────────────────── */
.cta-band {
    background: var(--bg2);
    padding: 80px 0;
}
.cta-band-inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
}
.cta-band-h {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; color: var(--text);
    line-height: 1.25; letter-spacing: -0.01em;
}
.cta-band-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 40px; background: var(--orange); color: #0A0E14;
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
    border: none; border-radius: 4px; letter-spacing: 0.02em;
    cursor: pointer; transition: background 0.18s, transform 0.15s;
    white-space: nowrap; flex-shrink: 0;
}
.cta-band-btn:hover { background: #e09070; color: #0A0E14; transform: translateY(-1px); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse > :first-child { order: 0; }
    .two-col.reverse > :last-child { order: 0; }
    .principle-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-card { padding: 40px 32px; }
    .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .principle-grid { grid-template-columns: 1fr 1fr; }
    .loc-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 56px 0; }
}
@media (max-width: 640px) {
    .principle-grid { grid-template-columns: 1fr; }
    .hero-card { padding: 28px 16px; }
}

