/* ==========================================================================
   Ratul Puri — Chairman, Hindustan Power
   Shared stylesheet. Editorial minimalism: warm neutrals, a single brass
   accent, serif display type against a light geometric sans.
   ========================================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #f7f7f5;
    --light-grey: #ededeb;
    --mid-grey: #d4d4d0;
    --text-grey: #6b6b67;
    --dark-grey: #3a3a37;
    --near-black: #1a1a18;
    --accent: #8a8a85;
    --brass: #94743f;
    --brass-soft: #b99a67;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --gutter: 2.5rem;
    --measure: 720px;
    --wide: 1180px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 6rem;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-grey);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 200;
    background: var(--near-black);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: top 0.25s var(--ease);
}

.skip-link:focus {
    top: 1rem;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.35rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s ease;
}

nav.scrolled {
    border-bottom-color: var(--light-grey);
}

.nav-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--near-black);
    letter-spacing: 0.02em;
    text-decoration: none;
    z-index: 101;
}

.nav-name span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: -0.15rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-grey);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--near-black);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--near-black);
    transition: all 0.3s var(--ease);
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links { gap: 1.15rem; }
    .nav-links a { font-size: 0.68rem; letter-spacing: 0.06em; }
}

/* ── PAGE HEADER (inner pages) ──────────────────────────────────────────── */
.page-header {
    padding: 10rem var(--gutter) 4rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-grey);
}

.page-header-inner {
    max-width: var(--wide);
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.75rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--mid-grey);
}

.breadcrumb a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--near-black);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--near-black);
    max-width: 16ch;
}

.page-header h1 em {
    font-style: italic;
    font-weight: 500;
}

.page-header .standfirst {
    margin-top: 1.75rem;
    max-width: 58ch;
    font-size: 1.02rem;
    color: var(--text-grey);
    line-height: 1.85;
}

/* ── HERO (home) ────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
    max-width: var(--wide);
    margin: 0 auto;
    padding: 9rem var(--gutter) 5rem;
    position: relative;
}

.hero-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--near-black);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--brass-soft);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-grey);
    max-width: 52ch;
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.75s forwards;
}

.hero-portrait {
    position: relative;
    justify-self: end;
    max-width: 430px;
    width: 100%;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-portrait img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

/* Neutral panel sitting behind the cut-out portrait */
.hero-portrait::before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 8%;
    bottom: 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-grey) 100%);
    z-index: 0;
}

.hero-portrait::after {
    content: '';
    position: absolute;
    left: 0;
    right: 12%;
    top: 16%;
    bottom: -14px;
    border: 1px solid var(--mid-grey);
    z-index: 1;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 1.7rem;
    border: 1px solid var(--near-black);
    color: var(--near-black);
    background: transparent;
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
    background: var(--near-black);
    color: var(--white);
}

.btn--solid {
    background: var(--near-black);
    color: var(--white);
}

.btn--solid:hover {
    background: var(--brass);
    border-color: var(--brass);
}

.btn--ghost {
    border-color: var(--mid-grey);
    color: var(--text-grey);
}

.btn--ghost:hover {
    border-color: var(--near-black);
    background: transparent;
    color: var(--near-black);
}

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
    padding: 6rem var(--gutter);
}

.section--white { background: var(--white); }
.section--grey { background: var(--off-white); }
.section--dark { background: var(--near-black); color: var(--mid-grey); }

.section-inner {
    max-width: var(--measure);
    margin: 0 auto;
}

.section-inner--wide {
    max-width: var(--wide);
    margin: 0 auto;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1.25rem;
}

.section--dark .section-label {
    color: var(--brass-soft);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--near-black);
    line-height: 1.25;
    margin-bottom: 1.75rem;
}

.section--dark .section-title {
    color: var(--light-grey);
}

.section-title em {
    font-style: italic;
}

.section-text {
    font-size: 0.98rem;
    color: var(--text-grey);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-divider {
    width: 36px;
    height: 1px;
    background: var(--brass-soft);
    margin-bottom: 2rem;
}

/* Split layout: sticky label column beside the prose */
.split {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    max-width: var(--wide);
    margin: 0 auto;
    align-items: start;
}

.split-aside {
    position: sticky;
    top: 7rem;
}

.split-aside .section-label {
    margin-bottom: 0.75rem;
}

.split-aside p {
    font-size: 0.82rem;
    color: var(--accent);
    line-height: 1.7;
}

/* ── PROSE (article bodies) ─────────────────────────────────────────────── */
.prose {
    max-width: var(--measure);
    margin: 0 auto;
}

.prose p {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.9;
    margin-bottom: 1.6rem;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.3;
    margin: 3rem 0 1.25rem;
}

.prose h3 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--near-black);
    margin: 2.5rem 0 1rem;
}

.prose ul {
    margin: 0 0 1.6rem 0;
    padding-left: 1.1rem;
    color: var(--text-grey);
}

.prose li {
    margin-bottom: 0.7rem;
    line-height: 1.85;
}

.prose li::marker {
    color: var(--brass-soft);
}

.prose strong {
    font-weight: 500;
    color: var(--dark-grey);
}

.prose a {
    color: var(--near-black);
    text-decoration: underline;
    text-decoration-color: var(--brass-soft);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.prose a:hover {
    text-decoration-color: var(--near-black);
}

.prose figure img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    background: var(--light-grey);
}

.article-source {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-grey);
    font-size: 0.85rem;
    color: var(--text-grey);
}

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    font-style: italic;
    line-height: 1.45;
    color: var(--near-black);
    border-left: 2px solid var(--brass-soft);
    padding: 0.4rem 0 0.4rem 1.75rem;
    margin: 2.75rem 0;
}

/* ── CARD GRIDS ─────────────────────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--light-grey);
    text-decoration: none;
    transition: border-color 0.35s ease, transform 0.35s var(--ease);
}

.card:hover {
    border-color: var(--mid-grey);
    transform: translateY(-3px);
}

.card-media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--light-grey);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(18%);
    transition: transform 0.7s var(--ease), filter 0.5s ease;
}

.card:hover .card-media img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.card-body {
    padding: 1.6rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.9rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}

.card-excerpt {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.card-link {
    margin-top: auto;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--near-black);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s var(--ease);
}

.card:hover .card-link::after {
    width: 30px;
}

/* Featured lead story on the news index */
.lead-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    text-decoration: none;
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 3.5rem;
}

.lead-story .card-media {
    aspect-ratio: 16 / 10;
}

.lead-story .card-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.2;
}

.lead-story .card-excerpt {
    font-size: 0.96rem;
}

/* ── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline {
    list-style: none;
    margin-top: 3rem;
    border-top: 1px solid var(--light-grey);
}

.timeline li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-grey);
    align-items: start;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--brass);
    line-height: 1.2;
}

.timeline-title {
    font-size: 1.02rem;
    font-weight: 400;
    color: var(--near-black);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.8;
}

/* ── RECOGNITIONS ───────────────────────────────────────────────────────── */
.recognitions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light-grey);
    margin-top: 2.5rem;
    border: 1px solid var(--light-grey);
}

.recognition-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease;
}

.recognition-item:hover {
    background: var(--off-white);
}

.recognition-year {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}

.recognition-title {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-grey);
    line-height: 1.6;
}

.recognition-source {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass);
    margin-top: 0.6rem;
}

/* ── PRINCIPLES ─────────────────────────────────────────────────────────── */
.principles {
    counter-reset: principle;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--light-grey);
    border: 1px solid var(--light-grey);
    margin-top: 2.5rem;
}

.principles li {
    counter-increment: principle;
    background: var(--white);
    padding: 2rem 1.5rem;
}

.principles li::before {
    content: '0' counter(principle);
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brass-soft);
    margin-bottom: 0.75rem;
}

.principles h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--near-black);
    margin-bottom: 0.5rem;
}

.principles p {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ── FACT STRIP ─────────────────────────────────────────────────────────── */
.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    max-width: var(--wide);
    margin: 0 auto;
}

.fact-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 500;
    color: var(--light-grey);
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.fact-label {
    font-size: 0.78rem;
    color: var(--accent);
    line-height: 1.65;
}

/* ── IMAGE BAND ─────────────────────────────────────────────────────────── */
.image-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light-grey);
}

.image-band figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--off-white);
}

.image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.image-band figure:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.image-band figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(26, 26, 24, 0.75), transparent);
}

/* ── ARCHIVE LIST ───────────────────────────────────────────────────────── */
.archive-list {
    list-style: none;
    border-top: 1px solid var(--light-grey);
    margin-top: 2.5rem;
}

.archive-list li {
    border-bottom: 1px solid var(--light-grey);
    padding: 1.35rem 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    align-items: baseline;
}

.archive-topic {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
}

.archive-title {
    font-size: 0.98rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

a.archive-title {
    text-decoration: underline;
    text-decoration-color: var(--brass-soft);
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a.archive-title:hover {
    color: var(--near-black);
    text-decoration-color: var(--near-black);
}

.archive-source {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
}

/* ── NEXT / PREV NAVIGATION ─────────────────────────────────────────────── */
.article-nav {
    max-width: var(--measure);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid var(--light-grey);
    padding-top: 2.5rem;
}

.article-nav a {
    text-decoration: none;
}

.article-nav .card-meta {
    margin-bottom: 0.5rem;
}

.article-nav .nav-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--near-black);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.article-nav a:hover .nav-title {
    color: var(--brass);
}

.article-nav .is-next {
    text-align: right;
}

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-block h3 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.contact-block p,
.contact-block a {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.8;
    text-decoration: none;
}

.contact-block a:hover {
    color: var(--near-black);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
    background: var(--near-black);
    color: var(--mid-grey);
    padding: 4.5rem var(--gutter) 2.5rem;
}

.footer-inner {
    max-width: var(--wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--light-grey);
    margin-bottom: 0.6rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--accent);
    line-height: 1.8;
    max-width: 34ch;
}

.footer-col h2 {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-soft);
    margin-bottom: 1.1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--mid-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--wide);
    margin: 3.5rem auto 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.74rem;
    color: var(--accent);
}

/* ── ANIMATION ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.001ms !important;
    }

    .reveal,
    .hero-label,
    .hero h1,
    .hero-divider,
    .hero-subtitle,
    .hero-actions,
    .hero-portrait {
        opacity: 1;
        transform: none;
    }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 8rem;
    }

    .hero-portrait {
        order: -1;
        max-width: 320px;
        justify-self: start;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .split-aside {
        position: static;
    }

    .lead-story {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .image-band {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root { --gutter: 1.5rem; }

    nav { padding: 1.1rem var(--gutter); }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.25rem;
        z-index: 99;
    }

    .nav-links.open { display: flex; }

    .nav-links a { font-size: 1rem; }

    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

    .page-header { padding: 8rem var(--gutter) 3rem; }

    .section { padding: 4rem var(--gutter); }

    .recognitions-grid { grid-template-columns: 1fr; }

    .timeline li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .archive-list li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .article-nav .is-next { text-align: left; }

    .image-band { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.6rem; }
    .recognition-item { padding: 1.5rem 1.2rem; }
}
