/* gameday.css - Custom styles for the game day media page */

/* Keeps vertical scrollbar from stealing width vs centered content */
html {
    scrollbar-gutter: stable;
}

/* Dramatic Hero Section */
.dramatic-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 0 !important;
}

/* Ensure main has no spacing */
main {
    margin: 0;
    padding: 0;
}

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

/* Blurred background for large screens */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gameday/_Z635466.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.3);
    z-index: 1;
    display: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    animation: heroZoom 20s ease-in-out infinite alternate;
    image-rendering: auto;
    position: relative;
    z-index: 2;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.hero-content {
    /* --hero-x-nudge: optical shift so copy lines up with contained hero image on wide screens */
    --hero-x-nudge: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - var(--hero-x-nudge)), -50%);
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    width: min(100%, 40rem);
    max-width: 40rem;
    padding: 0 1.5rem;
    margin: 0;
}

/*
 * main.css applies .hero-content { animation: fadeIn } which uses transform: translateY()
 * and would override the centering translate below — use an animation that keeps translate(-50%,-50%).
 */
.dramatic-hero .hero-content {
    animation: dramaticHeroContentIn 0.85s ease-out forwards;
}

@keyframes dramaticHeroContentIn {
    from {
        opacity: 0;
        transform: translate(calc(-50% - var(--hero-x-nudge, 0px)), calc(-50% + 18px));
    }
    to {
        opacity: 1;
        transform: translate(calc(-50% - var(--hero-x-nudge, 0px)), -50%);
    }
}

/* Large screen treatment with blurred background */
@media screen and (min-aspect-ratio: 4/3) and (min-width: 768px) {
    .dramatic-hero {
        margin-top: 0;
        padding-top: 80px;
    }

    /* Shift copy slightly left so it lines up with the subject in a contained portrait */
    .dramatic-hero .hero-content {
        --hero-x-nudge: clamp(0.5rem, 1.25vw, 1.25rem);
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    /* Show blurred background */
    .hero-background::before {
        display: block;
    }
    
    /* Make main image fit vertically and center horizontally */
    .hero-image {
        width: auto;
        height: calc(100% - 80px);
        max-width: 100%;
        object-fit: contain;
        /* Slight bias left — subject reads more natural vs centered headline */
        object-position: 46% center;
        margin: 80px auto 0;
        display: block;
    }
    
    /* Adjust hero background container */
    .hero-background {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin: 0 auto 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Inline-block stack = width of longest line; both lines share that width so text centers on one axis */
.hero-title-stack {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    letter-spacing: 0.05em;
}

.hero-line-1,
.hero-line-2 {
    display: block;
    width: 100%;
}

.hero-line-1 {
    color: var(--accent-color);
    animation: heroLineIn 0.75s ease-out;
}

.hero-line-2 {
    color: white;
    animation: heroLineIn 0.75s ease-out 0.12s both;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 153, 79, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    align-self: center;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 79, 0.6);
    background: linear-gradient(45deg, #ff6b35, var(--accent-color));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

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

/* Impact Statement Section */
.impact-statement {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.impact-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 153, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(106, 138, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.impact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 2rem;
}

.impact-title {
    margin-top: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.5);
}

.impact-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Longer orange accent underlines (section titles + h2 rules from main.css) */
.gameday-gallery-section .section-title::after,
.gameday-process-section .section-title::after {
    width: min(280px, 72vw);
}

.impact-statement .impact-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: min(260px, 78vw);
}

.warrior-quote-section .warrior-title::after {
    width: min(220px, 90%);
}

.power-statement .power-title::after {
    width: min(240px, 90%);
}

.final-impact-cta .cta-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 82vw);
}

.impact-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.3);
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Warrior Quote Section */
.warrior-quote-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.warrior-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 153, 79, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(106, 138, 115, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.warrior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warrior-visual {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Full photo visible — must override .power-image if class is wrong on this img */
.warrior-visual img,
.warrior-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(92vh, 960px);
    image-rendering: auto;
    transition: box-shadow 0.35s ease;
}

.warrior-visual:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
}

.warrior-text {
    padding-left: 2rem;
}

.warrior-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.warrior-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

.warrior-stats {
    display: flex;
    gap: 3rem;
}

.warrior-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 153, 79, 0.3);
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Power Statement Section */
.power-statement {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
}

.power-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.power-text {
    padding-right: 2rem;
}

.power-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.power-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.power-signature {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.power-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.power-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    image-rendering: auto;
}

.power-visual:hover .power-image {
    transform: scale(1.05);
}

/* Final Impact CTA Section */
.final-impact-cta {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: contrast(1.05) brightness(0.95);
    image-rendering: auto;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 153, 79, 0.6);
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 153, 79, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 79, 0.6);
    background: linear-gradient(45deg, #ff6b35, var(--accent-color));
}

.btn-secondary-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary-cta:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

.cta-pricing-note {
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pricing-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
}

/* Game Day Gallery Section */
.gameday-gallery-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--light-color);
    position: relative;
}

.gameday-gallery-section .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.gameday-gallery-section .section-subtitle {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    color: var(--text-color);
    opacity: 0.92;
}

.gameday-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 138, 115, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Gallery Filter Removed - Pure Focus on Images */

/* Gallery Grid Styling - Pure Focus on Dramatic Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-top: 0;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
    background-color: #111;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: auto;
    vertical-align: middle;
}

/* Vertical gallery item styling - Enhanced for Drama */
.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.vertical img {
    height: 100%;
    min-height: 500px;
    image-rendering: auto;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Game Day Process Section */
.gameday-process-section {
    background-color: var(--light-color);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
}

.gameday-process-section .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 1rem;
}

.gameday-process-section .section-subtitle {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    color: var(--text-color);
    opacity: 0.92;
}

.process-content {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.process-image {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
    image-rendering: auto;
}

.process-image:hover img {
    transform: scale(1.05);
}

.process-info {
    flex: 1.5;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-feature {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(255, 153, 79, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content p {
    margin: 0;
    line-height: 1.6;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Footer contact link (mediaday / gameday pages) */
.footer-contact-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    opacity: 0.92;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .process-content {
        flex-direction: column;
        align-items: center;
    }
    
    .process-image {
        max-width: 100%;
    }
    
    
    .impact-metrics {
        gap: 2rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .power-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .power-text {
        padding-right: 0;
        text-align: center;
    }
    
    .warrior-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .warrior-visual {
        max-width: min(100%, 440px);
        margin-inline: auto;
    }

    .warrior-quote-section .warrior-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .warrior-text {
        padding-left: 0;
        text-align: center;
    }

    .power-statement .power-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .warrior-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gameday-gallery-section,
    .gameday-process-section,
    .impact-statement,
    .power-statement,
    .warrior-quote-section {
        padding: 4rem 0;
    }
    
    
    
    .process-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-content {
        width: 100%;
    }
    
    
    .hero-content {
        padding: 0 1rem;
        margin-bottom: 0;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dramatic-hero {
        min-height: 70vh;
    }
    
    .final-impact-cta {
        min-height: 60vh;
    }
    
}

@media screen and (max-width: 576px) {
    
    
    .lightbox-img {
        max-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-text {
        font-size: 1.1rem;
    }
    
    .power-title {
        font-size: 1.8rem;
    }
    
    .power-quote {
        font-size: 1.1rem;
    }
    
    .warrior-title {
        font-size: 1.8rem;
    }
    
    .warrior-quote {
        font-size: 1.1rem;
    }
    
    .warrior-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* Media day page: remove cream “seams” between main sections and above the final CTA */
.mediaday-page .hero-background::before {
    background-image: url('../images/hero/_Z633920.jpg');
}

.mediaday-page main {
    padding-bottom: 0;
}

.mediaday-page .gameday-process-section {
    margin-bottom: 0;
}

/* Same cream as quote + process — no strip before the site footer */
.mediaday-page section.final-impact-cta {
    margin-bottom: 0;
}

/* Media day: athletic director pull quote (single quote — editorial layout, not a card grid) */
/* Beats main.css `section:nth-of-type(odd/even)` background + section { opacity/transform } until .in-view */
section.mediaday-quote-section {
    background: var(--light-color);
    opacity: 1;
    transform: none;
    margin-bottom: 0;
    padding: clamp(3.75rem, 8vw, 5.5rem) 0;
    border-top: none;
    position: relative;
    z-index: 2;
}

.mediaday-quote-inner {
    max-width: 44rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.mediaday-quote-inner.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mediaday-quote-eyebrow {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 0.5rem;
    text-align: center;
}

.mediaday-quote-context {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.75;
    text-align: center;
    margin: 0 0 2.25rem;
    line-height: 1.5;
}

.mediaday-blockquote {
    margin: 0;
    padding: 2rem 2rem 2rem 2.25rem;
    position: relative;
    background: #fff;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.mediaday-quote-mark {
    position: absolute;
    top: 1.25rem;
    left: 1.35rem;
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.2;
    pointer-events: none;
}

.mediaday-quote-mark i {
    display: block;
}

.mediaday-quote-body {
    position: relative;
    padding-left: 2.75rem;
    padding-top: 0.25rem;
}

.mediaday-quote-body p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.75;
    font-style: italic;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 1.25rem;
}

.mediaday-quote-body p:last-of-type {
    margin-bottom: 0;
}

/* Reset global main.css `footer { background: dark; }` — applies to ALL footers, including this cite block */
.mediaday-blockquote footer.mediaday-quote-footer {
    margin-top: 2rem;
    padding: 1.5rem 0 0;
    background: transparent;
    background-color: transparent;
    color: var(--text-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mediaday-quote-cite {
    font-style: normal;
    display: block;
    color: inherit;
}

.mediaday-quote-name {
    display: block;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.mediaday-quote-role {
    display: block;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(32, 31, 36, 0.75);
    line-height: 1.45;
}

@media (max-width: 600px) {
    .mediaday-blockquote {
        padding: 1.75rem 1.35rem 1.75rem 1.5rem;
    }

    .mediaday-quote-mark {
        top: 1rem;
        left: 1rem;
        font-size: 2rem;
    }

    .mediaday-quote-body {
        padding-left: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mediaday-quote-inner {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Senior portraits page — same layout system as media day */
.senior-page main {
    padding-bottom: 0;
}

.senior-page .gameday-process-section {
    margin-bottom: 0;
}

.senior-page section.final-impact-cta {
    margin-bottom: 0;
}

.senior-page .hero-background::before {
    background-image: url('../images/gallery/grad/_Z637649.jpg');
}

.senior-gallery-section .section-title::after,
.senior-page .gameday-process-section .section-title::after {
    width: min(280px, 72vw);
}

/* Home page — dramatic layout + existing sections */
.home-page main {
    padding-bottom: 0;
}

.home-page section.final-impact-cta {
    margin-bottom: 0;
}

.home-page .hero-background::before {
    background-image: url('../images/gameday/_Z635466.jpg');
}

.home-page .home-private-gallery {
    margin-top: 0;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--light-color);
}

.home-page .home-private-gallery .gallery-card {
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.home-page .home-services-section {
    padding: clamp(3rem, 8vw, 5rem) 0 0;
    background: var(--light-color);
}

.home-page .home-services-section .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.home-page .home-services-section .section-title::after {
    width: min(280px, 72vw);
}

.home-page .gs-categories {
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.home-page .gs-categories-header {
    display: none;
}

.home-page .impact-statement .impact-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: min(260px, 78vw);
}

.home-page .testimonials,
.home-page .faq-section,
.home-page .pricing-section {
    position: relative;
    z-index: 2;
}

.home-page .testimonials .section-title::after,
.home-page .faq-section .section-title::after,
.home-page .pricing-section .section-title::after {
    width: min(240px, 72vw);
}

/* Sports photography page */
.sports-page main {
    padding-bottom: 0;
}

.sports-page section.final-impact-cta {
    margin-bottom: 0;
}

.sports-page .gameday-process-section {
    margin-bottom: 0;
}

.sports-page .hero-background::before {
    background-image: url('../images/hero/_Z638174.jpg');
}

.sports-gallery-section .section-title::after,
.sports-page .gameday-process-section .section-title::after {
    width: min(280px, 72vw);
}

.sports-page .gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 2rem;
}

.sports-page .filter-btn {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.sports-page .filter-btn:hover {
    background-color: rgba(255, 153, 79, 0.15);
}

.sports-page .filter-btn.active {
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 79, 0.35);
}

/* Packages page */
.packages-page main {
    padding-bottom: 0;
}

.packages-page section.final-impact-cta {
    margin-bottom: 0;
}

.packages-page .hero-background::before {
    background-image: url('../images/gallery/grad/_Z637676.jpg');
}

.packages-page .pricing-section {
    position: relative;
    z-index: 2;
}

.packages-page .pricing-section .section-title::after {
    width: min(280px, 72vw);
}

.packages-page .impact-statement .impact-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: min(260px, 78vw);
}
