/* Base Styles & Variables */
:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #c5a059;
    --gold-light: #e2c275;
    --cream: #f8f5f0;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #a8b2d1;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .monogram, .quote {
    font-family: 'Playfair Display', serif;
}

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

.gold-text {
    color: var(--gold);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-decoration: none;
}

.monogram {
    font-size: 2rem;
    font-weight: 700;
    border: 2px solid var(--gold);
    padding: 4px 8px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 1px;
}

.name-top { font-size: 0.9rem; color: var(--white); }
.name-bottom { font-size: 0.9rem; color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0.8;
}

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

.music-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.music-toggle:hover {
    background: var(--gold);
    color: var(--navy);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 30%, rgba(10, 25, 47, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-text-area {
    max-width: 700px;
}

.hero-subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Mission Section */
.mission {
    padding: 10rem 0;
    background-color: var(--cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.card-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card p {
    font-size: 0.9rem;
    color: #666;
}

.founder-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.founder-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.founder-card:hover .founder-img-wrapper img {
    transform: scale(1.05);
}

.founder-content {
    padding: 3rem;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--gold-light);
}

.founder-name {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.founder-role {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Approach Section */
.dark-section {
    background: var(--navy);
    color: var(--white);
    padding: 10rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.approach-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.approach-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-row: span 2; }

/* Courses Section */
.courses {
    padding: 0;
}

.courses-container {
    display: flex;
    min-height: 600px;
}

.courses-img {
    flex: 1;
}

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

.courses-content {
    flex: 1;
    padding: 8rem 5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--gold);
}

.feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Donation Section */
.donation {
    position: relative;
    padding: 12rem 0;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2000') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.donation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
}

.donation-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.donation-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.highlight-box {
    background: rgba(197, 160, 89, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.highlight-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.gold-glow:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-light);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .mission-grid, .approach-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .courses-container {
        flex-direction: column;
    }
    .courses-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content {
        padding: 0 2rem;
    }
    .mission-cards {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}
/* ==================== SPLASH OVERLAY - VELVETONE ==================== */
#splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0f;
    color: #f5e6c8;
    overflow-y: auto;
    transition: opacity 0.8s ease;
    font-family: 'Montserrat', sans-serif;
}

/* subtle starfield */
.stars-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.4), transparent 50%),
        radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.3), transparent 50%),
        radial-gradient(1px 1px at 6% 35%, rgba(255,255,255,0.35), transparent 50%),
        radial-gradient(1px 1px at 18% 50%, rgba(255,255,255,0.25), transparent 50%),
        radial-gradient(1px 1px at 4% 70%, rgba(255,255,255,0.3), transparent 50%),
        radial-gradient(1px 1px at 22% 85%, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.splash-top-label {
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(245, 230, 200, 0.5);
    z-index: 5;
}

.est-pill {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 999px;
    padding: 6px 22px;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: #d9c89a;
    z-index: 5;
    background: rgba(10, 10, 15, 0.6);
    white-space: nowrap;
}

.splash-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    min-height: 100vh;
    gap: 0;
}

/* ---------- MAIN AREA ---------- */
.splash-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 40px 40px;
    text-align: center;
    position: relative;
}

.splash-header { margin-bottom: 30px; }

.brand-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.brand-dash {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #c5a059;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: #d9c89a;
    font-weight: 600;
}

.splash-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    color: #f5e6c8;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.splash-headline em {
    font-style: italic;
    font-weight: 400;
    color: #c5a059;
    display: inline-block;
    margin-top: 6px;
}

.splash-sub {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: rgba(245, 230, 200, 0.55);
    margin: 0;
}

/* ---------- VINYL (SVG) ---------- */
.vinyl-stage {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 20px auto 35px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
}

.vinyl-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vinyl-disc-svg {
    transform-origin: 250px 250px;
    transform-box: fill-box;
    animation: spinVinyl 10s linear infinite;
}

.vinyl-disc-svg.paused { animation-play-state: paused; }

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.tonearm-svg {
    transform-origin: 445px 55px;
    transform-box: fill-box;
}

/* ---------- ENTER BUTTON ---------- */
.enter-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #c5a059 0%, #d9b86a 100%);
    color: #0a0a0f;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
    margin-top: 10px;
}

.enter-site-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(197, 160, 89, 0.45);
    background: linear-gradient(135deg, #d9b86a 0%, #e8c97a 100%);
}

.enter-site-btn i {
    width: 16px;
    height: 16px;
}

/* ---------- SIDE PANEL ---------- */
.player-panel {
    background: #0d0d14;
    border-left: 1px solid rgba(197, 160, 89, 0.12);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
    padding: 8px;
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
}

.equalizer span {
    flex: 1;
    background: linear-gradient(to top, #c5a059, #d9b86a);
    border-radius: 1px;
    animation: eqBar 1.2s ease-in-out infinite;
}

.equalizer.paused span {
    animation-play-state: paused;
    transform: scaleY(0.4);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.equalizer span:nth-child(1) { animation-delay: 0.0s; height: 60%; }
.equalizer span:nth-child(2) { animation-delay: 0.1s; height: 90%; }
.equalizer span:nth-child(3) { animation-delay: 0.2s; height: 75%; }
.equalizer span:nth-child(4) { animation-delay: 0.3s; height: 100%; }
.equalizer span:nth-child(5) { animation-delay: 0.15s; height: 65%; }
.equalizer span:nth-child(6) { animation-delay: 0.25s; height: 85%; }
.equalizer span:nth-child(7) { animation-delay: 0.35s; height: 70%; }
.equalizer span:nth-child(8) { animation-delay: 0.05s; height: 95%; }

@keyframes eqBar {
    0%, 100% { transform: scaleY(0.5); transform-origin: bottom; }
    50%      { transform: scaleY(1); transform-origin: bottom; }
}

.now-playing-block {
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding-bottom: 22px;
}

.np-label, .block-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(245, 230, 200, 0.45);
    margin-bottom: 10px;
}

.np-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f5e6c8;
    margin-bottom: 4px;
    font-weight: 400;
}

.np-artist {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #c5a059;
    margin-bottom: 16px;
}

.np-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: rgba(245, 230, 200, 0.5);
}

.np-bar {
    flex: 1;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.np-bar-fill {
    width: 8%;
    height: 100%;
    background: #c5a059;
    border-radius: 1px;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0;
}

.ctrl-btn {
    background: transparent;
    border: none;
    color: rgba(245, 230, 200, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover { color: #c5a059; }

.ctrl-btn i { width: 18px; height: 18px; }

.ctrl-play {
    background: #c5a059;
    color: #0a0a0f;
    width: 44px;
    height: 44px;
}

.ctrl-play:hover {
    background: #d9b86a;
    color: #0a0a0f;
}

.ctrl-play i { width: 20px; height: 20px; }

.volume-block, .tone-block {
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 18px;
}

.volume-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 230, 200, 0.6);
}

.volume-row i { width: 16px; height: 16px; }

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 1px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5e6c8;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5e6c8;
    cursor: pointer;
    border: none;
}

.knobs-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.knob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.knob-dial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a1d08, #1a1208);
    border: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
}

.knob-dial::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    width: 1.5px;
    height: 12px;
    background: #c5a059;
    transform: translateX(-50%) rotate(-25deg);
    transform-origin: bottom center;
    border-radius: 1px;
}

.knob-dial.knob-r::after {
    transform: translateX(-50%) rotate(25deg);
}

.knob span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(245, 230, 200, 0.5);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .splash-layout {
        grid-template-columns: 1fr;
    }
    .splash-main {
        padding: 80px 24px 30px;
    }
    .player-panel {
        border-left: none;
        border-top: 1px solid rgba(197, 160, 89, 0.12);
        padding: 24px 22px 32px;
        gap: 22px;
    }
    .vinyl-stage {
        width: 280px;
        height: 280px;
        margin: 16px auto 28px;
    }
    .splash-headline {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }
    .est-pill {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
    .splash-top-label {
        top: 14px;
        left: 16px;
    }
}

@media (max-width: 600px) {
    .splash-main {
        padding: 70px 18px 28px;
    }
    .est-pill {
        top: 16px;
        font-size: 0.65rem;
        padding: 5px 14px;
    }
    .splash-top-label {
        font-size: 0.55rem;
    }
    .brand-dash { width: 38px; }
    .brand-name { font-size: 0.62rem; letter-spacing: 0.25em; }
    .splash-headline {
        font-size: clamp(2.4rem, 14vw, 3.4rem);
        margin-bottom: 14px;
    }
    .splash-sub { font-size: 0.7rem; letter-spacing: 0.2em; }
    .vinyl-stage {
        width: 240px;
        height: 240px;
        margin: 12px auto 24px;
    }
    .enter-site-btn {
        padding: 14px 28px;
        font-size: 0.72rem;
        letter-spacing: 0.2em;
    }

    /* Player panel - tighter on mobile */
    .player-panel {
        padding: 22px 18px 28px;
        gap: 18px;
    }
    .equalizer { height: 42px; padding: 6px; gap: 4px; }
    .np-title { font-size: 1.25rem; }
    .np-progress { gap: 8px; }
    .np-time { font-size: 0.65rem; }

    /* Controls: keep them on a single row, no wrapping */
    .player-controls {
        gap: 4px;
        padding: 4px 0;
    }
    .ctrl-btn { padding: 6px; }
    .ctrl-btn i { width: 16px; height: 16px; }
    .ctrl-play { width: 40px; height: 40px; }
    .ctrl-play i { width: 18px; height: 18px; }

    /* Knobs: ensure 4 in a row */
    .knobs-row {
        gap: 6px;
    }
    .knob-dial { width: 34px; height: 34px; }
    .knob span { font-size: 0.55rem; letter-spacing: 0.15em; }
}

@media (max-width: 380px) {
    .vinyl-stage {
        width: 210px;
        height: 210px;
    }
    .splash-headline { font-size: 2.3rem; }
    .knob-dial { width: 30px; height: 30px; }
    .knob-dial::after { height: 10px; top: 3px; }
    .knob span { font-size: 0.52rem; }
    .player-panel { padding: 20px 14px 26px; }
}

/* ---------- MAIN SITE RESPONSIVE FIXES ---------- */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    .logo img {
        height: 55px !important;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .cta-button {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    .legal-info-bar p {
        font-size: 0.7rem;
        line-height: 1.4;
        padding: 0.5rem 0;
    }

    /* Sections */
    .mission, .dark-section {
        padding: 5rem 0;
    }
    .container {
        padding: 0 1.25rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .mission-grid {
        gap: 3rem;
    }
    .founder-content { padding: 2rem; }
    .quote { font-size: 1.15rem; }

    /* Intervention */
    .intervention-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Approach */
    .approach-grid { gap: 2.5rem; }
    .approach-content p { font-size: 1rem; }

    /* Courses */
    .courses-content {
        padding: 3rem 1.5rem;
    }
    .courses-img { height: 280px; }

    /* Donation */
    .donation { padding: 6rem 0; }
    .donation-text { font-size: 1rem; }
    .highlight-box p { font-size: 1.2rem; }

    /* Footer */
    footer { padding: 4rem 0 1.5rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-brand .logo { justify-content: center; }
    .footer-contact p { justify-content: center; }
    .social-icons { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.9rem, 11vw, 2.8rem);
    }
    .section-title {
        font-size: 1.5rem;
    }
    .card { padding: 2rem 1.5rem; }
    .courses-content { padding: 2.5rem 1.25rem; }
    .donation { padding: 5rem 0; }
    .donation-text { font-size: 0.95rem; }
}

/* =====================================================
   GALLERY SECTION (sito pubblico)
   ===================================================== */
.gallery-section {
    padding: 8rem 0;
    background: var(--cream, #f8f5f0);
}

.gallery-section .section-title {
    text-align: center;
    color: var(--navy, #0a192f);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.gallery-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1a1a1a;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(10, 25, 47, 0.4);
}

.gallery-overlay i {
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

.gallery-caption {
    padding: 1.25rem 1.5rem;
}

.gallery-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy, #0a192f);
    margin-bottom: 0.4rem;
}

.gallery-caption p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 1.5rem;
    max-width: 700px;
}

.lightbox-caption h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold, #c5a059);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold, #c5a059);
}

/* =====================================================
   TESTIMONIALS SECTION (sito pubblico)
   ===================================================== */
.testimonials-section {
    padding: 8rem 0;
    background: var(--navy, #0a192f);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold, #c5a059), transparent);
}

.testimonials-section .section-title {
    text-align: center;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.testimonials-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold, #c5a059);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.testimonial-video {
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.testimonial-role {
    color: var(--gold, #c5a059);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.testimonial-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gallery-section,
    .testimonials-section {
        padding: 5rem 0;
    }
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

/* =====================================================
   VIAGGI ETICI SECTION
   ===================================================== */
.viaggi-section {
    padding: 8rem 0;
    background: var(--white, #ffffff);
}

.viaggi-section .section-title {
    text-align: center;
    color: var(--navy, #0a192f);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.viaggi-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.viaggi-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

/* Diseño imagen-derecha / texto-izquierda (impares = 1, 3, 5...) */
.viaggio-item .viaggio-img {
    order: 2;
}
.viaggio-item .viaggio-content {
    order: 1;
}

/* Pares: imagen-izquierda / texto-derecha */
.viaggio-item.reverse .viaggio-img {
    order: 1;
}
.viaggio-item.reverse .viaggio-content {
    order: 2;
}

.viaggio-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.15);
    aspect-ratio: 4/3;
    background: #f0ede8;
}

.viaggio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.viaggio-item:hover .viaggio-img img {
    transform: scale(1.04);
}

.viaggio-img::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid var(--gold, #c5a059);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.viaggio-item:hover .viaggio-img::before {
    opacity: 0.6;
}

.viaggio-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--navy, #0a192f);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.2rem;
}

.viaggio-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--gold, #c5a059);
}

.viaggio-text {
    color: var(--text-dark, #333);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .viaggi-section {
        padding: 5rem 0;
    }
    .viaggi-list {
        gap: 3.5rem;
    }
    .viaggio-item,
    .viaggio-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* En móvil siempre imagen arriba, texto abajo */
    .viaggio-item .viaggio-img,
    .viaggio-item.reverse .viaggio-img {
        order: 1;
    }
    .viaggio-item .viaggio-content,
    .viaggio-item.reverse .viaggio-content {
        order: 2;
    }
}
