*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #0f2c3f;
    --forest-deep: #132D22;
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --bg: #F7F5F0;
    --bg-card: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --border: #E8E3D8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* ── PAGE HEADER ────────────────────────── */
.page-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6.5rem 2rem 2.5rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 2rem;
    transition: gap 0.25s, color 0.25s;
}

.back-btn:hover {
    gap: 0.7rem;
    color: var(--gold);
}

.page-title-wrap {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.page-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.05;
}

.page-title em {
    font-style: italic;
    color: var(--gold);
}

.page-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 340px;
    line-height: 1.75;
    text-align: right;
}

/* ── MAIN ───────────────────────────────── */
.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── STATS ROW ──────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.stat-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.25s;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell:hover {
    background: #FAFAF6;
}

.stat-icon {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.7rem;
    opacity: 0.75;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── SECTION LABEL ──────────────────────── */
.sec-label {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.sec-title em {
    font-style: italic;
    color: var(--gold);
}

.sec-rule {
    width: 36px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.35;
    margin-bottom: 1.8rem;
}

/* ── OUR STORY ──────────────────────────── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-body p {
    font-size: 0.94rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.story-body p strong {
    color: var(--forest);
    font-weight: 500;
}

.story-pull {
    border-left: 2px solid var(--gold);
    padding: 0.75rem 1.2rem;
    margin: 1.2rem 0;
    background: rgba(201, 168, 76, 0.05);
}

.story-pull p {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    font-style: italic;
    color: var(--forest) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Info card column */
.story-meta {
    display: flex;
    flex-direction: column;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-bottom: none;
    transition: background 0.2s;
}

.meta-row:last-child {
    border-bottom: 1px solid var(--border);
}

.meta-row:hover {
    background: #FAFAF6;
}

.meta-icon {
    width: 34px;
    height: 34px;
    background: rgba(27, 67, 50, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.meta-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.meta-value {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--forest);
}

/* ── VALUES ─────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.value-card {
    background: var(--bg-card);
    padding: 2rem 1.8rem;
    transition: background 0.25s;
}

.value-card:hover {
    background: #FAFAF6;
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(27, 67, 50, 0.07);
    border: 1px solid rgba(27, 67, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.45rem;
}

.value-desc {
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── TEAM ───────────────────────────────── */
.team{
    margin: auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.team-avatar {
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #EAE5DB, #D8D0C0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-avatar i {
    font-size: 3rem;
    color: rgba(27, 67, 50, 0.13);
}

.team-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest-deep);
    background: var(--gold);
    padding: 0.22rem 0.6rem;
}

.team-info {
    padding: 1.2rem;
    border-top: 1px solid var(--border);
}

.team-name {
    font-family: 'Baloo Bhai 2', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.team-bio {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── CTA STRIP ──────────────────────────── */
.cta-strip {
    background: #1B4332;
    padding: 2.8rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #F8F8F4;
    margin-bottom: 0.3rem;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(248, 248, 244, 0.5);
}

.cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}




/* ── TABLET  900px ──────────────────────── */
@media (max-width: 900px) {
    .main {
        gap: 3rem;
    }

    /* Stats: 2×2 */
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3),
    .stat-cell:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    /* Story stacks */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Values: 2 cols */
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Team: 2 cols */
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* CTA stacks */
    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .cta-btns {
        width: 100%;
    }

    .btn-gold,
    .btn-outline {
        flex: 1;
        justify-content: center;
    }



}

/* ── MOBILE  600px ──────────────────────── */
@media (max-width: 600px) {

    /* Hamburger visible */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--forest);
        border-bottom: 1px solid rgba(201, 168, 76, 0.18);
        padding: 0.5rem 0 1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.85rem 2rem;
    }

    .nav-links a::after {
        left: 2rem;
        right: 2rem;
    }

    .nav-book {
        margin: 0.5rem 2rem 0 !important;
        padding: 0.7rem 1.5rem !important;
        text-align: center;
        justify-content: center;
    }

    /* Page header */
    .page-header {
        padding: 5.5rem 1.2rem 2rem;
    }

    .page-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .page-tagline {
        text-align: left;
        max-width: 100%;
    }

    /* Main padding */
    .main {
        padding: 2rem 1.2rem 4rem;
        gap: 2.5rem;
    }

    /* Stats: 2×2 compact */
    .stat-cell {
        padding: 1.4rem 1rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    /* Story */
    .story-body p {
        font-size: 0.9rem;
    }

    /* Values: 1 col */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.5rem;
    }

    /* Team: 1 col */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    /* CTA */
    .cta-strip {
        padding: 2rem 1.2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-links {
        gap: 1.2rem;
        flex-wrap: wrap;
    }
}

/* ── VERY SMALL  380px ──────────────────── */
@media (max-width: 380px) {
    .page-title {
        font-size: 2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-cell {
        border-right: none !important;
        border-top: 1px solid var(--border);
    }

    .stat-cell:first-child {
        border-top: none;
    }
}