/* ===== Press Kit Page Styles ===== */

/* Enable scroll-snap ONLY on press kit page */
.press-kit-page {
    scroll-snap-type: y mandatory;
}

/* Header Overrides for Press Kit Page - WHITE icons */
.press-kit-page .site-header .header-logo a {
    color: var(--color-bg) !important;
}

/* Header social icons - make PNG icons appear white */
.press-kit-page .site-header .header-social a .social-icon {
    filter: brightness(0) invert(1);
}

.highlight-word {
    position: relative;
    transition: box-shadow 0.2s ease, color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.contact-section .highlight-word:hover {
    box-shadow: inset 0 -1.2em 0 var(--color-accent);
    color: var(--color-bg);
}

/* Hero Section */
.press-hero {
    position: relative;
    height: 120vh;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    scroll-snap-align: start;
    min-height: 100vh;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    position: absolute;
    top: 25%;
    left: var(--spacing-lg);
    right: auto;
    transform: none;
    text-align: left;
    z-index: 2;
    color: var(--color-bg);
    opacity: 1;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
}

.rotating-text {
    display: inline-block;
    min-width: 11em;
    position: relative;
}

/* Section Base Styles - minimal margins for tight spacing */
.press-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    scroll-snap-align: start;
    position: relative;
    background: var(--color-bg);
    margin: 0;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ACTUAL grain texture for voice section */
.voice-section {
    background: 
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    color: var(--color-bg);
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* Stars decor in voice section */
.voice-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: url('/images/stars2.png') center/contain no-repeat;
    opacity: 0.2;
    pointer-events: none;
    animation: floatDecorTestim 9s ease-in-out infinite;
}

.voice-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 4%;
    width: 70px;
    height: 70px;
    background: url('/images/speaker_circle.png') center/contain no-repeat;
    opacity: 0.15;
    pointer-events: none;
    animation: floatDecorTestim 7s ease-in-out infinite 1.5s;
}

/* Two-column layout for voice section */
.voice-section .section-content {
    max-width: 1100px;
    display: grid;
    /* Text col auto-width, video takes remaining space */
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
}

.voice-text-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.voice-video-col {
    display: flex;
    flex-direction: column;
}

/* Voice section text box — stretches to match video height */
.voice-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #fbf3fa;
    border-radius: 16px;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.04);
}

.voice-residency-note {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem var(--spacing-md);
    border-left: 2px solid rgba(251, 243, 250, 0.35);
    text-decoration: none;
    color: var(--color-bg);
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.voice-residency-note:hover {
    border-color: rgba(251, 243, 250, 0.8);
    opacity: 0.85;
}

.voice-residency-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.45;
}

.voice-residency-venue {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.voice-residency-days {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Video container fills full height of its column */
.voice-video-col .video-container {
    flex: 1;
    min-height: 280px;
    position: relative;
    border: 2px solid #fbf3fa;
    border-radius: 12px;
    overflow: hidden;
}

.voice-video-col .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Artist Marquee Section - OFFWHITE background, BLACK text */
.artist-marquee-section {
    background: #fbf3fa;
    padding: 0.5rem 0;
    overflow: hidden;
    border: none;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
    margin: 0;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 10s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

.marquee-content span {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 1.1rem;
    color: #000000;
    padding: 0 0.6rem;
}

.marquee-content span::after {
    content: '•';
    margin-left: 1rem;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Metallic divider line below marquee */
.artist-marquee-section::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #c8c8c8 10%,
        #e8e8e8 20%,
        #f5f5f5 30%,
        #ffffff 40%,
        #e0e0e0 50%,
        #f8f8f8 60%,
        #d0d0d0 70%,
        #e5e5e5 80%,
        #c0c0c0 90%,
        transparent 100%
    );
    margin-top: 0.4rem;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-heading.centered {
    text-align: center;
    padding: 0 var(--spacing-sm);
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    border: 2px solid #fbf3fa;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.playlist-link {
    display: inline-block;
    color: var(--color-bg);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--color-bg);
    padding-bottom: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Video Gallery Section */
.video-gallery-section {
    background: var(--color-bg);
    padding: var(--spacing-lg) 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.frame-content {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.video-gallery-wrapper {
    overflow: hidden;
    position: relative;
}

.video-gallery {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    width: fit-content;
    /* MARQUEE ANIMATION REMOVED - now controlled carousel */
}

.video-item {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 225px;
    flex-shrink: 0;
    overflow: hidden;
    background: #000;
    border: 2px solid #fbf3fa;
    border-radius: 12px;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video titles list - hidden on desktop */
.video-titles-list {
    display: none;
}

/* Carousel Navigation Controls */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.carousel-btn {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Video gallery carousel nav — brand blue */
.video-gallery-section .carousel-btn {
    color: var(--color-accent);
    border-color: var(--color-accent);
}
.video-gallery-section .carousel-btn:hover {
    background: rgba(30, 58, 138, 0.08);
}

/* Hide carousel nav on mobile, use swipe instead */
@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
}

/* Testimonials Section - from scratch */
.testimonials-section {
    background: linear-gradient(180deg, #1e3a8a 0%, #142a6b 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
    margin: 0;
    text-align: left;
}

/* Stars and circle decorations on blue bg */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 4%;
    width: 90px;
    height: 90px;
    background: url('/images/stars1.png') center/contain no-repeat;
    opacity: 1;
    pointer-events: none;
    animation: floatDecorTestim 8s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 80px;
    height: 80px;
    background: url('/images/speaker_circle.png') center/contain no-repeat;
    opacity: 1;
    pointer-events: none;
    animation: floatDecorTestim 10s ease-in-out infinite 2s;
}

@keyframes floatDecorTestim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* Extra star bottom right */
.testimonials-stars-decor {
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: url('/images/stars2.png') center/contain no-repeat;
    opacity: 1;
    pointer-events: none;
    animation: floatDecorTestim 6s ease-in-out infinite 1s;
}

.testimonials-heading {
    color: #fbf3fa;
    margin-bottom: var(--spacing-xl);
    padding: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

/* Single card display */
.testimonials-container {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Card wrapper - fixed height, one card at a time */
.testimonials-card-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
    width: 100%; /* needed: children are all absolute so block width would collapse */
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    padding: var(--spacing-lg);
    background: transparent;
    border: 2px solid #fbf3fa;
    border-radius: 16px;
    box-sizing: border-box;
    /* Always absolute — wrapper height set explicitly, no layout shift */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    overflow: hidden;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    /* Stay absolute — no layout shift */
    pointer-events: auto;
}

.testimonial-card.exiting-left {
    opacity: 0;
    transform: translateX(-60px);
}

.testimonial-card.exiting-right {
    opacity: 0;
    transform: translateX(60px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbf3fa;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(251, 243, 250, 0.65);
    font-style: italic;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(251, 243, 250, 0.9);
    position: relative;
    z-index: 1;
    overflow-y: auto;
    flex: 1;
}
.testimonial-text::-webkit-scrollbar {
    width: 3px;
}
.testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(251, 243, 250, 0.3);
    border-radius: 2px;
}

/* Navigation below card */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonials-counter {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(251, 243, 250, 0.6);
    min-width: 60px;
    text-align: center;
}

.testimonial-nav-btn {
    background: transparent;
    color: #fbf3fa;
    border: 2px solid #fbf3fa;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: rgba(251, 243, 250, 0.12);
    border-color: #fbf3fa;
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

/* Section Divider Image */
.section-divider-image {
    width: 100%;
    height: 120px;
    background-color: #1a1a1a;
    background-image: url('/images/016c.jpg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    margin: 0;
    /* Scroll RIGHT - opposite direction of artist marquee */
    animation: cdMarqueeRight 20s linear infinite;
}

@keyframes cdMarqueeRight {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: 1000px center;
    }
}

/* Contact Section - slides up over video carousel on scroll */
.contact-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact section with background image */
.contact-section-bg {
    background: url('/images/primo_press1.png') center/cover no-repeat;
    position: relative;
}

/* Contact section text color */
.contact-section .contact-heading,
.contact-section .contact-text {
    color: var(--color-bg);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Right-align contact text block on desktop */
.contact-section-bg .contact-split {
    grid-template-columns: 1fr;
    justify-items: end;
}

.contact-section-bg .contact-text-block {
    background: rgba(0, 0, 0, 0.35);
    padding: var(--spacing-xl);
    border: 2px solid #fbf3fa;
    border-radius: 16px;
    max-width: 510px;
    backdrop-filter: blur(4px);
}

/* Underline wedding/event links */
.highlight-word {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border: 3px solid var(--color-bg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

.highlight-word {
    position: relative;
    transition: box-shadow 0.2s ease, color 0.2s ease;
}

.contact-section .contact-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.email-copy-btn {
    background: none;
    border: none;
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: inherit;
    cursor: pointer;
    position: relative;
    padding: 0;
    border-bottom: 1px solid var(--color-bg);
    perspective: 1000px;
    display: inline-block;
    transition: box-shadow 0.2s ease, color 0.2s ease;
}

.email-copy-btn:hover {
    box-shadow: inset 0 -1.2em 0 var(--color-accent);
    color: var(--color-bg);
}

.email-text,
.email-feedback {
    display: block;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.email-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(90deg);
    opacity: 0;
    white-space: nowrap;
}

.email-copy-btn.copied .email-text {
    transform: rotateX(-90deg);
    opacity: 0;
}

.email-copy-btn.copied .email-feedback {
    transform: translate(-50%, -50%) rotateX(0deg);
    opacity: 1;
}

/* Badge Section */
.badge-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.badge-link {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.badge-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.badge-link img {
    display: block;
    height: auto;
}

.gigsalad-badge img {
    height: 96px;
    width: auto;
}

.theknot-badge img {
    width: 96px;
    height: auto;
}

/* ===== Scroll Reveal Animations ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Form Modals */
.form-modal-content {
    width: 95vw;
    max-width: 750px;
    max-height: 90vh;
    background: var(--color-accent);
    border: 2px solid var(--color-bg);
    border-radius: 16px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.form-modal-inner {
    padding: var(--spacing-lg);
    color: var(--color-bg);
    overflow-x: hidden;
}

.form-modal .modal-close {
    color: var(--color-bg);
    z-index: 100;
    position: sticky;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    float: right;
}

.form-modal h2 {
    font-family: var(--font-heading);
    text-transform: lowercase;
    font-size: 1.8rem;
    color: var(--color-bg);
    margin-bottom: 0.5rem;
}

.form-modal .back-link {
    display: none;
}

.form-modal label {
    font-weight: 500;
    margin-top: 1.5rem;
    color: var(--color-bg);
}

.form-modal input,
.form-modal textarea,
.form-modal select {
    border: 1px solid var(--color-bg);
    border-radius: 0;
    font-size: 1rem;
    padding: 0.6rem;
    background: transparent;
    color: var(--color-bg);
    font-family: var(--font-body);
    width: 100%;
    display: block;
    margin-bottom: 0;
    box-sizing: border-box;
}

.form-modal input[type="date"] {
    width: 100%;
    max-width: 100%;
}

.form-modal input::placeholder,
.form-modal textarea::placeholder {
    color: rgba(251, 243, 250, 0.5);
}

.form-modal .form-check-input {
    border: 1px solid var(--color-bg);
    border-radius: 0;
    margin-top: 0;
    vertical-align: middle;
    background: transparent;
    margin-right: 0.5rem;
}

.form-modal .form-check-input:checked {
    background-color: var(--color-bg);
    border-color: var(--color-bg);
}

.form-modal .form-check-label {
    vertical-align: middle;
    color: var(--color-bg);
    margin-right: 1.5rem;
}

/* Radio buttons: stacked vertically, left-aligned, tight spacing */
.form-modal .form-check {
    display: flex;
    align-items: center;
    margin: 0;
    margin-bottom: 0.5rem;
    padding: 0;
}

.form-modal label.mt-3 {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.form-modal .form-check-input {
    border: 1px solid var(--color-bg);
    border-radius: 0;
    margin: 0;
    margin-right: 0.5rem;
    background: transparent;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.form-modal .form-check-label {
    color: var(--color-bg);
    margin: 0;
    padding: 0;
}

/* Ensure next input field appears on new line with proper spacing */
.form-modal .form-check:last-of-type {
    margin-bottom: 1.5rem;
}

.form-modal button[type="submit"] {
    margin-top: 2.5rem;
    padding: 0.7rem 2rem;
    background: var(--color-bg);
    border: 2px solid var(--color-bg);
    color: var(--color-accent);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    transition: all 0.25s;
    cursor: pointer;
}

.form-modal button[type="submit"]:hover {
    opacity: 0.9;
}

.form-modal .badge-desktop,
.form-modal .badge-mobile {
    display: none;
}

/* Email copy button in modal */
.form-modal .email-copy-trigger {
    background: none;
    border: none;
    color: var(--color-bg);
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    transition: opacity 0.2s ease;
}

.form-modal .email-copy-trigger:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-item {
        width: 350px;
        min-width: 350px;
        height: 197px;
    }
    
    .testimonial-card {
        min-width: 380px;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .press-hero {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        margin-top: calc(-1 * var(--header-height));
        overflow: visible;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 75vw;
        min-height: 300px;
        max-height: 520px;
        flex-shrink: 0;
    }

    .hero-image {
        object-position: center center;
    }

    .hero-content {
        position: static;
        transform: none;
        animation: none;
        opacity: 1;
        background: var(--color-bg);
        color: var(--color-text);
        padding: 1.25rem var(--spacing-md) 1.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.4rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 0;
    }
    
    /* FASTER marquee on mobile */
    .marquee-container {
        animation: marqueeScroll 5s linear infinite;
    }
    .marquee-content span {
        font-size: 0.85rem;
        padding: 0 0.4rem;
    }
    .artist-marquee-section {
        padding: 0.3rem 0;
    }

    .press-section {
        padding: var(--spacing-lg) var(--spacing-sm);
        margin: 0;
    }

    .section-heading {
        margin-bottom: var(--spacing-sm);
        text-align: center;
    }

    .voice-residency-note {
        align-items: center;
        text-align: center;
        border-left: none;
        padding: 0.75rem 0;
    }

    .voice-section .section-content {
        grid-template-columns: 1fr;
    }

    .video-item {
        width: 280px;
        min-width: 280px;
        height: 158px;
    }

    .video-gallery {
        gap: var(--spacing-sm);
    }
    
    /* Mobile: Full-width video with title navigation */
    .video-gallery-wrapper {
        position: relative;
        margin-left: 0;
        margin-right: 0;
    }
    
    .video-gallery {
        gap: var(--spacing-md);
        margin-left: 0;
    }
    
    .video-item {
        width: 95vw;
        min-width: 95vw;
        height: 53.4375vw; /* Maintains 16:9 aspect ratio */
    }
    
    /* Video title list for mobile */
    .video-titles-list {
        display: block;
        list-style: none;
        padding: 0;
        margin: var(--spacing-md) 0 0 0;
        text-align: center;
    }
    
    .video-title-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        cursor: pointer;
        font-size: 0.9rem;
        color: var(--color-text);
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .video-title-item:last-child {
        border-bottom: none;
    }
    
    .video-title-item.active {
        font-weight: 700;
        color: var(--color-accent);
    }
    
    .video-title-item:active {
        background: rgba(30, 58, 138, 0.1);
    }

    .testimonials-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .testimonials-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .testimonials-heading {
        text-align: center;
    }

    .testimonials-nav {
        justify-content: center;
    }
    
    .testimonials-card-wrapper {
        height: 380px;
        width: calc(100% - 2rem);
        margin: 0 auto;
    }

    .testimonial-card {
        padding: var(--spacing-md);
        min-width: 100%;
        max-width: 100%;
        left: 0;
    }

    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .section-divider-image {
        height: 80px;
    }

    .contact-section {
        padding: var(--spacing-xl) var(--spacing-sm);
        /* Mobile: increased height */
        min-height: 600px;
        display: flex;
        align-items: center;
    }
    
    .contact-section-bg {
        /* Mobile: allow image to zoom/crop with increased height */
        background-size: cover;
        background-position: center;
    }
    
    .contact-content {
        width: 100%;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Center content block on mobile */
    .contact-section-bg .contact-split {
        justify-items: center;
    }
    
    .contact-section-bg .contact-text-block {
        max-width: 100%;
        width: 100%;
    }

    .contact-text-block {
        text-align: center;
    }

    .contact-image-block {
        order: -1;
    }

    /* Remove ALL borders on contact image mobile */
    .contact-image {
        border: 3px solid var(--color-bg);
        margin-top: 0;
        padding-top: 0;
    }
    
    .badge-section {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        justify-content: center;
    }
    
    .gigsalad-badge img {
        height: 72px;
    }
    
    .theknot-badge img {
        width: 72px;
    }
}

/* Wedding Video Section */
.wedding-video-section {
    background: #000;
    text-align: center;
    padding-top: 0;
    padding-bottom: var(--spacing-lg);
}

.wedding-video-embed {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.wedding-video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .hero-content,
    .testimonials-slider,
    .video-gallery,
    .marquee-container,
    .email-copy-btn,
    .highlight-word {
        animation: none !important;
        transition: none !important;
    }
}

/* "The Voice" in hero subtitle — pale red */
.voice-red {
    color: #e87070;
}

/* Voice section equal heights — align items to stretch */
/* Voice section equal heights — handled above */

/* ===== Social Proof Bar ===== */
.social-proof-bar {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    scroll-snap-align: none;
}

.proof-bar-content {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.7;
}

.proof-divider {
    margin: 0 0.75rem;
    opacity: 0.4;
}

/* ===== Event Types Section ===== */
.event-types-section {
    background: #000;
    color: var(--color-bg);
}

.event-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.event-type-card {
    display: block;
    padding: var(--spacing-lg);
    border: 1px solid rgba(251, 243, 250, 0.2);
    text-decoration: none;
    color: var(--color-bg);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.event-type-card:hover {
    background: rgba(251, 243, 250, 0.05);
    border-color: rgba(251, 243, 250, 0.4);
}

/* Residency card + callout grouped together */
.residency-group {
    position: relative;
}

.residency-group .event-type-card {
    display: block;
    width: 100%;
}

.residency-group .voice-residency-note {
    position: absolute;
    top: 0;
    left: calc(100% + var(--spacing-md));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: var(--spacing-md);
    border-left: 2px solid rgba(251, 243, 250, 0.35);
    width: 180px;
    height: 100%;
    box-sizing: border-box;
}

.residency-group .voice-residency-note:hover {
    border-left-color: rgba(251, 243, 250, 0.8);
    opacity: 0.85;
}

.event-type-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-type-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.5;
}

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

.faq-item {
    border-bottom: 1px solid rgba(251, 243, 250, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    color: var(--color-bg);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(251, 243, 250, 0.75);
    line-height: 1.6;
}

/* ===== Wedding Services Prose ===== */
.services-section .service-block {
    margin-bottom: var(--spacing-lg);
}

.services-section .service-block h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.services-section .service-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(251, 243, 250, 0.8);
    line-height: 1.7;
}

.services-closing {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(251, 243, 250, 0.85);
    line-height: 1.7;
    margin-top: var(--spacing-lg);
    font-style: italic;
}

/* ===== Responsive additions ===== */
@media (max-width: 600px) {
    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .residency-group {
        flex-direction: column;
        gap: 0;
    }

    .residency-group .voice-residency-note {
        position: static;
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid rgba(251, 243, 250, 0.2);
        align-items: center;
        text-align: center;
    }

    .proof-bar-content {
        font-size: 0.8rem;
    }

    .proof-divider {
        margin: 0 0.4rem;
    }
}
