/* Base Styles & CSS Variables */
:root {
    --primary-color: #d4af37;
    --primary-color-hover: #b5952f;
    --primary-color-soft: rgba(212, 175, 55, 0.16);
    --secondary-accent: #8b1f32;
    --bg-dark: #0a0a0a;
    --bg-black: #000000;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.04), transparent 24%),
        radial-gradient(circle at bottom right, rgba(139, 31, 50, 0.08), transparent 20%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
    background-size: 26px 26px, 34px 34px;
    mix-blend-mode: soft-light;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.artist-display {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

.en-copy {
    color: rgba(245, 245, 245, 0.68);
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-black {
    background-color: var(--bg-black);
}

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

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-black);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-black);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
    padding: 1.1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-meta {
    display: flex;
    align-items: center;
}

.lang-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 245, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    color: rgba(245, 245, 245, 0.9);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
    padding: 9rem 0 2.5rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.18), transparent 28%),
        radial-gradient(circle at 84% 22%, rgba(139, 31, 50, 0.16), transparent 22%),
        linear-gradient(145deg, #020202 0%, #090909 44%, #020202 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(212, 175, 55, 0.1), transparent 18%),
        linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 28%);
    opacity: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 32%, rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(180deg, rgba(139, 31, 50, 0.12), transparent 26%),
        url('assets/images/official/patricio-amaro-hero.jpg') 74% center/cover no-repeat;
    opacity: 1;
    transform: none;
    filter: saturate(1.04) contrast(1.02);
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.42;
    z-index: 1;
    pointer-events: none;
}

.hero-orb-left {
    width: 280px;
    height: 280px;
    left: -80px;
    top: 18%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.75), transparent 70%);
}

.hero-orb-right {
    width: 360px;
    height: 360px;
    right: -100px;
    bottom: 14%;
    background: radial-gradient(circle, rgba(139, 31, 50, 0.72), transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.hero-shell-poster {
    min-height: calc(100svh - 180px);
    display: flex;
    align-items: flex-end;
}

.hero-copy-column {
    text-align: left;
    max-width: 720px;
}

.hero-shell-poster .hero-copy-column {
    max-width: 42rem;
}

.hero-kicker-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.9rem);
    margin-bottom: 0.6rem;
    line-height: 0.98;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-kicker {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

.hero-kicker-alt {
    color: rgba(245, 245, 245, 0.62);
}

.hero-subtitle-stack {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}

.hero-subtitle {
    max-width: 780px;
    font-size: clamp(1.1rem, 2.6vw, 1.65rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.8px;
    line-height: 1.2;
    text-transform: none;
}

.hero-subtitle-alt {
    margin-bottom: 0;
    color: rgba(245, 245, 245, 0.82);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-description {
    max-width: 640px;
    margin: 0 0 2rem;
    font-size: 1.05rem;
    color: rgba(245, 245, 245, 0.82);
}

.hero-description-dual {
    display: grid;
    gap: 0.85rem;
}

.hero-description-dual p {
    margin: 0;
}

.hero-authority {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.hero-authority a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 245, 245, 0.86);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
}

.hero-authority i {
    font-size: 0.95rem;
}

.hero-authority a:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-manifesto {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-manifesto span {
    padding: 0.68rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 245, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-strip {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
}

.hero-strip span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 245, 245, 0.88);
    font-size: 0.9rem;
}

.visual-proof-band {
    padding: 1.35rem 0 0;
    background: linear-gradient(180deg, #030303 0%, #090909 100%);
}

.visual-proof-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1rem;
}

.visual-proof-card {
    position: relative;
    display: block;
    min-height: 240px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
    isolation: isolate;
}

.visual-proof-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-proof-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.16));
    z-index: 0;
}

.visual-proof-card:hover img,
.catalog-visual-main:hover img,
.catalog-visual-link:hover img,
.page-hero-visual:hover img {
    transform: scale(1.04);
}

.visual-proof-card-large {
    min-height: 320px;
}

.visual-proof-meta,
.catalog-visual-caption,
.page-hero-visual-tag,
.video-feature-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
}

.visual-proof-meta span,
.catalog-visual-caption span {
    display: inline-flex;
    margin-bottom: 0.55rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.visual-proof-meta strong {
    display: block;
    max-width: 24rem;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.4vw, 2.1rem);
    line-height: 1.05;
}

.visual-proof-meta p {
    margin-top: 0.5rem;
    max-width: 24rem;
    color: rgba(245, 245, 245, 0.78);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
    text-align: left;
}

.hero-visual-card {
    position: relative;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(139, 31, 50, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.hero-visual-card-cinematic {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(139, 31, 50, 0.2), transparent 32%),
        linear-gradient(160deg, rgba(17, 17, 17, 0.98), rgba(5, 5, 5, 0.98));
}

.hero-scene-card {
    min-height: 310px;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    background:
        linear-gradient(to top, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.12)),
        url('https://www.sandunga.net/sites/default/files/2022-03/Patricio%20amaro.jpg') center/cover no-repeat;
}

.hero-scene-meta {
    display: grid;
    gap: 0.4rem;
}

.hero-scene-meta strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    line-height: 1;
}

.hero-scene-meta span:last-child {
    color: rgba(245, 245, 245, 0.78);
    max-width: 24rem;
}

.hero-visual-copy {
    padding: 1.5rem;
    background:
        linear-gradient(to top, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72));
}

.hero-visual-copy-clean {
    padding: 2rem;
}

.hero-visual-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.hero-visual-label {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-proof-list {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
}

.hero-proof-list li {
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
    color: rgba(245, 245, 245, 0.82);
}

.hero-proof-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.hero-card-copy {
    color: rgba(245, 245, 245, 0.78);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.official-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.official-links-grid-page {
    margin-top: 1.35rem;
}

.official-link-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.official-link-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.official-link-card strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--text-light);
}

.official-link-card span {
    color: rgba(245, 245, 245, 0.68);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.official-link-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.metric-card {
    padding: 1rem 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.metric-number {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.metric-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-light);
}

.metric-card p {
    color: rgba(245, 245, 245, 0.74);
    font-size: 0.92rem;
}

.social-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.marquee-band {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(139, 31, 50, 0.12));
}

.marquee-track {
    display: flex;
    gap: 2rem;
    padding: 0.95rem 0;
    min-width: max-content;
    animation: marqueeMove 24s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 700;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}

.marquee-track span::after {
    content: '•';
    color: rgba(245, 245, 245, 0.55);
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        linear-gradient(165deg, rgba(212, 175, 55, 0.04), rgba(139, 31, 50, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    min-height: 100%;
}

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

.service-card h3 {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    line-height: 1.2;
}

.service-card p {
    color: var(--text-muted);
    margin: 0;
}

.service-card h3 span,
.timeline-card h3 span {
    display: block;
    margin-top: 0.22rem;
    color: rgba(245, 245, 245, 0.56);
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.service-card p + p,
.timeline-card p + p,
.content-panel p + .en-copy,
.visual-panel p + .en-copy,
.page-subtitle-dual p + p {
    margin-top: 0.75rem;
}

.service-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    font-size: 1.35rem;
}

.service-cta-band {
    margin-top: 1.5rem;
    padding: 1.6rem;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(17, 17, 17, 0.98), rgba(6, 6, 6, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.service-cta-band h3 {
    margin-bottom: 0.5rem;
}

.service-cta-band p {
    color: var(--text-muted);
}

.spotlight-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

.catalog-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 2rem;
    align-items: center;
}

.catalog-copy-column .section-title {
    margin-bottom: 1.5rem;
}

.catalog-copy-column p {
    color: var(--text-muted);
}

.catalog-copy-column p + p {
    margin-top: 0.9rem;
}

.catalog-visuals {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.catalog-visual-main,
.catalog-visual-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
    min-height: 100%;
}

.catalog-visual-main {
    min-height: 430px;
}

.catalog-visual-stack {
    display: grid;
    gap: 1rem;
}

.catalog-visual-main img,
.catalog-visual-link img,
.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.catalog-visual-main::after,
.catalog-visual-link::after,
.page-hero-visual::after,
.video-feature-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.16));
}

.catalog-visual-caption {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.catalog-visual-caption strong {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.05;
}

.catalog-visual-caption small {
    color: rgba(245, 245, 245, 0.78);
    font-size: 0.92rem;
}

.spotlight-copy {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.cta-cluster {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.spotlight-panel {
    display: grid;
    gap: 1rem;
}

.signal-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.signal-card h3 {
    margin-bottom: 0.65rem;
    color: var(--text-light);
}

.signal-card p {
    color: var(--text-muted);
}

.signal-index {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.feature-video-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-video-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.feature-video-player {
    position: relative;
}

.feature-video-player::after {
    content: '';
    position: absolute;
    inset: auto -24px -24px 24px;
    height: 60%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(139, 31, 50, 0.14));
    filter: blur(20px);
    z-index: -1;
}

.feature-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
}

.video-feature-poster {
    position: relative;
    min-height: 0;
}

.video-feature-caption {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    max-width: max-content;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-video-copy {
    padding: 1rem 0;
}

.feature-eyebrow {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-copy {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-badges span {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 245, 0.88);
}

.platforms-list h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
}

.platform-copy {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-btn i {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.engagement-list {
    margin-top: 1.75rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.engagement-list li + li {
    margin-top: 0.65rem;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.song-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.song-tag {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--primary-color-soft);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
}

.song-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.song-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.song-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Videos Section */
.section-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

.video-thumb {
    position: absolute;
    inset: 0;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumb::after {
    content: 'Play';
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-card:hover .video-thumb img {
    transform: scale(1.04);
}

.video-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.video-meta {
    padding: 1.5rem;
}

.video-label {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
}

.video-meta p {
    margin: 0.8rem 0 1rem;
    color: var(--text-muted);
}

.video-action {
    color: var(--primary-color);
    font-weight: 600;
}

.video-card-cta {
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 30%),
        linear-gradient(160deg, #121212 0%, #070707 100%);
}

.video-cta-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-img:hover {
    filter: grayscale(0%);
}

.about-photo-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    min-height: 420px;
}

.about-photo {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.05);
}

.about-image-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-placeholder {
    position: relative;
    z-index: 1;
    min-height: 420px;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 35%),
        linear-gradient(160deg, #111 0%, #040404 100%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.about-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.about-monogram {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    color: var(--text-light);
}

.about-signature-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(139, 31, 50, 0.16), transparent 28%),
        linear-gradient(160deg, #111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-signature-card p {
    max-width: 24rem;
    color: rgba(245, 245, 245, 0.82);
    margin: 1rem 0 1.5rem;
}

.about-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.about-social-grid a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-weight: 600;
}

.about-social-grid i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-social-grid a:hover,
.subnav a:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.about-placeholder p {
    max-width: 22rem;
    color: rgba(245, 245, 245, 0.82);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    font-style: italic;
    color: var(--primary-color) !important;
    margin-top: 2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.faq-item p {
    color: var(--text-muted);
}

.faq-item a {
    color: var(--primary-color);
}

.support-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.support-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card h3 {
    margin-bottom: 0.65rem;
}

.support-card p {
    color: var(--text-muted);
}

.official-pages-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.page-card {
    display: block;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.page-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.page-card p {
    color: var(--text-muted);
}

.page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
}

.inner-page {
    padding-top: 5rem;
}

.page-hero {
    padding: 7rem 0 3rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(139, 31, 50, 0.2), transparent 20%),
        linear-gradient(155deg, #050505 0%, #111 45%, #080808 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.14;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: end;
}

.page-hero-copy {
    max-width: 760px;
}

.page-hero-visual {
    position: relative;
    display: block;
    min-height: 330px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.page-hero-visual-tag {
    display: inline-flex;
    max-width: max-content;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.92rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    max-width: 760px;
    font-size: 1.12rem;
    color: rgba(245, 245, 245, 0.82);
}

.page-subtitle-dual {
    display: grid;
    gap: 0.8rem;
}

.page-subtitle-dual p {
    margin: 0;
}

.subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.subnav a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-grid-two {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.content-panel,
.visual-panel,
.editorial-card,
.quote-card,
.media-card,
.timeline-card {
    padding: 1.6rem;
    min-height: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.content-panel p,
.editorial-card p,
.media-card p,
.timeline-card p,
.quote-card p {
    color: var(--text-muted);
}

.content-panel p + p,
.editorial-card p + p,
.media-card p + p,
.timeline-card p + p {
    margin-top: 1rem;
}

.visual-panel {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.visual-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.visual-panel > * {
    position: relative;
    z-index: 1;
}

.visual-panel h3 {
    margin-bottom: 0.6rem;
}

.visual-panel-clean {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(139, 31, 50, 0.16), transparent 24%),
        linear-gradient(160deg, #151515 0%, #080808 100%);
}

.bullet-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.bullet-list li {
    list-style: none;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.2rem;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.card-grid-three {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.quote-card {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    line-height: 1.45;
}

.editorial-card h3,
.media-card h3,
.timeline-card h3 {
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.editorial-card .video-label,
.media-card .video-label {
    margin-bottom: 1rem;
}

.page-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.media-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.info-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-stat {
    padding: 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-stat strong {
    display: block;
    margin-bottom: 0.4rem;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 4rem 0 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    margin: 0;
    color: var(--text-light);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-small {
    display: flex;
    gap: 2rem;
}

.footer-links-small a:hover {
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    width: min(92vw, 560px);
    display: none;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    z-index: 1200;
}

.sticky-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
}

.sticky-link-primary {
    background: var(--primary-color);
    color: var(--bg-black);
    border-color: var(--primary-color);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* Responsive Design */
@media screen and (max-width: 992px) {

    .music-grid,
    .about-grid,
    .spotlight-grid,
    .catalog-showcase-grid,
    .visual-proof-grid,
    .catalog-visuals,
    .feature-video-grid,
    .support-grid,
    .hero-metrics,
    .hero-shell,
    .services-grid,
    .content-grid-two,
    .page-hero-layout,
    .card-grid-three,
    .info-stat-row {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .official-links-grid,
    .about-social-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }

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

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero {
        min-height: auto;
        padding: 7.2rem 0 3.5rem;
    }

    .hero-shell-poster {
        min-height: auto;
    }

    .hero-copy-column,
    .hero-visual-copy,
    .feature-video-copy,
    .service-cta-band {
        text-align: center;
    }

    .hero-authority,
    .hero-socials,
    .hero-strip {
        justify-content: center;
    }

    .hero-kicker-stack,
    .hero-manifesto {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.18rem;
    }

    .hero-scene-card {
        min-height: 240px;
    }

    .visual-proof-card,
    .visual-proof-card-large,
    .page-hero-visual,
    .catalog-visual-main {
        min-height: 260px;
    }

    .hero-strip,
    .cta-cluster,
    .service-cta-band {
        flex-direction: column;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-small {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-meta {
        display: none;
    }

    .sticky-cta {
        display: flex;
        width: calc(100vw - 1.25rem);
        bottom: 0.6rem;
        padding: 0.65rem;
    }

    .sticky-link {
        font-size: 0.92rem;
    }
}
