/* ==========================================================================
   Dr. Pawan Monga — Official Website
   Editorial design system
   ========================================================================== */

/* CSS Custom Properties
   ========================================================================== */
:root {
    /* Color palette — editorial, premium, warm */
    --ink:        #0F1B2D;   /* Deep navy — primary text, headers */
    --ink-soft:   #1B2A4A;   /* Slightly lighter navy */
    --paper:      #F7F3EC;   /* Warm cream — primary background */
    --paper-deep: #EFE9DD;   /* Deeper cream — alt background */
    --white:      #FFFFFF;
    --gold:       #9A7B3D;   /* Muted gold — accent */
    --gold-deep:  #7A5F2D;   /* Darker gold */
    --rule:       #D4C9B8;   /* Warm border */
    --rule-light: #E8DFCE;   /* Light border */
    --muted:      #6B6157;   /* Body text secondary */
    --accent:     #7A1F2B;   /* Deep maroon — Indian touch */
    --accent-soft:#9A3543;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    /* Layout */
    --container:    1240px;
    --container-sm: 880px;
    --container-lg: 1400px;

    /* Borders */
    --border-thin:  1px solid var(--rule);
    --border-gold:  1px solid var(--gold);

    /* Shadows — subtle, editorial */
    --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 27, 45, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 27, 45, 0.08);

    /* Transitions */
    --t-fast: 0.18s ease;
    --t-mid:  0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    font-weight: 400;
    overflow-x: hidden;
}

img,
picture,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ink);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover {
    color: var(--gold-deep);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; font-family: var(--font-sans); font-weight: 600; }

p {
    margin-bottom: 1.25em;
    color: var(--ink);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

blockquote {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--ink);
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 2px solid var(--gold);
    margin: 2rem 0;
    font-weight: 400;
}

::selection {
    background: var(--ink);
    color: var(--paper);
}

/* Accessibility
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: 0;
    color: var(--paper);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Layout Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: var(--container-sm);
}

.container--wide {
    max-width: var(--container-lg);
}

.section {
    padding: var(--space-2xl) 0;
}

.section--sm {
    padding: var(--space-xl) 0;
}

.section--lg {
    padding: var(--space-3xl) 0;
}

.section--paper {
    background: var(--paper);
}

.section--paper-deep {
    background: var(--paper-deep);
}

.section--ink {
    background: var(--ink);
    color: var(--paper);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 {
    color: var(--paper);
}

.section--ink p {
    color: rgba(247, 243, 236, 0.85);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto var(--space-md);
    border: 0;
}

/* Typography Helpers
   ========================================================================== */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-block;
    margin-bottom: 1.25rem;
}

.eyebrow--ink {
    color: var(--paper);
}

.lead {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 400;
    font-style: italic;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-intro p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t-mid);
    line-height: 1;
}

.btn--primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.btn--primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--paper);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    color: var(--paper);
}

.btn--ghost-light {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
}

.btn--ghost-light:hover {
    background: var(--paper);
    color: var(--ink);
}

.btn--text {
    background: transparent;
    color: var(--gold-deep);
    border: none;
    padding: 0;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--gold);
    border-radius: 0;
}

.btn--text:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Site Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 243, 236, 0.96);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--rule-light);
    transition: background var(--t-mid), border-color var(--t-mid);
}

.site-header.is-scrolled {
    background: rgba(247, 243, 236, 0.98);
    border-bottom-color: var(--rule);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.site-header__brand:hover {
    color: var(--ink);
}

.site-header__brand-mark {
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.site-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-header__brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.site-header__brand-role {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.125rem;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    transition: color var(--t-fast);
}

.site-nav__link:hover {
    color: var(--gold-deep);
}

.site-nav__link.is-active {
    color: var(--gold-deep);
}

.site-nav__link.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.875rem;
    right: 0.875rem;
    height: 1px;
    background: var(--gold);
}

.site-nav__toggle {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.site-nav__toggle-bar {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--t-mid), opacity var(--t-mid);
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-2xl);
    overflow: hidden;
    background: var(--paper);
}

.hero__inner {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero__content {
    max-width: 620px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.75rem;
}

.hero__eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.02;
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero__title .accent {
    font-style: italic;
    color: var(--gold-deep);
}

.hero__subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 1.6vw, 1.375rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 540px;
    font-weight: 400;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--rule);
}

.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__meta-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.hero__meta-value {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--ink);
    font-weight: 500;
}

.hero__image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(165deg, #1B2A4A 0%, #0F1B2D 50%, #2A1B2E 100%);
    overflow: hidden;
}

.hero__image::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(154, 123, 61, 0.3);
    z-index: 2;
    pointer-events: none;
}

.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(154, 123, 61, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(122, 31, 43, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero__image-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero__image-frame-text {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(247, 243, 236, 0.08);
    letter-spacing: -0.05em;
    font-weight: 500;
    text-align: center;
    line-height: 1;
}

.hero__image-caption {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    z-index: 3;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll::after {
    content: '';
    width: 1px;
    height: 32px;
    background: var(--rule);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Page Hero (inner pages)
   ========================================================================== */
.page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: var(--paper);
    border-bottom: 1px solid var(--rule-light);
    text-align: center;
}

.page-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    margin: 0.75rem 0 1.25rem;
    letter-spacing: -0.015em;
}

.page-hero__lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--muted);
    font-style: italic;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumbs {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 1rem 2rem 0;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs__item a {
    color: var(--muted);
}

.breadcrumbs__item a:hover {
    color: var(--gold-deep);
}

.breadcrumbs__item span[aria-current] {
    color: var(--ink);
    font-weight: 500;
}

.breadcrumbs__sep {
    color: var(--rule);
}

/* Editorial Two-Column
   ========================================================================== */
.editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.editorial--reversed {
    grid-template-columns: 1fr 1fr;
}

.editorial__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.editorial__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.editorial__content p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    padding: 0.25rem 0.75rem 0 0;
    color: var(--gold-deep);
    font-weight: 500;
}

.editorial__image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(155deg, #1B2A4A 0%, #0F1B2D 100%);
    position: relative;
}

.editorial__image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(154, 123, 61, 0.25);
}

.editorial__image-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: rgba(247, 243, 236, 0.12);
    text-align: center;
    padding: 2rem;
}

/* Timeline
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--rule);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
}

.timeline__item:nth-child(odd) {
    margin-left: 0;
    padding-right: 4rem;
    text-align: right;
}

.timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-left: 4rem;
    text-align: left;
}

.timeline__item::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.timeline__item:nth-child(odd)::before {
    right: -4.5px;
}

.timeline__item:nth-child(even)::before {
    left: -4.5px;
}

.timeline__year {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.timeline__heading {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--ink);
    margin-bottom: 0.625rem;
    font-weight: 500;
    line-height: 1.3;
}

.timeline__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Contribution Areas
   ========================================================================== */
.contributions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.contribution {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--white);
    transition: background var(--t-mid);
}

.contribution:hover {
    background: var(--paper-deep);
}

.contribution__num {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contribution__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.contribution__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Feature / Spotlight sections
   ========================================================================== */
.spotlight {
    background: var(--ink);
    color: var(--paper);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.spotlight__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.spotlight__content .eyebrow {
    color: var(--gold);
}

.spotlight__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--paper);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 500;
}

.spotlight__lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(247, 243, 236, 0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.spotlight__text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(247, 243, 236, 0.75);
    margin-bottom: 1.25rem;
}

.spotlight__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(154, 123, 61, 0.3);
}

.spotlight__stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.spotlight__stat-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.7);
    line-height: 1.4;
}

.spotlight__visual {
    aspect-ratio: 4 / 5;
    background: linear-gradient(165deg, #1B2A4A 0%, #0F1B2D 100%);
    position: relative;
    border: 1px solid rgba(154, 123, 61, 0.25);
}

.spotlight__visual::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(154, 123, 61, 0.15);
}

.spotlight__visual-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(247, 243, 236, 0.1);
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

/* Media / Newsroom
   ========================================================================== */
.newsroom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.newsroom__item {
    border-top: 1px solid var(--rule);
    padding-top: 1.5rem;
    transition: border-color var(--t-fast);
}

.newsroom__item:hover {
    border-top-color: var(--gold);
}

.newsroom__source {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsroom__date {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
    display: block;
}

.newsroom__headline {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-weight: 500;
    transition: color var(--t-fast);
}

.newsroom__item:hover .newsroom__headline {
    color: var(--gold-deep);
}

.newsroom__excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1rem;
}

.newsroom__link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.newsroom__link:hover {
    color: var(--gold-deep);
}

/* Recognition / Awards
   ========================================================================== */
.recognition {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
}

.recognition__item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--white);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.recognition__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--paper-deep);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.recognition__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.recognition__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.recognition__year {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Gallery
   ========================================================================== */
.gallery {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery__item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.gallery__item img,
.gallery__item .gallery__placeholder {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--t-slow), opacity var(--t-mid);
}

.gallery__placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(155deg, #1B2A4A 0%, #0F1B2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: rgba(247, 243, 236, 0.15);
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem;
}

.gallery__placeholder--square { aspect-ratio: 1 / 1; }
.gallery__placeholder--portrait { aspect-ratio: 3 / 4; }
.gallery__placeholder--landscape { aspect-ratio: 4 / 3; }
.gallery__placeholder--wide { aspect-ratio: 3 / 2; }

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.03);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 45, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--t-mid);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__caption {
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    line-height: 1.4;
}

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

/* FAQ
   ========================================================================== */
.faq {
    max-width: 880px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--rule);
    padding: 1.75rem 0;
}

.faq__item:first-child {
    border-top: 1px solid var(--rule);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1.35;
    transition: color var(--t-fast);
}

.faq__question:hover {
    color: var(--gold-deep);
}

.faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: background var(--t-fast);
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--gold-deep);
    transition: transform var(--t-mid);
}

.faq__icon::before {
    top: 50%;
    left: 7px;
    right: 7px;
    height: 1px;
    transform: translateY(-50%);
}

.faq__icon::after {
    left: 50%;
    top: 7px;
    bottom: 7px;
    width: 1px;
    transform: translateX(-50%);
}

.faq__item.is-open .faq__icon::after {
    transform: translateX(-50%) scaleY(0);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow), margin var(--t-slow);
}

.faq__item.is-open .faq__answer {
    max-height: 600px;
    margin-top: 1.25rem;
}

.faq__answer p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--muted);
}

/* Forms
   ========================================================================== */
.form {
    max-width: 640px;
}

.form__group {
    margin-bottom: 1.75rem;
}

.form__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.625rem;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    transition: border-color var(--t-fast);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-bottom-color: var(--gold);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form__help {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

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

.form__notice {
    background: var(--paper-deep);
    border-left: 2px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    color: var(--ink);
}

.form__notice strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

/* Contact Info
   ========================================================================== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.contact-info__label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.contact-info__value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--ink);
    line-height: 1.5;
}

.contact-info__value a {
    color: var(--ink);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast);
}

.contact-info__value a:hover {
    border-bottom-color: var(--gold);
    color: var(--ink);
}

/* Article / Content
   ========================================================================== */
.article {
    max-width: 760px;
    margin: 0 auto;
}

.article__header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--rule);
}

.article__byline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.article__byline-sep {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.article__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.article__lead {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--ink-soft);
    font-style: italic;
    font-weight: 400;
}

.article__body h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 3rem 0 1.25rem;
    color: var(--ink);
    font-weight: 500;
}

.article__body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 2.25rem 0 1rem;
    color: var(--ink);
    font-weight: 500;
}

.article__body p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.article__body p:first-of-type::first-letter {
    font-family: var(--font-serif);
    font-size: 4rem;
    float: left;
    line-height: 0.95;
    padding: 0.4rem 0.75rem 0 0;
    color: var(--gold-deep);
    font-weight: 500;
}

.article__body ul,
.article__body ol {
    margin: 1.5rem 0 1.5rem 1.25rem;
}

.article__body ul li,
.article__body ol li {
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink);
    padding-left: 0.5rem;
}

.article__body ul {
    list-style: none;
}

.article__body ul li {
    position: relative;
}

.article__body ul li::before {
    content: '—';
    position: absolute;
    left: -1.25rem;
    color: var(--gold);
    font-weight: 500;
}

.article__body ol {
    list-style: decimal;
    font-variant-numeric: oldstyle-nums;
}

.article__body blockquote {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--ink);
    border-left: 2px solid var(--gold);
    padding: 1rem 0 1rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.article__pullquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.35;
    color: var(--ink);
    text-align: center;
    padding: 3rem 1rem;
    margin: 3rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    font-style: italic;
    font-weight: 400;
}

.article__body strong {
    color: var(--ink);
    font-weight: 600;
}

.article__body a {
    color: var(--gold-deep);
    border-bottom: 1px solid var(--gold);
    transition: border-color var(--t-fast);
}

.article__body a:hover {
    border-bottom-color: var(--ink);
}

/* CTA Banner
   ========================================================================== */
.cta-banner {
    background: var(--ink);
    color: var(--paper);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.cta-banner__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--paper);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-banner__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(247, 243, 236, 0.8);
    margin-bottom: 2rem;
}

/* Site Footer
   ========================================================================== */
.site-footer {
    background: var(--ink);
    color: rgba(247, 243, 236, 0.8);
    padding: var(--space-2xl) 0 var(--space-md);
    margin-top: 0;
}

.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}

.site-footer__brand {
    max-width: 360px;
}

.site-footer__brand-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.site-footer__brand-mark {
    width: 44px;
    height: 44px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-footer__brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--paper);
    font-weight: 500;
}

.site-footer__brand-role {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.6);
    margin-top: 0.125rem;
}

.site-footer__bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(247, 243, 236, 0.7);
    margin-bottom: 1.5rem;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-footer__social li a {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.7);
    border: 1px solid rgba(247, 243, 236, 0.2);
    transition: all var(--t-fast);
    text-decoration: none;
}

.site-footer__social li a:hover {
    color: var(--paper);
    border-color: var(--gold);
    background: rgba(154, 123, 61, 0.1);
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.site-footer__heading {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--paper);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.site-footer__links li {
    margin-bottom: 0.625rem;
}

.site-footer__links a {
    font-size: 0.875rem;
    color: rgba(247, 243, 236, 0.65);
    text-decoration: none;
    transition: color var(--t-fast);
    display: inline-block;
    padding: 0.125rem 0;
}

.site-footer__links a:hover {
    color: var(--paper);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copy {
    font-size: 0.8125rem;
    color: rgba(247, 243, 236, 0.6);
    margin: 0;
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.site-footer__legal a {
    font-size: 0.8125rem;
    color: rgba(247, 243, 236, 0.6);
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: var(--paper);
}

/* Activity / News list
   ========================================================================== */
.activity-list {
    max-width: 880px;
    margin: 0 auto;
}

.activity-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 2.5rem;
    align-items: start;
}

.activity-item:first-child {
    border-top: 1px solid var(--rule);
}

.activity-item__date {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
}

.activity-item__date strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-deep);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.activity-item__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.activity-item__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--muted);
}

.activity-item__category {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--rule);
    padding: 0.375rem 0.75rem;
    align-self: start;
    white-space: nowrap;
}

/* Video Grid
   ========================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--rule-light);
    overflow: hidden;
    transition: border-color var(--t-mid), transform var(--t-mid);
}

.video-card:hover {
    border-color: var(--gold);
}

.video-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1B2A4A 0%, #0F1B2D 100%);
    overflow: hidden;
}

.video-card__thumb::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(154, 123, 61, 0.2);
    z-index: 1;
    pointer-events: none;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(247, 243, 236, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform var(--t-fast);
}

.video-card__play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid var(--ink);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.05);
}

.video-card__body {
    padding: 1.5rem;
}

.video-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.video-card__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.video-card__meta {
    margin-top: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

/* Quote Block
   ========================================================================== */
.quote-block {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.quote-block__text {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.35;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.quote-block__cite {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
}

.quote-block__cite::before {
    content: '— ';
}

/* Stat row (no fake counters, more editorial)
   ========================================================================== */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.stat-row__item {
    padding: 2.5rem 1.5rem;
    border-right: 1px solid var(--rule);
    text-align: center;
}

.stat-row__item:last-child {
    border-right: none;
}

.stat-row__num {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    color: var(--gold-deep);
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-row__label {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

/* Press Release Item
   ========================================================================== */
.press-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--rule);
}

.press-item:first-child {
    border-top: 1px solid var(--rule);
}

.press-item__meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.press-item__type {
    color: var(--gold-deep);
    font-weight: 600;
}

.press-item__title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
}

.press-item__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1rem;
}

.press-item__link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.press-item__link:hover {
    color: var(--gold-deep);
}

/* Legal Pages
   ========================================================================== */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--ink);
    font-weight: 500;
}

.legal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 2rem 0 0.875rem;
    color: var(--ink);
    font-weight: 500;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul {
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 0.5rem;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: -1.25rem;
    color: var(--gold);
}

/* Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__image {
        max-width: 480px;
        margin: 0 auto;
    }

    .editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsroom {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-row__item:nth-child(2) {
        border-right: none;
    }

    .stat-row__item:nth-child(1),
    .stat-row__item:nth-child(2) {
        border-bottom: 1px solid var(--rule);
    }
}

@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .container,
    .hero__inner,
    .page-hero__inner,
    .site-footer__inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .site-header__inner {
        padding: 0.875rem 1.25rem;
    }

    .site-header__brand-role {
        display: none;
    }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav__list {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.25rem;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--t-mid);
        border-top: 1px solid var(--rule);
    }

    .site-nav__list.is-open {
        transform: translateX(0);
    }

    .site-nav__item {
        border-bottom: 1px solid var(--rule-light);
    }

    .site-nav__link {
        padding: 1rem 0;
        font-size: 0.9375rem;
    }

    .site-nav__link.is-active::after {
        display: none;
    }

    .hero {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .hero__meta {
        gap: 1.25rem 1.75rem;
    }

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

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

    .recognition__item {
        border-right: none;
    }

    .newsroom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery {
        columns: 2;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .activity-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .activity-item__category {
        justify-self: start;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline__item {
        width: 100%;
        padding: 1.5rem 1rem 1.5rem 3rem;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .timeline__item:nth-child(odd)::before,
    .timeline__item:nth-child(even)::before {
        left: -3.5px;
        right: auto;
    }

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

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .gallery {
        columns: 1;
    }

    .gallery__grid-2 {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .stat-row__item {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .stat-row__item:last-child {
        border-bottom: none;
    }
}

/* Print
   ========================================================================== */
@media print {
    .site-header,
    .site-footer,
    .btn-group,
    .site-nav__toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* ==========================================================================
   UTILITIES — Visually hidden (a11y)
   ========================================================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   FOCUS STYLES — Accessibility (WCAG 2.4.7)
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #9A7B3D;
    outline-offset: 3px;
    border-radius: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #0F1B2D;
    color: #F7F3EC;
    padding: 0.75rem 1.25rem;
    z-index: 10000;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 600;
    border: 2px solid #9A7B3D;
    transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 1rem;
    outline: 2px solid #9A7B3D;
    outline-offset: 2px;
}

/* ==========================================================================
   OFFICIAL PROFILES — Verified channels grid
   ========================================================================== */
.profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.5rem 1.75rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--gold);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-card:hover,
.profile-card:focus-visible {
    border-left-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 27, 45, 0.08);
    outline: none;
}

.profile-card__platform {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.profile-card__handle {
    font-family: var(--mono, 'JetBrains Mono', 'Menlo', monospace);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.profile-card__label {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft, #4A5568);
    margin-top: 0.4rem;
}

/* ==========================================================================
   AS FEATURED IN — Press citation cards
   ========================================================================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.featured-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--gold);
    transition: border-top-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
    border-top-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 27, 45, 0.08);
}

.featured-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
}

.featured-card__logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.92;
}

.featured-card__date {
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft, #4A5568);
    white-space: nowrap;
}

.featured-card__headline {
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.featured-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft, #4A5568);
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.featured-card__link {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--maroon);
    text-decoration: none;
    border-bottom: 1px solid var(--maroon);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.featured-card__link:hover,
.featured-card__link:focus-visible {
    color: var(--gold);
    border-color: var(--gold);
    outline: none;
}

@media (max-width: 960px) {
    .profiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .profiles {
        grid-template-columns: 1fr;
    }

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