/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* =========== ACCESS / PASSWORD PAGE =========== */

.access-body {
    overflow: hidden;
    height: 100vh;
    background: var(--ink);
    color: var(--ivory);
    transition: opacity 0.7s var(--ease);
}

.access-body.access-exit {
    opacity: 0;
}

.access {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
}

.access-visual {
    position: relative;
    overflow: hidden;
    background: var(--charcoal-soft);
}

.access-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.15) 40%, transparent 100%);
    z-index: 2;
}

.access-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10,10,11,0.8), transparent);
    z-index: 2;
}

.access-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: grayscale(15%) contrast(1.05);
    animation: slowZoom 18s var(--ease) infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.access-visual-meta {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 3;
    color: var(--ivory);
}

.access-visual-meta .eyebrow { color: var(--gold-light); }
.access-visual-meta .eyebrow::before { background: var(--gold); }

.access-visual-meta h3 {
    font-family: var(--ff-display);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1;
    margin-top: 16px;
    color: var(--ivory);
}

.access-visual-meta h3 em { color: var(--saffron); font-style: italic; }

.access-visual-meta p {
    color: var(--grey-soft);
    font-size: 14px;
    margin-top: 16px;
    max-width: 380px;
    line-height: 1.7;
}

.access-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px clamp(40px, 8vw, 110px);
    position: relative;
    background: linear-gradient(180deg, var(--ink) 0%, var(--charcoal-soft) 100%);
}

.access-logo {
    position: absolute;
    top: 40px;
    left: clamp(40px, 8vw, 110px);
    right: clamp(40px, 8vw, 110px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.access-logo .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    display: inline-block;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--saffron-glow); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

.access-heading {
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.98;
    color: var(--ivory);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.access-heading em { color: var(--saffron); font-style: italic; font-weight: 400; }

.access-sub {
    color: var(--grey-soft);
    font-size: 16px;
    line-height: 1.7;
    max-width: 45ch;
    margin-bottom: 48px;
}

.access-field {
    position: relative;
    margin-bottom: 22px;
}

.access-field label {
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 0 8px;
    background: var(--ink);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 2;
}

.access-input {
    width: 100%;
    padding: 22px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--ivory);
    font-family: var(--ff-mono);
    font-size: 18px;
    letter-spacing: 0.3em;
    transition: border-color 0.3s var(--ease);
    outline: none;
}

.access-input:focus { border-color: var(--saffron); }

.access-input::placeholder {
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.3em;
    font-size: 16px;
}

.access-submit {
    width: 100%;
    padding: 20px;
    background: var(--saffron);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--saffron);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.access-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.access-submit span { position: relative; z-index: 1; }

.access-submit:hover::before { transform: translateY(0); }
.access-submit:hover { border-color: var(--gold); color: var(--ink); }

.access-msg {
    margin-top: 20px;
    padding: 14px 18px;
    border: 1px solid transparent;
    font-size: 13px;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-msg.show { opacity: 1; transform: translateY(0); }

.access-msg.error {
    border-color: #ff5c3a;
    background: rgba(255, 92, 58, 0.08);
    color: #ffb4a1;
    animation: shake 0.5s var(--ease);
}

.access-msg.success {
    border-color: var(--gold);
    background: rgba(199, 163, 90, 0.1);
    color: var(--gold-light);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.access-foot {
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
}

.access-foot a { color: var(--gold); }

@media (max-width: 900px) {
    .access { grid-template-columns: 1fr; }
    .access-visual { display: none; }
}

/* =========== HOMEPAGE =========== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--ivory);
    isolation: isolate;
    padding: 160px var(--gutter) 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(10%) brightness(0.55) contrast(1.1);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.3) 60%, transparent 100%),
        linear-gradient(to top, var(--ink) 0%, transparent 40%);
}

.hero-grid {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: end;
}

.hero-left { max-width: 780px; }

.hero-meta {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-meta .line {
    flex: 0 0 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(58px, 9vw, 160px);
    line-height: 0.92;
    color: var(--ivory);
    letter-spacing: -0.025em;
    font-weight: 500;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--saffron);
}

.hero h1 span.outline {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
    font-style: italic;
    font-weight: 300;
}

.hero-tagline {
    margin-top: 32px;
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--grey-soft);
    max-width: 50ch;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 44px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-right {
    align-self: end;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 40px;
    padding-bottom: 14px;
}

.hero-quote {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.4;
    color: var(--ivory);
    margin-bottom: 28px;
}

.hero-quote::before {
    content: "“";
    display: block;
    font-size: 84px;
    line-height: 0.3;
    color: var(--saffron);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-attrib {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: var(--gutter);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-scroll::after {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s infinite var(--ease);
    transform-origin: top;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee {
    background: var(--saffron);
    color: var(--white);
    overflow: hidden;
    padding: 22px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    font-family: var(--ff-display);
    font-size: clamp(26px, 3vw, 42px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 80px;
}

.marquee-item::after {
    content: "✦";
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    font-style: normal;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Counters */
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--grey-line);
}

.counter {
    padding: 60px 40px;
    border-right: 1px solid var(--grey-line);
    background: var(--white);
    transition: background 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--saffron);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
}

.counter:hover::before { transform: translateY(0); }
.counter:hover { background: var(--saffron-soft); }

.counter:last-child { border-right: none; }

.counter-num {
    font-family: var(--ff-display);
    font-size: clamp(58px, 6vw, 92px);
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
}

.counter-num em {
    color: var(--saffron);
    font-style: italic;
    font-weight: 400;
}

.counter-label {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 600;
}

.counter-desc {
    margin-top: 10px;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 1.6;
    max-width: 26ch;
}

/* Intro Block */
.intro-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: start;
}

.intro-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 24px;
}

.intro-heading {
    font-family: var(--ff-display);
    font-size: clamp(38px, 4.4vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 30px;
}

.intro-heading em { color: var(--saffron); font-style: italic; }

.intro-body p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.intro-signature {
    margin-top: 40px;
    font-family: var(--ff-display);
    font-size: 32px;
    font-style: italic;
    color: var(--ink);
}

.intro-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--charcoal-soft);
}

.intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.2s var(--ease);
}

.intro-image-wrap:hover img { transform: scale(1.04); }

.intro-image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 18px 22px;
    background: var(--ivory);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.intro-image-tag strong { color: var(--saffron); font-weight: 700; }

/* Priorities Grid */
.priorities {
    background: var(--ink);
    color: var(--ivory);
}

.priorities .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.priorities h2 {
    font-family: var(--ff-display);
    font-size: clamp(40px, 5vw, 84px);
    line-height: 1;
    color: var(--ivory);
    letter-spacing: -0.02em;
}

.priorities h2 em { color: var(--saffron); font-style: italic; font-weight: 400; }

.priorities .lead {
    color: var(--grey-soft);
    font-size: 16px;
    line-height: 1.8;
    max-width: 42ch;
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.priority-card {
    background: var(--ink);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s var(--ease);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.priority-card:hover { background: var(--charcoal-soft); }

.priority-num {
    font-family: var(--ff-display);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.priority-title {
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.15;
    color: var(--ivory);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.priority-desc {
    color: var(--grey-soft);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.priority-tag {
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--saffron);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.priority-tag::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.4s var(--ease);
}

.priority-card:hover .priority-tag::after { transform: translateX(6px); }

/* Featured split with image */
.featured-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
}

.featured-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--charcoal-soft);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.featured-content {
    background: var(--saffron);
    color: var(--white);
    padding: clamp(60px, 7vw, 110px) clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .eyebrow {
    color: var(--ink);
    font-weight: 700;
}

.featured-content .eyebrow::before { background: var(--ink); }

.featured-content h2 {
    font-family: var(--ff-display);
    font-size: clamp(36px, 4.2vw, 62px);
    line-height: 1.05;
    color: var(--white);
    margin: 22px 0 30px;
    letter-spacing: -0.015em;
}

.featured-content p {
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.featured-content .btn {
    background: var(--ink);
    border-color: var(--ink);
    align-self: flex-start;
    margin-top: 20px;
}

.featured-content .btn::before { background: var(--white); }
.featured-content .btn:hover {
    color: var(--ink);
    border-color: var(--white);
}

/* Updates */
.updates-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.update-card {
    background: var(--white);
    border: 1px solid var(--grey-line);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px rgba(20,20,20,0.15);
}

.update-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--paper);
}

.update-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.8s var(--ease);
}

.update-card:hover .update-img img { transform: scale(1.06); }

.update-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.update-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 18px;
    font-weight: 600;
}

.update-meta .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.update-title {
    font-family: var(--ff-display);
    font-size: 24px;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.update-card:hover .update-title { color: var(--saffron); }

.update-excerpt {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.update-link {
    margin-top: auto;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.update-link::after { content: "→"; transition: transform 0.4s var(--ease); }
.update-card:hover .update-link::after { transform: translateX(6px); }

/* =========== LEGACY & LEADERSHIP (BIO) PAGE =========== */

.bio-intro {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.bio-facts {
    padding: 40px;
    background: var(--paper);
    border-left: 3px solid var(--saffron);
}

.bio-facts dl {
    display: grid;
    gap: 22px;
}

.bio-facts dt {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 6px;
}

.bio-facts dd {
    font-family: var(--ff-display);
    font-size: 22px;
    line-height: 1.3;
    color: var(--ink);
}

.bio-facts dd em { color: var(--saffron); font-style: italic; }

.bio-portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--charcoal-soft);
}

.bio-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Timeline */
.timeline {
    background: var(--ink);
    color: var(--ivory);
    position: relative;
}

.timeline-head {
    max-width: var(--container);
    margin: 0 auto 80px;
    padding: 0 var(--gutter);
}

.timeline-head h2 {
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 86px);
    line-height: 1;
    color: var(--ivory);
    letter-spacing: -0.02em;
    margin-top: 18px;
}

.timeline-head h2 em { color: var(--saffron); font-style: italic; font-weight: 400; }

.timeline-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}

.timeline-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(199,163,90,0.3) 10%, rgba(199,163,90,0.3) 90%, transparent);
    transform: translateX(-0.5px);
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--saffron);
    border: 3px solid var(--ink);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 2px var(--gold);
}

.tl-item:nth-child(even) .tl-content {
    grid-column: 2;
}

.tl-item:nth-child(even) .tl-aside {
    grid-column: 1;
    text-align: right;
}

.tl-year {
    font-family: var(--ff-display);
    font-size: clamp(60px, 7vw, 110px);
    line-height: 0.9;
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
}

.tl-period {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-top: 14px;
    font-weight: 600;
}

.tl-title {
    font-family: var(--ff-display);
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.2;
    color: var(--ivory);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.tl-desc {
    color: var(--grey-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--grey-line);
}

.value-card {
    padding: 50px 36px;
    border-right: 1px solid var(--grey-line);
    transition: background 0.4s var(--ease);
    min-height: 300px;
}

.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--saffron-soft); }

.value-num {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--saffron);
    letter-spacing: 0.22em;
    font-weight: 600;
    margin-bottom: 28px;
}

.value-title {
    font-family: var(--ff-display);
    font-size: 26px;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.75;
}

/* Quote block */
.big-quote {
    background: var(--paper);
    padding: clamp(80px, 10vw, 160px) var(--gutter);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-quote::before,
.big-quote::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--gold);
    top: 50%;
}

.big-quote::before { left: 10%; }
.big-quote::after { right: 10%; }

.big-quote blockquote {
    max-width: 1100px;
    margin: 0 auto;
    font-family: var(--ff-display);
    font-size: clamp(30px, 3.6vw, 58px);
    line-height: 1.2;
    color: var(--ink);
    font-style: italic;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.big-quote blockquote em {
    color: var(--saffron);
    font-style: italic;
}

.big-quote cite {
    display: block;
    margin-top: 36px;
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--grey);
    font-style: normal;
    font-weight: 600;
}

/* =========== IMPACT FORUM =========== */

.impact-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 70px;
    border: 1px solid rgba(255,255,255,0.1);
}

.impact-hero-stats > div {
    padding: 36px 30px;
    background: var(--ink);
}

.impact-hero-stats .n {
    font-family: var(--ff-display);
    font-size: clamp(40px, 4vw, 56px);
    color: var(--gold);
    line-height: 1;
}

.impact-hero-stats .l {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-soft);
    margin-top: 14px;
    font-weight: 600;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.impact-card {
    padding: 44px 36px;
    border: 1px solid var(--grey-line);
    background: var(--white);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.impact-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--saffron);
    transition: width 0.5s var(--ease);
}

.impact-card:hover::before { width: 100%; }
.impact-card:hover {
    border-color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -40px rgba(20,20,20,0.2);
}

.impact-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--saffron-soft);
    color: var(--saffron);
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 32px;
    transition: all 0.4s var(--ease);
}

.impact-card:hover .impact-icon {
    background: var(--saffron);
    color: var(--white);
}

.impact-title {
    font-family: var(--ff-display);
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.impact-desc {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.75;
    flex: 1;
}

.impact-tag {
    margin-top: 26px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
}

/* Initiative feature */
.feature-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.feature-block {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    color: var(--ivory);
}

.feature-block img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
    transition: transform 1s var(--ease);
    filter: brightness(0.6);
}

.feature-block:hover img { transform: scale(1.05); }

.feature-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,11,0.9) 0%, rgba(10,10,11,0.3) 60%, transparent 100%);
    z-index: 1;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 2;
}

.feature-content .eyebrow {
    color: var(--gold-light);
}

.feature-content .eyebrow::before { background: var(--gold); }

.feature-content h3 {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    color: var(--ivory);
    margin: 16px 0 16px;
    letter-spacing: -0.01em;
}

.feature-content p {
    color: var(--grey-soft);
    font-size: 15px;
    line-height: 1.7;
    max-width: 40ch;
}

/* =========== MAHARASHTRA CONNECT =========== */

.maha-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.maha-quote-badge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--grey-line);
    margin-top: 50px;
    border: 1px solid var(--grey-line);
}

.maha-quote-badge > div {
    background: var(--white);
    padding: 30px;
}

.maha-quote-badge .n {
    font-family: var(--ff-display);
    font-size: 48px;
    color: var(--saffron);
    line-height: 1;
    font-style: italic;
}

.maha-quote-badge .l {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 12px;
    font-weight: 600;
}

.maha-regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.region {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

.region img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 1s var(--ease);
}

.region:hover img { transform: scale(1.08); }

.region::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.2) 50%, transparent 100%);
}

.region-meta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.region-name {
    font-family: var(--ff-display);
    font-size: 26px;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.region-sub {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

/* Outreach list */
.outreach-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1px;
    background: var(--grey-line);
    border: 1px solid var(--grey-line);
}

.outreach-list .head,
.outreach-row {
    background: var(--white);
    padding: 30px 36px;
    display: grid;
    grid-template-columns: 100px 1fr 1fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.outreach-list .head {
    background: var(--ink);
    color: var(--ivory);
}

.outreach-list .head span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.outreach-row {
    grid-column: 1 / -1;
    transition: background 0.3s var(--ease);
    cursor: pointer;
}

.outreach-row:hover { background: var(--paper); }

.outreach-row .n {
    font-family: var(--ff-display);
    font-size: 24px;
    color: var(--saffron);
    font-style: italic;
}

.outreach-row .t {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-weight: 500;
}

.outreach-row .d {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

.outreach-row .st {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.outreach-row .st .dot {
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
}

/* =========== GALLERY =========== */

.gallery-wrap {
    padding: 40px 0;
}

.gallery-masonry {
    column-count: 4;
    column-gap: 14px;
    padding: 0 var(--gutter);
}

.gal-item {
    break-inside: avoid;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal-soft);
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease);
}

.gal-item:hover img { transform: scale(1.05); }

.gal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,11,0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.gal-item:hover::after { opacity: 1; }

.gal-caption {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gal-item:hover .gal-caption {
    opacity: 1;
    transform: translateY(0);
}

.gal-caption .gal-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--ivory);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,10,11,0.96);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.5s var(--ease);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--ivory);
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s var(--ease);
    font-size: 18px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--saffron);
    border-color: var(--saffron);
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox-count {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.3em;
    font-family: var(--ff-mono);
}

/* =========== VISION =========== */

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vision-card {
    padding: clamp(50px, 6vw, 90px) clamp(40px, 5vw, 70px);
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--ink);
    color: var(--ivory);
    transition: background 0.4s var(--ease);
    overflow: hidden;
}

.vision-card:nth-child(2n) { border-right: none; }

.vision-card:hover { background: var(--charcoal-soft); }

.vision-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--saffron);
    transition: width 0.5s var(--ease);
}

.vision-card:hover::before { width: 100%; }

.vision-num {
    font-family: var(--ff-display);
    font-size: clamp(80px, 10vw, 160px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(199,163,90,0.4);
    line-height: 0.8;
    font-weight: 400;
    font-style: italic;
    position: absolute;
    top: 30px;
    right: 40px;
    transition: color 0.4s var(--ease);
}

.vision-card:hover .vision-num {
    color: var(--saffron);
    -webkit-text-stroke: 1px var(--saffron);
}

.vision-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 20px;
    letter-spacing: -0.015em;
    max-width: 18ch;
}

.vision-desc {
    color: var(--grey-soft);
    font-size: 15px;
    line-height: 1.8;
    max-width: 46ch;
    margin-bottom: 40px;
}

.vision-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vision-pillars span {
    padding: 6px 14px;
    border: 1px solid rgba(199,163,90,0.3);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-radius: 100px;
    font-weight: 600;
}

/* =========== CONTACT =========== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.contact-info {
    padding: 50px;
    background: var(--ink);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--saffron-glow) 0%, transparent 70%);
}

.contact-info h3 {
    font-family: var(--ff-display);
    font-size: 42px;
    line-height: 1.05;
    color: var(--ivory);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.contact-info h3 em { color: var(--saffron); font-style: italic; }

.contact-info p {
    color: var(--grey-soft);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-detail {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(199,163,90,0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 16px;
}

.contact-detail-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-detail-value {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--ivory);
    letter-spacing: -0.005em;
}

.contact-detail-value:hover { color: var(--saffron); }

/* Contact form */
.contact-form {
    padding: 60px 50px;
    background: var(--white);
    border: 1px solid var(--grey-line);
}

.contact-form h3 {
    font-family: var(--ff-display);
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--ink);
    letter-spacing: -0.015em;
}

.contact-form h3 em { color: var(--saffron); font-style: italic; }

.contact-form p {
    color: var(--grey);
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.field.full { grid-column: 1 / -1; }

.field label {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 10px;
}

.field input,
.field textarea {
    padding: 16px 18px;
    border: 1px solid var(--grey-line);
    font-family: var(--ff-sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--ivory);
    transition: all 0.3s var(--ease);
    outline: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--saffron);
    background: var(--white);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 10px;
    width: auto;
    align-self: flex-start;
    padding: 18px 38px;
}

.form-status {
    margin-top: 20px;
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    background: rgba(199,163,90,0.12);
    border-left: 3px solid var(--gold);
    color: var(--charcoal);
}

.form-status.show { opacity: 1; }

/* =========== RESPONSIVE FOR PAGES =========== */

@media (max-width: 1200px) {
    .priority-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-cards { grid-template-columns: repeat(2, 1fr); }
    .maha-regions { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card:nth-child(2) { border-right: none; }
    .counters { grid-template-columns: repeat(2, 1fr); }
    .counter:nth-child(2) { border-right: none; }
    .counter:nth-child(1), .counter:nth-child(2) { border-bottom: 1px solid var(--grey-line); }
    .gallery-masonry { column-count: 3; }
    .feature-pair { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
    .vision-card { border-right: none !important; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { border-left: none; padding-left: 0; margin-top: 40px; }
    .intro-split { grid-template-columns: 1fr; gap: 50px; }
    .bio-intro { grid-template-columns: 1fr; gap: 40px; }
    .priorities .section-head { grid-template-columns: 1fr; gap: 30px; }
    .tl-item { grid-template-columns: 1fr; gap: 20px; }
    .tl-item:nth-child(even) .tl-content,
    .tl-item:nth-child(even) .tl-aside { grid-column: 1; text-align: left; }
    .timeline-wrap::before { left: 20px; }
    .tl-item::before { left: 20px; }
    .updates-grid { grid-template-columns: 1fr; }
    .featured-split { grid-template-columns: 1fr; }
    .maha-intro { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .outreach-row { grid-template-columns: 50px 1fr; gap: 20px; }
    .outreach-row .d, .outreach-row .st { grid-column: 2; }
    .outreach-list .head { display: none; }
}

@media (max-width: 600px) {
    .priority-grid, .impact-cards, .maha-regions, .values-grid, .counters { grid-template-columns: 1fr; }
    .impact-hero-stats { grid-template-columns: 1fr; }
    .gallery-masonry { column-count: 2; column-gap: 8px; }
    .gal-item { margin-bottom: 8px; }
    .contact-form, .contact-info { padding: 36px 26px; }
    .access-form { padding: 60px 24px; }
    .access-logo { left: 24px; right: 24px; }
}
