/* GHRPS — Homepage mockup theme (navy / cream / brown / gold) */
:root {
    --navy: #1e3260;
    --navy-dark: #152847;
    --cream: #faf8f4;
    --beige: #ebe4d6;
    --brown: #5c4033;
    --brown-dark: #3d291f;
    --gold-bar: #d4a84b;
    --tan-btn: #a67c52;
    --primary: var(--navy);
    --secondary: var(--gold-bar);
    --dark: var(--navy-dark);
    --light: var(--cream);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body { background: var(--cream); color: #333; font-family: var(--font-body); }
.heading-brown { font-family: var(--font-heading); color: var(--brown); font-weight: 700; font-size: clamp(1.75rem, 3vw, 2.35rem); }

/* Hide old chrome on homepage flow */
.admission-marquee, .floating-shapes { display: none !important; }

/* Topbar */
.topbar-gold {
    background: var(--gold-bar);
    color: var(--brown-dark);
    font-size: 0.8rem;
    padding: 0.45rem 0;
    font-weight: 500;
}
.topbar-gold a { color: var(--brown-dark); }
.topbar-social a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 0.25rem; color: var(--brown-dark);
}

/* Header */
.site-header--mockup {
    background: #fff;
    box-shadow: 0 2px 16px rgba(30,50,96,0.08);
    position: sticky; top: 0; z-index: 1000;
}
.site-header--mockup .navbar { padding: 0.65rem 0; }
.site-header--mockup .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.site-header--mockup .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
}
.site-header--mockup .navbar-toggler {
    border-color: rgba(30, 50, 96, 0.15);
    padding: 0.35rem 0.55rem;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    max-width: min(100%, 300px);
    flex-shrink: 0;
}
.header-brand__mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-brand__mark img {
    height: clamp(46px, 5.5vw, 58px);
    width: auto;
    display: block;
}
.header-brand__mark-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
}
.header-brand__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
    min-width: 0;
}
.header-brand__name {
    align-self: flex-start;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.72rem, 1vw, 0.88rem);
    color: #5d2e24;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.header-brand__location {
    margin-top: 0.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.62rem, 0.85vw, 0.74rem);
    color: #5d2e24;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .header-brand__name,
    .header-brand__location { white-space: normal; }
}
@media (max-width: 575.98px) {
    .header-brand { gap: 0.5rem; max-width: calc(100% - 3.25rem); }
    .header-brand__mark img { height: 42px; }
    .header-brand__name { font-size: 0.68rem; line-height: 1.2; }
    .header-brand__location { font-size: 0.62rem; }
}

.header-logo img { height: 56px; width: auto; }
.header-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    max-width: 200px;
    line-height: 1.2;
}
.header-nav .nav-link {
    font-size: clamp(0.66rem, 0.72vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy) !important;
    padding: 0.45rem 0.38rem !important;
    white-space: nowrap;
}
.header-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}
@media (min-width: 1400px) {
    .header-nav .nav-link { padding: 0.48rem 0.5rem !important; font-size: 0.8rem; }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-nav .nav-link { padding: 0.42rem 0.32rem !important; font-size: 0.7rem; }
    .header-brand { max-width: 240px; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-brand { max-width: 230px; gap: 0.55rem; }
    .header-brand__mark img { height: 46px; }
    .header-brand__name { font-size: 0.72rem; }
    .header-brand__location { font-size: 0.64rem; }
    .header-nav .nav-link { font-size: 0.76rem; padding: 0.48rem 0.42rem !important; }
}
.header-nav .nav-link:hover,
.header-nav .nav-link.active { color: var(--brown) !important; }
.btn-header {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.55rem 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
}
.btn-header--tan { background: var(--tan-btn); color: #fff; }
.btn-header--brown { background: var(--brown-dark); color: #fff; }
.btn-header:hover { opacity: 0.92; color: #fff; }

/* Hero */
.hero-mockup {
    position: relative;
    min-height: 75vh;
    overflow: hidden;
}
.hero-mockup-swiper, .hero-mockup-swiper .swiper-slide { min-height: 75vh; }
.hero-mockup-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-mockup-bg--default {
    background: linear-gradient(135deg, #0f1d45 0%, #1a2f6b 40%, #0d9488 100%);
}
.hero-mockup .swiper-pagination-bullet-active {
    background: #f5a623 !important;
    width: 28px;
    border-radius: 4px;
}
.hero-mockup-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(21,40,71,0.88) 0%, rgba(30,50,96,0.55) 50%, rgba(30,50,96,0.25) 100%);
}
.hero-mockup-content {
    position: relative; z-index: 2;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    max-width: 560px;
}
.hero-mockup h1 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-mockup p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.btn-hero-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--navy);
}

/* Sections */
.section-cream { background: var(--cream); padding: 4.5rem 0; }
.section-beige { background: var(--beige); padding: 4.5rem 0; }
.section-navy { background: var(--navy); padding: 4.5rem 0; }
.section-white { background: #fff; padding: 4.5rem 0; }

/* Message blocks */
.message-photo-frame {
    border: 8px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
    background: #ddd;
}
.message-photo-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.message-photo-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #ccc, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--brown);
}
.message-body p { color: #555; line-height: 1.8; }
.message-block--inverse .message-body p { color: rgba(255,255,255,0.85); }
.link-read-more {
    color: var(--brown);
    font-weight: 600;
    text-decoration: none;
}
.signature { color: var(--brown); font-family: var(--font-heading); font-size: 1.25rem; }

/* Pillar cards */
.pillar-card-mockup {
    background: #fff;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-radius: 2px;
}
.pillar-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--beige);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.pillar-card-mockup h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--brown);
    margin-bottom: 0.75rem;
}
.pillar-card-mockup p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}
.pillar-card-mockup a {
    color: var(--brown);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Activities */
.activities-swiper { padding: 0 3rem; position: relative; }
.activity-slide {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.activity-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.activities-swiper .swiper-button-prev,
.activities-swiper .swiper-button-next {
    color: var(--navy);
}
.btn-view-more {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: var(--brown);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 2px;
}
.btn-view-more:hover { background: var(--brown-dark); color: #fff; }

/* CTA */
.cta-mockup {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy)),
        url('https://images.unsplash.com/photo-1523050854058-7755a4d72594?w=1600&q=80') center/cover no-repeat;
}
.cta-mockup-overlay {
    position: absolute; inset: 0;
    background: rgba(21,40,71,0.82);
}
.cta-eyebrow { font-size: 0.8rem; letter-spacing: 0.15em; opacity: 0.9; }
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.btn-cta-light {
    padding: 0.7rem 1.5rem;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.btn-cta-outline {
    padding: 0.7rem 1.5rem;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.btn-cta-light:hover { opacity: 0.95; color: var(--navy); }
.btn-cta-outline:hover { background: #fff; color: var(--navy); }

/* News split */
.news-row-card {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    height: 100%;
}
.news-row-card:hover { transform: translateY(-4px); color: inherit; }
.news-row-img {
    flex: 0 0 120px;
    border-radius: 4px;
    overflow: hidden;
}
.news-row-img img { width: 120px; height: 100px; object-fit: cover; }
.news-row-placeholder {
    width: 120px; height: 100px;
    background: var(--beige);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--brown);
}
.news-row-body h5 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}
.news-row-body span { font-size: 0.8rem; color: #888; }

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 2px;
}
.testimonial-card .stars { color: var(--gold-bar); font-size: 0.85rem; }
.testimonial-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: #888; }
.testimonial-quote {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: var(--beige);
    opacity: 0.8;
}

/* Footer */
.footer-mockup {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    margin-top: 0;
}
.footer-mockup h6 {
    color: var(--gold-bar);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-mockup ul { list-style: none; padding: 0; margin: 0; }
.footer-mockup li { margin-bottom: 0.4rem; }
.footer-mockup a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; }
.footer-mockup a:hover { color: #fff; }
.footer-social a {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-right: 0.35rem;
    color: #fff;
}
.footer-bar {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.6);
    padding: 0.85rem 0;
}

/* Inner pages still use premium hero */
.page-hero-premium { background: linear-gradient(160deg, var(--navy-dark), var(--navy), #2a4a7a) !important; }
.site-footer-premium { display: none; }

@media (max-width: 1199.98px) {
    .hero-mockup-content { max-width: 100%; }
    .activities-swiper { padding: 0 2.5rem; }
}
