@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&f[]=satoshi@300,400,500,700,900&display=swap');



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #000;
    pointer-events: none;
    height: 100vh;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    transform-origin: center center;
}

.reveal-hidden {
    opacity: 0;
    visibility: hidden;
    /* prevents layout shift issues if things take time to load */
}

h2 {
    font-family: 'Satoshi', sans-serif;
}

span {
    color: red;
}

.Heading {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 5rem;
    text-align: center;
    margin-top: 15rem;
    transition: 1.5s;
    margin-bottom: 0.5rem;
}

#Paragraph {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    text-rendering: 1s;
    margin-top: 0;
    color: #fff;
}

#Button {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    background-color: #fff;
    margin: 2rem auto;
    display: flex;
    width: fit-content;
    border-radius: 100px;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 3s ease;
    background-color: red;
    color: #fff;

}

#Button:hover {
    transform: scale(1.05);
    background-color: #fff;
    color: red;
}

/* Services Section */
#Services {
    margin-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.Section-Heading {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.Section-Heading span {
    color: red;
}

.video-placeholder {
    width: 80vw;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid red;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    cursor: pointer;
}

.play-icon {
    width: 76px;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
}

.play-svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    /* visually center play triangle */
    transition: color 0.4s ease;
    fill: #fff;
    /* Solid white icon */
}

.video-placeholder:hover .play-icon {
    transform: scale(1.05);
    border-color: #ff0000;
}

.video-placeholder:hover .play-svg {
    fill: #ff0000;
    stroke: #ff0000;
}

/* State management */
.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.is-playing .main-video {
    filter: none;
}

.video-placeholder:not(.is-playing) .main-video {
    filter: brightness(0.6);
}


/* Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Showcase Slider Section */
#Showcase {
    margin-top: 2rem;
    padding-bottom: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.Showcase-Intro {
    font-family: 'Satoshi', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    line-height: 1.6;
}

.showcase-slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.showcase-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.showcase-track {
    display: flex;
    gap: 4rem;
    padding: 0 10vw;
    width: max-content;
}

.showcase-item {
    width: 60vw;
    max-width: 800px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid red;
    background: #000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 600px) {
    .Heading {
        font-size: 11vw;
        /* Responsive sizing based on screen width */
        white-space: nowrap;
    }

    .Section-Heading {
        font-size: 8vw;
        /* Responsive sizing for longer titles like "Witness the craft" */
        white-space: nowrap;
    }

    /* Specific override for shorter titles to prevent them from being too small */
    #Clients .Section-Heading {
        font-size: 13vw;
    }

    /* Mobile Text Scaling */
    .client-list span {
        font-size: 5vw;
        /* Fluid scaling */
        line-height: 1.4;
    }

    #Paragraph {
        font-size: 4vw;
    }

    .Showcase-Intro {
        font-size: 3.5vw;
        padding: 0 1rem;
    }

    .footer-link {
        font-size: 3vw;
    }

    /* Prevent long client names from causing horizontal scroll */
    .client-list {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .client-list span {
        font-size: min(5vw, 1.6rem);
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
        text-align: center;
    }
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: grayscale(40%) brightness(0.8);
}

.showcase-item:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: red;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

/* Footer Section */
footer {
    width: 100%;
    padding: 2rem 0 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-link {
    font-family: 'Satoshi', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.footer-link:hover {
    color: #fff;
    opacity: 1;
}

/* Clients Section */
#Clients {
    margin-top: 2rem;
    padding-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
    width: 100%;
}

.client-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.client-list span {
    font-family: 'Satoshi', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    cursor: default;
    display: inline-block;
    text-align: center;
    position: relative;
}

.client-list span:hover {
    color: red;
    transform: scale(1.05);
}

/* Advanced Gallery Section */
#AdvancedGallery {
    margin-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    overflow: hidden;
}

.advanced-gallery {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
    margin-left: 0;
    padding: 2rem 0;
    overflow-x: hidden;
}

.gallery-row {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

/* Text Rows (Row 1 & 3) */
.text-row {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scrolling-text-wrapper {
    display: inline-flex;
    will-change: transform;
}

.scrolling-text-content {
    display: flex;
    gap: 4rem;
    padding-right: 4rem;
}

/* Font Styles for Row 1 */
.outline-text {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    line-height: 1;
}

.filled-text {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

/* Font Styles for Row 3 */
.small-text {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.separator {
    font-size: 2rem;
    color: red;
    margin: 0 1rem;
}

/* Image Rows - General Styling */
.image-row {
    gap: 3rem;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: flex;
    /* justify-content works cleanly with margin: auto trick below */
    align-items: center;
    padding: 2rem 4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.image-row::-webkit-scrollbar {
    display: none;
}

/* Bulletproof centering for scrollable flex row (Safari / older iOS fallback) */
.image-row::before,
.image-row::after {
    content: '';
    margin: auto;
}

/* Landscape Row Specific */
.landscape-row {
    height: 500px;
    min-height: 500px;
    flex-direction: row;
}

/* Portrait Row Specific - Right to Left */
.portrait-row {
    height: 450px;
    min-height: 450px;
    flex-direction: row;
}

.image-card {
    height: 100%;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid red;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover effect */
.image-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.34);
    border-color: red;
}

.image-card:hover img {
    transform: scale(1.08);
}

/* Aspect Ratios */
.image-card.landscape {
    width: 750px;
}

.image-card.portrait {
    width: 320px;
    height: 100%;
}

/* Mobile Responsiveness for Advanced Gallery */
@media (max-width: 768px) {
    #AdvancedGallery {
        margin-top: 3rem;
    }

    .advanced-gallery {
        gap: 3rem;
    }

    /* Landscape Row Mobile */
    .landscape-row {
        height: 280px;
        min-height: 280px;
        padding: 1rem 2rem;
    }

    /* Portrait Row Mobile */
    .portrait-row {
        height: 300px;
        min-height: 300px;
        padding: 1rem 2rem;
    }

    .image-row {
        gap: 1.5rem;
        padding: 1rem 2rem;
    }

    .image-card.portrait {
        width: 200px;
    }

    .image-card.landscape {
        width: 320px;
    }

    .outline-text,
    .filled-text {
        font-size: 3rem;
    }

    .small-text {
        font-size: 1.2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .advanced-gallery {
        gap: 2rem;
    }

    .landscape-row {
        height: 220px;
        min-height: 220px;
        padding: 1rem;
    }

    .portrait-row {
        height: 240px;
        min-height: 240px;
        padding: 1rem;
    }

    .image-row {
        gap: 1rem;
        padding: 1rem;
    }

    .image-card.portrait {
        width: 150px;
    }

    .image-card.landscape {
        width: 240px;
    }

    .image-card {
        border-radius: 12px;
    }
}

/* ─── Cinema Films Section ──────────────────────────────────────────────────── */
#Films {
    margin-top: 6rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.films-subtitle {
    font-family: 'Satoshi', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 3.5rem;
    letter-spacing: 0.04em;
}

.films-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    flex-wrap: wrap;
}

/* Individual film card */
.film-card {
    position: relative;
    flex: 1 1 340px;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid red;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.45s ease;
    will-change: transform;
    background: #0a0a0a;
}

.film-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 70px rgba(255, 0, 0, 0.21);
    border-color: red;
}

/* Video element inside card */
.film-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Hover overlay with "View Film →" text */
.film-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.8rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.film-cta {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Close button (hidden until expanded) */
.film-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10001;
}

.film-close:hover {
    background: rgba(255, 0, 0, 0.6);
}

/* Expanded (cinema) state — GSAP drives position/size, CSS just reveals close btn */
.film-card.film-expanded {
    cursor: default;
}

.film-card.film-expanded .film-overlay {
    opacity: 0;
    pointer-events: none;
}

.film-card.film-expanded .film-close {
    opacity: 1;
    pointer-events: all;
}

/* Dark backdrop behind the expanded card */
#film-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s;
    /* GSAP handles fade */
}

#film-backdrop.film-backdrop-active {
    pointer-events: all;
}

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
    #Films {
        margin-top: 4rem;
    }

    .films-grid {
        flex-direction: column;
        width: 92%;
        gap: 1.5rem;
    }

    .film-card {
        max-width: 100%;
        flex-basis: auto;
        width: 100%;
    }

    .film-overlay {
        opacity: 1;
        /* always visible on touch screens */
    }
}


/* ─── Music Visuals Section ─────────────────────────────────────────────────── */
#MusicVisuals {
    width: 100%;
    margin-top: 6rem;
}

/* ── Mobile: compact film-card layout ───────────────────────────────────────── */
@media (max-width: 768px) {
    #MusicVisuals {
        /* Align padding with film grid for visual consistency */
        padding: 0 4%;
        margin-top: 4rem;
        width: 100%;
        box-sizing: border-box;
    }

    .music-visuals-link {
        /* Compact 16:9 card — no viewport height */
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 20px;
        border: 1px solid rgba(255, 0, 0, 0.8);
        width: 100%;
        box-sizing: border-box;
    }

    .music-visuals-title {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        letter-spacing: -0.01em;
    }

    .music-visuals-sub {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .music-visuals-cta {
        padding: 10px 24px;
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }

    .music-visuals-overlay {
        /* Slightly stronger overlay on small screen for legibility */
        background: rgba(0, 0, 0, 0.52);
    }

    .music-visuals-content {
        gap: 0.6rem;
        padding: 1rem;
    }
}

.music-visuals-link {
    display: block;
    position: relative;
    width: 100%;
    height: clamp(60vh, 75vh, 80vh);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.music-visuals-bg {
    position: absolute;
    inset: 0;
    background: url('../Photos/Music Visual/Music visual image.webp') center center / cover no-repeat;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.music-visuals-link:hover .music-visuals-bg {
    transform: scale(1.03);
}

.music-visuals-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.music-visuals-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.music-visuals-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.05;
}

.music-visuals-sub {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.music-visuals-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 14px 32px;
    background-color: red;
    border-radius: 100px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.music-visuals-link:hover .music-visuals-cta {
    background-color: #fff;
    color: red;
}

.mv-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.music-visuals-link:hover .mv-arrow {
    transform: translateX(4px);
}


/* ─── Recognition Section ───────────────────────────────────────────────────── */
#Recognition {
    padding: clamp(7rem, 12vw, 12rem) clamp(1.5rem, 5vw, 4.5rem);
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Scroll reveal base state — driven by JS */
.recog-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.recog-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.recognition-label {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Two-column layout ─────────────────────────────────────────────────────── */
.recognition-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    width: 100%;
}

/* Left: image column */
.recog-visual {
    position: relative;
}

/* Subtle red ambient glow behind image */
.recog-visual::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at 40% 50%, rgba(255, 0, 0, 0.055) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.recog-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    /* Crop away Instagram header and comment panel — show only the render */
    aspect-ratio: 4 / 5;
    z-index: 1;
    background: #0a0a0a;
}

.recog-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Nudge to center on the render, cropping Instagram UI */
    object-position: center 18%;
    filter: brightness(0.95);
}

/* Right: quote column */
.recog-quote {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: clamp(0rem, 2vw, 2rem);
}

.recog-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.sprite-logo-svg {
    width: auto;
    height: 28px;
    color: #fff;
    opacity: 0.72;
    display: block;
    filter: none;
}

.recog-quote-text {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.88);
    font-style: normal;
    border: none;
    margin: 0;
    padding: 0;
}

.recog-attribution {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.6rem;
}

.recog-micro {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(0.68rem, 1vw, 0.78rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 0.75rem;
}

/* ── Mobile: stack vertically ──────────────────────────────────────────────── */
@media (max-width: 700px) {
    .recognition-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .recog-image-wrap {
        aspect-ratio: 4 / 3;
    }

    /* Center the section label */
    .recognition-label {
        text-align: center;
        width: 100%;
    }

    /* Center the entire quote column on mobile */
    .recog-quote {
        padding-left: 0;
        align-items: center;
        text-align: center;
        margin-top: 1rem;
        /* Push quote down for breathing room */
    }

    /* Center the Sprite logo */
    .recog-logo {
        justify-content: center;
    }

    /* Center blockquote */
    .recog-quote-text {
        text-align: center;
    }

    /* Center attribution and micro-label */
    .recog-attribution,
    .recog-micro {
        text-align: center;
    }
}


/* ─── CTA Section ───────────────────────────────────────────────────────────── */
#CTA {
    padding: clamp(7rem, 12vw, 14rem) clamp(1.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.cta-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
    max-width: 760px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: red;
    border-radius: 100px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: red;
}