/* ============================================
   IMAGE GALLERY MODAL

   ============================================ */

.clickable-gallery .gallery-item {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-gallery .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.image-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.image-modal-caption {
    display: none;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: opacity 0.2s;
}

.image-modal-close:hover {
    opacity: 0.7;
}

.image-modal-nav {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.image-modal-prev,
.image-modal-next {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-prev:hover,
.image-modal-next:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .image-modal-close {
        top: -40px;
        right: -10px;
        font-size: 32px;
    }
    
    .image-modal-nav {
        gap: 16px;
    }
    
    .image-modal-prev,
    .image-modal-next {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ============================================
   MTOS - More Than One Story
   Main Stylesheet 



   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    /* Primary */
    --brick-red: #2E7D9A;
    --brick-red-hover: #246373;
    
    /* Secondary */
    --aubergine: #6B4C6A;
    --leaf-green: #A8C860;
    
    /* Backgrounds */
    --white: #FFFFFF;
    --warm-cream: #F5F2EE;
    --pale-blue: #C5D7FF;
    
    /* Text & Neutrals */
    --dark-brown: #2C2420;
    --nav-color: #5751bd;
    --purple-gray: #5A5258;
    --mauve-neutral: #C0B0C0;
    
    /* Fonts */
    --font-display: 'Fraunces', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--font-body); 
    background: var(--white); 
    color: var(--dark-brown); 
    line-height: 1.7;
    font-size: 18px;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--brick-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brick-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 154, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--brick-red);
    border: 2px solid var(--brick-red);
}

.btn-secondary:hover {
    background: var(--brick-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Content Link Arrows */
.link {
    color: var(--brick-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.link:hover {
    gap: 12px;
}

.link::after {
    content: '→';
    font-size: 20px;
}

/* Page Header (shared across interior pages) */
.page-header {
    position: relative;
    padding: 140px 40px 80px 40px;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--warm-cream) 100%);
    overflow: visible;
    z-index: 10;
}

.header-art {
    position: absolute;
    right: 0;
    top: 70px; /* Clear the fixed nav */
    bottom: 0;
    width: 500px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.header-art-wide {
    width: 55%;
}

.header-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
    display: block;
}

.header-art-wide img {
    object-fit: contain;
    object-position: right bottom;
}

.breadcrumb {
    font-size: 14px;
    color: var(--purple-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--purple-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--brick-red);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 16px;
    line-height: 1.1;
    max-width: 800px;
}

.page-header .subtitle {
    font-size: 20px;
    color: var(--purple-gray);
    font-weight: 500;
    max-width: 550px;
    text-wrap: pretty;
}

/* Image Placeholders */
.content-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--mauve-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-gray);
    font-size: 14px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-color);
    border-bottom: 2px solid #e49e64;
    padding: 0 40px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--warm-cream);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--brick-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(46, 125, 154, 0.3);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--brick-red) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nav-color);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    margin-top: 10px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer CTA Section */
.footer-cta {
    background: #e4d2ef;
    padding: 80px 40px;
    text-align: center;
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 16px;
    color: var(--purple-gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-cta-btn.primary {
    background: #e49e64;
    color: var(--white);
}

.footer-cta-btn.primary:hover {
    background: #d48a50;
    transform: translateY(-2px);
}

.footer-cta-btn.secondary {
    background: transparent;
    color: var(--dark-brown);
    border: 2px solid #e49e64;
}

.footer-cta-btn.secondary:hover {
    background: #e49e64;
    color: var(--white);
}

/* Footer Top Section */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: var(--warm-cream);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

.footer-newsletter {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--mauve-neutral);
    border-radius: 6px;
    font-size: 14px;
    background: var(--white);
    color: var(--dark-brown);
}

.newsletter-form input::placeholder {
    color: var(--purple-gray);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--brick-red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--brick-red-hover);
}

/* Constant Contact Form Overrides (footer newsletter) */
.footer-newsletter .ctct-form-wrapper {
    max-width: 100%;
}

.footer-newsletter .ctct-form {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.footer-newsletter .ctct-form-field-email {
    flex: 1;
    margin-bottom: 0;
}

.footer-newsletter .ctct-form-field-submit {
    margin-bottom: 0;
}

.footer-newsletter .ctct-label-top label {
    display: none;
}

.footer-newsletter .ctct-form-field input[type="email"],
.footer-newsletter .ctct-form-field input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mauve-neutral);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark-brown);
    box-sizing: border-box;
}

.footer-newsletter .ctct-form-field input[type="email"]::placeholder,
.footer-newsletter .ctct-form-field input[type="text"]::placeholder {
    color: var(--purple-gray);
}

.footer-newsletter .ctct-submit {
    padding: 12px 24px !important;
    background: var(--brick-red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    cursor: pointer;
    transition: background 0.3s;
    width: auto;
}

.footer-newsletter .ctct-submit:hover {
    background: var(--brick-red-hover) !important;
}

.footer-newsletter .ctct-disclosure {
    display: none;
}

.footer-newsletter .ctct-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-newsletter .ctct-success {
    background: var(--brick-red);
    color: var(--white, #fff);
}

.footer-newsletter .ctct-dismiss {
    background: none;
    border: none;
    color: var(--white, #fff);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-newsletter .ctct-dismiss:hover {
    opacity: 1;
}

/* Footer placeholder - reserve space to prevent layout shift */
#footer-placeholder {
    min-height: 300px;
}

/* Footer Main */
.footer-main {
    background: var(--nav-color);
    padding: 60px 40px 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-cat,
.footer-bike {
    pointer-events: none;
}

@media (max-width: 768px) {
    .footer-cat { width: 50px !important; top: -32px !important; left: 20px !important; }
    .footer-bike { width: 70px !important; top: -63px !important; right: 20px !important; }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 32px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--aubergine);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--aubergine);
    color: var(--dark-brown);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-funding {
    margin-bottom: 0;
}

.footer-funding a {
    color: var(--white);
    text-decoration: underline;
}

.footer-funding a:hover {
    text-decoration: underline;
}

/* ============================================
   PAGE: HOMEPAGE
   ============================================ */

/* Split Screen Hero */
.hero {
    position: relative;
    padding-top: 70px;
    display: flex;
    align-items: stretch;
}

.hero-image-container {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--warm-cream);
}

.hero-image-container img,
.hero-image-container video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--warm-cream) 100%);
    align-self: stretch;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content .tagline {
    font-size: 22px;
    color: var(--purple-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Intro Section */
.intro-section {
    background: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.intro-section h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-brown);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.3;
}

.intro-section p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: var(--purple-gray);
    font-size: 18px;
}

/* Content Sections */
.section {
    padding: 100px 40px;
}

.section-alt {
    background: var(--warm-cream);
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Alternating Image/Text Layout */
.content-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 0 0 45%;
}

.content-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

.content-text {
    flex: 1;
}

.content-text .label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aubergine);
    margin-bottom: 12px;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    color: var(--purple-gray);
    margin-bottom: 24px;
}

/* ============================================
   PAGE: ABOUT
   ============================================ */

/* ============================================
   PAGE: ABOUT (Enhanced)
   ============================================ */

/* About Intro Section */
.about-intro-section {
    background: var(--white);
    padding: 80px 40px;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text-large {
    font-size: 24px;
    line-height: 1.7;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.intro-text-large strong {
    color: var(--brick-red);
    font-weight: 600;
}

/* About Sections */
.about-section {
    padding: 80px 40px;
    position: relative;
}

.about-section-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.about-section-cream {
    background: var(--warm-cream);
}

.about-section-white {
    background: var(--white);
}

.about-section-blue {
    background: linear-gradient(135deg, var(--pale-blue) 0%, #d4e4ff 100%);
}

/* Section Number Badge */
.section-number-badge {
    position: absolute;
    top: -20px;
    left: 0;
    width: 56px;
    height: 56px;
    background: var(--aubergine);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(107, 76, 106, 0.3);
}

/* About Grid */
.about-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.about-grid.with-image {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .lead-paragraph {
    font-size: 22px;
    color: var(--dark-brown);
    line-height: 1.7;
}

.about-text-followup {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
    max-width: 800px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Full-width Pull Quote */
.about-pullquote-full {
    background: var(--aubergine);
    border-radius: 12px;
    padding: 48px 56px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.pullquote-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--brick-red);
}

blockquote.historic-marker {
    margin: 30px 0;
    padding: 20px 25px;
    background: var(--cream);
    border-left: 4px solid var(--dark-brown);
    border-radius: 4px;
    font-style: italic;
    color: var(--dark-brown);
}

.about-pullquote-full blockquote {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-pullquote-full blockquote::before {
    content: '"';
    font-size: 120px;
    color: rgba(255,255,255,0.15);
    font-family: var(--font-display);
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

/* Phase Cards */
.phase-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.phase-card {
    padding: 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.phase-card-blue {
    background: var(--nav-color);
    color: var(--white);
}

.phase-card-blue::before {
    background: #e49e64;
}

.phase-card-aubergine {
    background: var(--nav-color);
    color: var(--white);
}

.phase-card-aubergine::before {
    background: #e49e64;
}

.phase-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.phase-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin: 12px 0 16px 0;
}

.phase-card-blue h3 {
    color: var(--white);
}

.phase-card h3 a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.phase-card h3 a:hover {
    text-decoration-thickness: 2px;
}

.phase-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.phase-card-blue p {
    color: rgba(255,255,255,0.9);
}

.phase-card-aubergine p {
    color: rgba(255,255,255,0.9);
}

/* Outcome Callout */
.outcome-callout {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 48px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.outcome-callout p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.outcome-callout .callout-tagline {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--aubergine);
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE: ABOUT (Enhanced)
   ============================================ */

@media (max-width: 900px) {
    .about-grid.with-image {
        grid-template-columns: 1fr;
    }
    
    .phase-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 60px 24px;
    }
    
    .intro-text-large {
        font-size: 20px;
    }
    
    .about-section {
        padding: 60px 24px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-pullquote-full {
        padding: 32px 24px 32px 32px;
    }
    
    .about-pullquote-full blockquote {
        font-size: 22px;
    }
    
    .about-pullquote-full blockquote::before {
        font-size: 80px;
        top: -20px;
        left: -10px;
    }
    
    .phase-card {
        padding: 24px;
    }
    
    .outcome-callout {
        padding: 32px 24px;
    }
    
    .outcome-callout .callout-tagline {
        font-size: 20px;
    }
}



.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 22px;
    color: var(--dark-brown);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.intro-text:last-of-type {
    margin-bottom: 60px;
}

.intro-text strong {
    font-weight: 600;
    color: var(--brick-red);
}

.content-section {
    margin-bottom: 80px;
}

.content-section.with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.section-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================================
   PAGE: RESEARCH LANDING
   ============================================ */

/* Video Container */
.video-container {
    margin-bottom: 60px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--brick-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--brick-red-hover);
}

.yt-video-credit {
    margin-bottom: 40px;
}

.video-caption {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

/* Content sections with images */
.content-section.with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-section.with-image.reverse {
    direction: rtl;
}

.content-section.with-image.reverse > * {
    direction: ltr;
}

.content-section .section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Themes Section */
.themes-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--mauve-neutral);
}

.themes-header {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 16px;
    text-align: center;
}

.themes-intro {
    font-size: 18px;
    color: var(--purple-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Theme Cards Grid */
.theme-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.theme-card {
    background: var(--warm-cream);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.theme-card-image {
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--mauve-neutral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--purple-gray);
    text-align: center;
    padding: 16px;
    overflow: hidden;
}

.theme-card-icon {
    background: var(--aubergine);
    color: var(--white);
}

.theme-card-icon svg {
    width: 48px;
    height: 48px;
}

.theme-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.theme-card-content p {
    font-size: 15px;
    color: var(--purple-gray);
    line-height: 1.5;
    flex: 1;
}

.theme-card-alt {
    background: var(--pale-blue);
}

/* Poster crop images for theme cards */
.theme-card-image.poster-crop {
    background-image: url('../Images/Poster.png');
    background-size: 350%;
    background-repeat: no-repeat;
}

/* Listen First - fireplace scene, people gathered talking */
.poster-listen-first {
    background-position: 60% 48%;
}

/* Explore Perspective - top tower, person looking out with stars */
.poster-explore-perspective {
    background-position: 50% 15%;
}

/* Make Space - woman on steps, left side with speech bubble */
.poster-make-space {
    background-position: 20% calc(40% + 30px);
}

/* Expect Mistakes - bottom area, flag and scattered activity */
.poster-expect-mistakes {
    background-position: calc(45% + 70px) calc(88% - 20px);
}

/* Transcend Emotion - coffee shop, two people sitting together */
.poster-transcend-emotion {
    background-position: 35% 60%;
}

/* ============================================
   PAGE: RESEARCH THEME
   ============================================ */

/* Theme Page Layout */
.theme-page {
    background: var(--white);
}

.theme-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.theme-main {
    min-width: 0;
}

/* Theme Content */
.theme-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
}

.theme-content .lead-text {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.theme-content p {
    margin-bottom: 20px;
}

.theme-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-brown);
    margin: 48px 0 20px 0;
}

.theme-content h2:first-of-type {
    margin-top: 32px;
}

.theme-content em {
    font-style: italic;
}

/* Pull Quote */
.pull-quote {
    background: var(--warm-cream);
    border-left: 4px solid var(--aubergine);
    padding: 32px 36px;
    margin: 40px 0;
    position: relative;
}

.pull-quote-mark {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--aubergine);
    opacity: 0.3;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-brown);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pull-quote cite {
    font-size: 15px;
    font-style: normal;
    color: var(--aubergine);
    font-weight: 600;
}

/* Theme Sidebar */
.theme-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-section {
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-section h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-gray);
    margin-bottom: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: block;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-brown);
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background: var(--pale-blue);
}

.sidebar-link.active {
    background: var(--brick-red);
    color: var(--white);
}

.sidebar-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.sidebar-download:last-child {
    margin-bottom: 0;
}

.sidebar-download:hover {
    background: var(--pale-blue);
}

.download-icon {
    font-size: 24px;
}

.download-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
}

.sidebar-art {
    width: 100%;
    aspect-ratio: 1;
    background: var(--mauve-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--purple-gray);
    text-align: center;
    padding: 20px;
}

/* Transcript List */
.transcript-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.transcript-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--warm-cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.transcript-item:hover {
    background: var(--pale-blue);
    transform: translateX(4px);
}

.transcript-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mauve-neutral);
}

.transcript-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transcript-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.transcript-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--aubergine);
    margin-bottom: 8px;
}

.transcript-desc {
    font-size: 15px;
    color: var(--purple-gray);
    line-height: 1.5;
}

.transcript-action {
    flex-shrink: 0;
}

.transcript-action span {
    font-size: 14px;
    font-weight: 600;
    color: var(--brick-red);
    white-space: nowrap;
}

/* ============================================
   PAGE: PERFORMANCE LANDING
   ============================================ */

/* Hero Art */
.performance-hero-art {
    width: 100%;
    aspect-ratio: 21/9;
    background: var(--mauve-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--purple-gray);
    text-align: center;
    padding: 24px;
    margin-bottom: 60px;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--mauve-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--purple-gray);
    text-align: center;
    padding: 20px;
}

/* Lead Text in content sections */
.section-text .lead-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Performance CTA */
.performance-cta {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--mauve-neutral);
}

.performance-cta-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--warm-cream);
    border-radius: 16px;
    overflow: hidden;
}

.cta-video-preview {
    background: #1a1a1a;
}

.cta-video-preview .video-placeholder {
    height: 100%;
    border-radius: 0;
}

.cta-video-preview .video-placeholder.small .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
}

.cta-card-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--aubergine);
    margin-bottom: 8px;
}

.cta-card-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.cta-card-content p {
    font-size: 17px;
    color: var(--purple-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ============================================
   PAGE: STORYTELLING FOR ALL
   ============================================ */

/* Photo Gallery */
.photo-gallery-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--mauve-neutral);
}

.photo-gallery-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 32px;
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .image-placeholder {
    aspect-ratio: 4/3;
}

/* Stories Section */
.stories-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--mauve-neutral);
}

.stories-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.stories-intro {
    font-size: 18px;
    color: var(--purple-gray);
    margin-bottom: 40px;
    max-width: 700px;
}

/* Story Cards */
.story-cards-section {
    margin-top: 80px;
}

.story-cards-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 32px;
    text-align: center;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    background: var(--warm-cream);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.story-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--purple-gray);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.story-card-video {
    background: #1a1a1a;
}

.story-card-video .video-placeholder {
    aspect-ratio: 16/9;
    border-radius: 0;
}

.story-card-video .video-placeholder.small .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.story-card-content {
    padding: 24px;
    flex: 1;
}

.story-number {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--aubergine);
    margin-bottom: 8px;
    display: block;
}

.story-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.story-card-content p {
    font-size: 15px;
    color: var(--purple-gray);
    line-height: 1.5;
}

/* ============================================
   PAGE: STORY
   ============================================ */

/* Story Page Layout */
.story-page-wrap {
    padding: 60px 0;
    background: var(--white);
}

.story-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.story-main {
    min-width: 0;
}

/* Story Content */
.story-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-brown);
    margin: 40px 0 20px 0;
}

.story-content p {
    margin-bottom: 20px;
}

/* Historical Marker Quote */
.historical-marker {
    background: var(--warm-cream);
    border-left: 4px solid var(--dark-brown);
    padding: 24px 28px;
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.7;
}

.historical-marker strong {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Discussion Box */
.discussion-box {
    background: var(--pale-blue);
    border-radius: 12px;
    padding: 32px;
    margin-top: 40px;
}

.discussion-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.discussion-box > p {
    font-size: 16px;
    color: var(--purple-gray);
    margin-bottom: 16px;
}

.discussion-box ul {
    list-style: none;
    padding: 0;
}

.discussion-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--dark-brown);
    line-height: 1.6;
}

.discussion-box li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--aubergine);
}

/* Story Gallery */
.story-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--mauve-neutral);
}

.story-gallery h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.photo-gallery.compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Story Sidebar */
.story-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

/* Performer Card */
.performer-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.performer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mauve-neutral);
}

.performer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.performer-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 2px;
}

.performer-info p {
    font-size: 13px;
    color: var(--purple-gray);
}

.sidebar-storyteller {
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.storyteller-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--mauve-neutral);
}

.storyteller-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-storyteller h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.sidebar-storyteller p {
    font-size: 14px;
    color: var(--purple-gray);
    margin-bottom: 12px;
}

.sidebar-link-small {
    font-size: 14px;
    color: var(--brick-red);
    text-decoration: none;
    font-weight: 600;
}

.sidebar-link-small:hover {
    text-decoration: underline;
}

/* ============================================
   PAGE: RESOURCES
   ============================================ */

/* Page Header with Side Art */
.page-header-with-art {
    position: relative;
    padding-right: 400px;
}

.header-art-side {
    position: absolute;
    right: 60px;
    bottom: -40px;
    width: 380px;
}

.header-art-side img {
    width: 100%;
    height: auto;
}

/* Resources Section */
.resources-section {
    margin-bottom: 80px;
}

.resources-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.section-intro {
    font-size: 18px;
    color: var(--purple-gray);
    margin-bottom: 32px;
    max-width: 700px;
}

/* Download Cards */
.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.download-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--warm-cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.download-card:hover {
    background: var(--pale-blue);
    transform: translateY(-2px);
}

.download-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brick-red);
}

.download-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.download-card-content p {
    font-size: 15px;
    color: var(--purple-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.download-meta {
    font-size: 13px;
    color: var(--aubergine);
    font-weight: 600;
}

/* Bibliography */
.bibliography {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.book-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--mauve-neutral);
}

.book-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.book-cover {
    width: 120px;
}

.book-placeholder {
    aspect-ratio: 2/3;
    font-size: 11px;
}

.book-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.book-info h3 a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.book-info h3 a:hover {
    color: var(--nav-color);
}

.book-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--aubergine);
    margin-bottom: 12px;
}

.book-description {
    font-size: 16px;
    color: var(--purple-gray);
    line-height: 1.6;
}

/* ============================================
   PAGE: CONTRIBUTORS
   ============================================ */

/* Contributors Grid */
.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 48px 32px;
}

.contributor-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.contributor-card:hover {
    transform: translateY(-4px);
}

.contributor-card:hover .contributor-photo img {
    transform: scale(1.05);
}

.contributor-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mauve-neutral);
    border: 3px solid var(--warm-cream);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contributor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.contributor-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aubergine);
}

.contributor-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

.contributor-photo-logo {
    border-radius: 12px;
    background: var(--white);
}

.contributor-photo-logo img {
    object-fit: contain;
    padding: 12px;
}

.contributor-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.contributor-role {
    font-size: 14px;
    color: var(--purple-gray);
}

/* Contributor Modal */
.contributor-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.contributor-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 36, 32, 0.85);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.contributor-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--warm-cream);
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark-brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--mauve-neutral);
}

.modal-photo {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #e4d2ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-photo img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}


.modal-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aubergine);
}

.modal-photo.placeholder::after {
    content: attr(data-initials);
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    color: var(--white);
}

.modal-info {
    padding: 20px 32px;
}

.modal-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.modal-role {
    font-size: 16px;
    color: var(--aubergine);
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brick-red);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.modal-link:hover {
    gap: 12px;
}

/* ============================================
   RESPONSIVE: GLOBAL
   ============================================ */

/* Logo scaling at 1130px */
@media (max-width: 1130px) {
    .logo img {
        height: 35px;
    }
}

/* Mobile menu appears at 1024px */
@media (max-width: 1024px) {
    .header {
        padding: 0 20px;
    }
    
    .logo img {
        height: 42px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--nav-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: none;
        z-index: 999;
        visibility: hidden;
    }
    
    .nav.active {
        transform: translateX(0);
        transition: transform 0.3s ease;
        visibility: visible;
    }
    
    .nav a {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        text-align: center;
    }
    
    .nav-dropdown-toggle {
        justify-content: center;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
    }
    
    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu a {
        font-size: 18px;
        padding: 12px 20px;
        color: rgba(255,255,255,0.7);
    }
    
    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--white);
    }
}

/* ============================================
   RESPONSIVE: HOMEPAGE
   ============================================ */

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
    }

    .hero-image-container {
        flex: none;
        width: 100%;
    }

    .hero-content {
        flex: none;
        width: 100%;
        padding: 40px 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content .tagline {
        margin-bottom: 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .tagline {
        font-size: 18px;
    }

    .section {
        padding: 60px 20px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .intro-section {
        padding: 60px 20px;
    }

    .intro-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .footer-cta {
        padding: 60px 40px;
    }

    .footer-cta h3 {
        font-size: 28px;
    }

    .content-row {
        flex-direction: column;
        gap: 40px;
    }

    .content-row.reverse {
        flex-direction: column;
    }

    .content-image {
        flex: none;
        width: 100%;
    }

    .intro-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content .tagline {
        font-size: 19px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        justify-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-newsletter {
        text-align: center;
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 50px;
    }

    .footer-logo {
        justify-self: end;
        padding-right: 30px;
    }

    .footer-badges {
        justify-self: start;
        padding-left: 30px;
    }
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 60px 60px;
    }

    .footer-newsletter {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-logo {
        justify-self: center;
        padding-right: 0;
    }

    .footer-badges {
        justify-self: center;
        padding-left: 0;
    }

    .footer-newsletter .ctct-form {
        flex-wrap: wrap;
    }

    .footer-newsletter .ctct-form-field-submit {
        width: 100%;
    }

    .footer-newsletter .ctct-submit {
        width: 100% !important;
    }
}

/* ============================================
   RESPONSIVE: ABOUT
   ============================================ */

@media (max-width: 1300px) {
    .page-header:has(.header-art-wide) {
        padding-right: 57%; /* 55% image + 2% gap */
    }

    .page-header:has(.header-art-wide) h1 {
        max-width: 100%;
    }

    .header-art-wide img {
        object-fit: cover;
        object-position: left;
    }
}

@media (max-width: 1024px) {
    .page-header {
        padding: 120px 40px 60px 40px;
    }
    
    .page-header h1 {
        font-size: 44px;
    }
    
    .header-art {
        display: none;
    }

    .page-header:has(.header-art-wide) {
        padding-right: 40px; /* Reset — image is hidden at this size */
    }

    .content-section.with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 24px 40px 24px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .main-content {
        padding: 60px 24px;
    }
    
    .intro-text {
        font-size: 19px;
    }
    
    .section-text h2 {
        font-size: 28px;
    }
    
    .section-text p {
        font-size: 17px;
    }
}

/* ============================================
   RESPONSIVE: CONTRIBUTORS
   ============================================ */

@media (max-width: 768px) {
    .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
    
    .contributor-photo {
        width: 100px;
        height: 100px;
    }
    
    .contributor-name {
        font-size: 15px;
    }
    
    .contributor-role {
        font-size: 12px;
    }
    
    .modal-content {
        margin: 16px;
        max-height: calc(100vh - 32px);
    }
    
    .modal-photo {
        max-height: 300px;
    }

    .modal-photo img {
        max-height: 300px;
    }

    .modal-info {
        padding: 16px 24px;
    }

    .modal-name {
        font-size: 22px;
    }

    .modal-bio {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contributors-grid {
        gap: 24px 16px;
    }
    
    .contributor-photo {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   RESPONSIVE: RESEARCH LANDING
   ============================================ */

@media (max-width: 900px) {
    .theme-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-section.with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-section.with-image.reverse {
        direction: ltr;
    }
    
    .themes-header {
        font-size: 28px;
    }
    
    .theme-cards {
        grid-template-columns: 1fr;
    }
    
    .theme-card-content h3 {
        font-size: 20px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE: RESEARCH THEME
   ============================================ */

@media (max-width: 1024px) {
    .theme-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .theme-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .sidebar-art {
        display: none;
    }
}

@media (max-width: 768px) {
    .theme-layout {
        padding: 40px 24px;
    }
    
    .theme-sidebar {
        grid-template-columns: 1fr;
    }
    
    .theme-content .lead-text {
        font-size: 19px;
    }
    
    .theme-content h2 {
        font-size: 24px;
    }
    
    .pull-quote {
        padding: 24px;
    }
    
    .pull-quote p {
        font-size: 18px;
    }
    
    .pull-quote-mark {
        font-size: 48px;
        top: 4px;
        left: 12px;
    }
}

/* ============================================
   RESPONSIVE: TRANSCRIPTS
   ============================================ */

@media (max-width: 768px) {
    .transcript-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .transcript-photo {
        width: 80px;
        height: 80px;
    }
    
    .transcript-action {
        grid-column: 1 / -1;
        text-align: right;
    }
    
    .transcript-info h3 {
        font-size: 18px;
    }
    
    .transcript-desc {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE: PERFORMANCE & STORYTELLING
   ============================================ */

@media (max-width: 900px) {
    .performance-cta-card {
        grid-template-columns: 1fr;
    }
    
    .cta-video-preview {
        aspect-ratio: 16/9;
    }
    
    .cta-card-content {
        padding: 32px;
    }
    
    .story-cards {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .performance-hero-art {
        aspect-ratio: 16/9;
    }
    
    .cta-card-content h3 {
        font-size: 26px;
    }
}

/* ============================================
   RESPONSIVE: STORY PAGES
   ============================================ */

@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .story-layout {
        padding: 40px 24px;
    }
    
    .story-sidebar {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery.compact {
        grid-template-columns: 1fr;
    }
    
    .discussion-box {
        padding: 24px;
    }
}

/* ============================================
   RESPONSIVE: RESOURCES
   ============================================ */

/* Book List Styles */
.book-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
    padding-bottom: 24px;
}

.book-list .book-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--warm-cream);
    border-radius: 12px;
    align-items: start;
    border-bottom: none;
}

.book-list .book-item:last-child {
    padding-bottom: 24px;
}

.book-cover {
    width: 120px;
    flex-shrink: 0;
}

.book-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--mauve-neutral);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.book-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
    line-height: 1.3;
}

.book-author {
    font-size: 15px;
    color: var(--brick-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.book-description {
    font-size: 16px;
    color: var(--purple-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .page-header-with-art {
        padding-right: 40px;
    }
    
    .header-art-side {
        display: none;
    }
}

@media (max-width: 768px) {
    .download-cards {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .book-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .book-cover {
        width: 80px;
    }
    
    .book-info h3 {
        font-size: 18px;
    }
    
    .book-description {
        font-size: 14px;
    }
}
