:root {
    --yellow: #FFFF00;
    --lemon: #FFF44F;
    --olive: #6b6b00;
    --olive-light: #8a8a00;
    --dark: #0a0a04;
    --darker: #060603;
    --ink: #1a1a08;
    --parchment: #f5f0dc;
    --parchment-dark: #e8e0c0;
    --white: #ffffff;
    --gray: #888870;
    --light-gray: #c8c8a0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--lemon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

nav.shrunk {
    padding: 10px 40px;
    background: rgba(6, 6, 3, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 0, 0.15);
    box-shadow: 0 4px 40px rgba(255, 255, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 20%, 50% 0%, 100% 20%, 100% 80%, 50% 100%, 0 80%);
    transition: all 0.5s;
}

nav.shrunk .nav-logo-icon {
    width: 92px;
    height: 92px;
}

.nav-logo-icon img {
    width: 92px;
    height: 92px;
    display: block;
}

nav.shrunk .nav-logo-icon img {
    width: 96px;
    height: 96px;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: font-size 0.5s;
}

nav.shrunk .nav-logo-text {
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--parchment);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--yellow);
}

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

.nav-cta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--dark);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
    background: var(--lemon);
    transform: scale(1.04);
}

nav.shrunk .nav-cta {
    padding: 7px 18px;
    font-size: 10px;
}

/* ===== HERO — INTERFERENCE PATTERN GRID ===== */
#hero {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid layer 1 — horizontal lines */
.moire-grid-1 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: repeating-linear-gradient(0deg,
            rgba(128, 128, 0, 0.06) 0px, rgba(128, 128, 0, 0.06) 1px,
            transparent 1px, transparent 12px);
}

/* Grid layer 2 — slightly angled lines */
.moire-grid-2 {
    position: absolute;
    inset: -40px;
    pointer-events: none;
    z-index: 1;
    background-image: repeating-linear-gradient(7deg,
            rgba(128, 128, 0, 0.06) 0px, rgba(128, 128, 0, 0.06) 1px,
            transparent 1px, transparent 12px);
    animation: moireShift 18s linear infinite;
}

@keyframes moireShift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(6px, 4px) rotate(0.4deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Crosshair markers */
.crosshair {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    color: rgba(107, 107, 0, 0.5);
    font-size: 14px;
    line-height: 1;
    font-family: 'Space Mono', monospace;
    transform: translate(-50%, -50%);
    user-select: none;
}

/* Hero content panels */
.hero-panels {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    min-height: 100vh;
    padding: 120px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: start;
}

/* Panel 1 — headline, upper-center, angled */
.hero-panel-headline {
    grid-column: 1 / 3;
    grid-row: 1;
    background: var(--ink);
    padding: 28px 36px;
    transform: rotate(-1deg);
    display: inline-block;
    width: fit-content;
    box-shadow: 8px 8px 0 rgba(255, 255, 0, 0.12), 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: panelReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    margin-top: 40px;
    position: relative;
}

.hero-panel-headline::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(255, 255, 0, 0.1);
    pointer-events: none;
}

.hero-headline-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.hero-headline-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 8vw, 110px);
    color: var(--parchment);
    line-height: 0.88;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: block;
}

.hero-headline-main .accent {
    color: var(--yellow);
}

.hero-headline-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--light-gray);
    margin-top: 14px;
    display: block;
    line-height: 1.5;
}

/* Panel 4 — tagline+CTA, upper right */
.hero-panel-cta {
    grid-column: 3;
    grid-row: 1;
    background: rgba(128, 128, 0, 0.12);
    border: 1px solid rgba(107, 107, 0, 0.4);
    padding: 32px 28px;
    align-self: end;
    animation: panelReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
    margin-top: 80px;
}

.hero-panel-cta .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--parchment);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-panel-cta .tagline strong {
    font-style: normal;
    color: var(--yellow);
    font-weight: 600;
}

.hero-cta-phone {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--yellow);
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s;
}

.hero-cta-phone:hover {
    color: var(--lemon);
}

.hero-cta-btn {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--dark);
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.hero-cta-btn:hover {
    background: var(--lemon);
    transform: scale(1.04);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 200, 160, 0.6);
}

.hero-badge::before {
    content: '◆';
    color: var(--yellow);
    font-size: 8px;
}

/* Panel 2 — image left trapezoid */
.hero-panel-img-left {
    grid-column: 1;
    grid-row: 2;
    animation: panelReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    align-self: start;
}

.hero-img-trap-left {
    width: 440px;
    height: 220px;
    object-fit: cover;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    filter: grayscale(20%) contrast(1.1);
    box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.6);
    transition: filter 0.4s;
}

.hero-img-trap-left:hover {
    filter: grayscale(0%) contrast(1.2);
}

.hero-img-caption {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 200, 160, 0.5);
    margin-top: 10px;
    padding-left: 16px;
}

/* Panel 3 — image right trapezoid */
.hero-panel-img-right {
    grid-column: 2;
    grid-row: 2;
    animation: panelReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-img-trap-right {
    width: 220px;
    height: 300px;
    object-fit: cover;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    filter: grayscale(30%) contrast(1.1);
    box-shadow: -12px 12px 40px rgba(0, 0, 0, 0.6);
    transition: filter 0.4s;
}

.hero-img-trap-right:hover {
    filter: grayscale(0%) contrast(1.2);
}

/* Stats row */
.hero-panel-stats {
    grid-column: 3;
    grid-row: 2;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 0, 0.08);
    padding: 28px;
    animation: panelReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
    align-self: start;
}

.hero-stat {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 0, 0.08);
}

.hero-stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--yellow);
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

@keyframes panelReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Keep the headline rotation during reveal */
.hero-panel-headline {
    transform: rotate(-1deg);
}

@keyframes panelRevealTilted {
    0% {
        opacity: 0;
        transform: translateY(24px) rotate(-1deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-1deg);
    }
}

.hero-panel-headline {
    animation-name: panelRevealTilted;
}

/* ===== HOW WE WORK ===== */
#how-we-work {
    background: var(--darker);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

#how-we-work::before {
    content: 'PROCESS';
    position: absolute;
    top: -30px;
    right: -20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 0, 0.02);
    pointer-events: none;
    letter-spacing: -5px;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    opacity: 0.8;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: var(--parchment);
    line-height: 0.9;
    margin-bottom: 80px;
}

.section-title span {
    color: var(--yellow);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.step-card {
    background: rgba(255, 255, 0, 0.02);
    border: 1px solid rgba(255, 255, 0, 0.08);
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.step-card:hover {
    background: rgba(255, 255, 0, 0.06);
    border-color: rgba(255, 255, 0, 0.25);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: rgba(255, 255, 0, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    transition: color 0.4s;
}

.step-card:hover .step-num {
    color: rgba(255, 255, 0, 0.2);
}

.step-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.step-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.7;
    font-style: italic;
}

.step-connector {
    display: none;
}

/* ===== SLOT MACHINE SERVICES ===== */
#services {
    background: var(--darker);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

#services::before {
    content: 'SERVICES';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 0, 0.015);
    pointer-events: none;
    white-space: nowrap;
}

.slot-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.slot-header {
    margin-bottom: 48px;
}

/* Payout window — featured service name above reels */
.payout-window {
    background: var(--ink);
    border: 2px solid rgba(107, 107, 0, 0.5);
    padding: 16px 32px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    position: relative;
}

.payout-window::before {
    content: '◈ NOW SPINNING';
    position: absolute;
    top: -12px;
    left: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    background: var(--ink);
    padding: 0 8px;
}

.payout-service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.payout-win {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.7);
}

/* Cabinet */
.slot-cabinet {
    background: linear-gradient(160deg, #1a1a08, #252510);
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), inset 0 0 0 3px rgba(128, 128, 0, 0.3), inset 0 0 60px rgba(0, 0, 0, 0.4);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: stretch;
    position: relative;
}

.slot-cabinet::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px solid rgba(128, 128, 0, 0.12);
    pointer-events: none;
}

/* Photo mounts */
.slot-photo-mount {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.slot-photo {
    width: 180px;
    height: 260px;
    object-fit: cover;
    border: 8px solid #0a0a04;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 8px 32px rgba(0, 0, 0, 0.6);
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s;
    display: block;
}

.slot-photo:hover {
    filter: grayscale(0%) contrast(1.2);
}

.slot-photo-label {
    font-family: 'Space Mono', monospace;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.6);
    text-align: center;
}

/* Reels container */
.reels-container {
    flex: 1;
    display: flex;
    gap: 12px;
}

/* Individual reel */
.reel-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reel-wrap.reel-center {
    flex: 1.6;
}

.reel-label {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.6);
    text-align: center;
    margin-bottom: 8px;
}

.reel {
    overflow: hidden;
    height: 300px;
    background: var(--ink);
    border: 2px solid rgba(128, 128, 0, 0.4);
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Reel top/bottom fade */
.reel::before,
.reel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 5;
    pointer-events: none;
}

.reel::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 8, 0.95), transparent);
}

.reel::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 8, 0.95), transparent);
}

/* Center highlight line */
.reel-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 0, 0.25);
    transform: translateY(-50%);
    z-index: 6;
    pointer-events: none;
}

/* Reel strip (the scrolling content) */
.reel-strip {
    display: flex;
    flex-direction: column;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reel-strip.spinning {
    animation-duration: 0.12s !important;
}

.reel-strip.decelerating {
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reel 1: icons + names */
#reel1 .reel-strip {
    animation: reelSpin1 14s linear infinite;
}

@keyframes reelSpin1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Reel 2: full service cards */
#reel2 .reel-strip {
    animation: reelSpin2 18s linear infinite;
}

@keyframes reelSpin2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Reel 3: CTAs + stats */
#reel3 .reel-strip {
    animation: reelSpin3 11s linear infinite;
}

@keyframes reelSpin3 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Reel cell */
.reel-cell {
    height: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(128, 128, 0, 0.12);
    gap: 6px;
}

.reel-cell.card-cell {
    height: 150px;
    padding: 16px;
}

.reel-icon {
    font-size: 32px;
    line-height: 1;
}

.reel-service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--parchment);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.reel-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: rgba(107, 107, 0, 0.4);
    line-height: 0.9;
}

.reel-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}

.reel-card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--light-gray);
    font-style: italic;
    line-height: 1.5;
}

.reel-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: var(--yellow);
    line-height: 1;
}

.reel-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.reel-cta-text {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.8);
    border: 1px solid rgba(107, 107, 0, 0.4);
    padding: 6px 12px;
}

/* SPIN button area */
.slot-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.spin-btn {
    background: linear-gradient(135deg, var(--olive-light), var(--olive));
    color: var(--yellow);
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(107, 107, 0, 0.4), inset 0 1px 0 rgba(255, 255, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.spin-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.15), transparent);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 107, 0, 0.6);
}

.spin-btn:active {
    transform: translateY(1px);
}

.spin-btn.spinning-active {
    animation: btnPulse 0.15s ease infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(107, 107, 0, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(255, 255, 0, 0.5);
    }
}

.coin-insert {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.5);
}

/* Payout tray */
.payout-tray {
    background: rgba(255, 255, 0, 0.03);
    border: 1px solid rgba(107, 107, 0, 0.25);
    border-top: 2px solid var(--yellow);
    padding: 28px 32px;
    margin-top: 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    min-height: 120px;
}

.tray-info {
    flex: 1;
}

.tray-service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tray-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--parchment);
    font-style: italic;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
}

.tray-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tray-tag {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 0, 0.3);
    padding: 4px 10px;
    opacity: 0.8;
}

.tray-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.tray-cta-btn {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--dark);
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    display: block;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.tray-cta-btn:hover {
    background: var(--lemon);
}

.tray-payout-label {
    font-family: 'Space Mono', monospace;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(107, 107, 0, 0.6);
    text-align: center;
}

/* ===== WHY CHOOSE US ===== */

/* ===== WHY CHOOSE US ===== */

#why-us {
    background: var(--parchment);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--dark) 0px, var(--dark) 20px, var(--yellow) 20px, var(--yellow) 24px, var(--dark) 24px, var(--dark) 44px);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: var(--ink);
    line-height: 0.9;
}

.why-title span {
    color: var(--olive);
}

.why-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gray);
    font-style: italic;
    max-width: 320px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}

.why-card {
    padding: 48px 36px;
    background: var(--ink);
    color: var(--parchment);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.why-card:nth-child(even) {
    background: var(--olive);
    margin-top: 40px;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card::before {
    content: attr(data-num);
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 100px;
    color: rgba(255, 255, 0, 0.08);
    line-height: 1;
    pointer-events: none;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.why-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.why-card:nth-child(even) .why-card-title {
    color: var(--yellow);
}

.why-card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-gray);
    font-style: italic;
}

.why-card:nth-child(even) .why-card-desc {
    color: rgba(245, 240, 220, 0.85);
}

/* ===== FAQ ===== */
#faq {
    background: var(--darker);
    padding: 120px 60px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 0, 0.1);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(255, 255, 0, 0.35);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    cursor: pointer;
    background: rgba(255, 255, 0, 0.02);
    transition: background 0.3s;
    gap: 20px;
}

.faq-item.open .faq-q {
    background: rgba(255, 255, 0, 0.07);
}

.faq-q:hover {
    background: rgba(255, 255, 0, 0.05);
}

.faq-q-num {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--yellow);
    opacity: 0.6;
    min-width: 24px;
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--parchment);
    flex: 1;
    letter-spacing: 0.5px;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    color: var(--yellow);
    font-size: 18px;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    background: var(--yellow);
    color: var(--dark);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s;
    padding: 0 32px 0 calc(32px + 24px + 20px);
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 32px 28px calc(32px + 24px + 20px);
}

.faq-a p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.8;
    font-style: italic;
}

/* ===== CTA SECTION ===== */
#cta-main {
    background: var(--yellow);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

#cta-main::before {
    content: 'CALL NOW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 220px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.cta-main-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-main-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
}

.cta-main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 96px;
    color: var(--dark);
    line-height: 0.9;
    margin-bottom: 24px;
}

.cta-main-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 48px;
    opacity: 0.8;
}

.cta-main-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--yellow);
    padding: 18px 48px;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.cta-btn-primary:hover {
    background: var(--olive);
    transform: scale(1.04);
}

.cta-btn-secondary {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 18px 48px;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.cta-btn-secondary:hover {
    background: var(--dark);
    color: var(--yellow);
}

/* ===== SERVICE AREAS ===== */
#service-areas {
    background: var(--dark);
    padding: 120px 60px;
}

.areas-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.areas-head {
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 40px;
}

.area-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 0, 0.1);
    color: var(--light-gray);
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
    z-index: 0;
}

.area-tag:hover {
    color: var(--dark);
    border-color: var(--yellow);
}

.area-tag:hover::before {
    transform: scaleY(1);
}

.area-tag span {
    position: relative;
    z-index: 1;
}

.area-tag.primary {
    background: rgba(255, 255, 0, 0.08);
    border-color: rgba(255, 255, 0, 0.3);
    color: var(--yellow);
}

/* ===== CASSETTE TAPE SERVICES ===== */
#cassette-services {
    background: var(--parchment);
    padding: 100px 0;
    overflow: hidden;
}

.cassette-label-outer {
    padding: 0 60px;
    margin-bottom: 40px;
}

.cassette-label-outer .section-label {
    color: var(--olive);
}

.cassette-label-outer .section-title {
    color: var(--ink);
}

.cassette-label-outer .section-title span {
    color: var(--olive);
}

/* J-CARD */
.jcard-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 60px;
    gap: 0;
}

.jcard {
    display: flex;
    height: 320px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    font-family: 'Space Mono', monospace;
}

/* Spine */
.jcard-spine {
    width: 40px;
    background: #2a2800;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 0, 0.2);
}

.jcard-spine-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    white-space: nowrap;
    transform: rotate(-90deg);
}

/* Front cover */
.jcard-front {
    width: 200px;
    background: var(--ink);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 0, 0.15);
}

.jcard-front-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
}

.jcard-front-body {
    padding: 16px;
    flex: 1;
}

.jcard-front-brand {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}

.jcard-front-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--parchment);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 8px;
}

.jcard-front-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--light-gray);
    font-style: italic;
}

.jcard-logo-mark {
    width: 20px;
    height: 20px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin-top: 8px;
}

/* Back cover */
.jcard-back {
    width: 280px;
    background: var(--parchment);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
}

.jcard-back-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 8px;
}

.track-list {
    flex: 1;
}

.track {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    padding: 4px 6px;
    transition: background 0.2s;
    border-radius: 2px;
}

.track:hover {
    background: rgba(0, 0, 0, 0.06);
}

.track-num {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    font-weight: 700;
    min-width: 20px;
    padding-top: 2px;
}

.track-info {
    flex: 1;
}

.track-name-dots {
    display: flex;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.track-name-part {
    white-space: nowrap;
}

.track-dots {
    flex: 1;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.25);
    font-size: 9px;
    padding: 0 3px;
}

.track-time {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--gray);
    white-space: nowrap;
}

.track-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    color: var(--gray);
    font-style: italic;
    line-height: 1.4;
    margin-top: 2px;
}

.jcard-back-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 8px;
}

.jcard-total {
    font-family: 'Space Mono', monospace;
    font-size: 7px;
    color: var(--gray);
    letter-spacing: 1px;
}

.jcard-headshot {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(40%);
}

.jcard-copyright {
    font-family: 'Space Mono', monospace;
    font-size: 6px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Liner notes panel */
.liner-notes {
    margin: 20px 60px 0;
    background: var(--ink);
    padding: 32px 40px;
    border-top: 2px solid var(--yellow);
    display: none;
    animation: slideDown 0.4s ease;
}

.liner-notes.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.liner-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.liner-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--parchment);
    line-height: 1.8;
    font-style: italic;
}

/* ===== CONTACT ===== */
#contact {
    background: var(--dark);
    padding: 120px 60px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 0, 0.08);
    border: 1px solid rgba(255, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--parchment);
}

.contact-detail-value a {
    color: var(--parchment);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-value a:hover {
    color: var(--yellow);
}

.map-container {
    border: 1px solid rgba(255, 255, 0, 0.15);
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1) invert(1);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(10, 10, 4, 0.8));
    pointer-events: none;
}

/* ===== NEWSPAPER FOOTER ===== */
#footer {
    background: #f2ead0;
    color: var(--ink);
    font-family: 'Playfair Display', serif;
    border-top: 3px solid var(--ink);
}

.footer-masthead {
    padding: 32px 60px 24px;
    border-bottom: 4px double var(--ink);
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-masthead-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 56px;
    letter-spacing: -1px;
    color: var(--ink);
    flex: 1;
    text-transform: uppercase;
}

.footer-logo-image {
    display: block;
    max-width: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-masthead-meta {
    text-align: right;
}

.footer-masthead-date {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.footer-masthead-issue {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: var(--gray);
}

.footer-rule-line {
    height: 2px;
    background: var(--ink);
    margin: 0;
}

.footer-section-flags {
    display: flex;
    padding: 6px 60px;
    gap: 24px;
    background: var(--ink);
}

.footer-flag {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--parchment);
    opacity: 0.7;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    padding: 40px 60px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.footer-col {
    padding-right: 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-col:last-child {
    border-right: none;
}

.footer-col+.footer-col {
    padding-left: 32px;
    padding-right: 0;
}

.footer-col+.footer-col+.footer-col {
    padding-left: 32px;
}

.footer-col+.footer-col+.footer-col+.footer-col {
    padding-left: 32px;
}

.footer-col-head {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.footer-col p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    line-height: 1.7;
    color: #444428;
    font-style: italic;
    margin-bottom: 8px;
}

.footer-nav-links {
    list-style: none;
}

.footer-nav-links li {
    margin-bottom: 6px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
    padding-bottom: 4px;
}

.footer-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
}

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

.footer-classified {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: #666650;
    line-height: 1.7;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.02);
}

.footer-coupon {
    border: 2px dashed rgba(0, 0, 0, 0.3);
    padding: 16px;
    margin-top: 8px;
    background: #fff9e0;
}

.footer-coupon-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    color: var(--ink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-coupon-val {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-align: center;
    color: var(--olive);
    font-weight: 700;
}

.footer-coupon-code {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    text-align: center;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal {
    padding: 16px 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    font-family: 'Space Mono', monospace;
    font-size: 7.5px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 48px;
    }

    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .why-card:nth-child(even) {
        margin-top: 0;
    }

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

    .jcard-wrapper {
        padding: 0 20px;
        overflow-x: auto;
    }

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

    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-panels {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }

    .hero-panel-headline {
        grid-column: 1;
    }

    .hero-panel-cta {
        grid-column: 1;
        margin-top: 0;
    }

    .hero-panel-img-left,
    .hero-panel-img-right {
        display: none;
    }

    .hero-panel-stats {
        grid-column: 1;
    }

    .slot-cabinet {
        flex-direction: column;
    }

    .slot-photo-mount {
        width: 100%;
        flex-direction: row;
    }

    .slot-photo {
        width: 120px;
        height: 160px;
    }

    .reels-container {
        gap: 6px;
    }
}