/* ============================================================
   BHUSHAN RAJARAM — DESIGN SYSTEM v3
   Editorial. Restrained. Luxury.
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    --black:          #080808;
    --bg-surface:     #111111;
    --bg-elevated:    #161616;
    --charcoal:       #1A1A1A;
    --gold:           #B8973A;
    --gold-light:     #C9A94E;
    --gold-muted:     rgba(184, 151, 58, 0.12);
    --cream:          #E8E4DC;
    --text-primary:   #E8E4DC;
    --text-secondary: #9A9490;
    --text-dim:       #6A6460;
    --border:         rgba(184, 151, 58, 0.12);
    --border-hover:   rgba(184, 151, 58, 0.4);

    --font-display:   'Playfair Display', Georgia, serif;
    --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:      'Inter', 'Helvetica Neue', sans-serif;

    --h1:    clamp(2.75rem, 5vw, 4.5rem);
    --h2:    clamp(1.75rem, 3vw, 2.5rem);
    --h3:    clamp(1.15rem, 1.8vw, 1.4rem);
    --body:  clamp(0.95rem, 1.1vw, 1.0625rem);
    --small: 0.8125rem;
    --xs:    0.75rem;

    --section-pad: clamp(80px, 10vw, 140px);
    --gutter:      clamp(24px, 5vw, 80px);
    --max-w:       1200px;
    --nav-h:       80px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

::selection { background: var(--gold); color: var(--black); }
::-moz-selection { background: var(--gold); color: var(--black); }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
* { scrollbar-color: var(--gold) var(--black); scrollbar-width: thin; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin: 0;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
p { margin: 0; }

.font-playfair { font-family: var(--font-display); }
.font-editorial { font-family: var(--font-editorial); }

/* --- UTILITY CLASSES --- */
.text-cream      { color: var(--cream); }
.text-gold       { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-secondary  { color: var(--text-secondary); }
.text-dim        { color: var(--text-dim); }
.text-sm         { font-size: var(--small); }
.text-xs         { font-size: var(--xs); }
.text-center     { text-align: center; }
.uppercase       { text-transform: uppercase; }
.tracking-wide   { letter-spacing: 0.06em; }
.tracking-wider  { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.font-light      { font-weight: 300; }
.font-normal     { font-weight: 400; }
.font-medium     { font-weight: 500; }
.font-semibold   { font-weight: 600; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.w-auto { width: auto; }

/* --- LAYOUT --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--section-pad) 0;
}

.section-alt {
    padding: var(--section-pad) 0;
    background: var(--bg-surface);
}

.section + .section,
.section + .section-alt,
.section-alt + .section,
.section-alt + .section-alt {
    border-top: 1px solid var(--border);
}

/* Section heading */
.section-heading {
    margin-bottom: 3.5rem;
}
.section-heading h2 {
    margin-bottom: 0.75rem;
}
.section-heading .rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
}
.section-heading p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 520px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s, box-shadow 0.4s;
}

.navbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    height: 56px;
    width: auto;
    transition: opacity 0.3s;
}
@media (min-width: 768px) {
    .nav-logo { height: 64px; }
}

.nav-links {
    display: none;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: var(--xs);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 500;
    transition: all 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* Mobile menu */
.menu-toggle {
    display: block;
    cursor: pointer;
    color: var(--gold);
    background: none;
    border: none;
    padding: 0;
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }
}

.mobile-menu {
    display: block;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--gutter) 1.5rem;
}
.mobile-menu.hidden { display: none; }

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: var(--small);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* --- SCROLL PROGRESS --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--gold);
    z-index: 200;
}

/* ============================================================
   HOMEPAGE — FULL-BLEED HERO
   ============================================================ */
.hero-fullbleed {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero crossfade slideshow — 3 slides, 21s total cycle */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(1.3) contrast(1.05) saturate(1.1);
    animation: hero-crossfade 21s ease-in-out infinite;
    transform: scale(1.05);
}
/* Slow Ken Burns drift for cinematic feel */
.hero-slide-1 { animation-delay: 0s; z-index: 3; opacity: 1; }
.hero-slide-2 { animation-delay: 7s; z-index: 2; }
.hero-slide-3 { animation-delay: 14s; z-index: 1; object-position: 35% 15%; }

/* 3 slides at 21s = 7s each (33.3% of cycle)
   fade in 2s, hold 5s, fade out 2s */
@keyframes hero-crossfade {
    0%      { opacity: 0; transform: scale(1.05); }
    5%      { opacity: 1; transform: scale(1.03); }
    28%     { opacity: 1; transform: scale(1.0); }
    38%     { opacity: 0; transform: scale(1.0); }
    100%    { opacity: 0; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(8,8,8,0.7) 0%,
            rgba(8,8,8,0.5) 40%,
            rgba(8,8,8,0.55) 70%,
            rgba(8,8,8,0.85) 100%
        );
}
@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(to bottom,
                rgba(8,8,8,0.82) 0%,
                rgba(8,8,8,0.72) 35%,
                rgba(8,8,8,0.72) 65%,
                rgba(8,8,8,0.92) 100%
            );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: calc(var(--nav-h) + 3rem) var(--gutter) 3rem;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 2.5rem;
}
@media (min-width: 768px) {
    .hero-logo { height: 130px; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3);
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-family: var(--font-editorial);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-outline-light {
    border-color: rgba(232, 228, 220, 0.4);
    color: var(--cream);
}
.btn-outline-light:hover {
    background: rgba(232, 228, 220, 0.08);
    color: var(--cream);
    border-color: rgba(232, 228, 220, 0.6);
}

.hero-founder-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 151, 58, 0.2);
}

.hero-portrait {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(1.15);
}

.hero-founder-name {
    font-size: var(--small);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-founder-title {
    font-size: var(--xs);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: var(--xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   HOMEPAGE — STATS BAR (compact, between credential bar and content)
   ============================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

/* --- RANKINGS SHOWCASE --- */
.rankings-showcase {
    padding: clamp(32px, 4vw, 56px) var(--gutter);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.rankings-label {
    font-family: var(--font-body);
    font-size: var(--xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.rankings-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}
.ranking-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.ranking-logo-item img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: opacity 0.3s, filter 0.3s;
}
.ranking-logo-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg) brightness(0.9);
}
.ranking-caption {
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}
@media (min-width: 768px) {
    .ranking-logo-item img { height: 52px; }
}

/* ============================================================
   LEGACY — EDITORIAL HERO (kept for compat)
   ============================================================ */
.hero-editorial {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    background: var(--black);
}
@media (min-width: 1024px) {
    .hero-editorial {
        grid-template-columns: 1.15fr 1fr;
    }
}
.hero-editorial .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 3rem) var(--gutter) 3rem;
}
.hero-editorial .hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}
.hero-editorial .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HOMEPAGE — CREDENTIAL BAR
   ============================================================ */
.credential-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}
.credential-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}
.credential-item {
    font-size: var(--xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.credential-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ============================================================
   HOMEPAGE — THESIS STATEMENT
   ============================================================ */
.thesis {
    padding: var(--section-pad) 0;
    text-align: center;
}
.thesis-text {
    font-family: var(--font-editorial);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto;
}
.thesis-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}
.thesis-attribution {
    font-size: var(--xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================================
   HOMEPAGE — EDITORIAL PILLARS
   ============================================================ */
.pillars-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .pillars-editorial {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-ed {
    padding: 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .pillar-ed {
        border-bottom: none;
        border-right: 1px solid var(--border);
    }
    .pillar-ed:last-child { border-right: none; }
}

.pillar-ed-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--gold);
    opacity: 0.06;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    user-select: none;
    pointer-events: none;
}

.pillar-ed-label {
    font-size: var(--xs);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.pillar-ed h3 {
    font-size: var(--h3);
    margin-bottom: 1rem;
}
.pillar-ed p {
    font-size: var(--small);
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================================
   HOMEPAGE — DEAL SHOWCASE
   ============================================================ */
.deal-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
}
@media (min-width: 768px) {
    .deal-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .deal-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

.deal-item {
    background: var(--black);
    padding: 2.5rem;
    position: relative;
    transition: background 0.4s;
}
.deal-item:hover {
    background: var(--bg-surface);
}

.deal-item-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.deal-item-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.deal-item-desc {
    font-size: var(--small);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   HOMEPAGE — FOUNDER EDITORIAL (portrait + quote)
   ============================================================ */
.founder-editorial {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .founder-editorial {
        grid-template-columns: 5fr 6fr;
    }
}

.founder-photo {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(1.15) contrast(1.05);
}

.founder-quote-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem var(--gutter);
    background: var(--bg-surface);
    position: relative;
}
@media (min-width: 768px) {
    .founder-quote-panel {
        padding: 4rem;
        border-left: 1px solid var(--border);
    }
}

.founder-name-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.founder-name-bar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}
.founder-name-bar p {
    font-size: var(--xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================================
   HOMEPAGE — CLEAN PHOTO PAIR
   ============================================================ */
.photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--black);
}
.photo-pair-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.photo-pair-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.25) contrast(1.05);
    transition: transform 0.8s ease;
}
.photo-pair-item:hover img {
    transform: scale(1.04);
}
.photo-pair-item .photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(8,8,8,0.7), transparent);
    font-size: var(--xs);
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.photo-pair-item:hover .photo-label {
    transform: translateY(0);
}

/* ============================================================
   HOMEPAGE — EDITORIAL QUOTE
   ============================================================ */
.editorial-quote {
    padding: var(--section-pad) 0;
    position: relative;
}
.editorial-quote .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .editorial-quote .container {
        grid-template-columns: auto 1fr;
        gap: 3rem;
    }
}

.editorial-quote blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    margin: 0;
}
.editorial-quote blockquote p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
}
.editorial-quote blockquote cite {
    display: block;
    margin-top: 1.25rem;
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quote-source-logo {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.quote-source-logo:hover { opacity: 0.8; }

/* ============================================================
   HOMEPAGE — STATS SHOWCASE
   ============================================================ */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
@media (min-width: 768px) {
    .stats-showcase { grid-template-columns: repeat(4, 1fr); }
}

.stat-block {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}
.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    bottom: 25%;
    width: 1px;
    background: var(--border);
}
@media (max-width: 767px) {
    .stat-block:nth-child(2)::after { display: none; }
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-desc {
    font-size: var(--xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.counter-animate {
    font-weight: 700;
    font-family: var(--font-display);
}

/* ============================================================
   HOMEPAGE — CLIENT GRID
   ============================================================ */
.client-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
}
@media (min-width: 768px) {
    .client-grid { grid-template-columns: repeat(3, 1fr); }
}

.client-card {
    background: var(--black);
    padding: 2.5rem;
    transition: background 0.4s;
}
.client-card:hover { background: var(--bg-surface); }
.client-card h3 {
    color: var(--gold);
    font-size: var(--h3);
    margin-bottom: 0.75rem;
}
.client-card p {
    font-size: var(--small);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   SHARED — PRACTICE AREA CARDS
   ============================================================ */
.practice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
}
@media (min-width: 768px) {
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .practice-grid { grid-template-columns: repeat(4, 1fr); }
}

.practice-card {
    background: var(--black);
    padding: 2rem;
    transition: background 0.4s;
    display: block;
    position: relative;
}
.practice-card:hover { background: var(--bg-surface); }
.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s;
}
.practice-card:hover::before { width: 100%; }
.practice-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.practice-card p { font-size: var(--small); color: var(--text-secondary); }

/* ============================================================
   SHARED — LOGO STRIP
   ============================================================ */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}
@media (min-width: 768px) {
    .logo-strip { grid-template-columns: repeat(8, 1fr); }
}

.logo-strip img {
    filter: brightness(0) invert(0.35);
    max-height: 22px;
    width: auto;
    margin: 0 auto;
    transition: filter 0.3s;
}
.logo-strip img:hover { filter: brightness(0) invert(0.7); }

/* ============================================================
   SHARED — BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    font-size: var(--xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 500;
    font-size: var(--xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
}
.btn-outline:hover {
    background: rgba(184, 151, 58, 0.08);
    color: var(--gold-light);
}

/* --- LinkedIn Buttons --- */
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.linkedin-btn:hover {
    background: var(--gold);
    color: var(--black);
}
.linkedin-btn svg {
    flex-shrink: 0;
}

.linkedin-btn--inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: none;
    margin-top: 0;
    color: var(--cream);
    font-size: inherit;
    font-weight: 400;
    letter-spacing: normal;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.linkedin-btn--inline:hover {
    background: transparent;
    color: var(--gold);
}

/* ============================================================
   SHARED — CTA SECTION
   ============================================================ */
.cta-section {
    padding: var(--section-pad) 0;
    text-align: center;
    border-top: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* Section CTA (inline) */
.section-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* ============================================================
   SHARED — CARDS
   ============================================================ */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.3s;
}
.card:hover { border-color: var(--border-hover); }

/* ============================================================
   SHARED — BLOCKQUOTE
   ============================================================ */
blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 0;
}
blockquote p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
}
blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   INTERIOR — PAGE HERO
   ============================================================ */
.page-hero {
    padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}
.page-hero .container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.page-hero h1 { font-size: var(--h1); }
.page-hero .subtitle {
    color: var(--text-secondary);
    font-size: var(--body);
    max-width: 520px;
}
.page-hero .rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.5rem;
}

/* Page hero with image (split) */
.page-hero-split {
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}
.page-hero-split .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .page-hero-split .container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.page-hero-split h1 { font-size: var(--h1); margin-bottom: 0.5rem; }
.page-hero-split .subtitle { color: var(--text-secondary); max-width: 480px; }
.page-hero-split .rule { width: 48px; height: 1px; background: var(--gold); margin-top: 0.75rem; }
.page-hero-split .hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--border);
}

/* --- Award Feature Photo --- */
.award-feature {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.award-feature-img {
    width: 100%;
    border: 1px solid var(--border);
    filter: brightness(1.15) contrast(1.05);
}
.award-feature-caption {
    margin-top: 1rem;
}

/* ============================================================
   RECOGNITION PAGE — SINGLE SCROLL LAYOUT
   ============================================================ */
.recognition-page {
    background: var(--black);
}

.recognition-flow {
    padding: clamp(48px, 6vw, 80px) 0;
    background: var(--black);
}

.recognition-block {
    padding: clamp(32px, 4vw, 56px) 0;
}

.recognition-block-title {
    margin-bottom: 2rem;
}

.recognition-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* Chambers quote styling for recognition page */
.recognition-quote {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.recognition-quote-logo {
    height: 36px;
    width: auto;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(0.7);
}
.recognition-quote blockquote {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: var(--cream);
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.recognition-quote cite {
    font-style: normal;
    font-size: var(--small);
    color: var(--text-secondary);
}

/* CTA block within recognition flow */
.recognition-cta-block {
    text-align: center;
    padding-top: clamp(48px, 6vw, 80px);
}
.recognition-cta-block h2 {
    margin-bottom: 0.75rem;
}
.recognition-cta-block p {
    margin-bottom: 2rem;
}

/* Award card background override for dark-on-dark flow */
.recognition-flow .award-card {
    background: var(--bg-elevated);
}

/* ============================================================
   INTERIOR — PILLAR GRID (Why This Practice fallback)
   ============================================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar .rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}
.pillar h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}
.pillar p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================================
   INTERIOR — TIMELINE
   ============================================================ */
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.timeline-item:last-child::before { display: none; }

.timeline-year {
    font-family: var(--font-display);
    font-size: var(--small);
    color: var(--gold);
    font-weight: 700;
    position: relative;
}
.timeline-year::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-content h3 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.timeline-content .org { color: var(--gold); font-size: var(--small); margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-secondary); font-size: var(--small); }

/* ============================================================
   INTERIOR — AWARD CARDS
   ============================================================ */
.award-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .award-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .award-grid { grid-template-columns: repeat(3, 1fr); }
}

.award-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.3s;
}
.award-card:hover { border-color: var(--border-hover); }
.award-card .year {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.award-card h3 { font-size: var(--h3); margin-bottom: 0.5rem; }
.award-card p { font-size: var(--small); color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   INTERIOR — ARTICLES
   ============================================================ */
.article-list { list-style: none; padding: 0; margin: 0; }

.article-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    transition: padding-left 0.3s;
}
.article-item:hover { padding-left: 0.5rem; }
.article-item a {
    font-size: var(--body);
    color: var(--cream);
    font-weight: 400;
}
.article-item a:hover { color: var(--gold); }
.article-item .pub {
    font-size: var(--xs);
    color: var(--text-dim);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================================
   INTERIOR — CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: var(--xs);
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

input, textarea, select {
    font-family: var(--font-body);
    width: 100%;
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    font-size: var(--body);
    font-weight: 300;
    transition: border-color 0.3s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
}
input::placeholder, textarea::placeholder {
    color: var(--text-dim);
}

/* ============================================================
   INTERIOR — FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    cursor: pointer;
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.3s;
    user-select: none;
}
.faq-question:hover { color: var(--gold-light); }
.faq-question.active { color: var(--gold); }

.faq-toggle-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-question.active .faq-toggle-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, opacity 0.4s;
    opacity: 0;
}
.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1rem;
}
.faq-answer p { color: var(--text-secondary); line-height: 1.75; }

/* ============================================================
   SHARED — TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: 1fr 1fr; }
}
.two-col-wide-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .two-col-wide-left { grid-template-columns: 3fr 2fr; }
}

/* ============================================================
   SHARED — EDUCATION GRID
   ============================================================ */
.edu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .edu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SHARED — TRUST ELEMENTS
   ============================================================ */
.trust-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--small);
    color: var(--text-secondary);
}
.trust-line::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}
.trust-box p { font-size: var(--small); color: var(--text-secondary); line-height: 1.6; }
.trust-box strong { color: var(--cream); }

/* ============================================================
   SHARED — CALENDLY PLACEHOLDER
   ============================================================ */
.calendly-placeholder {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.calendly-placeholder p {
    color: var(--text-secondary);
    font-size: var(--small);
}

/* ============================================================
   SHARED — FOOTER
   ============================================================ */
.site-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--black);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand img { height: 36px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-size: var(--small); color: var(--text-dim); max-width: 300px; line-height: 1.6; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
    font-size: var(--xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    font-size: var(--small);
    color: var(--text-dim);
    margin: 0 0 0.25rem;
}
.footer-contact a { color: var(--gold); }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: var(--xs);
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ============================================================
   SHARED — FLOATING CTA (mobile)
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(184,151,58,0.25);
    transition: transform 0.3s;
}
.floating-cta:hover { transform: scale(1.08); }
.floating-cta svg { width: 20px; height: 20px; color: var(--black); }
@media (min-width: 768px) { .floating-cta { display: none; } }

/* WhatsApp floating button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem 0.6rem 0.7rem;
    background: #1a1a1a;
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 100px;
    z-index: 91;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none;
}
.floating-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    color: inherit;
}
.floating-whatsapp svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.floating-whatsapp span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color 0.3s;
}
.floating-whatsapp:hover span {
    color: #25D366;
}
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 76px;
        right: 16px;
        padding: 0.5rem 0.85rem 0.5rem 0.6rem;
    }
    .floating-whatsapp span { font-size: 0.65rem; }
}

/* ============================================================
   SHARED — PORTRAIT
   ============================================================ */
.portrait-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--gold);
    flex-shrink: 0;
}
.portrait-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(1.15);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .navbar, .site-footer, .floating-cta, .scroll-progress { display: none; }
    body { background: #fff; color: #000; }
}

/* ============================================================
   LEGACY COMPAT — stat-grid, deal-grid, deal-card, gallery-strip
   (kept for interior pages that may still use these)
   ============================================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: var(--xs);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.deal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .deal-grid { grid-template-columns: repeat(2, 1fr); }
}
.deal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.deal-card:hover { border-color: var(--border-hover); }
.deal-card .deal-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.deal-card .deal-name { font-size: 1.05rem; font-weight: 500; color: var(--cream); }
.deal-card .deal-role { font-size: var(--small); color: var(--text-secondary); line-height: 1.5; }

.gallery-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #0a0a0a;
    line-height: 0;
    font-size: 0;
}
@media (min-width: 768px) {
    .gallery-strip { grid-template-columns: repeat(4, 1fr); }
    .gallery-item-tall { aspect-ratio: 3/4; }
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #0a0a0a;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.25) contrast(1.05);
    transition: transform 0.6s ease;
    margin: 0;
    padding: 0;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(8,8,8,0.65), transparent);
    color: rgba(255,255,255,0.75);
    font-size: var(--xs);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover::after { transform: translateY(0); }

/* ============================================================
   GALLERY MARQUEE — infinite auto-scroll
   ============================================================ */
.gallery-marquee {
    overflow: hidden;
    background: var(--black);
    padding: 2px 0;
}
.gallery-marquee-track {
    display: flex;
    gap: 2px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}
.gallery-marquee:hover .gallery-marquee-track {
    animation-play-state: paused;
}
.gallery-marquee-item {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    aspect-ratio: 4/3;
    overflow: hidden;
}
@media (min-width: 768px) {
    .gallery-marquee-item { width: 400px; }
}
@media (min-width: 1200px) {
    .gallery-marquee-item { width: 480px; }
}
.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.25) contrast(1.05);
    transition: transform 0.6s ease;
}
.gallery-marquee-item:hover img {
    transform: scale(1.04);
}
.gallery-marquee-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--cream);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-marquee-item:hover::after {
    transform: translateY(0);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Awards ticker (legacy) */
.awards-ribbon {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
}
.ticker-track { display: flex; width: max-content; }
.award-tick {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    white-space: nowrap;
    font-size: var(--small);
    color: var(--cream);
}
.award-tick::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* Hero split (legacy for slideshow) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}
@media (min-width: 1024px) {
    .hero-split { grid-template-columns: 1fr 1fr; }
}
.hero-text-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 3rem) var(--gutter) 3rem;
    background: var(--black);
    position: relative;
}
@media (min-width: 1024px) {
    .hero-text-panel { padding: calc(var(--nav-h) + 4rem) 4rem 4rem 5rem; }
}
.hero-photo-panel {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero-photo-panel { min-height: 100vh; }
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.3) contrast(1.05) saturate(1.05);
}
.slide-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}
.slide-indicator {
    width: 36px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s;
}
.slide-indicator.active {
    background: var(--gold);
    width: 52px;
}

/* ============================================================
   TAILWIND-EQUIVALENT UTILITIES
   (so pages work without CDN in self-contained previews)
   ============================================================ */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-semibold { font-weight: 600; }
.font-playfair { font-family: var(--font-display); }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.text-cream { color: var(--cream); }
.text-gold { color: var(--gold); }
.text-secondary { color: var(--text-secondary); }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:flex-row { flex-direction: row; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:gap-10 { gap: 2.5rem; }
}
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:gap-16 { gap: 4rem; }
}

/* ============================================================
   MEDIA PAGE — Article Cards Grid
   ============================================================ */
/* --- MEDIA PAGE: MAGAZINE EDITORIAL LAYOUT --- */
.media-editorial { max-width: 1300px; margin: 0 auto; padding: 0 var(--gutter); }

/* Hero Feature — full-width, side-by-side */
.media-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: border-color 0.4s;
}
.media-hero:hover { border-color: var(--border-hover); }
.media-hero .media-card-img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.media-hero .media-card-body { padding: 2.5rem 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.media-hero .media-card-pub { font-size: var(--small); letter-spacing: 0.15em; margin-bottom: 1rem; }
.media-hero .media-card-quote { font-size: 1.35rem; line-height: 1.6; margin-bottom: 0.75rem; }
.media-hero .media-card-title { font-size: 1.25rem; margin-bottom: 1rem; }

/* Pull-Quote Interstitial — dramatic standalone quote */
.media-pullquote {
    text-align: center;
    padding: 3.5rem 2rem;
    margin: 1rem 0;
    position: relative;
}
.media-pullquote::before {
    content: '\201C';
    font-family: var(--font-editorial);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.media-pullquote blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto 0.75rem;
}
.media-pullquote .pullquote-attr {
    font-family: var(--font-body);
    font-size: var(--small);
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}
.media-pullquote .pullquote-source {
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--text-dim);
    margin-top: 0.25rem;
}

/* Standard Grid — 2-column for featured pairs, 3-column for standard */
.media-row { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.media-row-2 { grid-template-columns: 1fr 1fr; }
.media-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Featured Card — larger, with horizontal layout */
.media-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.media-featured:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.media-featured .media-card-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.media-featured .media-card-body { padding: 1.75rem 1.75rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.media-featured .media-card-quote { font-size: 1.1rem; }

/* Standard Card — vertical stack */
.media-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.media-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.media-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.media-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.media-card-pub { font-size: var(--xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.5rem; font-weight: 500; }
.media-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); line-height: 1.35; margin-bottom: 0.75rem; }
.media-card-title a { color: inherit; transition: color 0.3s; }
.media-card-title a:hover { color: var(--gold-light); }
.media-card-snippet { font-size: var(--small); color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.media-card-links { display: flex; gap: 1rem; align-items: center; font-size: var(--xs); }
.media-card-links a { color: var(--gold); transition: color 0.3s; }
.media-card-links a:hover { color: var(--gold-light); }

/* Quote Attribution — appears after every quote */
.media-card-attr {
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

/* ============================================================
   ARTICLE STANDALONE PAGE
   ============================================================ */
.article-page { padding-top: calc(var(--nav-h) + 3rem); }
.article-hero { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }
.article-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; margin-bottom: 2rem; }
.article-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta-pub { font-size: var(--xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 500; background: var(--gold-muted); padding: 0.25rem 0.75rem; border-radius: 3px; }
.article-meta-date { font-size: var(--xs); color: var(--text-dim); }
.article-content { max-width: 800px; margin: 0 auto; padding: 2rem var(--gutter) 4rem; }
.article-content p { margin-bottom: 1.25rem; color: var(--text-secondary); line-height: 1.8; }
.article-content blockquote { border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; font-family: var(--font-editorial); font-size: 1.15rem; color: var(--cream); font-style: italic; line-height: 1.6; }
.article-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: var(--small); margin-bottom: 2rem; }
.article-back:hover { color: var(--gold-light); }
.article-original-link { display: inline-block; margin-top: 2rem; padding: 0.75rem 1.75rem; border: 1px solid var(--gold); color: var(--gold); font-size: var(--small); letter-spacing: 0.05em; transition: all 0.3s; border-radius: 4px; }
.article-original-link:hover { background: var(--gold); color: var(--black); }

/* Media card quote — thought leadership showcase */
.media-card-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.65;
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    margin-bottom: 1rem;
}

/* Media page responsive */
@media (max-width: 1024px) {
    .media-hero { grid-template-columns: 1fr; }
    .media-hero .media-card-img { min-height: 260px; }
    .media-featured { grid-template-columns: 1fr; }
    .media-featured .media-card-img { min-height: 220px; }
    .media-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .media-editorial { padding: 0 1rem; }
    .media-row-2, .media-row-3 { grid-template-columns: 1fr; }
    .media-hero .media-card-body { padding: 1.5rem; }
    .media-pullquote { padding: 2rem 1rem; }
    .media-pullquote blockquote { font-size: 1.15rem; }
}

/* ============================================================
   HERO PULL-QUOTE — Single dominant quote on homepage
   ============================================================ */
.hero-pullquote {
    padding: clamp(60px, 8vw, 110px) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.hero-pullquote-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.hero-pullquote-mark {
    display: block;
    font-family: var(--font-editorial);
    font-size: clamp(5rem, 10vw, 8rem);
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: 1rem;
}
.hero-pullquote blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
    margin: 0 0 2rem;
}
.hero-pullquote-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.hero-pullquote-attr cite {
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-pullquote-source {
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--text-dim);
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
a.hero-pullquote-source:hover { color: var(--gold-light); }

/* ============================================================
   "IN HIS OWN WORDS" — Homepage Interview Quotes
   ============================================================ */
.own-words {
    padding: var(--section-pad) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.own-words .section-heading { text-align: center; }
.own-words-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.own-words-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.3s ease;
}
.own-words-card:hover { border-color: var(--border-hover); }
.own-words-card::before {
    content: '\201C';
    font-family: var(--font-editorial);
    font-size: 4.5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
    line-height: 1;
}
.own-words-card blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.75;
    margin: 0 0 1.5rem;
}
.own-words-card cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--gold);
    letter-spacing: 0.06em;
    font-weight: 500;
}
.own-words-card .own-words-source {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--text-dim);
    text-decoration: none;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: border-color 0.3s, background 0.3s, color 0.2s;
}
.own-words-logo {
    height: 20px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}
a.own-words-source:hover {
    color: var(--gold);
    border-color: rgba(184,151,58,0.3);
    background: rgba(184,151,58,0.06);
}
a.own-words-source:hover .own-words-logo {
    opacity: 1;
}
@media (max-width: 1024px) {
    .own-words-grid { grid-template-columns: 1fr; max-width: 600px; }
}

/* ============================================================
   FEATURED INTERVIEWS — Media Page Premium Section
   ============================================================ */
.interviews-premium {
    padding: 0 var(--gutter) 3rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.interview-card {
    background: var(--bg-elevated);
    border: 1px solid var(--gold-muted);
    border-radius: 8px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.interview-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.interview-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.interview-card-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}
.interview-card-pub {
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.interview-card-title {
    font-family: var(--font-display);
    font-size: var(--h3);
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.interview-card blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
}
.interview-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
.interview-card-link:hover { color: var(--gold-light); }
.interview-card-link::after {
    content: '\2197';
    font-size: 0.9em;
}
@media (max-width: 1024px) {
    .interviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ============================================================
   FOUNDER PHILOSOPHY QUOTES
   ============================================================ */
.philosophy-quote {
    background: var(--bg-elevated);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
}
.philosophy-quote blockquote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
    margin: 0 0 0.75rem;
}
.philosophy-quote cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--xs);
    color: var(--gold);
    letter-spacing: 0.05em;
}
.philosophy-quote cite a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
.philosophy-quote cite a:hover { color: var(--gold-light); }

/* ============================================================
   RESOURCES PAGE — Video Grid & Downloads
   ============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.video-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.video-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.video-embed {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--black);
    aspect-ratio: 16/9;
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.85);
}
.video-embed:hover .video-thumb {
    transform: scale(1.05);
    filter: brightness(1);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, 0.7);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}
.video-embed:hover .video-play-btn {
    background: rgba(8, 8, 8, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-card-body {
    padding: 1.5rem 1.75rem;
}
.video-card-duration {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}
.video-card-title {
    font-family: var(--font-display);
    font-size: var(--h3);
    color: var(--cream);
    line-height: 1.35;
    margin-bottom: 0.6rem;
}
.video-card-desc {
    font-family: var(--font-body);
    font-size: var(--small);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.download-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    transition: border-color 0.3s;
}
.download-card:hover { border-color: var(--border-hover); }
.download-card-icon {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.7;
}
.download-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.download-card-body p {
    font-size: var(--small);
    color: var(--text-secondary);
    line-height: 1.6;
}
.download-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.2s;
}
.download-card-link:hover { color: var(--gold-light); }
.download-card-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
    .video-grid { grid-template-columns: 1fr; }
    .downloads-grid { grid-template-columns: 1fr; }
}
