/* =========================================================
   OUTDOORS WITH KARAN — Premium Editorial Design
   ========================================================= */

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
button { font-family:inherit; border:none; cursor:pointer; background:none; }

/* ── Design Tokens ───────────────────────────────────── */
:root {
    --ink:        #111510;
    --ink-mid:    #3a3a36;
    --ink-light:  #7a7a72;
    --cream:      #f5f1eb;
    --cream-dark: #ede9e0;
    --forest:     #1a3320;
    --forest-mid: #2c5438;
    --green:      #3d7a52;
    --gold:       #c8a050;
    --gold-light: #e8c878;
    --white:      #ffffff;

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body:    'Inter', system-ui, sans-serif;

    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);

    --radius:     10px;
    --radius-sm:  6px;
}

body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── Shared ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.9rem;
}
.eyebrow.light { color: var(--gold-light); }

h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
}

.section-head {
    margin-bottom: 3.5rem;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HEADER ──────────────────────────────────────────── */

/* Make Cormorant Garamond render crisply at all sizes */
h1, h2, h3, h4, blockquote {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Body text always antialiased */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 0;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}

.header.solid {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.4s;
}
.header.solid .logo { color: var(--forest); }

.logo-peak { font-size: 1.1rem; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
.header.solid .nav-links a { color: var(--ink-mid); }

.nav-links a:not(.nav-cta):hover { color: var(--white); }
.header.solid .nav-links a:not(.nav-cta):hover { color: var(--green); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--gold);
    color: var(--forest) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,160,80,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.header.solid .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    will-change: transform;
    transform-origin: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,16,10,0.82) 0%,
        rgba(8,16,10,0.4)  40%,
        rgba(8,16,10,0.25) 70%,
        rgba(8,16,10,0.2)  100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64px 96px;
    max-width: 780px;
    color: var(--white);
    animation: heroIn 1.4s var(--ease-out) both;
}

@keyframes heroIn {
    from { opacity:0; transform: translateY(40px); }
    to   { opacity:1; transform: translateY(0); }
}

.hero-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: heroIn 1s var(--ease-out) 0.2s both;
    /* Wrap gracefully on smaller screens */
    line-height: 2;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
    opacity: 0;
    animation: heroIn 1s var(--ease-out) 0.35s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    line-height: 1.85;
    opacity: 0;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: heroIn 1s var(--ease-out) 0.5s both;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroIn 1s var(--ease-out) 0.65s both;
}

.cta-ghost {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 13px 34px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}
.cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-solid {
    background: var(--gold);
    color: var(--forest);
    padding: 13px 34px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 24px rgba(200,160,80,0.35);
}
.cta-solid:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,160,80,0.45);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    animation: heroIn 1s var(--ease-out) 1.2s both;
}

.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollFlow 2.4s ease-in-out infinite;
}

@keyframes scrollFlow {
    0%,100% { transform: scaleY(0.4); opacity: 0.3; }
    50%      { transform: scaleY(1);   opacity: 1; }
}

/* ── STATS ───────────────────────────────────────────── */
.stats-strip {
    background: var(--forest);
    padding: 0;
}

.stats-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 3.2rem 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat {
    flex: 1;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.stat-n {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-unit {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--gold);
    font-weight: 700;
}

.stat p {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 680px;
}

.about-photo-col {
    background: var(--cream-dark);
    display: flex;
    align-items: stretch;
}

.about-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--forest);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
}

.tag-line {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.2rem;
}

.tag-main {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.about-text-col {
    background: var(--white);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-col h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.about-lead {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    line-height: 1.75;
    color: var(--ink-mid);
    margin-bottom: 1.1rem;
}

.about-text-col p {
    color: var(--ink-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.6rem 0;
}

.tag {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    color: var(--forest-mid);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.25s;
}
.tag:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s;
    margin-top: 0.5rem;
}
.insta-link:hover { color: var(--forest); gap: 0.85rem; }

/* ── PHILOSOPHY ──────────────────────────────────────── */
.philosophy {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
}

.philosophy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,25,12,0.93) 0%, rgba(8,25,12,0.82) 100%);
}

.philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 64px;
    text-align: center;
    color: var(--white);
}

.philosophy-content blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    letter-spacing: 0.2px;
}

.philosophy-content blockquote em {
    font-style: normal;
    color: var(--gold-light);
    font-weight: 600;
}

.philosophy-attribution {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
    background: var(--ink);
}

.services-header {
    padding: 6rem 64px 3rem;
    max-width: 1160px;
    margin: 0 auto;
}

.services-header .eyebrow { color: var(--gold); }
.services-header h2 { color: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 520px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: default;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
}

.sc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,16,10,0.92) 0%,
        rgba(8,16,10,0.5)  50%,
        rgba(8,16,10,0.25) 100%
    );
    transition: background 0.5s var(--ease);
}

.service-card:hover .sc-overlay {
    background: linear-gradient(
        to top,
        rgba(8,16,10,0.97) 0%,
        rgba(8,16,10,0.75) 50%,
        rgba(8,16,10,0.4)  100%
    );
}

.sc-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    color: var(--white);
}

.sc-top { margin-bottom: auto; }

.sc-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    transition: color 0.4s;
}
.service-card:hover .sc-num { color: var(--gold); opacity: 0.6; }

.sc-content h3 {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s;
}
.service-card:hover .sc-content h3 { border-color: var(--gold); }

.sc-hover {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s;
}
.service-card:hover .sc-hover {
    max-height: 200px;
    opacity: 1;
    padding-top: 1.2rem;
}

.sc-hover p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.sc-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    transition: letter-spacing 0.3s;
}
.sc-link:hover { letter-spacing: 2px; }

/* ── EXPEDITIONS ─────────────────────────────────────── */
.expeditions {
    background: var(--cream);
    padding: 7rem 0;
}

.exp-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.exp-feature,
.exp-small {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.exp-feature { height: 540px; }

.exp-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.exp-small { height: calc((540px - 2.4rem) / 3); }

.exp-feature img,
.exp-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.exp-feature:hover img,
.exp-small:hover img { transform: scale(1.07); }

.exp-feature::after,
.exp-small::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,12,7,0.9) 0%, transparent 55%);
    pointer-events: none;
}

.exp-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.8rem;
    color: var(--white);
    z-index: 2;
}

.exp-small .exp-card-info { padding: 1.2rem 1.4rem; }

.exp-alt {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.exp-card-info h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.exp-small .exp-card-info h3 { font-size: 1.05rem; }

.exp-card-info p {
    font-size: 0.78rem;
    opacity: 0.7;
    line-height: 1.5;
}

.exp-footnote {
    text-align: center;
    color: var(--ink-light);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--cream-dark);
}

/* ── EXPERIENCE ──────────────────────────────────────── */
.experience {
    background: var(--white);
    padding: 7rem 0;
}

.chapters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 4rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.chapter {
    padding: 3rem;
    display: flex;
    gap: 1.8rem;
    border-right: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    transition: background 0.3s;
}
.chapter:hover { background: var(--cream); }
.chapter:nth-child(even) { border-right: none; }
.chapter:nth-child(3),
.chapter:nth-child(4) { border-bottom: none; }

.chapter-num {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    transition: color 0.3s;
}
.chapter:hover .chapter-num { color: var(--gold); }

.chapter-period {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.chapter-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.chapter-org {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.chapter-body p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.8;
}

/* Edu block */
.edu-block {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 3rem;
    border-left: 4px solid var(--gold);
}

.edu-block > h3 {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.edu-block > p {
    font-size: 0.82rem;
    color: var(--ink-light);
    font-style: italic;
    margin-bottom: 1.8rem;
}

.edu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.edu-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--forest-mid);
    margin-bottom: 0.4rem;
}

.edu-card p {
    font-size: 0.82rem;
    color: var(--ink-light);
    line-height: 1.7;
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery {
    background: var(--ink);
    padding: 6rem 0 0;
}

.gallery-head {
    text-align: center;
    padding: 0 32px 3.5rem;
}
.gallery-head .eyebrow { color: var(--gold); }
.gallery-head h2 { color: var(--white); }

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 4px;
}

.gm-item {
    overflow: hidden;
    cursor: zoom-in;
    background: var(--forest);
}
.gm-item.gm-tall  { grid-row: span 2; }
.gm-item.gm-wide  { grid-column: span 2; }

.gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s;
    filter: brightness(0.88) saturate(0.9);
}
.gm-item:hover img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.05);
}

/* ── CERTIFICATIONS ──────────────────────────────────── */
.certifications {
    background: var(--white);
    padding: 7rem 0;
}

.cert-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
}

.cert-group h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--cream-dark);
}

.cert-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cert-pill {
    display: inline-block;
    background: var(--cream);
    color: var(--ink-mid);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--cream-dark);
    transition: all 0.25s;
    line-height: 1.4;
}
.cert-pill:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* ── BLOG ────────────────────────────────────────────── */
.blog {
    background: var(--cream);
    padding: 7rem 0;
}

.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.blog-head h2 { margin-bottom: 0; }

.blog-all {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s;
    margin-bottom: 0.4rem;
}
.blog-all:hover { color: var(--forest); letter-spacing: 2px; }

.blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.bc-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card-feat .bc-img-wrap { aspect-ratio: 4/3; }

.bc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.blog-card:hover .bc-img-wrap img { transform: scale(1.06); }

.bc-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.blog-card:not(.blog-card-feat) .bc-body { padding: 1.2rem 1.4rem; }

.bc-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
}

.bc-body h3 {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
}
.blog-card:not(.blog-card-feat) .bc-body h3 { font-size: 1.1rem; }

.bc-body h3 a { transition: color 0.25s; }
.bc-body h3 a:hover { color: var(--green); }

.bc-body p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.8;
    flex: 1;
}

.bc-date {
    font-size: 0.7rem;
    color: var(--ink-light);
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 600px;
}

.contact-left {
    background: var(--forest);
    display: flex;
    align-items: center;
}

.contact-left-inner {
    padding: 6rem 5rem;
}

.contact-left h2 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-left > .contact-left-inner > p,
.contact-left-inner > p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    transition: color 0.25s;
}
a.cd-item:hover { color: var(--gold-light); }

.cd-icon {
    font-size: 1rem;
    color: var(--gold);
    width: 1.2rem;
    text-align: center;
    flex-shrink: 0;
}

.contact-right {
    background: var(--white);
    padding: 6rem 5rem;
    display: flex;
    align-items: center;
}

form {
    width: 100%;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.f-group {
    margin-bottom: 1.2rem;
}

.f-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.5rem;
}

.f-group input,
.f-group textarea,
.f-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    transition: all 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(61,122,82,0.1);
}

.f-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.65;
}

.f-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7a72' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.f-submit {
    width: 100%;
    background: var(--forest);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--ff-body);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}
.f-submit:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44,84,56,0.3);
}
.f-submit.sent {
    background: var(--green);
    cursor: default;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
    background: var(--ink);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-top {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
}

.ft-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.ft-tagline {
    font-size: 0.78rem;
    opacity: 0.4;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.ft-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ft-nav a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    transition: color 0.25s;
}
.ft-nav a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    transition: color 0.25s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.94);
    transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    background: none;
    border: none;
}
.lb-close:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .about { grid-template-columns: 1fr 1fr; }
    .about-text-col { padding: 5rem 3.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
    .service-card { height: 380px; }
    .chapters { grid-template-columns: 1fr; }
    .chapter:nth-child(even) { border-right: 1px solid var(--cream-dark); }
    .chapter:nth-child(3) { border-bottom: 1px solid var(--cream-dark); }
    .chapter:nth-child(4) { border-bottom: none; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card-feat { grid-column: span 2; }
    .cert-groups { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
    .about { grid-template-columns: 1fr; }
    .about-img-wrap { height: 420px; }
    .about-text-col { padding: 4rem 2.5rem; }
    .contact { grid-template-columns: 1fr; }
    .contact-left-inner { padding: 4rem 2.5rem; }
    .contact-right { padding: 3rem 2.5rem; }
    .exp-layout { grid-template-columns: 1fr; }
    .exp-feature { height: 400px; }
    .exp-stack { flex-direction: row; }
    .exp-small { height: 220px; flex: 1; }
    .gallery-mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(4, 220px); }
    .gm-item.gm-tall { grid-row: span 2; }
    .gm-item.gm-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 0.5rem 0 1rem;
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        gap: 0;
        align-items: stretch;
    }
    .nav-links.active { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--cream-dark); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.8rem;
        color: var(--ink-mid) !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
    }
    .nav-links a.nav-cta {
        margin: 0.8rem 1.5rem 0;
        text-align: center;
        border-radius: var(--radius-sm) !important;
        padding: 11px 1.5rem !important;
        background: var(--gold) !important;
        color: var(--forest) !important;
    }
    .hamburger { display: flex; }
    .hero-content { padding: 0 28px 72px; }
    .hero-scroll-hint { right: 28px; bottom: 1.5rem; }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 2px; }
    .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
    .philosophy-content { padding: 5rem 28px; }
    .services-header { padding: 4rem 28px 2rem; }
    .services-grid { grid-template-columns: 1fr 1fr; height: auto; }
    .service-card { height: 320px; }
    .stats-inner { flex-wrap: wrap; padding: 2.5rem 28px; }
    .stat { flex: 0 0 50%; padding: 0.8rem; }
    .stat-divider { display: none; }
    .f-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-feat { grid-column: auto; }
    .blog-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .edu-cards { grid-template-columns: 1fr; }
    .section-head { margin-bottom: 2.5rem; }
    h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
}

@media (max-width: 540px) {
    .hero-title { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { height: 300px; }
    .exp-stack { flex-direction: column; }
    .exp-small { height: 200px; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gm-item { height: 160px; }
    .gm-item.gm-tall { grid-row: auto; height: 160px; }
    .chapters { grid-template-columns: 1fr; border: none; gap: 1px; }
    .chapter { border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 2rem; }
    .chapter:nth-child(even) { border-right: 1px solid var(--cream-dark); }
    .contact-left-inner { padding: 3rem 1.5rem; }
    .contact-right { padding: 2.5rem 1.5rem; }
    .hero-content { padding: 0 24px 72px; }
    .philosophy-content { padding: 4rem 24px; }
    .nav-container { padding: 0 20px; }
}
