/* ═══════════════════════════════════════════════════════════
   SMART COLLEGE — Logo-Aligned Geometric Design System
   Navy #003366 · Orange #FF9933 · Montserrat + Poppins
   ═══════════════════════════════════════════════════════════ */
:root {
    --navy: #003366;
    --navy-deep: #002244;
    --navy-soft: #004d80;
    --orange: #FF9933;
    --orange-light: #FFB366;
    --orange-deep: #E67A00;
    --blue: var(--navy);
    --blue-deep: var(--navy-deep);
    --blue-soft: var(--navy-soft);
    --gold: var(--orange);
    --gold-light: var(--orange-light);
    --red: var(--orange-deep);
    --ink: #0a0a0a;
    --ink-soft: #1a2a3a;
    --cream: #F8FAFC;
    --cream-dark: #EEF2F7;
    --white: #FFFFFF;
    --black: #000000;
    --muted: #5a6b7d;
    --line: rgba(0, 51, 102, 0.1);
    --display: 'Montserrat', system-ui, sans-serif;
    --sans: 'Poppins', system-ui, sans-serif;
    --serif: var(--display);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 88px;
    --clip-btn: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    --clip-card: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* ─── Triangle & angular design language ─── */
.sc-divider-wave {
    position: relative; height: 48px; margin-top: -1px;
    background: var(--cream);
    clip-path: polygon(0 0, 0 100%, 5% 70%, 10% 100%, 15% 65%, 20% 100%, 25% 60%, 30% 100%, 35% 55%, 40% 100%, 45% 50%, 50% 100%, 55% 50%, 60% 100%, 65% 55%, 70% 100%, 75% 60%, 80% 100%, 85% 65%, 90% 100%, 95% 70%, 100% 100%, 100% 0);
}
.sc-divider-wave--navy { background: var(--navy); }
.sc-divider-wave--cream { background: var(--cream-dark); }
.sc-divider-angular {
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 45%, var(--orange) 45%, var(--orange) 100%);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
}

.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--blue); color: #fff;
    padding: 12px 20px; z-index: 10000; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* Film grain overlay */
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── HEADER ─── */
.lux-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px clamp(20px, 4vw, 48px);
    transition: padding 0.5s var(--ease);
}
.lux-header.is-scrolled {
    padding: 12px clamp(20px, 4vw, 48px);
}
.lux-header__inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0, 51, 102, 0.08);
    border: 1px solid var(--line);
    border-radius: 4px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.lux-header.is-scrolled .lux-header__inner {
    box-shadow: 0 6px 48px rgba(0, 51, 102, 0.12);
}
.lux-brand {
    display: flex; align-items: center; gap: 12px;
    padding: 0; background: none; box-shadow: none;
    transition: opacity 0.3s var(--ease);
}
.lux-brand:hover { opacity: 0.92; }
.lux-brand__mark { height: 52px; width: auto; flex-shrink: 0; }
.lux-brand__wordmark { height: 40px; width: auto; max-width: min(200px, 34vw); }
.lux-brand img { filter: none; }
.lux-nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative;
}
.lux-nav-toggle span {
    display: block; height: 2px; background: var(--ink);
    position: absolute; left: 0; right: 0;
    transition: 0.3s;
}
.lux-nav-toggle span:first-child { top: 4px; }
.lux-nav-toggle span:last-child { bottom: 4px; }
.lux-nav { display: flex; align-items: center; gap: 32px; }
.lux-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.lux-nav__link {
    padding: 10px 16px; font-size: 0.875rem; font-weight: 500;
    color: var(--ink-soft); border-radius: 100px;
    transition: all 0.3s; background: none; border: none;
    cursor: pointer; font-family: inherit;
    display: flex; align-items: center; gap: 4px;
}
.lux-nav__link:hover, .lux-nav__link.is-active { color: var(--navy); background: rgba(0,51,102,0.06); }
.lux-nav__dropdown { position: relative; }
.lux-nav__sub {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 200px; background: var(--white);
    border-radius: 16px; padding: 8px;
    box-shadow: 0 20px 60px rgba(0,34,68,0.12);
    border: 1px solid var(--line);
    list-style: none; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: 0.3s var(--ease);
}
.lux-nav__dropdown:hover .lux-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.lux-nav__sub a {
    display: block; padding: 10px 16px; font-size: 0.875rem;
    border-radius: 10px; color: var(--ink-soft);
}
.lux-nav__sub a:hover { background: var(--cream); color: var(--blue); }
.lux-nav__actions { display: flex; align-items: center; gap: 16px; }

/* Buttons */
.lux-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-family: var(--sans);
    font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; border-radius: 0;
    clip-path: var(--clip-btn);
    border: none; cursor: pointer; transition: all 0.4s var(--ease);
}
.lux-btn--gold {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--navy-deep); box-shadow: 0 8px 32px rgba(255,153,51,0.35);
}
.lux-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,153,51,0.45); }
.lux-btn--ghost {
    background: transparent; color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.35);
}
.lux-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.lux-btn--outline-dark {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--ink);
}
.lux-btn--outline-dark:hover { background: var(--ink); color: var(--cream); }
.lux-btn--blue { background: var(--blue); color: #fff; }
.lux-btn--blue:hover { background: var(--blue-deep); color: #fff; }
.lux-btn--lg { padding: 18px 40px; font-size: 0.9375rem; }

/* ─── CINEMATIC HERO ─── */
.cine-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end;
    padding-bottom: 100px; overflow: hidden;
}
.cine-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 72px; z-index: 3;
    background: var(--cream);
    clip-path: polygon(0 100%, 0 55%, 6% 75%, 12% 45%, 18% 70%, 24% 40%, 30% 65%, 36% 35%, 42% 60%, 48% 30%, 54% 55%, 60% 25%, 66% 50%, 72% 20%, 78% 45%, 84% 15%, 90% 40%, 96% 10%, 100% 35%, 100% 100%);
}
.cine-hero__triangles {
    position: absolute; bottom: 18%; left: 8%; z-index: 2;
    display: flex; gap: 12px; opacity: 0.25;
}
.cine-hero__triangles span {
    display: block; width: 0; height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 48px solid var(--orange);
}
.cine-hero__triangles span:nth-child(2) {
    border-bottom-color: var(--white); transform: translateY(16px);
}
.cine-hero__triangles span:nth-child(3) {
    border-bottom-color: var(--navy-soft); transform: translateY(8px);
}
.cine-hero__media { position: absolute; inset: 0; }
.cine-hero__img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from{transform:scale(1.05)} to{transform:scale(1.12)} }
.cine-hero__veil {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        rgba(0,34,68,0.92) 0%,
        rgba(0,51,102,0.78) 40%,
        rgba(0,77,128,0.5) 100%);
}
.cine-hero__content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 48px; align-items: end;
    padding-top: calc(var(--header-h) + 60px);
}
.cine-hero__eyebrow {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 12px;
}
.cine-hero__tagline {
    font-family: var(--display); font-size: 1rem; font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.02em; margin-bottom: 20px;
    padding-left: 64px; position: relative;
}
.cine-hero__tagline::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--orange);
}
.gold-line { width: 48px; height: 3px; background: var(--orange); clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%); }
.cine-hero__title {
    font-family: var(--display);
    font-size: clamp(3rem, 7.5vw, 5.5rem);
    font-weight: 800; line-height: 1.05;
    color: #fff; margin-bottom: 28px;
    text-transform: uppercase; letter-spacing: -0.02em;
}
.cine-hero__title em {
    font-style: normal; color: var(--orange);
}
.cine-hero__lead {
    font-size: 1.125rem; font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 480px; margin-bottom: 40px; line-height: 1.7;
}
.cine-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.cine-hero__card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    clip-path: var(--clip-card);
    padding: 40px 36px;
    position: relative;
}
.cine-hero__card::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 56px; height: 56px;
    background: var(--orange);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.85;
}
.cine-hero__stat { text-align: center; padding: 12px 0; }
.cine-hero__stat-num {
    display: block; font-family: var(--display);
    font-size: 2.75rem; font-weight: 700; color: #fff; line-height: 1;
}
.cine-hero__stat-label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-top: 6px;
}
.cine-hero__divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }
.cine-hero__scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.4); font-size: 0.6875rem;
    letter-spacing: 0.2em; text-transform: uppercase;
}
.cine-hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ─── TICKER ─── */
.lux-ticker {
    background: var(--navy-deep); color: var(--orange-light);
    padding: 16px 0; overflow: hidden;
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid rgba(255,153,51,0.2);
    position: relative;
}
.lux-ticker::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 48px;
    background: linear-gradient(90deg, var(--navy-deep), transparent);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    z-index: 1;
}
.lux-ticker__track {
    display: flex; gap: 48px; white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 0.8125rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
}
.lux-ticker__track .dot { color: var(--orange); font-size: 0.5rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── EDITORIAL SECTIONS ─── */
.editorial-section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.editorial-section--cream { background: var(--cream-dark); }
.editorial-section--cream::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--navy) 33%, var(--orange) 33%, var(--orange) 66%, var(--navy) 66%);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
}
.editorial-head {
    display: flex; align-items: flex-start; gap: 32px;
    margin-bottom: 64px;
}
.editorial-head--light .editorial-title,
.editorial-head--light .editorial-label { color: #fff; }
.editorial-head--light .editorial-num { color: rgba(255,255,255,0.15); }
.editorial-num {
    font-family: var(--display); font-size: 5rem; font-weight: 800;
    line-height: 1; color: rgba(0,51,102,0.06);
    user-select: none;
}
.editorial-label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 12px;
}
.editorial-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700; line-height: 1.15; color: var(--navy);
}
.editorial-title em { font-style: normal; color: var(--orange); }

/* Showcase cards */
.showcase-row {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px; align-items: start;
}
.showcase-card {
    background: var(--white); border-radius: 0;
    overflow: hidden; border: 1px solid var(--line);
    clip-path: var(--clip-card);
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
    position: relative;
}
.showcase-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 40px;
    background: var(--navy);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    opacity: 0.12;
    pointer-events: none;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,51,102,0.12); }
.showcase-card--tall .showcase-card__img { height: 320px; }
.showcase-card__img { height: 200px; overflow: hidden; }
.showcase-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.showcase-card:hover .showcase-card__img img { transform: scale(1.08); }
.showcase-card__body { padding: 28px; }
.showcase-card__tag {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 12px;
}
.showcase-card__tag--red { color: var(--orange-deep); }
.showcase-card__tag--gold { color: var(--orange); }
.showcase-card h3 {
    font-family: var(--display); font-size: 1.25rem;
    font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: var(--navy);
}
.showcase-card p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 20px; }
.showcase-card__link {
    font-size: 0.8125rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--blue); display: inline-flex; align-items: center; gap: 8px;
}
.showcase-card__link:hover { gap: 14px; }

/* Mission split */
.mission-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}
.mission-split__visual { position: relative; overflow: hidden; }
.mission-split__visual img {
    width: 100%; height: 100%; object-fit: cover;
}
.mission-split__frame {
    position: absolute; inset: 40px;
    border: 2px solid rgba(255,153,51,0.45);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    pointer-events: none;
}
.mission-split__content {
    background: var(--white);
    padding: clamp(48px, 8vw, 100px);
    display: flex; flex-direction: column; justify-content: center;
}
.mission-quote {
    font-family: var(--display); font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: normal; font-weight: 600; line-height: 1.5;
    color: var(--navy); margin: 24px 0;
    padding-left: 24px; border-left: 4px solid var(--orange);
}
.mission-text { color: var(--muted); margin-bottom: 32px; }
.mission-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.mission-feat {
    display: flex; align-items: flex-start; gap: 16px;
}
.mission-feat i {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--cream); border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 1.125rem;
}
.mission-feat strong { display: block; font-size: 0.9375rem; margin-bottom: 2px; }
.mission-feat span { font-size: 0.8125rem; color: var(--muted); }

/* Facilities */
.facilities-lux {
    background: var(--navy-deep); padding: clamp(80px, 12vw, 140px) 0;
    color: #fff;
    position: relative;
}
.facilities-lux::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 56px;
    background: var(--cream-dark);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.facilities-lux__wrap {
    display: grid; grid-template-columns: 280px 1fr; gap: 48px;
    position: relative; z-index: 1;
}
.facilities-lux__nav { display: flex; flex-direction: column; gap: 4px; }
.facilities-lux__tab {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px; background: none; border: none;
    border-left: 2px solid transparent;
    font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
    color: rgba(255,255,255,0.45); cursor: pointer;
    text-align: left; transition: all 0.3s;
}
.facilities-lux__tab span {
    font-family: var(--display); font-size: 0.8125rem;
    color: var(--gold); opacity: 0.5;
}
.facilities-lux__tab:hover { color: rgba(255,255,255,0.8); }
.facilities-lux__tab.active {
    color: #fff; border-left-color: var(--gold);
    background: rgba(255,255,255,0.04);
}
.facilities-lux__tab.active span { opacity: 1; }
.facilities-lux__panel { display: none; animation: fadeUp 0.5s var(--ease); }
.facilities-lux__panel.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.facilities-lux__panel.active:has(.facilities-lux__text--full) { grid-template-columns: 1fr; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.facilities-lux__media { border-radius: 4px; overflow: hidden; }
.facilities-lux__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.facilities-lux__text h3 {
    font-family: var(--display); font-size: 2rem; font-weight: 500;
    margin-bottom: 16px;
}
.facilities-lux__text p { color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 12px; }
.facilities-lux__text ul { margin: 16px 0; padding-left: 20px; color: rgba(255,255,255,0.65); }
.facilities-lux__text li { margin-bottom: 10px; }

/* Facebook activities feed */
.fb-feed-intro {
    margin-top: 12px; font-size: 0.9375rem; color: var(--muted); max-width: 520px;
}
.fb-feed-intro a { color: var(--blue); font-weight: 600; }
.fb-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fb-feed__card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 8px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.fb-feed__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,34,68,0.08);
}
.fb-feed__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.fb-feed__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.fb-feed__card:hover .fb-feed__media img { transform: scale(1.04); }
.fb-feed__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.fb-feed__meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; color: var(--muted); margin-bottom: 12px;
}
.fb-feed__meta i { color: #1877F2; font-size: 1rem; }
.fb-feed__text {
    font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.65;
    margin-bottom: 16px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.fb-feed__link {
    font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--blue);
    display: inline-flex; align-items: center; gap: 6px;
}
.fb-feed__link:hover { color: var(--blue-soft); }
.fb-feed-empty {
    text-align: center; padding: 64px 32px;
    background: var(--white); border: 1px dashed var(--line); border-radius: 8px;
}
.fb-feed-empty__icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(24,119,242,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #1877F2;
}
.fb-feed-empty h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 12px; }
.fb-feed-empty p { color: var(--muted); margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* Principal letter */
.letter-lux {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}
.letter-lux__grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
}
.letter-lux__photo { position: relative; }
.letter-lux__photo img { border-radius: 4px; width: 100%; }
.letter-lux__caption {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--navy-deep); color: #fff;
    padding: 20px 28px; border-left: 4px solid var(--orange);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.letter-lux__caption strong { display: block; font-size: 1rem; }
.letter-lux__caption span { font-size: 0.8125rem; color: var(--orange-light); }
.letter-lux__body p { color: var(--muted); margin-bottom: 16px; font-size: 1.0625rem; line-height: 1.8; }
.letter-lux__signature {
    font-family: var(--display); font-style: normal; font-weight: 600;
    font-size: 1.125rem; color: var(--navy) !important; margin-top: 24px !important;
}

/* Academic organization */
.org-lux {
    background: var(--white);
    margin: clamp(48px, 8vw, 80px) 0;
}
.org-lux__banner {
    background: var(--navy);
    padding: clamp(20px, 4vw, 28px) 0;
}
.org-lux__banner-inner {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
}
.org-lux__logo {
    flex-shrink: 0;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}
.org-lux__title {
    font-family: var(--display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.org-lux__body {
    padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 48px) clamp(36px, 6vw, 56px);
    max-width: 960px;
}
.org-lux__body p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.org-lux__body p:last-child { margin-bottom: 0; }
.org-lux__body strong {
    color: var(--navy);
    font-weight: 700;
}

/* Gallery */
.gallery-lux {
    background: var(--navy-deep); padding: clamp(80px, 12vw, 140px) 0;
}
.gallery-lux__filters {
    display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px; background: transparent;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
    font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
    color: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--orange); border-color: var(--orange); color: var(--navy-deep);
}
.gallery-lux__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px; gap: 12px;
}
.gallery-lux__item {
    position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
}
.gallery-lux__item--wide { grid-column: span 2; }
.gallery-lux__item--tall { grid-row: span 2; }
.gallery-lux__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-lux__item:hover img { transform: scale(1.08); }
.gallery-lux__zoom {
    position: absolute; inset: 0;
    background: rgba(0,34,68,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s;
    color: #fff; font-size: 1.5rem;
}
.gallery-lux__item:hover .gallery-lux__zoom { opacity: 1; }

/* Enroll CTA */
.enroll-lux {
    position: relative; min-height: 480px;
    display: flex; align-items: center; overflow: hidden;
}
.enroll-lux__bg { position: absolute; inset: 0; }
.enroll-lux__bg img { width: 100%; height: 100%; object-fit: cover; }
.enroll-lux__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,34,68,0.92) 0%, rgba(0,51,102,0.65) 100%);
}
.enroll-lux__inner {
    position: relative; z-index: 2; max-width: 560px;
    padding: 80px 0;
}
.enroll-lux__inner h2 {
    font-family: var(--display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.enroll-lux__inner h2 em { font-style: normal; color: var(--orange-light); }
.enroll-lux__inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.0625rem; }

/* Contact strip */
.contact-strip { padding: 60px 0; background: var(--cream-dark); }
.contact-strip__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-strip__item {
    display: flex; align-items: center; gap: 16px;
    padding: 28px 32px; background: var(--white);
    border: 1px solid var(--line); border-radius: 4px;
    transition: all 0.3s;
}
a.contact-strip__item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,34,68,0.06); }
.contact-strip__item i {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--cream); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 1.125rem;
}
.contact-strip__item span { font-size: 0.9375rem; font-weight: 500; }

/* ─── INNER PAGES ─── */
.page-hero-lux {
    padding: calc(var(--header-h) + 80px) 0 80px;
    background: var(--navy-deep); color: #fff; text-align: center;
    position: relative; overflow: hidden;
}
.page-hero-lux::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,153,51,0.15) 0%, transparent 60%);
}
.page-hero-lux::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 32px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}
.page-hero-lux h1 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500; position: relative;
}
.page-hero-lux p { color: rgba(255,255,255,0.6); margin-top: 12px; position: relative; }
.page-section { padding: clamp(64px, 10vw, 100px) 0; }
.page-section--white { background: var(--white); }
.page-section--cream { background: var(--cream-dark); }

.values-lux {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px;
}
.value-lux {
    padding: 20px 16px; text-align: center;
    border: 1px solid var(--line); border-radius: 4px;
    font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
    transition: all 0.3s;
}
.value-lux:hover { background: var(--navy); color: var(--orange-light); border-color: var(--navy); }

.ib-lux {
    background: var(--white); border: 1px solid var(--line);
    border-top: 4px solid var(--orange); padding: 48px; border-radius: 0;
    clip-path: var(--clip-card);
}
.ib-lux h3 { font-family: var(--display); font-size: 1.5rem; color: var(--navy); margin: 24px 0 12px; }
.ib-lux p, .ib-lux li { color: var(--muted); line-height: 1.75; }
.ib-lux ul { margin: 12px 0 0 20px; }

/* Contact form */
.form-lux {
    background: var(--white); border: 1px solid var(--line);
    padding: 48px; border-radius: 4px;
}
.form-lux h3 { font-family: var(--display); font-size: 1.75rem; margin-bottom: 8px; }
.form-lux > p { color: var(--muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.8125rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--ink-soft); margin-bottom: 8px;
}
.form-control {
    width: 100%; padding: 14px 18px;
    font-family: var(--sans); font-size: 1rem;
    border: 1px solid var(--line); border-radius: 4px;
    background: var(--cream); transition: 0.3s;
}
.form-control:focus {
    outline: none; border-color: var(--blue);
    background: var(--white); box-shadow: 0 0 0 3px rgba(0,51,102,0.08);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.alert-success {
    padding: 16px 20px; background: #ecfdf5; color: #065f46;
    border-radius: 4px; margin-bottom: 24px; border-left: 3px solid #10b981;
}
.contact-sidebar {
    background: var(--navy-deep); color: #fff;
    padding: 48px; border-radius: 0; height: 100%;
    clip-path: var(--clip-card);
}
.contact-sidebar h4 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 24px; }
.contact-sidebar li { margin-bottom: 12px; opacity: 0.75; display: flex; align-items: center; gap: 10px; }
.contact-sidebar .lux-footer__social { margin-top: 32px; }

.apply-lux {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto;
}
.apply-lux__card {
    padding: 56px 40px; text-align: center;
    border: 1px solid var(--line); border-radius: 4px;
    background: var(--white); transition: all 0.4s var(--ease);
}
.apply-lux__card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,34,68,0.08); }
.apply-lux__icon {
    width: 72px; height: 72px; margin: 0 auto 24px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
}
.apply-lux__card h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 12px; }
.apply-lux__card p { color: var(--muted); margin-bottom: 28px; font-size: 0.9375rem; }

/* Contact email CTA */
.contact-split { grid-template-columns: 1.1fr 0.9fr; }
.contact-email-cta {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 8px; padding: clamp(40px, 6vw, 64px);
    text-align: center;
}
.contact-email-cta__icon {
    width: 72px; height: 72px; margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--blue), var(--blue-soft));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
}
.contact-email-cta h3 { font-family: var(--display); font-size: 1.75rem; margin-bottom: 16px; }
.contact-email-cta p { color: var(--muted); margin-bottom: 28px; line-height: 1.7; max-width: 420px; margin-left: auto; margin-right: auto; }
.contact-email-cta__note { margin-top: 20px !important; margin-bottom: 0 !important; font-size: 0.875rem !important; }

/* Careers — full-width embedded application */
.apply-embed__head { text-align: center; margin-bottom: 32px; }
.apply-embed__head p { color: var(--muted); margin-top: 12px; }
.apply-embed {
    width: 100%; background: var(--white);
    border: 1px solid var(--line); border-radius: 8px;
    overflow: hidden; box-shadow: 0 8px 40px rgba(0,34,68,0.06);
}
.apply-embed__frame {
    display: block; width: 100%; min-height: 900px;
    height: clamp(700px, 85vh, 1400px);
    border: none; background: var(--cream);
}
.apply-embed__fallback {
    text-align: center; margin-top: 16px; font-size: 0.875rem; color: var(--muted);
}
.apply-embed__fallback a { color: var(--blue); font-weight: 600; }

/* ─── FOOTER ─── */
.lux-footer {
    background: var(--navy-deep); color: rgba(255,255,255,0.6);
    position: relative;
}
.lux-footer__gold-line {
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 50%, var(--navy) 100%);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 16px 100%);
}
.lux-footer__grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; padding: 72px clamp(20px, 4vw, 48px) 48px;
}
.lux-footer__brand-logos {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.lux-footer__logo-mark { height: 48px; width: auto; flex-shrink: 0; }
.lux-footer__logo-wordmark { height: 36px; width: auto; max-width: 200px; }
.lux-footer__brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 24px; }
.lux-footer__title {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 20px;
}
.lux-footer__list { list-style: none; }
.lux-footer__list li { margin-bottom: 10px; font-size: 0.9375rem; display: flex; align-items: center; gap: 10px; }
.lux-footer__links a { transition: 0.3s; }
.lux-footer__links a:hover { color: var(--gold-light); }
.lux-footer__social { display: flex; gap: 10px; }
.lux-footer__social a {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: 0.3s;
}
.lux-footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.lux-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.lux-footer__bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8125rem; opacity: 0.5;
}
.lux-footer__bottom a:hover { color: var(--gold-light); }
.lux-footer__utility { display: flex; align-items: center; gap: 18px; }
.lux-staff-portal {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    min-height: 30px; padding: 0 0.7rem; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.lux-staff-portal i { font-size: 1rem; }
.lux-staff-portal:hover { border-color: var(--gold-light); color: var(--gold-light); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Back to top */
.lux-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 48px; height: 48px; background: var(--navy);
    color: var(--orange-light); border: 1px solid rgba(255,153,51,0.3);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    font-size: 1.125rem; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: all 0.4s var(--ease); z-index: 999;
}
.lux-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.lux-top:hover { background: var(--orange); color: var(--navy-deep); border-color: var(--orange); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,34,68,0.96);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.4s; padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: #fff; width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.25rem; cursor: pointer;
}

/* Reveal */
.reveal {
    opacity: 1; transform: none;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .cine-hero__content { grid-template-columns: 1fr; }
    .cine-hero__right { max-width: 360px; }
    .showcase-row { grid-template-columns: 1fr 1fr; }
    .showcase-card--tall { grid-row: span 1; }
    .showcase-card--tall .showcase-card__img { height: 200px; }
    .mission-split { grid-template-columns: 1fr; }
    .mission-split__visual { min-height: 400px; }
    .facilities-lux__wrap { grid-template-columns: 1fr; }
    .facilities-lux__nav { flex-direction: row; flex-wrap: wrap; }
    .facilities-lux__tab { border-left: none; border-bottom: 2px solid transparent; padding: 12px 16px; }
    .facilities-lux__tab.active { border-bottom-color: var(--gold); border-left-color: transparent; }
    .facilities-lux__panel.active { grid-template-columns: 1fr; }
    .letter-lux__grid { grid-template-columns: 1fr; }
    .fb-feed { grid-template-columns: repeat(2, 1fr); }
    .gallery-lux__grid { grid-template-columns: repeat(2, 1fr); }
    .lux-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .lux-nav-toggle { display: block; }
    .lux-nav {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
        background: var(--cream); flex-direction: column; align-items: stretch;
        padding: 100px 32px 32px; transform: translateX(100%);
        transition: transform 0.4s var(--ease); z-index: 999;
        box-shadow: -20px 0 60px rgba(0,34,68,0.1);
    }
    .lux-nav.open { transform: translateX(0); }
    .lux-nav__list { flex-direction: column; align-items: stretch; }
    .lux-nav__actions { flex-direction: column; margin-top: 24px; }
    .lux-header__inner { border-radius: 0; clip-path: none; }
    .cine-hero__title { font-size: clamp(2.25rem, 12vw, 3.5rem); }
    .cine-hero__tagline { font-size: 0.875rem; padding-left: 48px; }
    .cine-hero__triangles { display: none; }
    .cine-hero::after { height: 40px; }
    .showcase-row { grid-template-columns: 1fr; }
    .fb-feed { grid-template-columns: 1fr; }
    .gallery-lux__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-lux__item--wide, .gallery-lux__item--tall { grid-column: span 1; grid-row: span 1; }
    .contact-strip__grid { grid-template-columns: 1fr; }
    .lux-footer__grid { grid-template-columns: 1fr; text-align: center; }
    .lux-footer__list li { justify-content: center; }
    .lux-footer__social { justify-content: center; }
    .lux-footer__bottom-inner { flex-direction: column; gap: 8px; }
    .form-row, .apply-lux { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; }
    .apply-embed__frame { min-height: 600px; height: 75vh; }
    .editorial-head { flex-direction: column; gap: 8px; }
    .editorial-num { font-size: 3rem; }
}

/* ─── BRANCH ANNOUNCEMENT ─── */
.branch-announce {
    padding: clamp(64px, 10vw, 100px) 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative; overflow: hidden;
}
.branch-announce::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(255,153,51,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.branch-announce__inner {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 56px; align-items: center; position: relative;
}
.branch-announce--compact .branch-announce__inner { grid-template-columns: auto 1fr; gap: 40px; }
.branch-announce__media { position: relative; border-radius: 8px; overflow: hidden; }
.branch-announce__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.branch-announce__badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold); color: var(--ink);
    padding: 8px 16px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px;
}
.branch-announce__content .editorial-title { color: #fff; }
.branch-announce__content .editorial-label { color: var(--gold-light); }
.branch-announce__content p { color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.75; }
.branch-announce__hire {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 20px; background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--gold); border-radius: 4px;
    color: rgba(255,255,255,0.85) !important; margin: 24px 0 !important;
}
.branch-announce__hire > i {
    flex: 0 0 auto; margin-top: 0.2em; color: var(--gold);
}
.branch-announce__hire > span {
    flex: 1 1 auto; min-width: 0; line-height: 1.6;
}
.branch-announce__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.branch-announce__content .lux-btn--outline-dark {
    border-color: rgba(255,255,255,0.4); color: #fff;
}
.branch-announce__content .lux-btn--outline-dark:hover { background: #fff; color: var(--ink); }

/* ─── CAMPUS 3D ─── */
.campus-3d {
    padding: clamp(64px, 10vw, 100px) 0;
    background: var(--cream);
    position: relative;
}
.campus-3d__head { margin-bottom: 36px; }
.campus-3d__lead {
    margin: 12px 0 0;
    max-width: 52ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}
.campus-3d__frame-wrap {
    position: relative;
    width: 100%;
    height: clamp(420px, 52vw, 640px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 51, 102, 0.14);
    border: 1px solid var(--line);
    background: var(--navy-deep);
}
.campus-3d__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.campus-3d__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
}
.campus-3d__hint i { color: var(--orange); }

/* Branch switch (facilities) */
.branch-switch {
    display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap;
}
.branch-switch__btn {
    padding: 12px 28px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
    color: rgba(255,255,255,0.6); font-family: var(--sans);
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 8px; transition: 0.3s;
}
.branch-switch__btn:hover { border-color: var(--gold); color: #fff; }
.branch-switch__btn.active {
    background: var(--gold); border-color: var(--gold); color: var(--ink);
}
.facilities-lux__tab.is-hidden { display: none !important; }
.facilities-lux__note-khalde {
    display: none; padding: 16px 20px; margin-bottom: 20px;
    background: rgba(255,153,51,0.12); border-left: 3px solid var(--gold);
    color: rgba(255,255,255,0.8); font-size: 0.9375rem; border-radius: 4px;
}
.facilities-lux__note-khalde.is-visible { display: block; }

/* Branch cards */
.branches-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.branch-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 0; padding: 36px; position: relative;
    clip-path: var(--clip-card);
    transition: transform 0.3s, box-shadow 0.3s;
}
.branch-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 0;
    border-top: 24px solid var(--orange);
    border-right: 24px solid transparent;
}
.branch-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,51,102,0.1); }
.branch-card--new { border-color: rgba(255,153,51,0.4); }
.branch-card__new {
    position: absolute; top: 16px; right: 16px;
    background: var(--orange); color: var(--navy-deep);
    padding: 4px 12px; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.branch-card__title {
    font-family: var(--display); font-size: 1.375rem; font-weight: 700;
    margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--navy);
}
.branch-card__list { list-style: none; }
.branch-card__list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 12px; font-size: 0.9375rem; color: var(--muted);
}
.branch-card__list a { color: var(--blue); font-weight: 500; }
.branch-card__list a:hover { color: var(--blue-soft); }
.branch-card__map {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px; font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue);
}
.branch-card__iframe { margin-top: 20px; border-radius: 8px; overflow: hidden; }
.contact-strip__official {
    text-align: center; margin-top: 32px; font-size: 1rem; color: var(--muted);
}
.contact-strip__official a { color: var(--blue); font-weight: 600; }

/* AI popup */
.ai-popup {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,34,68,0.6); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden; transition: 0.4s var(--ease);
}
.ai-popup.is-open { opacity: 1; visibility: visible; }
.ai-popup__card {
    background: var(--white); border-radius: 16px;
    padding: 40px 36px; max-width: 420px; width: 100%;
    text-align: center; position: relative;
    box-shadow: 0 32px 80px rgba(0,34,68,0.2);
    transform: translateY(24px) scale(0.96); transition: 0.4s var(--ease);
}
.ai-popup.is-open .ai-popup__card { transform: translateY(0) scale(1); }
.ai-popup__close {
    position: absolute; top: 16px; right: 16px;
    background: var(--cream); border: none; width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer; color: var(--ink-soft);
}
.ai-popup__icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
}
.ai-popup__card h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 12px; }
.ai-popup__card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 24px; }
.ai-popup__btn { width: 100%; justify-content: center; }
.ai-popup__note { display: block; margin-top: 12px; font-size: 0.75rem; color: var(--muted); }

@media (max-width: 768px) {
    .branch-announce__inner, .branch-announce--compact .branch-announce__inner { grid-template-columns: 1fr; }
    .branches-grid { grid-template-columns: 1fr; }
    .campus-3d__frame-wrap { height: min(72vh, 520px); }
}
