/* ═══════════════════════════════════════════════════════════════
   Guru Har Rai Public School — Premium Design System
   ═══════════════════════════════════════════════════════════════ */
:root {
    --primary: #0a3d32;
    --secondary: #d4af37;
    --accent: #147a5f;
    --dark: #041f1a;
    --light: #f8faf9;
    --surface: #ffffff;
    --muted: #5c6f68;
    --border: rgba(10, 61, 50, 0.08);
    --gold-glow: rgba(212, 175, 55, 0.35);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 24px rgba(4, 31, 26, 0.06);
    --shadow-md: 0 12px 48px rgba(4, 31, 26, 0.1);
    --shadow-lg: 0 24px 80px rgba(4, 31, 26, 0.14);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #1c2e29;
    background: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.font-display { font-family: var(--font-heading); }

.text-gradient-gold {
    background: linear-gradient(135deg, #f5e6a8 0%, var(--secondary) 45%, #9a7b1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ─── Preloader ─── */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.site-preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #fff;
    letter-spacing: 0.08em;
}
.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.preloader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--secondary), #fff8dc);
    animation: preloadBar 1.2s var(--ease-out-expo) forwards;
}
@keyframes preloadBar { to { width: 100%; } }

/* ─── Scroll progress ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 10001;
    background: linear-gradient(90deg, var(--secondary), #fff8dc);
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ─── Admission marquee ─── */
.admission-marquee {
    background: linear-gradient(90deg, var(--dark), var(--primary), var(--dark));
    color: #fff;
    overflow: hidden;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.admission-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
    gap: 4rem;
}
.admission-marquee__track span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.admission-marquee__track span::before {
    content: '✦';
    color: var(--secondary);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Topbar ─── */
.site-topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-topbar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.25s;
}
.site-topbar a:hover { color: var(--secondary); }
.topbar-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    margin-left: 0.35rem;
    transition: all 0.3s;
}
.topbar-social a:hover {
    background: var(--secondary);
    color: var(--dark) !important;
    border-color: var(--secondary);
}

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.45s var(--ease-out-expo);
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    opacity: 1;
    transition: opacity 0.4s;
}
.site-header.is-scrolled::before {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-sm);
}
.site-header .navbar {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    transition: padding 0.4s var(--ease-out-expo);
}
.site-header.is-scrolled .navbar { padding: 0.65rem 0; }

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none !important;
}
.brand-emblem {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(10, 61, 50, 0.25);
    flex-shrink: 0;
    overflow: hidden;
}
.brand-emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.brand-text small {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-main .nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    letter-spacing: 0.02em;
}
.nav-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease-out-expo);
}
.nav-main .nav-link:hover::after,
.nav-main .nav-link.active::after { transform: scaleX(1); }

.dropdown-menu-premium {
    border: none;
    border-radius: var(--radius-md);
    padding: 0.65rem;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    background: var(--surface);
    margin-top: 0.5rem !important;
    animation: dropdownIn 0.35s var(--ease-out-expo);
}
@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu-premium .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.dropdown-menu-premium .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(10,61,50,0.08), transparent);
    color: var(--primary);
    padding-left: 1.2rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.btn-premium-gold {
    background: linear-gradient(135deg, #e8c96a, var(--secondary), #b8941f);
    color: var(--dark);
    box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px var(--gold-glow);
    color: var(--dark);
}
.btn-premium-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-premium-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.btn-premium-green {
    background: var(--primary);
    color: #fff;
}
.btn-premium-green:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Hero ─── */
.hero-cinema {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}
.hero-cinema .swiper { height: 100%; }
.hero-cinema .swiper-slide {
    position: relative;
    overflow: hidden;
}
.hero-cinema .slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-cinema .slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(4,31,26,0.94) 0%, rgba(10,61,50,0.75) 42%, rgba(10,61,50,0.35) 70%, transparent 100%),
        linear-gradient(0deg, rgba(4,31,26,0.5) 0%, transparent 40%);
}
.hero-cinema .slide-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.15), transparent 45%);
    pointer-events: none;
}
.hero-cinema .hero-inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2rem) 0 6rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.35);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px transparent; }
}
.hero-cinema h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.08;
}
.hero-cinema .hero-lead {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 540px;
    margin-top: 1.25rem;
    font-weight: 400;
}
.hero-divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    margin: 1.5rem 0;
    border-radius: 2px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--secondary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.hero-cinema .swiper-button-prev,
.hero-cinema .swiper-button-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: all 0.35s;
}
.hero-cinema .swiper-button-prev:hover,
.hero-cinema .swiper-button-next:hover {
    background: var(--secondary);
    color: var(--dark);
}
.hero-cinema .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.hero-cinema .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* Static hero fallback */
.hero-static {
    min-height: 85vh;
    background:
        linear-gradient(110deg, rgba(4,31,26,0.95), rgba(10,61,50,0.85)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}

/* ─── Sections ─── */
.section-luxury { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-luxury--alt {
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.section-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 0;
}
.section-divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    margin-top: 1.25rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.stat-card-premium {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.45s var(--ease-out-expo);
}
.stat-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.stat-card-premium:hover::before { transform: scaleX(1); }
.stat-card-premium .stat-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin: 0;
}
.stat-card-premium .stat-num span { color: var(--secondary); }
.stat-card-premium .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.5rem 0 0;
    font-weight: 500;
}

/* About block */
.about-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 520px;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    box-shadow: var(--shadow-lg);
}
.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: inherit;
    margin: 1rem;
}
.about-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(transparent 40%, rgba(4,31,26,0.85));
    color: #fff;
}
.about-frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    opacity: 0.5;
    z-index: -1;
}

.content-prose {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    line-height: 1.8;
}
.content-prose h2, .content-prose h3 { margin-top: 1.5rem; }
.content-prose p { color: #2a3d38; }
.content-prose--overlap { margin-top: 0; position: relative; z-index: 2; }

/* Pillar cards */
.pillar-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.45s var(--ease-out-expo);
    position: relative;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.3);
}
.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10,61,50,0.1), rgba(212,175,55,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

/* Portal bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}
.bento-tile {
    grid-column: span 4;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.4s var(--ease-out-expo);
    min-height: 140px;
    position: relative;
    overflow: hidden;
}
.bento-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
}
.bento-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: #fff;
}
.bento-tile:hover::before { opacity: 1; }
.bento-tile:hover * { position: relative; z-index: 1; color: #fff !important; }
.bento-tile i { font-size: 1.5rem; color: var(--secondary); }
.bento-tile span { font-weight: 600; font-size: 0.95rem; }
.bento-tile small { color: var(--muted); font-size: 0.78rem; }
.bento-tile--wide { grid-column: span 6; }
.bento-tile--tall { grid-column: span 4; min-height: 180px; }
@media (max-width: 991px) {
    .bento-tile, .bento-tile--wide, .bento-tile--tall { grid-column: span 6; }
}
@media (max-width: 575px) {
    .bento-tile, .bento-tile--wide, .bento-tile--tall { grid-column: span 12; }
}

/* News cards */
.news-card-premium {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}
.news-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.news-card-premium .news-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.news-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}
.news-card-premium:hover img { transform: scale(1.08); }
.news-card-premium .news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--surface);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}
.news-card-premium .news-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-premium h5 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.news-card-premium .news-link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Album */
.album-card-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    text-decoration: none !important;
}
.album-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.album-card-premium:hover img { transform: scale(1.1); }
.album-card-premium .album-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(4,31,26,0.92));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: #fff;
}
.album-card-premium h5 { color: #fff; margin: 0; font-size: 1.2rem; }
.album-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.35rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-band::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
    top: -150px;
    right: -100px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.75rem); }

/* Page hero inner */
.page-hero-premium {
    position: relative;
    padding: clamp(6rem, 12vw, 9rem) 0 clamp(5rem, 8vw, 6rem);
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 55%, var(--accent) 100%);
    color: #fff;
    overflow: hidden;
}
.page-hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}
.page-hero-premium .container { position: relative; z-index: 1; }
.page-hero-premium h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}
.breadcrumb-premium {
    font-size: 0.82rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
}
.breadcrumb-premium a {
    color: var(--secondary);
    text-decoration: none;
}
.breadcrumb-premium a:hover { text-decoration: underline; }

/* Gallery grid */
.gallery-masonry img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: zoom-in;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}
.gallery-masonry img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Disclosure */
.doc-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: all 0.35s;
}
.doc-card:hover {
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--shadow-sm);
}

/* Staff */
.staff-card-premium {
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.45s var(--ease-out-expo);
}
.staff-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.staff-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 24px var(--gold-glow);
}
.staff-avatar-placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.5rem;
}

/* Footer */
.site-footer-premium {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    position: relative;
    margin-top: 4rem;
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--light);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.site-footer-premium .footer-inner {
    padding: 5rem 0 2rem;
    position: relative;
}
.site-footer-premium h5 {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.site-footer-premium a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.25s;
    font-size: 0.9rem;
}
.site-footer-premium a:hover { color: var(--secondary); }
.site-footer-premium ul { list-style: none; padding: 0; margin: 0; }
.site-footer-premium li { margin-bottom: 0.5rem; }
.footer-brand-block strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    display: block;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* Float actions */
.float-whatsapp {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    transition: transform 0.35s var(--ease-out-expo);
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
    box-shadow: var(--shadow-md);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover { background: var(--secondary); color: var(--dark); }

/* Legacy class compatibility */
.section-padding { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.site-footer:not(.site-footer--premium) { display: none; }

.section-title span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--secondary);
}
.card-luxury {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease-out-expo);
}
.card-luxury:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-luxury img { height: 220px; object-fit: cover; width: 100%; }
.content-box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.page-hero {
    padding: clamp(6rem, 12vw, 9rem) 0 clamp(5rem, 8vw, 6rem);
    background: linear-gradient(160deg, var(--dark), var(--primary), var(--accent));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero h1 { color: #fff; }
.breadcrumb-custom { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.breadcrumb-custom a { color: var(--secondary); text-decoration: none; }
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #e8c96a, var(--secondary));
    color: var(--dark);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--gold-glow); color: var(--dark); }
.btn-primary-school {
    display: inline-flex;
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.35s;
}
.btn-primary-school:hover { background: var(--accent); transform: translateY(-2px); color: #fff !important; }
.album-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.album-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.7s var(--ease-out-expo); }
.album-card:hover img { transform: scale(1.08); }
.album-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 35%, rgba(4,31,26,0.9));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; color: #fff;
}
.album-overlay h5 { color: #fff; }
.gallery-grid img { border-radius: var(--radius-md); height: 240px; object-fit: cover; width: 100%; cursor: zoom-in; transition: transform 0.4s; }
.gallery-grid img:hover { transform: scale(1.03); }
.disclosure-list .list-group-item {
    background: var(--surface);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.65rem;
    padding: 1.25rem 1.5rem;
}
.staff-card img, .staff-card { border-radius: 50%; }

@media (max-width: 991px) {
    .nav-main { padding: 1rem 0; }
    .hero-cinema h1 { font-size: 2.25rem; }
}
