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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Light nav variant — for white background pages */
.nav-light.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

.nav-light .logo-mark {
    filter: none;
}

.nav-light .logo-text {
    color: #0a0a0a;
}

.nav-light .hamburger-line {
    background: #0a0a0a;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    width: 100%;
}

/* ==================== LOGO ==================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
    cursor: pointer;
}

.logo-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0) invert(1);
}

.logo:hover .logo-mark {
    transform: rotate(-90deg);
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ==================== HAMBURGER ==================== */
.hamburger {
    position: relative;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.hamburger:hover .hamburger-line {
    width: 28px;
}

.hamburger.active .hamburger-line {
    gap: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    width: 32px;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    width: 32px;
}

/* ==================== MENU OVERLAY ==================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    clip-path: circle(0% at calc(100% - 50px) 50px);
    transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-overlay.open {
    pointer-events: auto;
}

.menu-overlay.open .menu-bg {
    clip-path: circle(150% at calc(100% - 50px) 50px);
}

.menu-list {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.menu-overlay.open .menu-list {
    opacity: 1;
    transform: translateY(0);
}

.menu-list li {
    overflow: hidden;
    margin: 0.3rem 0;
}

.menu-link {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #fff;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s ease;
}

.menu-overlay.open .menu-link {
    transform: translateY(0);
}

.menu-overlay.open .menu-list li:nth-child(1) .menu-link { transition-delay: 0.35s; }
.menu-overlay.open .menu-list li:nth-child(2) .menu-link { transition-delay: 0.45s; }
.menu-overlay.open .menu-list li:nth-child(3) .menu-link { transition-delay: 0.55s; }
.menu-overlay.open .menu-list li:nth-child(4) .menu-link { transition-delay: 0.65s; }

.menu-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #555;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-link:hover {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.menu-link:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    color: #fff;
}

.menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    opacity: 0;
    transition: opacity 0.5s ease 0.7s;
}

.menu-overlay.open .menu-footer {
    opacity: 1;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16161d 50%, #0f0f1a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Noise overlay on hero video — old film grain */
.hero-noise {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.01;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: heroNoiseShift 1.5s steps(4) infinite;
}

@keyframes heroNoiseShift {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-5%, 3%); }
    50%  { transform: translate(3%, -5%); }
    75%  { transform: translate(-3%, -3%); }
    100% { transform: translate(5%, 5%); }
}

/* Bottom gradient — fades to solid dark at bottom 40% */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    transform-style: preserve-3d;
}

/* ==================== 3D HERO TITLE ==================== */
.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    cursor: default;
    user-select: none;
    transform-style: preserve-3d;
}

.hero-title .word {
    display: block;
    perspective: 800px;
    position: relative;
}

.hero-title .word::before,
.hero-title .word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.hero-title .word::before {
    color: #ff0040;
    z-index: -1;
    animation: glitchTextR 4s infinite steps(1);
}

.hero-title .word::after {
    color: #00ffff;
    z-index: -1;
    animation: glitchTextB 4s infinite steps(1);
}

@keyframes glitchTextR {
    0%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    2% { opacity: 0.7; transform: translate(-3px, 1px); clip-path: inset(10% 0 60% 0); }
    4% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    15% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    17% { opacity: 0.6; transform: translate(-4px, -1px); clip-path: inset(40% 0 20% 0); }
    19% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    35% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    37% { opacity: 0.7; transform: translate(-2px, 2px); clip-path: inset(70% 0 5% 0); }
    39% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    55% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    57% { opacity: 0.5; transform: translate(-5px, 0); clip-path: inset(20% 0 50% 0); }
    59% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    75% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    77% { opacity: 0.6; transform: translate(-3px, 1px); clip-path: inset(5% 0 80% 0); }
    79% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes glitchTextB {
    0%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    2% { opacity: 0.7; transform: translate(3px, -1px); clip-path: inset(60% 0 10% 0); }
    4% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    15% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    17% { opacity: 0.6; transform: translate(4px, 1px); clip-path: inset(20% 0 40% 0); }
    19% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    35% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    37% { opacity: 0.7; transform: translate(2px, -2px); clip-path: inset(5% 0 70% 0); }
    39% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    55% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    57% { opacity: 0.5; transform: translate(5px, 0); clip-path: inset(50% 0 20% 0); }
    59% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    75% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    77% { opacity: 0.6; transform: translate(3px, -1px); clip-path: inset(80% 0 5% 0); }
    79% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

.hero-title .word:nth-child(2) {
    margin-top: 0.1em;
}

.hero-title .letter {
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter, opacity;
}

.hero-title .letter .letter-inner {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover state: letters tear apart with blur + zoom out in 3D */
.hero-title:hover .letter {
    filter: blur(12px);
    opacity: 0.3;
}

.hero-title:hover .letter:nth-child(odd) {
    transform: translateZ(-200px) translateX(-30px) rotateY(35deg) scale(0.7);
}

.hero-title:hover .letter:nth-child(even) {
    transform: translateZ(-200px) translateX(30px) rotateY(-35deg) scale(0.7);
}

/* Staggered per-letter delays for tear effect */
.hero-title:hover .letter:nth-child(1)  { transition-delay: 0.00s; }
.hero-title:hover .letter:nth-child(2)  { transition-delay: 0.03s; }
.hero-title:hover .letter:nth-child(3)  { transition-delay: 0.06s; }
.hero-title:hover .letter:nth-child(4)  { transition-delay: 0.09s; }
.hero-title:hover .letter:nth-child(5)  { transition-delay: 0.12s; }
.hero-title:hover .letter:nth-child(6)  { transition-delay: 0.15s; }
.hero-title:hover .letter:nth-child(7)  { transition-delay: 0.18s; }
.hero-title:hover .letter:nth-child(8)  { transition-delay: 0.21s; }
.hero-title:hover .letter:nth-child(9)  { transition-delay: 0.24s; }
.hero-title:hover .letter:nth-child(10) { transition-delay: 0.27s; }
.hero-title:hover .letter:nth-child(11) { transition-delay: 0.30s; }
.hero-title:hover .letter:nth-child(12) { transition-delay: 0.33s; }
.hero-title:hover .letter:nth-child(13) { transition-delay: 0.36s; }
.hero-title:hover .letter:nth-child(14) { transition-delay: 0.39s; }

/* Space character */
.hero-title .letter.space {
    width: 0.3em;
}

/* ==================== HERO SUB ==================== */
.hero-sub {
    margin-top: 2rem;
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeInSub 1.5s ease 1.5s forwards;
}

@keyframes fadeInSub {
    to { opacity: 1; }
}

/* ==================== HERO GLITCH LOGO ==================== */
.hero-logo-glitch {
    position: relative;
    margin-top: 2.5rem;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInSub 1.5s ease 2s forwards;
}

.hero-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-logo-glitch-layer {
    opacity: 0.8;
    mix-blend-mode: screen;
}

.glitch-r {
    filter: brightness(0) invert(1) sepia(1) saturate(15) hue-rotate(-50deg);
    animation: glitchR 2.5s infinite steps(1);
}

.glitch-b {
    filter: brightness(0) invert(1) sepia(1) saturate(15) hue-rotate(180deg);
    animation: glitchB 2.5s infinite steps(1);
}

@keyframes glitchR {
    0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    5% { transform: translate(-3px, 1px); clip-path: inset(20% 0 30% 0); }
    10% { transform: translate(2px, -1px); clip-path: inset(0 0 0 0); }
    15% { transform: translate(-2px, 2px); clip-path: inset(50% 0 10% 0); }
    20% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    40% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    42% { transform: translate(-4px, 0); clip-path: inset(10% 0 60% 0); }
    44% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    60% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    62% { transform: translate(3px, -2px); clip-path: inset(30% 0 20% 0); }
    64% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    80% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    82% { transform: translate(-2px, 1px); clip-path: inset(5% 0 70% 0); }
    84% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes glitchB {
    0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    5% { transform: translate(3px, -1px); clip-path: inset(30% 0 20% 0); }
    10% { transform: translate(-2px, 1px); clip-path: inset(0 0 0 0); }
    15% { transform: translate(2px, -2px); clip-path: inset(10% 0 50% 0); }
    20% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    40% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    42% { transform: translate(4px, 0); clip-path: inset(60% 0 10% 0); }
    44% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    60% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    62% { transform: translate(-3px, 2px); clip-path: inset(20% 0 30% 0); }
    64% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    80% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    82% { transform: translate(2px, -1px); clip-path: inset(70% 0 5% 0); }
    84% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
    overflow: hidden;
}

.scroll-indicator span {
    display: block;
    width: 100%;
    height: 30px;
    background: #fff;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: #0a0a0a;
    padding: 0;
    overflow: hidden;
}

.about-block {
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #1a1a1a;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-block.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-block:last-child {
    border-bottom: none;
}

/* Block 1: Intro with video background */
.about-intro-video {
    position: relative;
    min-height: 100vh;
    padding: 0;
    max-width: none;
    overflow: hidden;
}

.about-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-intro-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%) contrast(1.4);
}

.about-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.5) 20%, rgba(10, 10, 10, 0.35) 50%, rgba(10, 10, 10, 0.5) 80%, rgba(10, 10, 10, 1) 100%);
    z-index: 1;
}

.about-intro-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Eyebrow / label */
.about-eyebrow,
.about-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 2rem;
}

/* ==================== MARQUEE ==================== */
.about-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    background: #0a0a0a;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.marquee-item:nth-child(even) {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mega heading — biggest */
.about-mega {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 14vw, 14rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
}

.about-mega-sm {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 9vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

/* Big heading */
.about-big {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 7vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

/* Mid heading */
.about-mid {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #fff;
}

/* Stroke text — outlined */
.stroke-text {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
}

.about-block:hover .stroke-text {
    color: #fff;
    -webkit-text-stroke: 2px transparent;
}

/* Number accent */
.num-accent {
    color: #fff;
    position: relative;
    display: inline-block;
}

.num-accent.big-num {
    font-size: 1.3em;
    line-height: 0.8;
}

/* Italic accent — editorial serif */
.italic-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0;
    color: #fff;
    font-size: 0.85em;
}

/* Fill text — solid highlight */
.fill-text {
    color: #fff;
    background: linear-gradient(90deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Infected text — glitch/tech feel */
.infected-text {
    color: #fff;
    text-shadow:
        2px 0 #ff0040,
        -2px 0 #00fff2;
    animation: infectedGlitch 3s infinite;
}

@keyframes infectedGlitch {
    0%, 90%, 100% {
        text-shadow: 2px 0 #ff0040, -2px 0 #00fff2;
    }
    92% {
        text-shadow: -2px 0 #ff0040, 2px 0 #00fff2;
    }
    94% {
        text-shadow: 2px 2px #ff0040, -2px -2px #00fff2;
    }
    96% {
        text-shadow: -1px 1px #ff0040, 1px -1px #00fff2;
    }
}

/* Body text */
.about-body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
}

.about-body strong {
    color: #fff;
    font-weight: 600;
}

.brand-inline {
    font-family: 'Anton', sans-serif;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

/* ==================== EDUCATION GLITCH (inside career block) ==================== */
.about-education-block {
    position: relative;
    overflow: visible;
}

.education-glitch-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 4rem;
    margin-bottom: 1rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.education-glitch {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 22vw, 20rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -4px;
    color: #fff;
    position: relative;
    display: inline-block;
    user-select: none;
}

/* Glitch layers — positive z-index so they're visible */
.education-glitch::before,
.education-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.education-glitch::before {
    color: #ff0040;
    z-index: 1;
    animation: educationGlitchA 3s infinite steps(1);
}

.education-glitch::after {
    color: #00fff0;
    z-index: 2;
    animation: educationGlitchB 3s infinite steps(1);
}

@keyframes educationGlitchA {
    0%, 100%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    5%         { transform: translate(-4px, 2px); clip-path: inset(20% 0 40% 0); }
    10%        { transform: translate(3px, -2px); clip-path: inset(0 0 0 0); }
    15%        { transform: translate(-2px, 1px); clip-path: inset(60% 0 10% 0); }
    20%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    45%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    47%        { transform: translate(-6px, 0); clip-path: inset(30% 0 20% 0); }
    49%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    72%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    74%        { transform: translate(4px, -1px); clip-path: inset(10% 0 50% 0); }
    76%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes educationGlitchB {
    0%, 100%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    6%         { transform: translate(4px, -2px); clip-path: inset(40% 0 20% 0); }
    12%        { transform: translate(-3px, 2px); clip-path: inset(0 0 0 0); }
    18%        { transform: translate(2px, -1px); clip-path: inset(70% 0 5% 0); }
    22%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    48%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    50%        { transform: translate(6px, 1px); clip-path: inset(15% 0 35% 0); }
    52%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    75%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    77%        { transform: translate(-4px, 2px); clip-path: inset(50% 0 15% 0); }
    79%        { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

.education-cta {
    margin-top: 2.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .education-glitch-wrap {
        margin-top: 3rem;
    }

    .education-glitch {
        font-size: clamp(3rem, 18vw, 7rem);
        letter-spacing: -2px;
    }

    .education-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .education-glitch {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
}

/* Names list */
.about-names-list {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 4.5vw, 3.5rem);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.about-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-top: 1.5rem;
}

/* Infected description */
.infected-desc {
    margin-top: 2rem;
}

/* CTA Block */
.about-cta {
    align-items: center;
    text-align: center;
}

.about-cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 9rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.about-cta-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.btn-book,
.btn-call {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    border: 2px solid #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: inline-block;
}

.btn-book {
    background: #fff;
    color: #0a0a0a;
}

.btn-book:hover {
    background: transparent;
    color: #fff;
}

.btn-call {
    background: transparent;
    color: #fff;
}

.btn-call:hover {
    background: #fff;
    color: #0a0a0a;
}

/* Alternating block backgrounds */
.about-highlight {
    background: #111;
    padding-left: 3rem;
    padding-right: 3rem;
    align-items: center;
    text-align: center;
}

.about-names {
    background: #0d0d0d;
}

.about-news {
    background: #111;
    align-items: center;
    text-align: center;
}

.about-award {
    background: #0d0d0d;
    align-items: center;
    text-align: center;
}

.about-infected {
    background: #111;
    align-items: center;
    text-align: center;
}

.about-cta {
    background: #0a0a0a;
}

/* ==================== INFECTED VIDEO PARALLAX ==================== */
.infected-parallax {
    position: relative;
    width: calc(100% - 6rem);
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

/* Video background — fills the container */
.infected-parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.infected-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(115%) saturate(90%);
    will-change: transform;
}

/* Noise overlay — animated grain */
.video-noise {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noiseShift 0.3s steps(6) infinite;
}

@keyframes noiseShift {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-5%, 3%); }
    50%  { transform: translate(3%, -5%); }
    75%  { transform: translate(-3%, -3%); }
    100% { transform: translate(5%, 5%); }
}

/* Scanlines — CRT effect */
.video-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0px,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0.08) 3px,
        rgba(0, 0, 0, 0.08) 4px
    );
    opacity: 0.5;
}

/* Vignette — dark edges */
.video-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Card at bottom of video — gradient fade from video */
.infected-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
    padding: 4rem 3rem 2.5rem;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.85) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
    will-change: transform;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.infected-card .about-eyebrow {
    margin-bottom: 1.5rem;
}

.infected-card .infected-desc {
    margin-top: 1.5rem;
    max-width: none;
}

/* Parallax responsive */
@media (max-width: 768px) {
    .infected-parallax {
        width: calc(100% - 3rem);
        aspect-ratio: 4 / 3;
    }

    .infected-card {
        padding: 2rem 1.5rem;
    }
}

/* About responsive */
@media (max-width: 768px) {
    .about-block {
        padding: 5rem 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-book,
    .btn-call {
        width: 100%;
    }
}

/* ==================== WORK SECTION ==================== */
.work {
    background: #0a0a0a;
    padding: 0;
    overflow: hidden;
}

/* Work header */
.work-header {
    padding: 8rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.work-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
}

/* Collection wrapper — relative positioning for text/video overlap */
.work-collection {
    position: relative;
    padding: 4rem 3rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #1a1a1a;
}

/* Typography — absolute positioned, flows from left over the video */
.work-typography {
    position: relative;
    z-index: 2;
    width: 65%;
    padding: 2rem 0;
}

/* Square video container — shifted right, behind text */
.work-video-square {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.work-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: contrast(110%) saturate(95%);
}

/* Noise on work video */
.work-video-noise {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noiseShift 0.3s steps(6) infinite;
}

/* Gradient on left edge of video — fades into the black bg */
.work-video-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.9) 0%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.work-collection-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.work-collection-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 16vw, 16rem);
    line-height: 0.82;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.work-collection-title .italic-accent {
    font-size: 0.7em;
}

.work-collection-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
    margin: 0 0 2rem;
    letter-spacing: 0.5px;
}

.work-collection-desc strong {
    color: #fff;
    font-weight: 600;
}

/* CTA link */
.work-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease, gap 0.3s ease;
}

.work-cta:hover {
    border-color: #fff;
    gap: 1rem;
}

.work-cta .arrow {
    transition: transform 0.3s ease;
}

.work-cta:hover .arrow {
    transform: translateX(4px);
}

/* Infected hint — subtle teaser inside the same block */
.work-infected-hint {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.work-hint-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.6rem;
}

.work-hint-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.work-hint-text .infected-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Work responsive */
@media (max-width: 768px) {
    .work-header {
        padding: 5rem 1.5rem 3rem;
    }

    .work-collection {
        padding: 3rem 1.5rem 5rem;
    }

    .work-typography {
        width: 100%;
        padding: 1rem 0 2rem;
    }

    .work-video-square {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .work-video-gradient {
        width: 50%;
    }
}

/* ==================== SECTIONS ==================== */
.section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    background: #0a0a0a;
}

.section-dark {
    background: #111;
}

.section-inner {
    max-width: 800px;
    text-align: center;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ==================== FOOTER ==================== */

/* ==================== INSTAGRAM CAROUSEL ==================== */
.insta-section {
    background: #0a0a0a;
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

.insta-header {
    margin-bottom: 3rem;
}

.insta-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1rem;
}

.insta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.insta-follow-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.insta-feed {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
}

.insta-feed .elfsight-app-YOUR_WIDGET_ID {
    min-height: 300px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

/* Take a Seat CTA */
.footer-cta {
    text-align: center;
    padding: 8rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.footer-cta-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

/* Edge-to-edge MARINO LAMBRIX */
.footer-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 4rem);
    padding: 2rem 0;
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 18vw, 22rem);
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -4px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.footer-mega .stroke-text {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

/* Footer info grid */
.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem 4rem;
}

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

.footer-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1.2rem;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

/* Hours */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.footer-hours-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-hours-row .day {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-hours-row .status {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.footer-hours-row .status.closed {
    color: rgba(255, 70, 70, 0.5);
}

.footer-hours-row .status.open {
    color: rgba(100, 255, 130, 0.5);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    border-top: 1px solid #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
}

.footer-legal-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer responsive */
@media (max-width: 768px) {
    .footer-cta {
        padding: 5rem 1.5rem 4rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-cta-buttons .btn-book,
    .footer-cta-buttons .btn-call {
        width: 100%;
    }

    .footer-mega {
        font-size: clamp(2rem, 14vw, 6rem);
        gap: 1rem;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 4rem 1.5rem 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1.5rem 1.5rem;
    }
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 8rem 3rem 6rem;
}

/* Contact header */
.contact-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    text-align: center;
}

.contact-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact grid — form + info */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Form */
.contact-form-wrap {
    max-width: 600px;
}

/* Selected services from price list */
.form-selected-services {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-selected-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1rem;
}

.form-selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-selected-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

.form-selected-remove {
    background: none;
    border: none;
    color: #555;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.form-selected-remove:hover {
    color: #fff;
}

.form-selected-total {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Apple UX form — one seamless grouped container */
.contact-form {
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
}

.form-field {
    position: relative;
    background: transparent;
    transition: background 0.3s ease;
}

.form-field:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.form-field:focus-within {
    background: rgba(255, 255, 255, 0.03);
}

.form-field:focus-within::after {
    opacity: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.6rem 1.5rem 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    resize: none;
    border-bottom: none;
}

.form-field textarea {
    padding-top: 1.8rem;
    min-height: 100px;
}

.form-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-field select option {
    background: #1a1a1a;
    color: #fff;
}

.form-field label {
    position: absolute;
    top: 1.1rem;
    left: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label {
    top: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Select arrow */
.form-field select + label::after {
    content: '';
}

.form-field:has(select)::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

/* Submit button */
.form-submit {
    margin-top: 2.5rem;
    padding: 1.2rem 2rem;
    background: #fff;
    color: #0a0a0a;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-submit:hover {
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit .arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .arrow {
    transform: translateX(4px);
}

/* Form status */
.form-status {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    min-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-status.success {
    color: rgba(100, 255, 130, 0.8);
}

.form-status.error {
    color: rgba(255, 100, 100, 0.8);
}

/* Info sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-block {
    padding-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1rem;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.contact-info-hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.contact-info-hours span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info-hours strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

/* WhatsApp button in sidebar */
.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 14px;
    color: #25d366;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-whatsapp svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-whatsapp small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
}

.contact-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* Contact page responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 6rem 1.5rem 4rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

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

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-inner {
        padding: 1rem 1.5rem;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .menu-footer {
        padding: 0 1.5rem;
        font-size: 0.65rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

/* ==================== ABOUT PAGE ==================== */
.about-page-hero,
.about-page-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem;
}

.about-page-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Alternating backgrounds — B&W play */
.about-page-hero {
    position: relative;
    background: #0a0a0a;
    min-height: 100vh;
    overflow: hidden;
}

/* Hero video background */
.about-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.about-hero-noise {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: heroNoiseShift 0.3s steps(6) infinite;
}

.about-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-content .about-page-mega {
    color: #fff;
}

.about-page-dark {
    background: #0a0a0a;
}

/* Parallax background section */
.about-parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.about-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    will-change: transform;
}

.parallax-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.parallax-slide.active {
    opacity: 1;
}

.about-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.about-parallax-content {
    position: relative;
    z-index: 2;
}

.about-page-light {
    background: #f5f5f5;
}

/* Salon background section */
.about-salon-bg {
    position: relative;
    background-image: url('../images/salon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-salon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.45));
}

.about-salon-content {
    position: relative;
    z-index: 1;
}

/* Typography on light backgrounds */
.about-page-hero .about-eyebrow-dark,
.about-eyebrow-dark {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2rem;
}

.about-page-mega {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 14vw, 14rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #0a0a0a;
}

.about-page-mega-sm {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 10rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 2rem;
}

.stroke-text-dark {
    -webkit-text-stroke: 2px #0a0a0a;
    color: transparent;
}

.about-page-big {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 9vw, 9rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

.about-page-big-dark {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 9vw, 9rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.about-page-body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin-top: 2rem;
}

.about-page-body strong {
    color: #fff;
    font-weight: 600;
}

.about-page-body-dark {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.7;
    font-weight: 300;
    color: rgba(10, 10, 10, 0.6);
    max-width: 700px;
}

.about-page-body-dark strong {
    color: #0a0a0a;
    font-weight: 600;
}

.about-page-text-wide {
    max-width: 900px;
}

.brand-inline-dark {
    font-weight: 600;
    color: #0a0a0a;
}

/* ==================== EDUCATION SECTION ==================== */
.about-education {
    padding: 10rem 3rem;
}

.about-edu-intro {
    margin-bottom: 5rem;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #1a1a1a;
}

.edu-card {
    background: #0d0d0d;
    padding: 3.5rem 3rem;
    transition: background 0.4s ease;
}

.edu-card:hover {
    background: #111;
}

.edu-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 1.5rem;
}

.edu-card-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.edu-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.edu-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, gap 0.3s ease;
}

.edu-card-cta:hover {
    border-color: #fff;
    gap: 1rem;
}

.edu-card-cta .arrow {
    transition: transform 0.3s ease;
}

.edu-card-cta:hover .arrow {
    transform: translateX(4px);
}

/* ==================== EVENTS / SHOWS ==================== */
.about-events {
    padding: 10rem 3rem;
}

.about-events-sub {
    margin-bottom: 5rem;
    margin-top: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-video-card {
    background: #0a0a0a;
    overflow: hidden;
}

.event-video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.event-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%) contrast(110%);
}

.event-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    z-index: 1;
    pointer-events: none;
}

.event-video-noise {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noiseShift 0.3s steps(6) infinite;
}

.event-info {
    padding: 2.5rem 2.5rem 3rem;
}

.event-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1rem;
}

.event-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1rem;
}

.event-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== ABOUT PAGE CTA ==================== */
.about-page-cta {
    text-align: center;
    padding: 10rem 3rem;
}

.about-page-cta .about-page-mega-sm {
    margin-bottom: 1.5rem;
}

.about-cta-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto 3rem;
    max-width: 500px;
}

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

/* ==================== ABOUT PAGE RESPONSIVE ==================== */

/* Premium scroll reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(15px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1s cubic-bezier(0.23, 1, 0.32, 1),
                filter 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-reveal-delay="1"] {
    transition-delay: 0.15s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.3s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.45s;
}

@media (max-width: 768px) {
    .about-page-hero,
    .about-page-section {
        padding: 5rem 1.5rem;
    }

    .about-education,
    .about-events,
    .about-page-cta {
        padding: 5rem 1.5rem;
    }

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

    .edu-card {
        padding: 2.5rem 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-info {
        padding: 2rem 1.5rem 2.5rem;
    }

    .about-page-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about-page-cta-buttons .btn-book,
    .about-page-cta-buttons .btn-call {
        width: 100%;
    }
}

/* ==================== PRICE LIST PAGE ==================== */
.prices-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 8rem 3rem 6rem;
}

/* Header */
.prices-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.prices-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.prices-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Filter buttons */
.prices-filter {
    display: flex;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid #1a1a1a;
}

.filter-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -1px;
}

.filter-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.filter-btn.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Price cards grid */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: rgba(255, 140, 50, 0.3);
    transform: translateY(-4px);
}

.price-card.selected {
    border-color: rgba(255, 140, 50, 0.4);
    background: rgba(255, 140, 50, 0.03);
}

.price-card-header {
    margin-bottom: 1rem;
}

.price-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
}

.price-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #1a1a1a;
    padding-top: 1.5rem;
}

.price-amount {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.price-amount small {
    font-size: 0.9rem;
    color: #666;
}

.price-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-select:hover {
    border-color: #fff;
    color: #fff;
}

.price-select.selected {
    background: #ff8c32;
    border-color: #ff8c32;
    color: #0a0a0a;
}

/* Selection summary bar */
.price-summary {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 998;
    transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.price-summary.active {
    bottom: 0;
}

.price-summary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    gap: 2rem;
}

.price-summary-info {
    flex-grow: 1;
}

.price-summary-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.3rem;
}

.price-summary-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.price-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.summary-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
}

.summary-remove {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.summary-remove:hover {
    color: #fff;
}

.price-summary-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.price-summary-total {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.price-summary-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.price-summary-book:hover {
    gap: 1rem;
}

.price-summary-book .arrow {
    transition: transform 0.3s ease;
}

.price-summary-book:hover .arrow {
    transform: translateX(4px);
}

/* Note */
.prices-note {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid #1a1a1a;
}

.prices-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.7;
    font-weight: 300;
    color: #444;
}

/* Price page responsive */
@media (max-width: 1024px) {
    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prices-page {
        padding: 6rem 1.5rem 4rem;
    }

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

    .filter-btn {
        padding: 0.8rem 1rem;
        font-size: 0.7rem;
    }

    .price-summary-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .price-summary-actions {
        justify-content: space-between;
        width: 100%;
    }

    .price-summary-book {
        flex: 1;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 6rem;
    }
}

/* ==================== BOOKING PAGE ==================== */
.booking-page {
    min-height: 100vh;
    background: #fff;
    padding: 8rem 3rem 6rem;
}

.booking-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.booking-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.booking-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

/* Widget container */
.booking-widget-wrap {
    max-width: 1100px;
    margin: 0 auto 5rem;
    position: relative;
}

/* Booking instructions */
.booking-instructions {
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.booking-instructions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.booking-instruction-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.booking-instruction-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.booking-instruction-highlight {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
}

.booking-instruction-highlight:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.booking-instruction-num {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.15);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.booking-instruction-highlight .booking-instruction-num {
    color: rgba(0, 0, 0, 0.3);
}

.booking-instruction-title {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: #0a0a0a;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.booking-instruction-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 0.8rem;
}

.booking-instruction-warning {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    line-height: 1.5;
    font-weight: 500;
    color: #0a0a0a;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-instruction-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-instruction-link:hover {
    color: #555;
}

/* Booking instructions responsive */
@media (max-width: 1024px) {
    .booking-instructions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .booking-instructions-grid {
        grid-template-columns: 1fr;
    }
}

.booking-widget-accent {
    width: 60px;
    height: 3px;
    background: #0a0a0a;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.booking-widget-frame {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-widget-frame iframe {
    display: block;
    width: 100% !important;
    min-height: 720px;
    border: none;
    border-radius: 12px;
    background: #fff;
}

/* Info below widget */
.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-info-block {
    text-align: center;
}

.booking-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.booking-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
}

.booking-info-text a {
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.booking-info-text a:hover {
    color: #0a0a0a;
}

.booking-info-text strong {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 0.3rem;
}

/* Booking page responsive */
@media (max-width: 1024px) {
    .booking-widget-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .booking-page {
        padding: 6rem 1.5rem 4rem;
    }

    .booking-widget-wrap {
        margin: 0 auto 3rem;
    }

    .booking-widget-frame {
        padding: 1rem;
        border-radius: 16px;
    }

    .booking-widget-frame iframe {
        min-height: 620px;
        border-radius: 8px;
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner-visible {
    transform: translateY(0);
}

.cookie-banner-hidden {
    transform: translateY(100%);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #fff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-essential:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cookie-btn-accept {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* Cookie manage button */
.cookie-manage-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s ease;
}

.cookie-manage-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Cookie banner responsive */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-btn {
        text-align: center;
        padding: 0.8rem;
    }
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    min-height: 100vh;
    background: #fff;
    padding: 8rem 3rem 6rem;
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.legal-updated {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: #888;
}

.legal-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: #0a0a0a;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.legal-content ul li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.3);
}

.legal-content a {
    color: #0a0a0a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #555;
}

.legal-content strong {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
}

.legal-content code {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1.5rem 4rem;
    }
}

/* ==================== NEWSLETTER MODAL ==================== */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-modal-active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.newsletter-modal-box {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 480px;
    width: 90%;
    padding: 3.5rem 3rem;
    text-align: center;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.newsletter-modal-active .newsletter-modal-box {
    transform: scale(1);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.newsletter-close:hover {
    color: #fff;
}

.newsletter-modal-content .about-eyebrow {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.newsletter-modal-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.newsletter-modal-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit {
    padding: 1rem 1.5rem;
    background: #fff;
    color: #0a0a0a;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: rgba(255, 255, 255, 0.85);
}

.newsletter-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-modal-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.newsletter-modal-note a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.newsletter-success {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    padding: 2rem 0;
}

/* Newsletter modal responsive */
@media (max-width: 768px) {
    .newsletter-modal-box {
        padding: 3rem 1.5rem;
    }
}

/* ==================== WORK GALLERY ==================== */
.work-body {
    overflow: hidden;
}

.work-gallery {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.work-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.7s ease;
    pointer-events: none;
}

.work-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.work-slide.exit-left {
    opacity: 0;
    transform: translateX(-100%);
}

.work-slide.exit-right {
    opacity: 0;
    transform: translateX(100%);
}

.work-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.work-slide-video,
.work-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.6) 100%);
}

.work-slide-overlay-dark {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.work-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
}

.work-slide-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.work-slide-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 14vw, 10rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.work-slide-title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0;
}

.work-slide-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.work-slide-desc strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.work-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-slide-cta:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

.work-slide-cta .arrow {
    transition: transform 0.3s ease;
}

.work-slide-cta:hover .arrow {
    transform: translateX(4px);
}

/* ==================== PER-SERIES TYPOGRAPHY ==================== */

/* Chrome Nomads — Anton + Playfair italic (default, already styled) */
.work-typo-chrome .work-slide-title {
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

/* Infected — Bebas Neue + glitch effect */
.work-typo-infected .work-slide-title-infected {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 16vw, 12rem);
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7);
    animation: infectedGlitch 3s infinite steps(1);
}

.work-slide-title-glitch {
    display: inline-block;
    animation: infectedFlicker 4s infinite;
}

.work-slide-label-infected {
    color: rgba(255, 0, 64, 0.6);
    letter-spacing: 6px;
}

.work-slide-desc-infected {
    color: rgba(255, 255, 255, 0.4);
}

.work-slide-cta-infected {
    border-color: rgba(255, 0, 64, 0.4);
    color: rgba(255, 255, 255, 0.8);
}

.work-slide-cta-infected:hover {
    background: rgba(255, 0, 64, 0.8);
    color: #fff;
    border-color: rgba(255, 0, 64, 0.8);
}

@keyframes infectedGlitch {
    0%, 100% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
    10% { text-shadow: -3px 0 rgba(255, 0, 64, 0.7), 3px 0 rgba(0, 255, 255, 0.7); }
    12% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
    30% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
    32% { text-shadow: -4px 1px rgba(255, 0, 64, 0.7), 4px -1px rgba(0, 255, 255, 0.7); }
    34% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
    60% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
    62% { text-shadow: 3px -2px rgba(255, 0, 64, 0.7), -3px 2px rgba(0, 255, 255, 0.7); }
    64% { text-shadow: 2px 0 rgba(255, 0, 64, 0.7), -2px 0 rgba(0, 255, 255, 0.7); }
}

@keyframes infectedFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 1; }
    51% { opacity: 0.3; }
    52% { opacity: 1; }
    53% { opacity: 0.5; }
    54% { opacity: 1; }
}

/* Kuro Wave — Anton + Playfair italic with blue ink aesthetic */
.work-slide-overlay-blue {
    background: linear-gradient(135deg, rgba(5, 10, 25, 0.8) 0%, rgba(10, 20, 40, 0.4) 50%, rgba(5, 10, 25, 0.7) 100%);
}

.work-typo-kuro .work-slide-title-kuro {
    text-shadow: 0 4px 40px rgba(100, 150, 255, 0.15);
}

.work-slide-title-wave {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0;
    color: rgba(150, 180, 255, 0.9);
}

.work-slide-label-kuro {
    color: rgba(150, 180, 255, 0.5);
    letter-spacing: 6px;
}

.work-slide-desc-kuro {
    color: rgba(200, 220, 255, 0.5);
}

.work-slide-cta-kuro {
    border-color: rgba(150, 180, 255, 0.3);
    color: rgba(200, 220, 255, 0.8);
}

.work-slide-cta-kuro:hover {
    background: rgba(150, 180, 255, 0.9);
    color: #050a19;
    border-color: rgba(150, 180, 255, 0.9);
}

/* The Tube — Anton with outline text, industrial aesthetic */
.work-typo-tube .work-slide-title-tube {
    line-height: 0.85;
}

.work-slide-title-outline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 14vw, 10rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
    text-stroke: 2px rgba(255, 255, 255, 0.8);
}

.work-slide-label-tube {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 5px;
}

.work-slide-desc-tube {
    color: rgba(255, 255, 255, 0.45);
}

.work-slide-cta-tube {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
}

.work-slide-cta-tube:hover {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

/* ==================== SLIDE NAVIGATION ==================== */
.work-nav {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 100;
}

.work-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.work-nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.work-nav-btn svg {
    width: 20px;
    height: 20px;
}

.work-nav-dots {
    display: flex;
    gap: 0.75rem;
}

.work-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.work-nav-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ==================== SERIES MODAL GALLERY ==================== */
.series-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.series-modal-active {
    opacity: 1;
    visibility: visible;
}

.series-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.series-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-modal-image-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-modal-image,
.series-modal-video {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.series-modal-video {
    display: none;
}

.series-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.series-modal-close:hover {
    color: #fff;
}

.series-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.series-modal-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.series-modal-nav svg {
    width: 24px;
    height: 24px;
}

.series-modal-prev {
    left: 1.5rem;
}

.series-modal-next {
    right: 1.5rem;
}

.series-modal-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 10;
}

/* Work gallery responsive */
@media (max-width: 768px) {
    .work-slide-content {
        max-width: 90%;
    }

    .work-nav {
        bottom: 1.5rem;
        gap: 1rem;
    }

    .work-nav-btn {
        width: 38px;
        height: 38px;
    }

    .series-modal-nav {
        width: 40px;
        height: 40px;
    }

    .series-modal-prev {
        left: 0.5rem;
    }

    .series-modal-next {
        right: 0.5rem;
    }

    .series-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* ==================== MOBILE OPTIMIZATION ==================== */

/* Tablet & small desktop */
@media (max-width: 1024px) {
    .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Mobile — primary breakpoint */
@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: clamp(2.5rem, 14vw, 5rem);
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 0.7rem;
        letter-spacing: 4px;
        margin-top: 1.5rem;
    }

    .hero-logo-glitch {
        width: 80px;
        height: 80px;
        margin-top: 1.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    /* Marquee */
    .marquee-item {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .marquee-track {
        gap: 2rem;
    }

    /* About intro video */
    .about-intro-content {
        padding: 6rem 1.5rem;
        min-height: 80vh;
    }

    .about-mega {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .about-mega-sm {
        font-size: clamp(2rem, 9vw, 4rem);
    }

    .about-big {
        font-size: clamp(1.8rem, 8vw, 3.5rem);
    }

    .about-mid {
        font-size: clamp(1.5rem, 7vw, 3rem);
    }

    .about-body {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Menu overlay */
    .menu-link {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 1px;
    }

    .menu-list li {
        margin: 0.15rem 0;
    }

    .menu-footer {
        padding: 0 1.5rem;
        font-size: 0.6rem;
        letter-spacing: 2px;
        bottom: 1.5rem;
    }

    /* Work gallery slides */
    .work-slide-content {
        max-width: 90%;
        padding: 0 1.5rem;
    }

    .work-slide-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .work-slide-desc {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .work-slide-cta {
        padding: 0.8rem 2rem;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .work-nav {
        bottom: 1.5rem;
    }

    /* Instagram section */
    .insta-section {
        padding: 4rem 1rem 3rem;
    }

    .insta-title {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }

    .insta-follow-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.65rem;
    }

    /* Footer */
    .footer-cta-title {
        font-size: clamp(2.5rem, 14vw, 6rem);
    }

    .footer-mega {
        font-size: clamp(1.8rem, 12vw, 4rem);
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }

    /* Contact form */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    /* Cookie banner */
    .cookie-banner {
        padding: 1rem 1rem;
    }

    .cookie-banner-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* Newsletter modal */
    .newsletter-modal-box {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
    }

    /* Disable hover effects that cause issues on touch */
    .hero-title:hover .letter {
        filter: none;
        opacity: 1;
        transform: none;
    }

    .hero-title:hover .letter:nth-child(odd),
    .hero-title:hover .letter:nth-child(even) {
        transform: none;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .nav-inner {
        padding: 0.8rem 1rem;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(2rem, 16vw, 3.5rem);
    }

    .hero-sub {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .hero-logo-glitch {
        width: 64px;
        height: 64px;
    }

    .marquee-item {
        font-size: 1.5rem;
    }

    .marquee-track {
        gap: 1.5rem;
    }

    .about-block {
        padding: 4rem 1rem;
    }

    .about-intro-content {
        padding: 5rem 1rem;
    }

    .menu-link {
        font-size: 2rem;
    }

    .menu-footer {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .work-slide-title {
        font-size: 2.2rem;
    }

    .work-slide-desc {
        font-size: 0.8rem;
    }

    .work-slide-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.65rem;
    }

    .work-nav-btn {
        width: 34px;
        height: 34px;
    }

    .insta-section {
        padding: 3rem 0.5rem 2rem;
    }

    .footer-cta {
        padding: 4rem 1rem 3rem;
    }

    .footer-cta-title {
        font-size: 2.5rem;
    }

    .footer-mega {
        font-size: 1.8rem;
    }

    .footer-bottom {
        padding: 1rem 1rem;
        font-size: 0.65rem;
    }

    .whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Prevent text size adjust on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling on touch devices */
@media (hover: none) {
    .work-slide-cta:hover {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .insta-follow-btn:hover {
        border-color: rgba(255, 255, 255, 0.2);
        background: transparent;
    }
}

/* ==================== PAGE TRANSITION ==================== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.page-transition.pt-active {
    opacity: 1;
    visibility: visible;
}

.pt-glitch {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 10vw, 8rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    position: relative;
    display: inline-block;
    user-select: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}

.page-transition.pt-active .pt-glitch {
    opacity: 1;
    transform: scale(1);
}

.pt-glitch::before,
.pt-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.pt-glitch::before {
    color: #ff0040;
    z-index: 1;
}

.pt-glitch::after {
    color: #00fff0;
    z-index: 2;
}

.pt-glitch.pt-glitching::before {
    animation: ptGlitchA 0.6s steps(1) forwards;
}

.pt-glitch.pt-glitching::after {
    animation: ptGlitchB 0.6s steps(1) forwards;
}

@keyframes ptGlitchA {
    0%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    10%  { transform: translate(-6px, 2px); clip-path: inset(20% 0 40% 0); }
    20%  { transform: translate(4px, -3px); clip-path: inset(50% 0 10% 0); }
    30%  { transform: translate(-3px, 1px); clip-path: inset(10% 0 60% 0); }
    40%  { transform: translate(5px, -2px); clip-path: inset(70% 0 5% 0); }
    50%  { transform: translate(-4px, 3px); clip-path: inset(30% 0 30% 0); }
    60%  { transform: translate(3px, -1px); clip-path: inset(60% 0 15% 0); }
    70%  { transform: translate(-2px, 2px); clip-path: inset(15% 0 50% 0); }
    80%  { transform: translate(4px, -2px); clip-path: inset(40% 0 20% 0); }
    90%  { transform: translate(-3px, 1px); clip-path: inset(5% 0 70% 0); }
    100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

@keyframes ptGlitchB {
    0%   { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
    10%  { transform: translate(5px, -2px); clip-path: inset(40% 0 20% 0); }
    20%  { transform: translate(-4px, 3px); clip-path: inset(10% 0 55% 0); }
    30%  { transform: translate(3px, -1px); clip-path: inset(65% 0 8% 0); }
    40%  { transform: translate(-5px, 2px); clip-path: inset(25% 0 35% 0); }
    50%  { transform: translate(4px, -3px); clip-path: inset(50% 0 12% 0); }
    60%  { transform: translate(-3px, 1px); clip-path: inset(8% 0 65% 0); }
    70%  { transform: translate(2px, -2px); clip-path: inset(45% 0 18% 0); }
    80%  { transform: translate(-4px, 2px); clip-path: inset(20% 0 45% 0); }
    90%  { transform: translate(3px, -1px); clip-path: inset(55% 0 10% 0); }
    100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

/* ==================== HERO SPLIT LAYOUT ==================== */
.hero-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    width: 100%;
    height: 100%;
    gap: 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-right {
    flex: 0 0 auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: flex-end;
    padding-bottom: 4rem;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .hero-content-split {
        flex-direction: column;
        justify-content: center;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .hero-right {
        text-align: center;
        align-self: center;
        padding-bottom: 0;
    }
}

/* ==================== HOME CTA TOP ==================== */
.home-cta-top {
    background: #0a0a0a;
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.home-cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
}

.home-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.home-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .home-cta-top {
        padding: 4rem 1.5rem;
    }
}

/* ==================== MEET MARINO BLOCK ==================== */
.about-meet-block {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

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

.about-meet-text {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-meet-text .about-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.about-body-emphasis {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.15rem !important;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .about-meet-block {
        padding: 5rem 1.5rem;
    }

    .about-meet-text .about-body {
        font-size: 1rem;
    }
}

/* ==================== ONESHOTAWARDS BLOCK ==================== */
.about-oneshot {
    text-align: center;
    padding: 6rem 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-oneshot .about-mid {
    font-size: clamp(1.5rem, 5vw, 3rem);
}

/* ==================== EDUCATION PAGE ==================== */
.edu-page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.edu-page-hero-inner {
    max-width: 800px;
}

.edu-page-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    line-height: 0.9;
    margin: 1rem 0;
}

.edu-page-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.edu-page-section {
    padding: 6rem 2rem;
}

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

.edu-why {
    background: #0a0a0a;
}

.edu-why-text {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edu-why-para {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.edu-why-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

.edu-courses {
    background: #f5f5f5;
    color: #0a0a0a;
}

.edu-courses-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #0a0a0a;
    line-height: 0.9;
    margin: 1rem 0 3rem;
}

.edu-courses .stroke-text {
    -webkit-text-stroke: 2px #0a0a0a;
    color: transparent;
}

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

.edu-course-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.edu-course-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.3);
}

.edu-course-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #0a0a0a;
    line-height: 1.1;
}

.edu-course-title .italic-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.5);
}

.edu-course-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
}

.edu-course-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.edu-course-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    padding-left: 1.2rem;
    position: relative;
}

.edu-course-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.3);
}

.edu-course-cta {
    display: inline-block;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0a0a;
    text-decoration: none;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.edu-course-cta:hover {
    opacity: 0.5;
}

.edu-ghc {
    background: #0a0a0a;
    text-align: center;
}

.edu-ghc-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 0.9;
    margin: 1rem 0;
}

.edu-ghc-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.edu-ghc-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.edu-ghc-link:hover {
    background: #fff;
    color: #0a0a0a;
}

.edu-page-cta {
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.edu-page-title-sm {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.edu-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.edu-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .edu-page-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 50vh;
    }

    .edu-page-section {
        padding: 4rem 1.5rem;
    }

    .edu-courses-grid {
        grid-template-columns: 1fr;
    }

    .edu-why-para {
        font-size: 1rem;
    }

    .edu-why-quote {
        font-size: 1.1rem;
    }
}

/* ==================== CONTACT TWO-COL ==================== */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.contact-dept {
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-dept-salon {
    background: rgba(255, 255, 255, 0.02);
}

.contact-dept-academy {
    background: rgba(255, 255, 255, 0.04);
}

.contact-dept-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.contact-dept-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.contact-dept-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.contact-dept-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.contact-dept-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.contact-dept-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-dept-info a:hover {
    opacity: 0.6;
}

/* Contact form inside two-col */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff60' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form .form-group select option {
    background: #0a0a0a;
    color: #fff;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form-submit {
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-form-submit:hover {
    background: #fff;
    color: #0a0a0a;
}

.contact-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form-success {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #4ade80;
    padding: 0.75rem 0;
    text-align: center;
}

.contact-form-error {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #f87171;
    padding: 0.25rem 0;
    text-align: center;
    min-height: 1.2em;
}

.contact-form-alt {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    text-align: center;
}

.contact-form-alt a {
    color: #fff;
    text-decoration: none;
}

.contact-form-alt a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .contact-two-col {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .contact-dept {
        padding: 2rem 1.5rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        font-size: 16px;
    }
}

/* ==================== TEAM GRID ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

.team-card-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.team-card-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.team-card-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.about-team-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.about-team-note a {
    color: #0a0a0a;
    text-decoration: underline;
}

/* ==================== PRICES CTA ==================== */
.prices-cta {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.prices-cta-or {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.5rem;
}

.prices-cta-or a {
    color: #fff;
    text-decoration: none;
}

/* ==================== PRICE SECTIONS ==================== */
.price-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.price-section-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.price-section-label {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1;
}

.price-section-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 2rem;
}

.price-row-info {
    flex: 1;
}

.price-row-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-row-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.price-row-prices {
    flex: 0 0 auto;
    text-align: right;
}

.price-row-single {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.price-row-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.price-tier {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    justify-content: flex-end;
}

.price-tier-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-tier-amount {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: -0.5px;
    min-width: 3.5rem;
    text-align: right;
}

.prices-discount {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.prices-discount p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.prices-discount strong {
    color: #fff;
}

@media (max-width: 768px) {
    .price-section {
        padding: 0 1.5rem;
    }

    .price-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .price-row-prices {
        text-align: left;
        width: 100%;
    }

    .price-tier {
        justify-content: flex-start;
    }

    .price-row-single {
        font-size: 1.3rem;
    }
}

/* ==================== 404 REBELS SLIDE ==================== */
.work-slide-rebels .work-slide-title-rebels {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    line-height: 0.9;
}

.work-slide-title-rebels .work-slide-title-glitch {
    color: #ff0040;
    text-shadow: 3px 0 #00fff0;
}

.work-slide-award-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.award-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.award-badge-rank {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== HIDE WHATSAPP FLOAT ==================== */
.whatsapp-float {
    display: none !important;
}

/* ==================== NEWSLETTER TABS ==================== */
.newsletter-tabs {
    display: flex;
    gap: 0;
    margin: 1.5rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.7);
}
