/* musician.css – DJ Rigo site (recreated, polished) */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Brier';
    src: url('https://cdn.prod.website-files.com/67b5a02f611cede049f6a5a6/67b6113c2c9d46db1e_Brier-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-brier: 'Brier', serif;
    --color--grey-1: #1a1a1c;
    --color--grey-2: #6e6e73;
    --cream: #1a1a1c;
    --cream-dark: #242428;
    --hero-bg: #1a1a1c;
    --hero-dark: #f4f4f5;
    --text: #f4f4f5;
    --text-muted: #a1a1a6;
    --accent: #5ac8fa;
    --accent-hover: #7ed4fb;
    --surface: #2e2e32;
    --border: rgba(255, 255, 255, 0.08);
    --nav-menu-bg: #1e231c;
    --nav-menu-bg-pattern: rgba(255, 255, 255, 0.02);
    --nav-menu-accent: #eaFF00;
    --nav-menu-text: #f4f4f5;
    --nav-menu-text-muted: #a1a1a6;
    --purple: #7c5cbf;
    --purple-fade: rgba(124, 92, 191, 0.38);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    letter-spacing: -0.022em;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Mobile portrait: full-screen overlay prompting landscape */
.mob-landscape-block {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    pointer-events: auto;
}

.mob-landscape-block.is-visible {
    display: flex;
}

.mob-landscape-inner {
    text-align: center;
    padding: 2rem;
    max-width: 280px;
}

.mob-landscape-logo {
    display: block;
    width: min(200px, 60vw);
    height: auto;
    margin: 0 auto 1.5rem;
    max-width: 200px;
}

.mob-landscape-icon {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.mob-landscape-icon svg {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.mob-landscape-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.mob-landscape-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Show only on mobile portrait */
@media (min-width: 769px) {
    .mob-landscape-block.is-visible {
        display: none !important;
    }
}

@media (orientation: landscape) {
    .mob-landscape-block.is-visible {
        display: none !important;
    }
}

/* Background layers – single full-page blobs background (Lenis long scroll) */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: var(--cream);
    background-image: url('assets/67dbeb1e708b818bc15a8d17_blobs_nav.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

.bg-ripple {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 3px,
        rgba(255,255,255,0.02) 3px,
        rgba(255,255,255,0.02) 6px
    );
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.bg-sunrise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg,
.loader-photo {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Main wrap – starts hidden/blurred; revealed after logo load */
.main-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.9s ease, filter 0.9s ease;
}

.main-wrap.revealed {
    opacity: 1;
    filter: blur(0);
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.cursor-ball {
    display: none;
}

/* Header – hamburger at left corner; bar appears when menu is open. Dropdown expands from left. */
.site-header {
    position: fixed;
    top: max(var(--space-sm), env(safe-area-inset-top));
    left: max(var(--space-sm), env(safe-area-inset-left));
    right: auto;
    transform: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    padding: 6px 0;
    min-height: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, border 0.25s ease, border-radius 0.25s ease;
}

.site-header.menu-open {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Nav-inner: only hamburger visible; nav + Contact live in dropdown (nav-dropdown) */
.site-header .nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: var(--space-sm);
}

/* Dropdown: full-width overlay (Lando dark F1 style); projector reveal.
   Sibling of header so position:fixed uses viewport (not narrow header). */
.nav-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    background: var(--nav-menu-bg);
    box-shadow: none;
    border: none;
    border-radius: 0;
    z-index: 998;
    overflow: auto;
    /* Dark racing aesthetic: subtle neon glow + grid */
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(234, 255, 0, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(234, 255, 0, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px, 24px 24px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    /* Projector: reveal from top to bottom */
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                visibility 0s linear 0.4s;
}

/* Open state: dropdown is sibling of header, so use adjacent sibling. */
.site-header.menu-open ~ .nav-dropdown {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* Racing lines background (Lando dark F1 aesthetic) */
.nav-dropdown .nav-menu-racing-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    pointer-events: none;
}

.nav-dropdown .nav-menu-racing-line {
    stroke: var(--nav-menu-accent);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: nav-menu-draw-line 10s ease-in-out infinite;
}

.nav-dropdown .nav-menu-racing-line:nth-child(2) { animation-delay: 1.5s; }
.nav-dropdown .nav-menu-racing-line:nth-child(3) { animation-delay: 3s; }
.nav-dropdown .nav-menu-racing-line:nth-child(4) { animation-delay: 4.5s; }

@keyframes nav-menu-draw-line {
    0%, 100% { stroke-dashoffset: 1200; opacity: 0.3; }
    50% { stroke-dashoffset: 0; opacity: 0.7; }
}

.nav-dropdown .nav-menu-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    padding: 5rem 1.5rem 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    background-image: url(assets/67dbeb1e708b818bc15a8d17_blobs_nav.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-dropdown .nav-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    min-height: 70vh;
    /* Projector: content eases in from top after reveal */
    transform: translateY(-12px);
    opacity: 0.96;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
                opacity 0.4s ease 0.08s;
}

.site-header.menu-open ~ .nav-dropdown .nav-menu-grid {
    transform: translateY(0);
    opacity: 1;
}

/* Left column: 2x2 image grid (Lando-style), desaturated tint */
.nav-dropdown .nav-menu-images-w {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    height: 570px;
}

.nav-dropdown .nav-menu-images-track {
    display: flex;
    gap: 0.75rem;
    height: 571px;
    padding: 1rem;
}

.nav-dropdown .nav-menu-images-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.nav-dropdown .nav-menu-img-w {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    clip-path: ellipse(120% 100% at 50% 20%);
    aspect-ratio: 4 / 3;
    min-height: 100px;
}

.nav-dropdown .nav-menu-img-w img.menu-img-top {
    width: 100%;
    height: 191px;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
    /* Collage: grayscale/sepia by default, full color on hover (Lando-style) */
    filter: grayscale(0.7) sepia(0.2) contrast(1.05);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.nav-dropdown .nav-menu-img-w:hover img.menu-img-top {
    filter: grayscale(0) sepia(0) contrast(1);
}

.nav-dropdown .nav-menu-img-w {
    transition: transform 0.5s ease;
}

.nav-dropdown .nav-menu-img-w:hover {
    transform: scale(1.02);
    z-index: 5;
}

.nav-dropdown .nav-menu-track-placeholder {
    flex-shrink: 0;
    width: 100%;
    max-width: 399px;
}

.nav-dropdown .nav-menu-track-placeholder .nav-menu-social-placeholder {
    width: 228px;
    height: 128px;
    margin: 5px -98px;
    object-fit: contain;
    display: block;
}

/* Right column: large nav links + tagline + CTA + social (Lando-style) */
.nav-dropdown .nav-menu-links-w {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    justify-content: flex-start;
    height: 570px;
}

.nav-dropdown .nav-menu-spacer {
    min-height: 0.75rem;
}

.nav-dropdown .nav-menu-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-dropdown .nav-menu-links-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-dropdown .nav-menu-link-w {
    display: block;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 12px 0;
    min-height: 48px;
    color: var(--nav-menu-text);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Double-layer: nav link chars slide up on hover (same as Contact CTA) */
.nav-dropdown .nav-menu-link-w .word {
    display: flex;
    letter-spacing: 0;
    height: 45px;
}

.nav-dropdown .nav-menu-link-w .char {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
    line-height: 1.15;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
    color: inherit;
}

.nav-dropdown .nav-menu-link-w .char::after {
    content: attr(data-letter);
    position: absolute;
    top: 100%;
    left: 0;
    color: inherit;
}

.nav-dropdown .nav-menu-link-w:hover .char {
    transform: translateY(-100%);
}

.nav-dropdown .nav-menu-link-w .char:nth-child(1) { transition-delay: 0s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(2) { transition-delay: 0.03s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(3) { transition-delay: 0.06s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(4) { transition-delay: 0.09s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(5) { transition-delay: 0.12s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(6) { transition-delay: 0.15s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(7) { transition-delay: 0.18s; }
.nav-dropdown .nav-menu-link-w .char:nth-child(8) { transition-delay: 0.21s; }

.nav-dropdown .nav-menu-link-w::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 0;
    height: 6px;
    background: var(--nav-menu-accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.nav-dropdown .nav-menu-link-w:hover {
    color: var(--nav-menu-accent);
    transform: translateX(10px);
}

.nav-dropdown .nav-menu-link-w:hover::after,
.nav-dropdown .nav-menu-link-w.active::after {
    width: 100%;
}

.nav-dropdown .nav-menu-link-w.active {
    color: var(--nav-menu-text);
    font-weight: 700;
}

.nav-dropdown .nav-menu-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nav-menu-text-muted);
    margin: 1.25rem 0 0;
    width: 298px;
}

.nav-dropdown .nav-menu-social-w {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 51px 47px;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 1.5rem;
    margin-bottom: -29px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown .nav-menu-social-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nav-menu-text-muted);
}

.nav-dropdown .nav-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--nav-menu-accent);
    color: #1a1a1c;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    align-self: flex-start;
}

.nav-dropdown .nav-menu-cta:hover {
    background: #e5ff33;
    box-shadow: none;
}

.nav-dropdown .nav-menu-cta .btn-inner,
.nav-dropdown .nav-menu-cta .btn-inner-text-w.is-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-dropdown .nav-menu-cta .btn-inner-text-w.is-nav,
.nav-dropdown .nav-menu-cta .btn-text {
    color: inherit;
}

/* Double-layer: dropdown Contact uses same char slide-up hover as header CTA */
.nav-dropdown .nav-menu-cta .btn-text .word {
    display: flex;
    letter-spacing: 0;
}

.nav-dropdown .nav-menu-cta .btn-text .char {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
    line-height: 1.15;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.nav-dropdown .nav-menu-cta .btn-text .char::after {
    content: attr(data-letter);
    position: absolute;
    top: 100%;
    left: 0;
    color: inherit;
}

.nav-dropdown .nav-menu-cta:hover .btn-text .char {
    transform: translateY(-100%);
}

.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(1) { transition-delay: 0s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(2) { transition-delay: 0.03s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(3) { transition-delay: 0.06s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(4) { transition-delay: 0.09s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(5) { transition-delay: 0.12s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(6) { transition-delay: 0.15s; }
.nav-dropdown .nav-menu-cta .btn-text .char:nth-child(7) { transition-delay: 0.18s; }

/* Hide sr-only in dropdown so we don't see "CONTACT CONTACT" */
.nav-dropdown .nav-menu-cta .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-dropdown .nav-menu-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.nav-dropdown .nav-menu-social-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nav-menu-text);
    text-decoration: none;
    opacity: 0.9;
    position: relative;
    transition: color 0.3s ease, opacity 0.2s ease;
}

.nav-dropdown .nav-menu-social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--nav-menu-accent);
    transition: width 0.3s ease;
}

.nav-dropdown .nav-menu-social-link:hover {
    color: var(--nav-menu-accent);
    opacity: 1;
}

.nav-dropdown .nav-menu-social-link:hover::after {
    width: 100%;
}


.site-header .nav-brand-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
}

.site-header .nav-brand.w-embed {
    display: flex;
    align-items: center;
    min-height: 44px;
    line-height: 0;
}

.site-header .nav-brand.w-embed svg {
    display: block;
    height: 28px;
    width: auto;
    max-width: 120px;
}

.site-header .nav a { color: #424245; }
.site-header .nav a:hover { color: #1a1a1c; }
.site-header .nav-ham span { background: #1a1a1c; }

/* Btn-layout: Contact (right side) */
.site-header .btn-layout.is-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transform: scale(1.2, 1.2);
    transform-origin: right center;
}

.site-header .btn-layout.is-nav .btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .btn-layout.is-nav .btn-inner-text-w.is-nav {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.site-header .btn-layout.is-nav .btn-text.is-nav {
    font-size: inherit;
    font-weight: inherit;
}

.site-header .btn-layout.is-nav .btn-text.is-nav .word {
    display: flex;
}

/* Double-layer: .char slides up, ::after (duplicate) slides into view */
.site-header .btn-layout.is-nav .btn-text.is-nav .char {
    display: inline-block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.site-header .btn-layout.is-nav .btn-text.is-nav .char::after {
    content: attr(data-letter);
    position: absolute;
    top: 100%;
    left: 0;
}

.site-header .btn-layout.is-nav .header-cta:hover .btn-text.is-nav .char {
    transform: translateY(-100%);
}

/* Stagger delay for wave effect */
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(1) { transition-delay: 0s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(2) { transition-delay: 0.03s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(3) { transition-delay: 0.06s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(4) { transition-delay: 0.09s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(5) { transition-delay: 0.12s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(6) { transition-delay: 0.15s; }
.site-header .btn-layout.is-nav .btn-text.is-nav .char:nth-child(7) { transition-delay: 0.18s; }

.site-header .btn-layout.is-nav .sr-only,
.site-header .btn-layout.is-nav .screen-reader {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: var(--text);
}

.site-header .nav {
    position: relative;
    z-index: 2;
}

.nav {
    display: flex;
    gap: var(--space-sm);
}

.nav a {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    min-height: 36px;
    min-width: 36px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav a:hover {
    color: var(--text);
}

.header-cta {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0 16px;
    min-height: 28px;
    min-width: 44px;
    height: 28px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cta:hover {
    background: #4285f4;
    color: #fff;
}

.nav-ham,
.nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
}

/* CSS-only hamburger: three lines that morph to X (no Rive/canvas) */
.nav-ham-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 30px;
    height: 30px;
}

.nav-ham .line,
.nav-toggle .line {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Menu open: morph to X – white bar uses dark lines */
.site-header.menu-open .nav-ham .line,
.site-header.menu-open .nav-toggle .line {
    background: #1a1a1c;
}

.nav-ham.is-active .line:nth-child(1),
.nav-toggle.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-ham.is-active .line:nth-child(2),
.nav-toggle.is-active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-ham.is-active .line:nth-child(3),
.nav-toggle.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Scroll journey (hero) – uses global .bg-blobs */
.scroll-container {
    position: relative;
    min-height: 100vh;
    background: transparent;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

/* SVG/ripple layer only – light blue bg from design */
.animation-stage {
    position: absolute;
    left: 0 !important;
    top: 0 !important;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: translate(0, 0) !important;
}

/* Hero media (ripples) */
.animation-stage-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-reveal-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80vmax;
    height: 80vmax;
    display: grid;
    place-items: center;
}

.visual-reveal-wrapper .noise-control-visual {
    grid-area: 1 / 1;
    justify-self: center;
    align-self: center;
}

.noise-control-visual {
    grid-area: 1 / 1;
    position: relative;
    object-fit: contain;
    width: 80vmax;
    height: 80vmax;
    filter: brightness(0.92);
}

.noise-control-visual--back {
    z-index: 1;
    opacity: 0.25;
    transform: scale(0.9);
}

.noise-control-visual--pulse-1 {
    z-index: 2;
    opacity: 0.85;
    animation: ripple-pulse 2.4s ease-in-out infinite alternate;
}

/* pulse-2 at the back of the SVG stack so text stays in front */
.noise-control-visual--pulse-2 {
    z-index: 0;
    opacity: 0.35;
    animation: ripple-pulse 2.8s ease-in-out infinite alternate 0.4s;
}

/* Main hero – DJR logo + SAN DIEGO centered in animation-stage */
.animation-stage-hero {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.djr-logo-wrap {
    width: min(80vw, 24rem);
    height: auto;
    color: #1a1a1c;
}

.brand-dji-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.12));
}

.djr-logo,
.ln-logo,
.djrigo-logo {
    width: 100%;
    height: auto;
    display: block;
}

.animation-stage-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: #6e6e73;
    display: block;
    margin-top: 0.5rem;
}

.animation-stage-hero-tag {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-top: 0.5em;
    opacity: 0.75;
}

@keyframes ripple-pulse {
    0% { transform: scale(0.98) rotate(0deg); opacity: 0.7; }
    100% { transform: scale(1.02) rotate(0deg); opacity: 0.85; }
}

@keyframes ripple-spin {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.01) rotate(2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Hero island (DJRIGO) – sibling of animation-stage so text stays in front of SVGs */
.hero-island {
    position: absolute;
    right: min(3rem, 5vw);
    bottom: min(5rem, 12vh);
    z-index: 10;
    text-align: right;
    pointer-events: none;
}

.hero-island-text {
    background: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.hero-island-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: #6e6e73;
    display: block;
}

.hero-island-city {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #6e6e73;
    margin-top: 0.05em;
    display: block;
}

.hero-island-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-top: 0.4em;
    opacity: 0.9;
}

/* Hero context – CTA button below main title */
.hero-context {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-xl) min(4rem, 6vw) min(5rem, 15vh);
    pointer-events: none;
}

.hero-context > * {
    pointer-events: auto;
}

.hero-context-left {
    max-width: min(600px, 85vw);
    text-align: center;
}

.hero-context-bio {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
    color: var(--text);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9), 0 1px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    white-space: pre-line;
    transition: opacity 0.3s ease;
}

.hero-context-cta {
    align-self: center;
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.hero-context-cta:hover {
    background: #4285f4;
    transform: scale(1.02);
}

/* Sections */
.section {
    position: relative;
    z-index: 10;
    padding: var(--space-2xl) 0;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--wide {
    max-width: 1200px;
}

.container--narrow {
    max-width: 560px;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: var(--space-lg);
}

/* About */
.about-heritage {
    position: relative;
    margin-top: -1px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 8%, #252528 25%, #2f3d2a 55%, #1a3d2e 100%);
    overflow-x: hidden;
}

.about-heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-heritage > * {
    position: relative;
    z-index: 1;
}

/* Apple-style scroll story (section-redesigned) */
.section-redesigned.no-pad-bottom {
    padding-bottom: 0;
}

.section-redesigned .viewport-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-redesigned .copy-container {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.section-redesigned .typography-eyebrow-elevated {
    letter-spacing: 0.12em;
    font-weight: 600;
}

.section-redesigned .copy-container--about .section-eyebrow {
    margin-bottom: var(--space-sm);
}

.section-redesigned .typography-section-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.section-redesigned .section-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.5;
    color: rgba(244, 244, 245, 0.9);
    max-width: 42ch;
    margin: 0 auto;
}

.section-redesigned .about-hero-image {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.section-redesigned .about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-redesigned .scroll-container--about {
    position: relative;
    background: transparent;
}

.section-redesigned .sticky-content--about {
    position: relative;
    background: transparent;
}

.section-redesigned .video-container--about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 27px;
    margin-top: 90px;
    margin-bottom: 90px;
    margin-left: -100px;
    margin-right: -100px;
    padding-bottom: 0;
    background: transparent;
}

.section-redesigned .feature-row {
    display: block;
}

.section-redesigned .feature-figure {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.section-redesigned .feature-figure .image-wrap {
    order: 1;
}

.section-redesigned .feature-figure .copy-wrap {
    order: 2;
}

@media (min-width: 734px) {
    .section-redesigned .feature-figure {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    .section-redesigned .feature-figure.medium-offset-5 .image-wrap { order: 2; }
    .section-redesigned .feature-figure.medium-offset-5 .copy-wrap { order: 1; }
    .section-redesigned .feature-figure.medium-offset-1 { margin-left: 8.333%; }
}

@media (min-width: 1068px) {
    .section-redesigned .feature-figure.medium-offset-5 { margin-left: 0; }
    .section-redesigned .feature-family .feature-figure {
        grid-template-columns: 1fr;
    }
}

.section-redesigned .image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.section-redesigned .feature-image {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    vertical-align: top;
    margin-top: -26px;
    margin-right: 3px;
    margin-bottom: -432px;
    margin-left: 14px;
    padding-top: 0;
    padding-right: 17px;
    padding-bottom: 0;
    padding-left: 17px;
    overflow: hidden;
}

.section-redesigned .smart-pin.pin-wrapper {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.section-redesigned .pin {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-redesigned .pin-caption {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
}

.section-redesigned .copy-wrap {
    padding: 0;
}

.section-redesigned .copy-wrap-text .typography-body-tight-semibold:first-child {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 900;
    color: var(--text);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
    margin-top: -52px;
    margin-right: 94px;
    margin-bottom: 13px;
    margin-left: 419px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    padding-left: 106px;
    padding-right: 106px;
}

.section-redesigned .copy-wrap-text .copy.typography-body-tight-semibold {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.6;
    color: rgba(244, 244, 245, 0.88);
    text-align: left;
    margin-top: 17px;
    margin-right: 145px;
    margin-bottom: -186px;
    margin-left: 177px;
    padding: 0 102px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    border-image: none;
    background: unset;
}

.section-redesigned .copy-wrap .smart-pin.pin-wrapper:last-child {
    display: none;
}

.section-redesigned .about-scroll-hint-wrap {
    text-align: center;
    padding: var(--space-xl) 0;
}

.section-redesigned .about-rigo-scroll-hint {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.section-redesigned .about-rigo-scroll-hint:hover {
    color: var(--text);
}

/* Echo intro effect (legacy – used elsewhere if needed) */
.intro-echo-wrap {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 163px;
    margin-bottom: 163px;
    padding-top: 61px;
    padding-bottom: 134px;
    overflow: hidden;
}


.headline-container {
    position: relative;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 800px;
    z-index: 1;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.intro-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
}

.intro-echo {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 0.65;
    color: var(--text);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    margin-top: -0.15em;
    text-transform: lowercase;
    font-variant: normal;
}

.intro-echo-1 {
    opacity: 0.6;
    transform: scale(0.88);
    max-height: 0.8em;
}

.intro-echo-2 {
    opacity: 0.45;
    transform: scale(0.76);
    max-height: 0.65em;
}

.intro-echo-3 {
    opacity: 0.32;
    transform: scale(0.65);
    max-height: 0.5em;
}

.intro-echo-4 {
    opacity: 0.2;
    transform: scale(0.55);
    max-height: 0.4em;
}

.intro-echo-5 {
    opacity: 0.12;
    transform: scale(0.46);
    max-height: 0.3em;
}

.intro-echo-6 {
    opacity: 0.06;
    transform: scale(0.38);
    max-height: 0.2em;
}

/* Intro image (like AirPods case) */
.intro-image-wrap {
    position: relative;
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.intro-image-wrap .intro-image-photo {
    display: block;
}

.intro-image-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
}

.headline-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    max-height: 38%;
    padding-top: clamp(0.75rem, 3vw, 2rem);
    padding-bottom: 0.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.headline-overlay .section-eyebrow {
    margin-bottom: 0.25em;
}

.headline-overlay .intro-headline {
    font-size: clamp(1.35rem, 4.5vw, 2.75rem);
    line-height: 1.15;
}

.headline-overlay .intro-echo {
    font-size: clamp(1rem, 3.5vw, 2rem);
}

.intro-logo-credits {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.intro-image-logo {
    max-width: 200px;
    height: auto;
}

/* Services callouts */
.services-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
}

.service-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.service-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-muted);
    max-width: 18ch;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .intro-image-photo {
        max-width: 65vw;
        min-width: 500px;
    }
    
    .services-callouts {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .intro-image-photo {
        max-width: 75vw;
        min-width: 700px;
    }
}

.about-rigo {
    max-width: 100%;
    margin: 0 auto;
}

.about-rigo-hero {
    margin-bottom: var(--space-xl);
}

.about-rigo-credits {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: var(--space-md);
}

.about-rigo-credits--intro {
    margin: 0;
    text-align: left;
    align-items: flex-start;
}

.about-rigo-credits-row1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.about-rigo-logo {
    width: 1.75rem;
    height: auto;
}

.about-rigo-credits-row2 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.9;
}

.about-rigo-headline {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: var(--space-xl);
}

/* Bento grid: distinct blocks, glassmorphism, varied weights */
.about-rigo-grid.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

@media (min-width: 640px) {
    .about-rigo-grid.bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    .bento-cell--wide { grid-column: span 2; }
}

@media (min-width: 900px) {
    .about-rigo-grid.bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    .bento-cell--wide { grid-column: span 2; }
}

/* Bento cards: Apple-style “card behind white” frosted look */
.bento-cell {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bento-cell--heavy {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.bento-cell--medium {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-cell--wide.bento-cell--blessed {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.24);
}

.bento-cell:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Staggered scroll reveal (build-up feel) */
.about-rigo-block.bento-cell.is-revealed { opacity: 1; transform: translateY(0); }
.about-rigo-block.bento-cell:nth-child(1) { transition-delay: 0.05s; }
.about-rigo-block.bento-cell:nth-child(2) { transition-delay: 0.12s; }
.about-rigo-block.bento-cell:nth-child(3) { transition-delay: 0.2s; }
.about-rigo-block.bento-cell:nth-child(4) { transition-delay: 0.28s; }

.about-rigo-block {
    border-top: none;
}

.about-rigo-block-title {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.about-rigo-block-line {
    width: 2rem;
    height: 2px;
    background: var(--accent);
    margin-bottom: 0.75rem;
    border-radius: 1px;
}

.about-rigo-block-body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(244, 244, 245, 0.88);
    font-weight: 400;
}

/* Waveform micro-interaction on "Blessed to Play" */
.waveform-bars {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 20px;
    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: bottom;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.bento-cell--blessed:hover .waveform-bars,
.bento-cell--blessed:focus-within .waveform-bars {
    opacity: 1;
    transform: scaleY(1);
}

.waveform-bars span {
    width: 4px;
    height: 4px;
    min-height: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: waveform-bar 0.6s ease-in-out infinite alternate;
}

.waveform-bars span:nth-child(1) { animation-delay: 0s; }
.waveform-bars span:nth-child(2) { animation-delay: 0.08s; }
.waveform-bars span:nth-child(3) { animation-delay: 0.16s; }
.waveform-bars span:nth-child(4) { animation-delay: 0.24s; }
.waveform-bars span:nth-child(5) { animation-delay: 0.32s; }

@keyframes waveform-bar {
    from { height: 4px; }
    to   { height: 18px; }
}

.about-rigo-scroll-hint {
    display: inline-block;
    margin-top: var(--space-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.about-rigo-scroll-hint:hover {
    color: var(--text);
}

/* Floating Book CTA – thumb-zone, always visible */
.floating-book-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 999;
    min-width: 44px;
    min-height: 44px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #1a73e8;
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-book-cta:hover {
    background: #4285f4;
    box-shadow: 0 6px 24px rgba(26, 115, 232, 0.5);
}

.floating-book-cta:active {
    transform: scale(0.98);
}

@media (min-width: 900px) {
    .floating-book-cta {
        bottom: var(--space-xl);
        right: var(--space-xl);
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Audio experience – dancer section (uses global .bg-blobs) */
.dancer-section {
    background: transparent;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dancer-wrapper {
    position: relative;
    flex: 1;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    row-gap: 51px;
    column-gap: 47px;
    box-sizing: border-box;
}

/* Dancer gradient – transparent so global blobs background shows (one-page Lenis) */
.dancer-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
}

.dancer-copy-top {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.dancer-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.dancer-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text);
}

.dancer-image-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dancer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.dancer-purple {
    filter: drop-shadow(0 24px 48px rgba(134, 16, 207, 0.15));
}

.dancer-copy-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    margin-top: var(--space-xl);
}

.dancer-description-headline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.dancer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Impact block under dancer (Club Premium typography: Oswald + Playfair + Space Mono) */
.impact-content-w {
    position: relative;
    width: 100%;
    min-height: 912px;
    padding: 60px var(--space-lg);
    background-color: transparent;
    color: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

.impact-icon-w {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.impact-icon-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
}

.impact-eyebrow.text-micro {
    position: relative;
    z-index: 1;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.7;
    margin: 0 0 30px;
    color: #f5f5f5;
}

.impact-headline-w {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.impact-headline.text-impact-lg-mona {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    color: #f5f5f5;
}

.impact-headline .split-line {
    display: inline-block;
    overflow: hidden;
    will-change: transform, opacity;
}

.impact-content-w .impact-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: #c8ff00;
}

/* Experience page (DJR SVG + dancer content) */
.experience-back {
    position: fixed;
    top: var(--space-md);
    left: var(--space-lg);
    z-index: 1001;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s ease;
}
.experience-back:hover {
    opacity: 0.9;
}

.experience-page .dancer-wrapper {
    padding-top: var(--space-2xl);
}

.experience-djr {
    position: relative;
    z-index: 2;
    width: min(320px, 70vw);
    margin: 0 auto var(--space-xl);
    text-align: center;
}
.experience-djr-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

/* Landing teaser (index): DJR SVG + link to experience page */
/* DJR logo: starts centered in hero (dancer-wrapper), sticks in header on scroll */
.landing-simple .landing-djr {
    position: sticky;
    top: 70px;
    margin-bottom: var(--space-xl);
    z-index: 10;
    text-decoration: none;
    display: block;
}

.landing-teaser .landing-teaser-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}
.landing-djr {
    width: min(280px, 50vw);
    margin: 0 auto var(--space-md);
    text-align: center;
}

.landing-djr-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0, 0, 0, 0.15));
}

/* Pixelated reveal: logo appears with retro pixelated look, then stands out */
.pixelated-reveal {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    opacity: 0;
    transform: scale(0.5);
    animation: pixelated-reveal 0.9s ease-out forwards;
}

@keyframes pixelated-reveal {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    60% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mob landscape logo: dark on cream, no invert */
.mob-landscape-block .mob-landscape-logo.pixelated-reveal {
    filter: none;
}

.landing-teaser .dancer-copy-top {
    margin-bottom: var(--space-lg);
}
.landing-teaser-cta {
    flex-direction: row;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}
.landing-teaser-cta .hero-context-cta {
    margin: 0;
}
.hero-context-cta-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.landing-teaser-cta a.hero-context-cta {
    text-decoration: none;
    border: none;
}

/* Music – uses global .bg-blobs */
/* Content block: Music + controls + Pricing — Apple-style light gray */
.content-block-light {
    background: #f5f5f7;
    color: #1d1d1f;
}

.content-block-light .section-label {
    color: #6e6e73;
}

.content-block-light .section-title {
    color: #1d1d1f;
}

.content-block-light .music-intro,
.content-block-light .pricing-card-sub,
.content-block-light .pricing-footnote-value,
.content-block-light .pricing-features {
    color: #6e6e73;
}

.content-block-light .pricing-card-title,
.content-block-light .pricing-toggle-amount,
.content-block-light .pricing-footnote-label,
.content-block-light .pricing-price-value {
    color: #1d1d1f;
}

.content-block-light .pricing-price-unit {
    color: #6e6e73;
}

.content-block-light .pricing-tab {
    color: #6e6e73;
    border-color: #d2d2d7;
}

.content-block-light .pricing-tab:hover {
    color: #1d1d1f;
}

.content-block-light .pricing-tab.is-active {
    color: #1d1d1f;
    background: #fff;
    border-color: #6e6e73;
}

.content-block-light .pricing-card {
    background: #fff;
    border-color: #d2d2d7;
}

.content-block-light .pricing-card-center {
    border-color: #d2d2d7;
}

.content-block-light .pricing-card-footer {
    border-color: #d2d2d7;
}

.content-block-light .play-pause-button {
    background: #1d1d1f;
    color: #f5f5f7;
}

.content-block-light .play-pause-button:hover {
    background: #424245;
}

.content-block-light .dotnav-link {
    background: #d2d2d7;
}

.content-block-light .dotnav-link:hover,
.content-block-light .dotnav-link.current {
    background: #1d1d1f;
}

.content-block-light .all-access-pass {
    padding: var(--space-lg) 0;
}

.content-block-light .pricing-switch .pricing-slider {
    background: #d2d2d7;
}

.content-block-light .pricing-switch input:checked + .pricing-slider {
    background: #1d1d1f;
}

.content-block-light .pricing-switch .pricing-slider::before {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-block-light .pricing-cta {
    background: #1d1d1f;
    color: #f5f5f7;
}

.content-block-light .pricing-cta:hover {
    background: #424245;
    color: #f5f5f7;
}

.content-block-light .pricing-features li::before {
    color: #1d1d1f;
}

.content-block-light .pricing-features--compact li::before {
    color: #1d1d1f;
}

.content-block-light .pricing-addon {
    border-top-color: #d2d2d7;
}

.content-block-light .pricing-addon-visual {
    background: #f5f5f7;
    color: #1d1d1f;
}


.music {
    background: transparent;
}

.music-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.media-card-gallery-content {
    margin-top: var(--space-lg);
}

.all-access-pass__container {
    position: relative;
    margin-bottom: var(--space-md);
}

.all-access-pass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.play-pause-button-wrapper {
    position: relative;
}

.play-pause-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--surface);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.play-pause-button:hover {
    background: var(--text-muted);
    transform: scale(1.05);
}

.play-pause-button .play-icon,
.play-pause-button .pause-icon,
.play-pause-button .replay-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.play-pause-button .pause-icon,
.play-pause-button .replay-icon {
    display: none;
}

.play-pause-button.is-paused .play-icon { display: none; }
.play-pause-button.is-paused .pause-icon { display: block; }
.play-pause-button.is-replay .play-icon,
.play-pause-button.is-paused .replay-icon { display: none; }
.play-pause-button.is-replay .replay-icon { display: block; }

.dotnav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dotnav-items {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dotnav-link {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    transition: background 0.2s ease, transform 0.2s ease;
}

.dotnav-link:hover {
    background: var(--text-muted);
    transform: scale(1.2);
}

.dotnav-link.current {
    background: var(--text);
    transform: scale(1.2);
}

.visuallyhidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.music-carousel-wrapper {
    margin-top: var(--space-lg);
    overflow: hidden;
    padding: 0 var(--space-md);
}

.music-carousel {
    overflow: hidden;
    border-radius: 23px;
}

.music-carousel-track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s ease;
}

.music-carousel-item {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 6px;
    box-sizing: border-box;
}

.music-card.tile {
    position: relative;
    border-radius: 23px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.music-card .caption-container.music-card-caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 734px) {
    .music-card .caption-container.music-card-caption-overlay {
        max-width: 75%;
    }
}

@media (max-width: 733px) {
    .music-card .caption-container.music-card-caption-overlay {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
    }
}

.music-card .typography-media-card-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Intro text block on first card */
.music-card-intro-text {
    position: absolute;
    bottom: clamp(1.25rem, 4vw, 2.5rem);
    left: clamp(1.25rem, 4vw, 2.5rem);
    right: clamp(1.25rem, 4vw, 2.5rem);
    max-width: 480px;
    padding: 1.5rem 1.75rem;
    background: transparent;
    z-index: 5;
}

.music-intro-headline {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.music-intro-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.music-intro-body {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.music-card .media-container {
    margin: 0;
    position: relative;
}

.music-card-media {
    position: relative;
    border-radius: 23px;
    overflow: hidden;
    background: #000;
}

.music-card-media .video-wrapper {
    position: relative;
    border-radius: 23px;
    overflow: hidden;
}

.music-card-media .video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.music-card-media .video-placeholder video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 23px;
}

.music-card-media .video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 23px;
    padding-left: 0;
    padding-right: 0;
}

/* Pricing – uses global .bg-blobs */
.pricing {
    background: transparent;
}

.pricing-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.pricing-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pricing-tab:hover {
    color: var(--text);
}

.pricing-tab.is-active {
    color: var(--text);
    background: var(--surface);
    border-color: var(--text-muted);
}

.pricing-panels {
    position: relative;
}

.pricing-panel {
    display: none;
}

.pricing-panel.is-active {
    display: block;
}

.pricing-features--compact {
    font-size: 0.9rem;
}

.pricing-features--compact li::before {
    content: '+';
    color: var(--accent);
}

.pricing-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card-left {
    grid-column: 1;
}

.pricing-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.pricing-card-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-toggle-amount {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

/* Add-on row with visual (e.g. 360 camera) */
.pricing-addon {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.pricing-card-left > .pricing-addon:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pricing-addon-visual {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    color: var(--accent);
}

.pricing-addon-icon {
    width: 28px;
    height: 28px;
}

.pricing-addon-content {
    flex: 1;
    min-width: 0;
}

.pricing-addon-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 0.15rem;
}

.pricing-addon-desc {
    margin-bottom: 0.5rem;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--cream-dark);
    border-radius: 28px;
    transition: background 0.2s ease;
}

.pricing-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--text);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.pricing-switch input:checked + .pricing-slider {
    background: var(--accent);
}

.pricing-switch input:checked + .pricing-slider::before {
    transform: translateX(20px);
}

.pricing-card-center {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

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

.pricing-price-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
}

.pricing-price-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card-right {
    grid-column: 3;
}

.pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-features li {
    padding-left: 1.25rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.pricing-card-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.pricing-footnote {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-footnote-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.pricing-footnote-value {
    font-size: 0.9rem;
    color: var(--text);
}

.pricing-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent);
    color: #1a1a1c;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.pricing-cta:hover {
    background: var(--accent-hover);
    color: #1a1a1c;
}

/* Gallery – uses global .bg-blobs */
.gallery {
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cream-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Contact – uses global .bg-blobs */
.contact-hub {
    background: transparent;
}

.contact-hub-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-hub-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.contact-hub-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.contact-hub-field {
    flex: 1 1 calc(50% - var(--space-lg) / 2);
}

.contact-hub-field--full {
    flex: 1 1 100%;
}

.contact-hub-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-hub-input,
.contact-hub-select,
.contact-hub-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-hub-input:focus,
.contact-hub-select:focus,
.contact-hub-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(90, 200, 250, 0.2);
}

.contact-hub-input::placeholder,
.contact-hub-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.contact-hub-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-hub-submit {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent);
    color: #1a1a1c;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-hub-submit:hover {
    background: var(--accent-hover);
}

.contact-hub-status {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer: cream section (Lando Norris reference) */
.footer-cream {
    background-color: #f2f0e9;
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
}

.footer-collage {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto var(--space-xl);
}

.footer-collage-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.footer-collage-item:hover {
    transform: translateY(-5px) rotate(var(--collage-rotate, 0deg)) scale(1.05);
    z-index: 20;
}

.footer-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-collage-item--1 { width: 160px; height: 200px; left: 10%; top: 40px; transform: rotate(-8deg); z-index: 3; --collage-rotate: -8deg; }
.footer-collage-item--2 { width: 180px; height: 220px; left: 30%; top: 0; transform: rotate(3deg); z-index: 4; --collage-rotate: 3deg; }
.footer-collage-item--3 { width: 170px; height: 210px; left: 52%; top: 30px; transform: rotate(-2deg); z-index: 3; --collage-rotate: -2deg; }
.footer-collage-item--4 { width: 150px; height: 190px; right: 8%; top: 60px; transform: rotate(6deg); z-index: 2; --collage-rotate: 6deg; }

.footer-cream-cta {
    text-align: center;
}

.footer-cream-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: var(--space-md);
}

.footer-cream-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
    flex-wrap: wrap;
}

.footer-social-link--cream {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-social-link--cream:hover {
    color: #666;
}

/* Wave transition: ln4-footer-mask-desktop SVG used as footer background (see .site-footer--dark below) */
.footer-wave {
    display: none; /* Wave is now the footer’s own background */
}

/* Simple footer (default when not using Lando-style) */
.site-footer {
    padding: var(--space-xl) 0;
    background: transparent;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--text);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

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

.footer-nav a:hover {
    color: var(--text);
}

.footer-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--accent);
    color: #1a1a1c;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.footer-cta:hover {
    background: var(--accent-hover);
    color: #1a1a1c;
}

.footer-divider {
    height: 1px;
    background: var(--cream-dark);
    margin-bottom: var(--space-lg);
}

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

.footer-tag {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text);
}

.footer-dot {
    opacity: 0.5;
}

.site-footer .footer-copy {
    margin: 0;
}

/* Footer - Apple-style light gray #f5f5f7 */
.site-footer.site-footer--dark {
    position: relative;
    background: #f5f5f7;
    background-color: #f5f5f7;
    padding: 0;
    margin-top: -2px;
    overflow: hidden;
}

.site-footer.site-footer--dark .footer-grain {
    display: none;
}

/* The main card container - 3-col: Pages | Hero+CTA | Follow on */
.site-footer.site-footer--dark .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px 47px;
    align-items: start;
    position: relative;
    background-color: #f5f5f7;
    -webkit-mask-image: url('/assets/67d2dd47cfe84bed1dce9542_ln4-footer-mask-desktop.svg');
    mask-image: url('/assets/67d2dd47cfe84bed1dce9542_ln4-footer-mask-desktop.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-type: alpha;
    mask-type: alpha;
    border-radius: 24px 24px 0 0;
    padding: 60px 60px 40px;
    min-height: 400px;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Contour lines overlay - hidden on light footer */
.site-footer.site-footer--dark .footer-inner::before {
    display: none;
}

.footer-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/67dbeb1e708b818bc15a8d17_blobs_nav.svg');
    background-repeat: repeat;
    background-size: 800px auto;
    opacity: 0.3;
    mask-image: url('/assets/67d2dd47cfe84bed1dce9542_ln4-footer-mask-desktop.svg');
    -webkit-mask-image: url('/assets/67d2dd47cfe84bed1dce9542_ln4-footer-mask-desktop.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center top;
    -webkit-mask-position: center top;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    pointer-events: none;
    z-index: 0;
}

/* Center column: Hero text + CTA */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Typography Section */
.footer-hero-text {
    text-align: center;
    position: relative;
    z-index: 10;
    margin: 0 auto 20px;
    max-width: 100%;
}

.footer-hero-signature {
    font-family: 'Brush Script MT', 'Dancing Script', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    font-style: italic;
    color: #c41e5a;
    transform: rotate(-8deg);
    display: block;
    width: 146px;
    padding: 0;
    margin-top: -89px;
    margin-bottom: -20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 20;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-hero-signature::before {
    display: none;
}

.footer-hero-lines {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding-left: 0;
    padding-right: 0;
    margin-top: 6px;
    align-items: center;
    justify-items: center;
    line-height: 0.9;
    position: relative;
    padding: 0 26px;
    margin: -44px 0;
    height: 350px;
}

.footer-hero-line {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.9;
}

.footer-hero-line--gold {
    color: #1d1d1f;
}

.footer-hero-line--white {
    color: #d4ff00;
}

.footer-hero-line:nth-child(3) {
    color: #1d1d1f;
}

.footer-hero-img-w {
    position: relative;
    z-index: 15;
    width: 100%;
    max-width: 500px;
    margin: -60px auto -40px;
    text-align: center;
}

.footer-hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    display: block;
    margin: 0 auto;
}

/* Footer nav columns - left (Pages) and right (Follow on) */
.footer-nav-col--pages {
    text-align: left;
    justify-self: start;
    position: relative;
    z-index: 20;
}

.footer-nav-col--follow {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-self: end;
    position: relative;
    z-index: 20;
}

.footer-nav-col--follow .footer-nav-list a {
    margin: 3px 0;
}

/* Coming Soon: 3D ModelViewer feature (400×400) */
.coming-soon-block {
    width: 400px;
    min-height: 400px;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(29, 29, 31, 0.06);
    border: 1px solid rgba(29, 29, 31, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-inner {
    text-align: center;
    max-width: 280px;
}

.coming-soon-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color--grey-2);
    margin-bottom: 0.5rem;
}

.coming-soon-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #1d1d1f;
    margin: 0 0 0.75rem;
}

.coming-soon-cta {
    font-size: 0.9rem;
    color: var(--color--grey-2);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.coming-soon-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
}

.footer-nav-col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.footer-nav-heading {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-nav-heading--contact {
    margin-top: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.site-footer.site-footer--dark .footer-nav-heading {
    color: #6e6e73;
}

.site-footer.site-footer--dark .footer-nav-list a {
    color: #1d1d1f;
}

.site-footer.site-footer--dark .footer-nav-list a:hover {
    color: #424245;
}

.site-footer.site-footer--dark .footer-link-lime {
    color: #d4ff00 !important;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list a {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: var(--font-display);
}

.footer-nav-list a:hover {
    color: #d4ff00;
}

.footer-link-lime {
    color: #d4ff00 !important;
}

.footer-cta-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 13px 0;
    height: 60px;
}

.footer-business-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1d1d1f;
    color: #f5f5f7;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.footer-business-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 29, 31, 0.25);
    color: #f5f5f7;
}

.footer-business-cta .btn-text .word {
    display: flex;
    letter-spacing: 0;
}

.footer-business-cta .btn-text .char {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
    line-height: 1.15;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-business-cta .btn-text .char::after {
    content: attr(data-letter);
    position: absolute;
    top: 100%;
    left: 0;
    color: inherit;
}

.footer-business-cta:hover .btn-text .char {
    transform: translateY(-100%);
}

.footer-business-cta .btn-text .char:nth-child(1) { transition-delay: 0s; }
.footer-business-cta .btn-text .char:nth-child(2) { transition-delay: 0.03s; }
.footer-business-cta .btn-text .char:nth-child(3) { transition-delay: 0.06s; }
.footer-business-cta .btn-text .char:nth-child(4) { transition-delay: 0.09s; }
.footer-business-cta .btn-text .char:nth-child(5) { transition-delay: 0.12s; }
.footer-business-cta .btn-text .char:nth-child(6) { transition-delay: 0.15s; }
.footer-business-cta .btn-text .char:nth-child(7) { transition-delay: 0.18s; }

.footer-cta-arrow {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.footer-sponsors {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 30px 60px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-sponsors::before {
    display: none;
}

.footer-sponsor-item {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-sponsor-item:first-child {
    margin-right: auto;
}

.footer-sponsor-item:last-child {
    margin-left: auto;
}

.footer-sponsor-item:hover {
    opacity: 1;
}

/* Bottom Bar - Outside the dark card */
.footer-bottom-bar {
    background: unset;
    color: #1d1d1f;
    padding: 20px 60px;
    padding-left: calc(60px + env(safe-area-inset-left));
    padding-right: calc(60px + env(safe-area-inset-right));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom-bar .footer-legal {
    display: flex;
    gap: 30px;
}

.footer-bottom-bar .footer-legal a {
    color: #1d1d1f;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    margin: 3px 0;
}

.footer-bottom-bar .footer-legal a:hover {
    opacity: 1;
}

.footer-bottom-bar .footer-copy {
    margin: 0;
    color: #1d1d1f;
    opacity: 0.7;
}

/* Footer responsive */
@media (max-width: 768px) {
    .site-footer.site-footer--dark .footer-inner {
        padding: 60px 30px 30px;
        border-radius: 16px 16px 0 0;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-hero-img-w {
        max-width: 300px;
        margin: -30px auto -20px;
    }

    .footer-nav-col--pages,
    .footer-nav-col--follow {
        text-align: center;
        justify-self: center;
        align-items: center;
    }

    .coming-soon-block {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-nav-list--end {
        align-items: center;
    }

    .footer-sponsors {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
        gap: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-outline:hover {
    background: var(--surface);
    color: #fff;
}

/* Book modal */
.pop-up_cta_modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(26, 26, 28, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pop-up_cta_modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.pop-up_cta_modal-overlay[aria-hidden="true"] {
    pointer-events: none;
}

.pop-up_cta_modal-overlay[aria-hidden="false"] {
    pointer-events: auto;
}

.pop-up_cta_modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow: hidden;
    overflow-y: auto;
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
    padding: var(--space-xl);
}

.pop-up_cta_modal_visuals {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.book-modal-visual {
    position: absolute;
    object-fit: contain;
    opacity: 0.15;
}

.book-modal-blobs-nav {
    top: -15%;
    left: -15%;
    width: 60%;
    height: auto;
    opacity: 0.12;
}

.book-modal-blobs {
    top: -20%;
    right: -20%;
    width: 70%;
    height: auto;
}

.book-modal-collabs {
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: auto;
}

.book-modal-mask-right {
    top: 50%;
    right: -15%;
    width: 45%;
    height: auto;
    transform: translateY(-50%);
}

.pop-up_cta_modal_header,
.pop-up_cta_modal_form {
    position: relative;
    z-index: 1;
}

.pop-up_cta_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.pop-up_cta_modal_title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0;
}

.pop-up_cta_modal_close {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.pop-up_cta_modal_close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.pop-up_cta_modal_form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pop-up_cta_modal_field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pop-up_cta_modal_label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.pop-up_cta_modal_input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pop-up_cta_modal_input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(90, 200, 250, 0.2);
}

.pop-up_cta_modal_input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.pop-up_cta_modal_actions {
    margin-top: 0.25rem;
}

.pop-up_cta_modal_submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent);
    color: #1a1a1c;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pop-up_cta_modal_submit:hover {
    background: var(--accent-hover);
}

.pop-up_cta_modal_privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.pop-up_cta_modal_privacy input {
    margin-top: 0.25rem;
}

.pop-up_cta_modal_privacy a {
    color: var(--accent);
    font-weight: 500;
}

.pop-up_cta_modal_privacy a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        left: var(--space-sm);
        width: auto;
        padding: 6px 0;
    }

    .nav-dropdown .nav-menu-inner {
        padding: 4rem 1rem 2rem;
    }

    .nav-dropdown .nav-menu-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .nav-dropdown .nav-menu-images-w {
        max-height: 140px;
    }

    .nav-dropdown .nav-menu-images-track {
        flex-direction: row;
        padding: 0.5rem;
    }

    .nav-dropdown .nav-menu-images-col {
        flex: 1;
        min-width: 0;
    }

    .nav-dropdown .nav-menu-img-w {
        aspect-ratio: 16 / 10;
        min-height: 60px;
    }

    .site-header .header-cta {
        font-size: 0.7rem;
        padding: 0 16px;
        min-height: 28px;
        height: 28px;
    }

    .nav-ham,
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .nav-ham-lines {
        width: 30px;
        height: 30px;
    }

    .hero-context-left {
        max-width: 100%;
    }

    .about-rigo-grid:not(.bento-grid) {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-hub-field {
        flex: 1 1 100%;
    }

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

    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .pricing-card-center {
        grid-column: 1;
        grid-row: auto;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: var(--space-md) 0;
    }

    .pricing-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-collage {
        height: 280px;
        max-width: 400px;
    }

    .footer-collage-item--1 { width: 100px; height: 130px; left: 5%; }
    .footer-collage-item--2 { width: 120px; height: 150px; left: 25%; }
    .footer-collage-item--3 { width: 110px; height: 140px; left: 50%; }
    .footer-collage-item--4 { width: 100px; height: 130px; right: 5%; }

    .footer-wave {
        height: 80px;
    }
}
