/* =====================================================
   THE OFFICE OF MUDIT LAL
   Main Stylesheet
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --burgundy: #722F37;
    --burgundy-dark: #5a252c;
    --burgundy-light: #8a3a44;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-pale: #E8D5A3;
    --cream: #FAF8F5;
    --cream-dark: #F5F0E8;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --text-muted: #6b6b6b;
    --border-light: #e8e6e1;
    --shadow: rgba(26, 26, 26, 0.06);

    /* Venture Brand Colors */
    --devalok-brand: #d33163;
    --oshm-brand: #e07000;
    --brahmalok-brand: #1A6B7C;
}

/* Dark Theme */
[data-theme="dark"] {
    --burgundy: #a85660;
    --burgundy-dark: #8a4048;
    --burgundy-light: #c06a75;
    --gold: #D4AF37;
    --gold-light: #E0C050;
    --gold-pale: #4a4230;
    --cream: #121212;
    --cream-dark: #1a1a1a;
    --charcoal: #e8e6e1;
    --charcoal-light: #c9c5bc;
    --text-muted: #9a9a9a;
    --border-light: #2d2d2d;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Subtle background texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(114, 47, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    transition: background-image 0.3s ease;
}

[data-theme="dark"] body::before {
    background-image:
        radial-gradient(circle at 20% 80%, rgba(168, 86, 96, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(250, 248, 245, 0.95) 70%, rgba(250, 248, 245, 0) 100%);
    transition: all 0.3s ease;
}

[data-theme="dark"] .nav {
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(18, 18, 18, 0.95) 70%, rgba(18, 18, 18, 0) 100%);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--charcoal);
}

.nav-brand-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    opacity: 0.8;
}

.nav-brand-name {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--charcoal);
}

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

.nav-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal-light);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--burgundy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--burgundy);
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: var(--cream-dark);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
    fill: var(--charcoal);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover svg {
    fill: var(--gold);
}

/* Sun icon (shown in dark mode) */
.theme-toggle .sun-icon {
    display: none;
}

/* Moon icon (shown in light mode) */
.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* ===== Homepage Styles ===== */

/* Main Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gold accent line */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    margin: 0 auto 40px auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Decorative star */
.decorative-star {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 12px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.office-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.name {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.tagline {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Status Section */
.status-section {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.status-badge {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--gold-pale);
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,248,245,0.9) 100%);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    position: relative;
}

.status-badge::before,
.status-badge::after {
    content: '✦';
    color: var(--gold);
    font-size: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.status-badge::before {
    left: 10px;
}

.status-badge::after {
    right: 10px;
}

.status-message {
    margin-top: 25px;
    font-size: 17px;
    color: var(--charcoal-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Convocation Section */
.convocation-section {
    background: var(--cream-dark);
    border-left: 3px solid var(--burgundy);
    padding: 35px 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.convocation-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.05) 100%);
    pointer-events: none;
}

.section-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.convocation-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.convocation-subtitle {
    font-size: 15px;
    color: var(--burgundy);
    font-style: italic;
    margin-bottom: 20px;
}

.event-details {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--charcoal-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.event-details strong {
    color: var(--charcoal);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--burgundy);
    color: #fff;
    border: 1px solid var(--burgundy);
}

.cta-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
}

.cta-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
}

.cta-secondary:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-2px);
}

.cta-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ===== Ventures Section ===== */
.ventures-section {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.ventures-section .section-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

/* Venture Card Base */
.venture-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venture-card:hover::before {
    opacity: 1;
}

.venture-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Brand-specific accent colors */
.venture-card[data-brand="devalok"]::before {
    background: var(--devalok-brand);
}

.venture-card[data-brand="oshm"]::before {
    background: var(--oshm-brand);
}

.venture-card[data-brand="brahmalok"]::before {
    background: var(--brahmalok-brand);
}

.venture-card[data-brand="devalok"]:hover {
    border-color: var(--devalok-brand);
    background: linear-gradient(135deg, rgba(211, 49, 99, 0.03) 0%, var(--cream) 100%);
}

.venture-card[data-brand="oshm"]:hover {
    border-color: var(--oshm-brand);
    background: linear-gradient(135deg, rgba(224, 112, 0, 0.03) 0%, var(--cream) 100%);
}

.venture-card[data-brand="brahmalok"]:hover {
    border-color: var(--brahmalok-brand);
    background: linear-gradient(135deg, rgba(26, 107, 124, 0.03) 0%, var(--cream) 100%);
}

/* Venture Thumbnail - Hidden */
.venture-thumbnail {
    display: none;
}

/* Venture Content */
.venture-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venture-name {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 6px 0;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.venture-card[data-brand="devalok"]:hover .venture-name {
    color: var(--devalok-brand);
}

.venture-card[data-brand="oshm"]:hover .venture-name {
    color: var(--oshm-brand);
}

.venture-card[data-brand="brahmalok"]:hover .venture-name {
    color: var(--brahmalok-brand);
}

.venture-explainer {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.venture-mission {
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--charcoal);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.venture-cta {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.venture-card[data-brand="devalok"] .venture-cta {
    color: var(--devalok-brand);
}

.venture-card[data-brand="oshm"] .venture-cta {
    color: var(--oshm-brand);
}

.venture-card[data-brand="brahmalok"] .venture-cta {
    color: var(--brahmalok-brand);
}

.venture-card:hover .venture-cta {
    letter-spacing: 2px;
}

/* Featured Venture (Devalok) */
.venture-featured {
    margin-bottom: 25px;
}

.venture-featured .venture-name {
    font-size: 1.4rem;
}

/* WIP Ventures */
.ventures-wip {
    margin-top: 20px;
}

.ventures-wip-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-left: 5px;
}

.ventures-wip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.venture-wip-card {
    opacity: 0.85;
}

.venture-wip-card:hover {
    opacity: 1;
}

.venture-wip-card .venture-name {
    font-size: 1rem;
}

.venture-wip-card .venture-explainer {
    font-size: 0.8rem;
}

.venture-wip-card .venture-mission {
    font-size: 0.85rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.contact-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-email {
    font-size: 18px;
    color: var(--burgundy);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.contact-email:hover {
    color: var(--burgundy-dark);
}

.contact-email:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-pale);
    border-radius: 50%;
    color: var(--burgundy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.2);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.footer-office {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-location {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-contact {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-contact a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.ventures {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.venture-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.venture-link:hover {
    opacity: 1;
}

.venture-separator {
    color: var(--gold-pale);
    font-size: 10px;
}


/* =====================================================
   PRESS PAGE STYLES
   ===================================================== */

/* Press Page Container */
.press-page {
    padding-top: 100px;
}

/* Press Section Header */
.press-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
}

.press-header::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 2rem;
    background: var(--gold);
}

.press-office-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.press-title {
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
    color: var(--charcoal);
}

.press-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
}

/* Press Container */
.press-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* Press Section Labels */
.press-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.press-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Featured Grid */
.press-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.press-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--gold);
}

.press-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.press-card:hover::after {
    width: 100%;
}

/* Card Cover */
.press-card-cover {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.press-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.press-card:hover .press-card-cover img {
    transform: scale(1.05);
}

.press-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.press-card-credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Card Body */
.press-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.press-card-publication {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 0.6rem;
}

.press-card-headline {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 0.6rem 0;
    letter-spacing: 0;
    color: var(--charcoal);
}

.press-card-excerpt {
    font-family: Georgia, serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.press-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: var(--text-muted);
}

.press-card-date {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.press-card-arrow {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 12px;
    color: var(--text-muted);
}

.press-card:hover .press-card-arrow {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: white;
}

/* News List */
.press-news-section {
    margin-bottom: 4rem;
}

.press-news-list {
    display: flex;
    flex-direction: column;
}

.press-news-item {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: all 0.3s ease;
}

.press-news-item:hover {
    background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.press-news-source {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--burgundy);
}

.press-news-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.press-news-headline {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
    color: var(--charcoal);
}

.press-news-item:hover .press-news-headline {
    color: var(--burgundy);
}

.press-news-desc {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.press-news-date {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Video Section */
.press-video-section {
    margin-bottom: 3rem;
}

.press-video-card {
    background: #1a1a1a;
    color: white;
    padding: 2rem 2.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
    max-width: 580px;
    position: relative;
    overflow: hidden;
    display: block;
}

[data-theme="dark"] .press-video-card {
    background: #2d2d2d;
    border: 1px solid var(--border-light);
}

.press-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.press-video-card:hover::before {
    opacity: 1;
}

.press-video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.press-video-type {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.press-video-type::before {
    content: '▶';
    font-size: 7px;
}

.press-video-title {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: white;
}

.press-video-guest {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.press-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.press-video-card:hover .press-video-cta {
    gap: 0.75rem;
}

/* Press Footer */
.press-footer {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
}

.press-footer p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.press-footer a {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.press-footer a:hover {
    text-decoration: underline;
}


/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

/* About Page Container */
.about-page {
    padding-top: 100px;
}

/* About Header */
.about-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 2rem;
    background: var(--gold);
}

.about-office-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.about-title {
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    color: var(--charcoal);
}

/* About Hero Image */
.about-hero {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--cream-dark);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.8s ease, opacity 0.8s ease;
    filter: blur(20px);
    opacity: 0.6;
}

.about-hero-image img.loaded {
    filter: blur(0);
    opacity: 1;
}

.about-hero-caption {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* About Container */
.about-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* Brief Bio / Intro */
.about-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
    animation: fadeInUp 0.6s ease forwards;
}

.about-intro-text {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

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

/* Extended Bio Sections */
.about-bio {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.bio-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.bio-section:nth-child(1) { animation-delay: 0.1s; }
.bio-section:nth-child(2) { animation-delay: 0.2s; }
.bio-section:nth-child(3) { animation-delay: 0.3s; }
.bio-section:nth-child(4) { animation-delay: 0.4s; }
.bio-section:nth-child(5) { animation-delay: 0.5s; }

.bio-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bio-heading::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.bio-text {
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-light);
}

.bio-text a {
    color: var(--burgundy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-pale);
    transition: border-color 0.3s ease;
}

.bio-text a:hover {
    border-color: var(--burgundy);
}

/* About Footer */
.about-footer {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.about-footer p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.about-footer a {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.about-footer a:hover {
    text-decoration: underline;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

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

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.decorative-star {
    animation: fadeInUp 0.8s ease-out 0.3s forwards, float 4s ease-in-out 1.5s infinite;
}

/* Shimmer effect on gold line */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.gold-line {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
    background-size: 200% 100%;
    animation: fadeInUp 0.8s ease-out 0.2s forwards, shimmer 3s ease-in-out 2s infinite;
}

/* Press page animations */
.press-card,
.press-news-item,
.press-video-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.press-card:nth-child(1) { animation-delay: 0.1s; }
.press-card:nth-child(2) { animation-delay: 0.2s; }
.press-card:nth-child(3) { animation-delay: 0.3s; }
.press-card:nth-child(4) { animation-delay: 0.4s; }
.press-news-item:nth-child(1) { animation-delay: 0.1s; }
.press-news-item:nth-child(2) { animation-delay: 0.15s; }
.press-news-item:nth-child(3) { animation-delay: 0.2s; }
.press-video-card { animation-delay: 0.1s; }


/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 15px;
    }

    /* Homepage */
    .container {
        padding: 100px 25px 40px;
    }

    .convocation-section {
        padding: 25px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        justify-content: center;
        width: 100%;
    }

    .social-links {
        gap: 15px;
    }

    /* Ventures Section Mobile */
    .ventures-section {
        margin-bottom: 40px;
    }

    .venture-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .ventures-wip-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .venture-featured .venture-name {
        font-size: 1.2rem;
    }

    .venture-wip-card .venture-name {
        font-size: 0.95rem;
    }

    .ventures {
        flex-direction: column;
        gap: 10px;
    }

    .venture-separator {
        display: none;
    }

    /* Press Page */
    .press-page {
        padding-top: 80px;
    }
    
    .press-header {
        padding: 3rem 1.5rem 2rem;
    }

    .press-header::before {
        top: 1rem;
        height: 1.5rem;
    }

    .press-container {
        padding: 1.5rem 1.5rem 3rem;
    }
    
    .press-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .press-card-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .press-news-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .press-news-date {
        order: -1;
        font-size: 10px;
    }
    
    .press-video-card {
        padding: 1.75rem;
    }

    /* About Page */
    .about-page {
        padding-top: 80px;
    }

    .about-header {
        padding: 3rem 1.5rem 2rem;
    }

    .about-header::before {
        top: 1rem;
        height: 1.5rem;
    }

    .about-container {
        padding: 1.5rem 1.5rem 3rem;
    }

    .about-intro-text {
        font-size: 1.05rem;
    }

    .about-hero {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
}
