:root {
    /* Vintage/Beige Theme based on screenshot */
    --color-bg: #f4f1ea;
    /* Light beige background */
    --color-bg-alt: #eaddcf;
    /* Slightly darker beige for cards */
    --color-text: #2c1e18;
    /* Dark brown/black text */
    --color-text-muted: #5d4a44;
    /* Muted brown */

    --color-primary: #8a2c22;
    /* Dark red/rust */
    --color-primary-hover: #a63e2e;

    --color-accent: #d97706;
    /* Amber/Orange accent for subtle highlights */

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-section: 6rem 2rem;
    --radius-card: 4px;
    /* Slightly sharper corners for vintage feel */
    --shadow-card: 0 4px 15px rgba(44, 30, 24, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.cta-button {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--color-text);
}

h2.section-title {
    color: var(--color-primary);
    font-weight: 700;
    text-shadow: none;
    border-bottom: 3px solid var(--color-primary);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 80vh;
    /* Reduced height to see content sooner */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background moved to ::before for mirroring */
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--color-primary);
    /* Simple separator line */
}

/* Updated overlay for better contrast */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Mirrored background image + Overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/hero_drums.jpg') no-repeat center center;
    background-size: cover;
    transform: scaleX(-1);
    /* Mirror effect */
    z-index: 1;
}

.hero-section::after {
    /* Texture overlay or gradient? Removing the fade-to-black */
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    transform: translateY(80px);
    /* Shift content down by user request */
}

.main-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #fff;
    /* Keep white on hero image */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons on Hero */
/* Buttons on Hero & General */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background-color: #8a2c22;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid #8a2c22;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #a63e2e;
    border-color: #a63e2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.cta-button.outline,
.cta-button.outline.small {
    background-color: transparent !important;
    border-color: #8a2c22;
    color: #8a2c22;
}

.cta-button.outline:hover,
.cta-button.outline.small:hover {
    background-color: transparent !important;
    color: #8a2c22 !important;
    border-color: #8a2c22 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ... existing scroll indicator ... */

/* ... */

.cta-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    background-color: #8a2c22;
    /* specific request */
    border: 2px solid #8a2c22;
    color: #fff;
}

.cta-button.small:hover {
    background-color: #a63e2e;
    border-color: #a63e2e;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {

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

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

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

/* PLAY BUTTON WRAPPER – sits right on the hero border line */
.play-btn-wrapper {
    position: relative;
    height: 0;
    /* Takes no layout space */
    z-index: 10;
    text-align: center;
}

/* HERO PLAY BUTTON */
.hero-play-btn {
    position: absolute;
    top: -144px;
    /* -84px (center on border) + 60px up */
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow:
        0 0 0 0 rgba(138, 44, 34, 0.6),
        0 20px 60px rgba(0, 0, 0, 0.7),
        /* deep drop shadow */
        0 0 40px rgba(138, 44, 34, 0.4);
    /* red glow */
    animation: pulse-ring 2.5s infinite;
}

.hero-play-btn svg {
    /* Push triangle slightly right for visual balance in the circle */
    transform: translateX(4px);
}

.hero-play-btn:hover {
    background: #a63e2e;
    transform: translateX(-50%) scale(1.06);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 44, 34, 0.6), 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(138, 44, 34, 0.4);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(138, 44, 34, 0), 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(138, 44, 34, 0.4);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 44, 34, 0), 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(138, 44, 34, 0.4);
    }
}

/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: min(720px, 88vw);
    /* Slightly smaller width */
    max-height: 85vh;
    /* Slightly more margin from screen edges */
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    animation: modal-in 0.3s ease;
    display: flex;
    flex-direction: column;
}

#heroVideo {
    width: 100%;
    /* Let height be determined by aspect ratio, but cap it so CTA fits */
    max-height: 60vh;
    object-fit: contain;
    background: #000;
    display: block;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    color: #222;
    font-weight: 700;
}

.video-modal-close:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Video CTA – hidden until 80% */
.video-cta {
    text-align: center;
    background: #1a1a1a;
    border-top: 2px solid var(--color-primary);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: opacity 0.6s ease, max-height 0.6s ease, padding 0.6s ease;
}

.video-cta.visible {
    opacity: 1;
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.video-cta p {
    color: #eaddcf;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* INFO STRIP */

.info-strip {
    background-color: #2c1e18;
    /* Dark brown strip */
    padding: 1rem 0;
    border-bottom: none;
    color: #eaddcf;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-basic {
    font-size: 0.9rem;
    color: #eaddcf;
}

.contact-basic a {
    color: #eaddcf;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-basic a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* CONTENT BLOCKS */
.content-block {
    padding: var(--spacing-section);
    position: relative;
    background-color: var(--color-bg);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    border-left: none;
    padding-left: 0;
    text-shadow: none;
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

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

.schule-block .section-title {
    display: table;
    margin: 0 auto 3rem auto;
    /* Center title (with border fitting text) */
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    /* Center container horizontally */
    font-size: 1.1rem;
    color: var(--color-text);
    text-align: center;
    /* Center text content */
}

.highlight {
    color: var(--color-text);
    /* Removed border and padding for centered look */
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    /* White cards on beige bg */
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
    color: var(--color-text);
}

.card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card .sub-info {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 400;
}

.card h4 {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-primary);
    /* Fixed: Was white on white */
    font-weight: 700;
}

.toggle-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    animation: fadeIn 0.5s ease;
}

.toggle-details.open {
    display: block;
}

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

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



.cta-button.small:hover {
    background-color: #a63e2e;
    border-color: #a63e2e;
    color: #fff;
}

.full-width {
    grid-column: 1 / -1;
}

.schedule-list li {
    list-style: none;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

/* STUDIO BLOCK */
/* Keep the parallax image but adjust overlay for light theme if needed. */
.studio-block {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./assets/studio_bg.jpg') center/cover fixed;
    color: #fff;
    border-top: none;
}

.studio-block .section-title {
    display: table;
    margin: 0 auto 3rem auto;
    color: #fff;
    /* Ensure visible on dark background */
    border-bottom-color: #fff;
    /* Match border */
}

.studio-content {
    background: rgba(244, 241, 234, 0.95);
    /* Beige overlay */
    padding: 3rem;
    border-radius: var(--radius-card);
    backdrop-filter: blur(5px);
    border: none;
    color: var(--color-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

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

.studio-feature h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ABOUT SECTION */
.about-block {
    padding: var(--spacing-section);
    background-color: #fff;
    /* Contrast with dark booking/studio? */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--color-text);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    .about-content .section-title {
        text-align: center;
    }
}

/* BOOKING BLOCK */
.booking-block {
    background-color: #2c1e18;
    /* Dark brown to match footer/strip */
    color: #eaddcf;
    text-align: center;
    padding: 1rem 0;
}

.booking-block .section-title {
    color: #eaddcf;
    border-bottom-color: #eaddcf;
    margin-bottom: 0.5rem;
}

.booking-block .intro-text {
    color: #eaddcf;
    margin-bottom: 0.5rem !important;
}

.booking-block .cta-button {
    background: #eaddcf;
    color: #2c1e18;
    border-color: #eaddcf;
}

.booking-block .cta-button:hover {
    background: #fff;
    color: #2c1e18;
    border-color: #fff;
}

/* FOOTER */
/* FOOTER */
footer {
    background-color: #2c1e18;
    /* Dark brown footer */
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--color-primary);
    font-size: 0.9rem;
    color: #eaddcf;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 2rem;
}

.footer-col-logo {
    flex-shrink: 0;
}



.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #555;
}

/* Glitch Effect Simple - Toned down for vintage feel? */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #8a2c22;
    clip: rect(44px, 9999px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #d97706;
    clip: rect(44px, 9999px, 56px, 0);
    animation: glitch-anim 2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }

    5% {
        clip: rect(12px, 9999px, 5px, 0);
    }

    10% {
        clip: rect(2px, 9999px, 54px, 0);
    }

    15% {
        clip: rect(72px, 9999px, 24px, 0);
    }

    20% {
        clip: rect(22px, 9999px, 14px, 0);
    }

    25% {
        clip: rect(82px, 9999px, 64px, 0);
    }

    100% {
        clip: rect(0, 0, 0, 0);
    }
}

/* STICKY HEADER */
/* STICKY HEADER */
/* STICKY HEADER */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    /* Reduced by ~10% */
    padding: 30px 2rem 0 2rem;
    /* Align top with padding */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Crucial: Align top so content isn't clipped by triangle */
    background: #f4f1ea;
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s ease, padding 0.4s ease;
    will-change: height, padding;
    transform: translateZ(0);
    /* Force Hardware Acceleration */

    /* Dramatic Triangle Shape: Left full height, Right 60% height (Increased to avoid cutting off Nav) */
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%) !important;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%) !important;
}

.sticky-header.scrolled {
    height: 90px;
    /* Compact height */
    padding: 20px 2rem 0 2rem;
    /* Adjusted padding for centering */
    background: rgba(244, 241, 234, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    /* Remove Triangle Effect (become rectangle) */
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

.sticky-header .logo-link {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.header-logo {
    height: 125px;
    /* Adjusted for new header height */
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: top left;
    /* Scale from top left */
    margin-top: -10px;
    /* Pull up slightly if needed */
}

/* Scrolled state for logo */
.sticky-header.scrolled .header-logo {
    height: 50px;
    margin-top: 0;
    transform: translateY(0);
}

/* Nav positioning adjustment */
.sticky-header nav {
    margin-top: 10px;
    /* Align visually with logo text center roughly */
    transition: all 0.4s ease;
}

.sticky-header.scrolled nav {
    margin-top: 5px;
}





.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

/* White CTA Button for Hero */
.cta-button.white {
    background-color: #fff;
    color: #8a2c22;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f4f1ea;
    /* Light beige tint */
    color: #8a2c22;
}

.sticky-header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sticky-header nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.sticky-header nav a:hover {
    color: var(--color-primary);
}

.sticky-header .cta-nav {
    padding: 0.5rem 1.2rem;
    background: var(--color-primary);
    border-radius: 4px;
    font-weight: 600;
    color: #fff !important;
    /* Force white text */
}

.sticky-header .cta-nav:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    /* Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Above sticky header content but below dropdown overlay? */
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animations for Hamburger */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE DROPDOWN */
.mobile-dropdown {
    display: none;
    position: fixed;
    /* Fixed to follow sticky header */
    top: 110px;
    /* Default mobile header height */
    left: 0;
    width: 100%;
    background: #f4f1ea;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1002;
    /* Ensure it's above everything including the header's clip area */
    transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sticky-header.scrolled+.mobile-dropdown {
    top: 70px;
    /* Compact mobile header height */
}

.mobile-dropdown.active {
    display: flex;
}

.mobile-dropdown a {
    padding: 1rem 2rem;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.mobile-dropdown a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

/* Mobile */
@media (max-width: 768px) {

    /* Play button: half size, slightly above brown bar, right edge */
    .hero-play-btn {
        top: -50px;
        /* slightly above the brown bar */
        left: auto;
        right: 16px;
        transform: none;
        width: 84px;
        height: 84px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-play-btn svg {
        width: 32px;
        height: 32px;
        transform: translateX(3px);
        /* Scale down and nudge right on mobile */
    }

    .main-title {
        font-size: 3rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* Mobile Header */
    .sticky-header {
        height: 110px;
        /* Slightly taller to accommodate larger logo */
        padding: 0.4rem 1.5rem 0 1.5rem;
        /* More side breathing room */
        /* Keep triangle on mobile but scaled */
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%) !important;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* Center items vertically */
    }

    .mobile-menu-toggle {
        display: flex;
        /* Show on mobile */
        /* To ensure it's "exactly" in the middle, we can use flex: 1 on neighbors or absolute positioning */
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scale(0.7);
        margin-top: -10px;
        opacity: 0.3;
        /* 30% opacity as requested */
        /* Counter-act the header's top padding if necessary */
    }

    .sticky-header.scrolled {
        height: 70px;
        /* Keep compact when scrolled */
        padding: 0 1rem;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
    }

    .header-logo {
        height: 90px;
        /* ~15% larger */
        margin-top: 0;
    }

    .sticky-header.scrolled .header-logo {
        height: 40px;
    }

    .sticky-header nav {
        gap: 0.8rem;
        margin-top: 0;
        /* Reset desktop margin */
    }

    .sticky-header nav a:not(.cta-nav) {
        /* Hide secondary links on mobile to save space, keep CTA */
        display: none;
    }

    .sticky-header .cta-nav {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* HERO EXTRA CTA */
.cta-button.primary-highlight {
    background: linear-gradient(135deg, #e3552d, #8a2c22);
    box-shadow: 0 4px 15px rgba(227, 85, 45, 0.4);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: auto;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary-highlight:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(227, 85, 45, 0.6);
    background: linear-gradient(135deg, #ff6b3d, #a53529);
}

/* TRUST SIGNAL SECTION */
.trust-signal-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle Divider */
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.trust-item svg {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.trust-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trust-signal-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .video-cta {
        padding: 1rem !important;
    }

    .video-cta p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .cta-button.primary-highlight {
        width: 100%;
        font-size: 1rem;
    }

    /* Fix spacing and grid on mobile */
    .container {
        padding: 0 1.5rem;
        /* Symmetric padding matching header */
    }

    .grid-layout {
        grid-template-columns: 1fr;
        /* Prevent overflow by forcing 1 column fitting width */
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
        /* Reduce padding slightly for mobile */
    }

    /* "White Box" specific adjustment for Tonstudio */
    .studio-content {
        margin-left: -0.75rem;
        /* Pull half of the 1.5rem container padding */
        margin-right: -0.75rem;
        width: calc(100% + 1.5rem);
        /* Extend width to compensate */
        padding: 2rem 1.5rem;
        /* Adjust internal padding */
    }
}

/* COOKIE BANNER STYLE */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 500px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 999999;
    /* Max Z-Index */
    border-radius: 8px;
    display: flex;
    flex-direction: column;

    /* Visibility State - Hidden by default */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.visible {
    /* Visibility State - Shown */
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .cookie-banner {
        /* Reset for Modal Centering */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Classic robust centering */
        bottom: auto;
        right: auto;

        width: 90vw;
        max-width: 350px;
        /* Slightly narrower for better mobile fit */
        margin: 0;
        /* Clear margins */

        /* Modal Box Styling */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        /* Strong shadow */
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Dedicated Overlay Pseudo-element */
    .cookie-banner::before {
        content: '';
        position: fixed;
        top: -500vh;
        /* Extend far beyond container to cover screen */
        left: -500vw;
        width: 1000vw;
        height: 1000vh;
        background: rgba(0, 0, 0, 0.7);
        /* Darker overlay */
        z-index: -1;
        backdrop-filter: blur(4px);
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cookie-buttons .text-link-button {
        text-align: center;
        padding: 0.5rem;
    }

    /* Ensure close/accept buttons are easy to tap */
    .cookie-buttons .cta-button {
        min-height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}