/* Global Vars */
:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #0f1b29;
    --color-gold: #D4AF37; /* Classic gold */
    --color-gold-hover: #b8962e;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #888888;
    --color-gray-dark: #333333;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --nav-height: 120px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

    scroll-behavior: smooth;
    scroll-snap-type: none;
}

.fullpage-section {
    min-height: 100vh;
    height: 100vh;
    scroll-snap-align: start;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo img {
    height: 96px;
    display: block;
}

/* Logo is white — invert it to black when navbar is on a white background */
.navbar.scrolled .nav-logo img {
    filter: invert(1);
}

/* Hide logo on scroll without affecting layout: use opacity and transform only */
.nav-logo {
    display: inline-block;
    transition: opacity 200ms ease, transform 200ms ease;
}
.nav-logo.hidden-on-scroll {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-text);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.navbar.scrolled .nav-link {
    color: rgba(15, 27, 41, 0.8);
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    background: var(--color-text);
}

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

/* Dropdown CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--color-gray-light);
    color: var(--color-gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* For mobile nav dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: relative;
        box-shadow: none;
        background: transparent;
        min-width: 100%;
        text-align: center;
        padding: 0;
    }
    .dropdown-content a {
        padding: 10px;
    }
}

/* Landing Page (Home) */
.landing-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.landing-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.landing-api-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-api-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6);
    transform: scale(1.05); /* Prevent blur edges */
    z-index: 0;
}

/* Unblurred bottom strip that sits above the blurred image to create a sharp edge */
.landing-api-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0px; /* disabled - no visible unblurred strip */
    object-fit: cover;
    object-position: bottom center;
    transform: scale(1.05);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.landing-content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
}

.landing-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.audience-showcase {
    background: var(--color-bg);
    padding: 80px 40px 100px;
}

.showcase-block {
    position: relative;
    max-width: 1200px;
    min-height: 520px;
    margin: 0 auto 90px;
}

.showcase-media,
.showcase-copy {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 800ms ease-out, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.showcase-block.revealed .showcase-media,
.showcase-block.revealed .showcase-copy {
    opacity: 1;
    transform: translateY(0);
}

.showcase-block:last-child {
    margin-bottom: 0;
}

.showcase-media {
    width: 74%;
    height: 480px;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-copy {
    position: absolute;
    top: 48px;
    width: 430px;
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid rgba(15, 27, 41, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 42px 40px;
    z-index: 2;
}

.showcase-copy h2 {
    font-family: var(--font-sans);
    font-size: 1.45rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.showcase-copy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--color-gray-medium);
}

.showcase-copy p:last-child {
    margin-bottom: 0;
}

.showcase-copy a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.showcase-copy a:hover {
    color: var(--color-text);
}

.showcase-right .showcase-media {
    margin-right: auto;
}

.showcase-right .showcase-copy {
    right: 0;
}

.showcase-left .showcase-media {
    margin-left: auto;
}

.showcase-left .showcase-copy {
    left: 0;
}

@media (prefers-reduced-motion: reduce) {
    .showcase-media,
    .showcase-copy {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Page Layouts (Internal) */
.page-container {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.content-section {
    padding: 60px 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Custom dark-themed sections for homepage */
.dark-section {
    background: #ffffff;
    color: var(--color-text);
}

.dark-section .section-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    display: block;
    position: relative;
}
.dark-section img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.dark-section .text {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.dark-section .image-title {
    color: var(--color-text);
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.dark-section .image-subtitle {
    color: var(--color-gray-medium);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .audience-showcase {
        padding: 50px 20px 60px;
    }

    .showcase-block {
        min-height: 0;
        margin-bottom: 45px;
    }

    .showcase-media {
        width: 100%;
        height: 260px;
    }

    .showcase-copy {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: calc(100% - 24px);
        margin: -46px auto 0;
        padding: 26px 24px;
    }

    .showcase-copy h2 {
        font-size: 2rem;
    }

    .landing-title {
        font-size: 2rem;
    }

    .navbar { padding: 0 20px; }
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }
    .nav-menu.active { right: 0; }
}


/* Mobile */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

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

    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        color: var(--color-gold);
    }

    .landing-title {
        font-size: 2rem;
    }


/* Footer */
.site-footer {
    background: #4a4a4a; /* lighter gray */
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    text-align: center;
}
.site-footer .footer-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}
.site-footer .footer-links {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.site-footer .footer-links a {
    color: #ffffff;
    margin: 0 6px;
    font-weight: 500;
}
.site-footer .footer-links span { color: #ccc; }
.site-footer .social-icons {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.site-footer .social-icons a {
    display: inline-block;
    margin: 0;
    width: 16px;
    height: 16px;
    color: #ffffff;
}
.site-footer .social-icons svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor;
    display: block;
}

@media (max-width: 480px) {
    .site-footer { padding: 28px 12px; }
    .site-footer .footer-title { font-size: 1.05rem; }
}
    /* smaller logo on mobile */
    .nav-logo img { height: 56px; }
}

/* =========================
   TEAM PAGE
========================= */

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--color-gray-medium);
    margin-bottom: 70px;
}

/* Section spacing */
.team-section {
    margin-bottom: 100px;
}

.team-section-title {
    font-size: 1.6rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.team-section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 1px;
    background: var(--color-gold);
    margin-top: 8px;
}

/* =========================
   EXEC + VERTICAL HEADS GRID
========================= */

.team-grid {
    display: grid;
    gap: 50px 40px;
}

.exec-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sector-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* =========================
   TEAM CARDS
========================= */

.team-card {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden; /* important */
    margin-bottom: 18px;
    border-radius: 2px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures perfect cropping */
    display: block;
}

.team-image img[src*="Harach.png"] {
    object-position: center top;
}

.team-card:hover .team-image {
    transform: scale(1.02);
    opacity: 0.9;
}

.team-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.team-card h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-card h3 a:hover {
    color: var(--color-gold);
}

.team-role {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Make executive images slightly larger */
.exec-grid .team-image {
    height: 320px;
}

/* =========================
   ASSOCIATES SECTION
========================= */

.associate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.associate-column {
    border-left: 1px solid rgba(15, 27, 41, 0.12);
    padding-left: 20px;
}

.vertical-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.associate-column li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--color-gray-dark);
    transition: color 0.3s ease;
}

.associate-column li:hover {
    color: var(--color-gold);
}
/* =========================
   JOIN PAGE
========================= */

.join-page .content-section {
    max-width: 800px;
}

.join-header-container {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(15, 27, 41, 0.1);
}

.cycle-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.social-links-join {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.social-links-join a {
    color: var(--color-gold);
}

.social-links-join a:hover {
    color: var(--color-text);
}

.social-links-join .divider {
    color: var(--color-gray-medium);
}

.faq-heading {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-gold);
}

.faq-answer {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* =========================
   PUBLICATIONS PAGE
========================= */

.publications-page {
    max-width: 1100px;
}

.publications-block {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #fafafa;
}

.publications-block h2 {
    font-family: var(--font-sans);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.publications-subtitle {
    color: var(--color-gray-medium);
    margin-bottom: 22px;
}

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

.pitch-card {
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pitch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.pitch-preview {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitch-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pitch-card:hover .pitch-preview img {
    transform: scale(1.05);
}

.pitch-preview-placeholder {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.pitch-info {
    padding: 20px;
}

.pitch-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pitch-sector {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pitch-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pitch-link:hover {
    color: var(--color-text);
}

.pitch-link-disabled {
    color: var(--color-gray-medium);
    pointer-events: none;
    cursor: default;
}

.pitch-list {
    display: grid;
    gap: 12px;
}

.pitch-list a {
    color: var(--color-gold);
    font-weight: 500;
}

.pitch-list a:hover {
    color: var(--color-text);
}

.pitch-list .pitch-link-disabled {
    color: var(--color-gray-medium);
    pointer-events: none;
    cursor: default;
}

@media (max-width: 768px) {
    .pitch-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================
   ALUMNI PAGE
========================= */

.alumni-page {
    max-width: 980px;
}

.alumni-subtitle {
    color: var(--color-gray-medium);
    margin: 14px 0 46px;
    max-width: 760px;
}

.alumni-category {
    margin-bottom: 52px;
}

.alumni-category h2 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-text);
}

.alumni-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.alumni-logo-item {
    height: 92px;
    padding: 16px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumni-logo-item img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.85;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

.alumni-logo-item:hover img {
    filter: none;
    opacity: 1;
}

/* =========================
   FOR FIRMS PAGE
========================= */

.firms-page {
    max-width: 900px;
}

.firms-section {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #fafafa;
}

.firms-section h2 {
    font-family: var(--font-sans);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.firms-section p {
    color: var(--color-gray-medium);
}

.firms-contact {
    margin-top: 16px;
}

.firms-contact a {
    color: var(--color-gold);
    font-weight: 500;
}

.firms-contact a:hover {
    color: var(--color-text);
}

.firms-sponsor-note {
    color: var(--color-gray-medium);
    margin-bottom: 16px;
}

.firms-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.firms-sponsor-item {
    height: 88px;
    border: 1px dashed rgba(15, 27, 41, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.about-page {
    max-width: 980px;
}

.about-hero-card {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #fafafa;
}

.about-hero-image {
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 2px;
}

.about-hero-text h2,
.about-section-card h2 {
    font-family: var(--font-sans);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-hero-text p,
.about-section-card p {
    color: var(--color-gray-medium);
    margin-bottom: 14px;
}

.about-hero-text p:last-child,
.about-section-card p:last-child {
    margin-bottom: 0;
}

.about-section-card {
    margin-top: 22px;
    padding: 28px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #fafafa;
}

/* Full-width hero image */
.about-full-image {
    margin-top: 30px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 2px;
}

.about-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Bold pull-quote intro */
.about-intro {
    margin-top: 40px;
    padding-left: 22px;
    border-left: 3px solid var(--color-gold);
}

.about-intro p {
    font-size: 1.12rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
}

/* Stats band */
.about-stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: 1px solid rgba(15, 27, 41, 0.12);
    border-bottom: 1px solid rgba(15, 27, 41, 0.12);
    padding: 34px 0;
}

.about-stat-item {
    text-align: center;
    border-right: 1px solid rgba(15, 27, 41, 0.12);
    padding: 0 20px;
}

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

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-medium);
}

/* Editorial text sections */
.about-text-section {
    margin-top: 56px;
}

.about-text-section h2 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.about-text-section h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background: var(--color-gold);
    margin-top: 8px;
}

.about-text-section p {
    color: var(--color-gray-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Secondary image break */
.about-secondary-image {
    margin-top: 56px;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 2px;
}

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

.about-contact-section {
    margin-top: 60px;
    padding: 40px 24px;
    background: var(--color-text);
    text-align: center;
}

.about-contact-section h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.about-contact-links {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.about-contact-links a {
    color: var(--color-gold);
    font-weight: 500;
}

.about-contact-links a:hover {
    color: #fff;
}

/* =========================
   PROFESSIONAL OUTREACH PAGE
========================= */

.outreach-page {
    max-width: 1200px;
}

.outreach-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.outreach-copy h1 {
    font-size: 2.5rem;
    margin-bottom: 22px;
}

.outreach-copy p {
    color: var(--color-gray-medium);
    margin-bottom: 20px;
    max-width: 56ch;
}

.outreach-copy,
.outreach-form {
    padding: 30px;
    border: 1px solid rgba(15, 27, 41, 0.1);
    border-radius: 4px;
    background: #fafafa;
}

.outreach-form {
    display: grid;
    gap: 14px;
}

.outreach-form label {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
}

.outreach-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.outreach-form input,
.outreach-form select,
.outreach-form textarea {
    width: 100%;
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid rgba(15, 27, 41, 0.2);
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.outreach-page a {
    color: var(--color-gold);
    font-weight: 500;
}

.outreach-page a:hover {
    color: #fff;
}

.outreach-form textarea {
    min-height: 120px;
    resize: vertical;
}

.outreach-form button {
    justify-self: center;
    min-width: 120px;
    padding: 10px 22px;
    background: #6b6b6b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.outreach-form button:hover {
    background: #7a7a7a;
}

@media (max-width: 900px) {
    .about-hero-card {
        grid-template-columns: 1fr;
    }

    .about-hero-image img {
        min-height: 250px;
    }

    .outreach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outreach-two-col {
        grid-template-columns: 1fr;
    }
}


