/* ========================================
   HIVING FOOD — Creative Agency Style
   Inspired by agencesolide + beastly-agency
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --accent: #c8ff00;
    --gray: #666;
    --gray-light: #999;
    --gray-dark: #1a1a1a;
    --font: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --gap: 4px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---- Keyboard focus indicators ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* ========================================
   EASTER EGG — FOOD RUNNER 3D
   ======================================== */
.game-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.game-overlay.open { display: flex; }
.game-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.game-close:hover { color: #fff; }

/* Character Select */
.game-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.game-chars {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.game-char {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
}
.game-char:hover {
    border-color: var(--accent);
    background: rgba(200,230,100,0.08);
    transform: translateY(-4px);
}
.game-char span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.game-char:hover span { color: var(--accent); }
.game-char-preview {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
}
.game-char-preview canvas { width: 100% !important; height: 100% !important; }

/* Game screen */
.game-screen {
    width: 100%;
    height: 100%;
    position: relative;
}
.game-hud {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
    pointer-events: none;
}
.game-score, .game-highscore {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.game-score span, .game-highscore span {
    color: var(--accent);
    font-size: 1.4rem;
    margin-left: 6px;
}
.game-instructions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    pointer-events: none;
}
#gameContainer { width: 100%; height: 100%; }
#gameContainer canvas { width: 100% !important; height: 100% !important; outline: none; }

/* Game Over */
.game-over-msg {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    pointer-events: none;
}
.game-title {
    font-family: var(--sans);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #fff;
}
.game-sub {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
}
.game-sub-small {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

/* ========================================
   SPLIT TEXT REVEAL
   ======================================== */
.split-heading { overflow: hidden; }
.split-heading .char {
    display: inline-block;
    will-change: transform, opacity;
}
.split-heading .char-space {
    display: inline-block;
    width: 0.3em;
}
.split-heading em .char {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

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


/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--ease-out);
}
.preloader.done { transform: translateY(-100%); }

.preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-logo {
    width: auto;
    height: auto;
    max-width: min(220px, 50vw);
    max-height: 60px;
    object-fit: contain;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s;
}
.header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 40px; right: 40px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    transition: opacity 0.5s;
    opacity: 0;
}
.header.scrolled::after { opacity: 1; }
.header.scrolled {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 40px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-logo-food {
    height: 22px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.header-nav a:hover { color: var(--white); }
.nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(200,255,0,0.3);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: #000;
}
.hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    opacity: 0;
    animation: video-fade-in 2s 0.5s forwards;
}
@keyframes video-fade-in { to { opacity: 0.45; } }

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.6) 12%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.9) 85%, #000 100%),
        radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}
.hero-bg.no-video {
    background: #000;
}
.hero-bg.no-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(200,255,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(0,180,120,0.06) 0%, transparent 50%),
        linear-gradient(160deg, #0a1520 0%, #000 40%, #0a0f00 100%);
    animation: bg-breathe 6s ease-in-out infinite;
}
@keyframes bg-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.hero-bg.no-video .hero-gradient {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%),
        linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo-mark {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-up 1s 1.2s forwards;
}
.hero-logo-mark em {
    font-style: italic;
    color: var(--accent);
}
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title .line {
    overflow: hidden;
    display: block;
}
.hero-title .word {
    display: block;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    transform: translateY(110%);
    animation: text-reveal 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: 0.8s; }
.hero-title .line:nth-child(2) .word { animation-delay: 1.0s; }
.hero-title .line:nth-child(3) .word { animation-delay: 1.2s; }

/* Skip preloader → instant reveal */
body.skip-preloader .hero-title .word { animation-delay: 0.05s !important; animation-duration: 0.5s; }
body.skip-preloader .hero-title .line:nth-child(2) .word { animation-delay: 0.15s !important; }
body.skip-preloader .hero-title .line:nth-child(3) .word { animation-delay: 0.25s !important; }
body.skip-preloader .hero-tagline { animation-delay: 0.35s !important; animation-duration: 0.5s; }
body.skip-preloader .hero-cta { animation-delay: 0.45s !important; animation-duration: 0.5s; }
.hero-title .word.accent { color: var(--accent); }

@keyframes text-reveal { to { transform: translateY(0); } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 28px;
    opacity: 0;
    animation: fade-up 0.8s 1.4s forwards;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.hero-cta {
    margin-top: 48px;
    opacity: 0;
    animation: fade-up 0.8s 1.6s forwards;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-outline {
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-pill {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.btn-pill:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: scale(1.05);
}
.btn-accent {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    font-weight: 700;
}
.btn-accent:hover {
    background: var(--white);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fade-up 0.8s 3.5s forwards;
}
.scroll-line {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee-track span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
}
.marquee-track .dot {
    color: var(--accent);
    font-size: 0.6rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SECTION LABEL
   ======================================== */
.section-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ========================================
   ABOUT
   ======================================== */
.about { padding: 80px 60px; }

.about-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 50px;
    max-width: 900px;
}
.about-title > .reveal-up { display: block; }
.about-title > .char-space { display: none; }
.about-title em { color: var(--accent); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-visual {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}
.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}
.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
}
.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    vertical-align: super;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-top: 8px;
}

/* ========================================
   VIDEO COLLABS MARQUEE
   ======================================== */
.video-marquee {
    overflow: hidden;
    padding: 40px 0;
}
.video-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: videoMarquee 40s linear infinite;
}
.video-marquee-item {
    width: 220px;
    height: 390px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.video-marquee-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes videoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ========================================
   SERVICES
   ======================================== */
/* ========================================
   IMPACT NUMBERS
   ======================================== */
.impact {
    padding: 60px 60px;
    background: var(--gray-dark);
}
.impact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    text-align: center;
}
.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.impact-sep {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.impact-num {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
}
.impact-plus {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.impact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
    margin-top: 12px;
    font-weight: 600;
}

/* ========================================
   SERVICES
   ======================================== */
.services { padding: 80px 60px; }

.services-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 60px;
}
.services-title em { color: var(--accent); }

.services-list {
    border-top: 1px solid rgba(255,255,255,0.12);
}
.service-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}
.service-row:hover {
    padding-left: 20px;
}
.service-row:hover .service-arrow {
    transform: translate(4px, -4px);
    color: var(--accent);
}
.service-row:hover .service-name {
    color: var(--accent);
}
.service-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    min-width: 30px;
}
.service-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.4s;
}
.service-desc {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 300px;
    text-align: right;
}
.service-arrow {
    font-size: 1.5rem;
    transition: all 0.4s;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 80px 60px;
    background: var(--gray-dark);
}
.process-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 50px;
}
.process-title em { color: var(--accent); }

/* Stepper track */
.process-stepper { margin-bottom: 50px; }
.process-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    height: 50px;
}
.process-track-bg {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    transform: translateY(-50%);
}
.process-track-fill {
    position: absolute;
    top: 50%;
    left: 25px;
    height: 2px;
    width: 0%;
    background: var(--accent);
    transform: translateY(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(200,255,0,0.3);
}
.process-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s;
}
.process-node span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    transition: color 0.4s;
}
.process-node.reached {
    border-color: var(--accent);
    background: rgba(200,255,0,0.06);
}
.process-node.reached span { color: var(--accent); }
.process-node.active {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 20px rgba(200,255,0,0.35);
}
.process-node.active span { color: var(--bg); font-weight: 800; }
.process-node:hover:not(.active) {
    border-color: var(--accent);
    background: rgba(200,255,0,0.08);
}
.process-node:hover:not(.active) span { color: var(--accent); }

/* Labels under track */
.process-labels {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 14px auto 0;
}
.process-label {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: color 0.4s;
    width: 50px;
    text-align: center;
}
.process-label.reached { color: var(--gray-light); }
.process-label.active { color: var(--accent); }
.process-label:hover { color: var(--white); }

/* Content cards */
.process-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 160px;
}
.process-card {
    position: absolute;
    inset: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}
.process-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.process-card-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    opacity: 0.6;
}
.process-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.process-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* ========================================
   TALENTS
   ======================================== */
.talents { padding: 80px 60px; }

.talents-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 10px;
}
.talents-title em { color: var(--accent); }

.talents-sub {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 60px;
}
/* Slider container */
.talents-slider {
    position: relative;
    overflow: hidden;
}
.talents-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    will-change: transform;
}
.talent {
    flex-shrink: 0;
    width: calc((100% - 60px) / 4);
}
.talent-img {
    position: relative;
    height: 340px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 14px;
}
.talent-img img {
    transition: transform 0.6s var(--ease);
}
.talent-img:hover img {
    transform: scale(1.08);
}
.talent-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}
.talent-img:hover .talent-hover { opacity: 1; }
.talent-hover span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}
.talent h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.talent-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 4px;
}
.talent-stats {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* Slider navigation */
.talents-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.talents-arrow {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.talents-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200,255,0,0.06);
}
.talents-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    background: none;
}
.talents-counter {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.1em;
    min-width: 70px;
    text-align: center;
}
.talents-current {
    color: var(--white);
    font-weight: 700;
}

/* ========================================
   REFERENCES
   ======================================== */
.references {
    padding: 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ref-marquee { overflow: hidden; }
.ref-marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.ref-marquee-track span {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.12);
    transition: color 0.4s;
    cursor: default;
    flex-shrink: 0;
}
.ref-marquee-track span:hover {
    color: var(--accent);
}

/* ========================================
   USP / POURQUOI HIVING
   ======================================== */
.usp {
    padding: 80px 60px;
}
.usp-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 60px;
}
.usp-title em { color: var(--accent); }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.usp-card {
    padding: 50px 35px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(200,255,0,0.03) 0%, transparent 60%);
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.usp-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}
.usp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 20px;
}
.usp-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.usp-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 80px 60px;
    background: var(--gray-dark);
}
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 16px;
}
.faq-title em { color: var(--accent); }
.faq-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.faq-list {}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    margin-right: 14px;
    font-family: var(--font);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.faq-item summary {
    padding: 20px 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 16px;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item[open] summary {
    color: var(--accent);
}
.faq-item p {
    padding: 0 0 20px 32px;
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ========================================
   LOCATION STUDIOS
   ======================================== */
.location {
    padding: 80px 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.location-header {
    margin-bottom: 50px;
}
.location-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 16px;
}
.location-title em { color: var(--accent); }

.location-sub {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 16px;
}
.location-address {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---- Studio Block ---- */
.studio-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}
.studio-block:last-child { margin-bottom: 0; }
.studio-block.reverse { direction: rtl; }
.studio-block.reverse > * { direction: ltr; }

/* Gallery layout */
.studio-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
}
.studio-gallery-main {
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}
.studio-gallery-main img {
    transition: transform 0.8s var(--ease);
}
.studio-gallery-main:hover img {
    transform: scale(1.05);
}
.studio-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.studio-gallery-thumb {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}
.studio-gallery-thumb img {
    transition: transform 0.6s var(--ease);
}
.studio-gallery-thumb:hover img {
    transform: scale(1.08);
}

/* Studio info */
.studio-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}
.studio-name {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.studio-name em { color: var(--accent); }

.studio-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.studio-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.studio-detail {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.studio-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}
.studio-features {
    list-style: none;
    margin-bottom: 30px;
}
.studio-features li {
    font-size: 0.85rem;
    color: var(--gray-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-left: 16px;
    position: relative;
}
.studio-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 80px 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin-bottom: 40px;
}
.contact-title em { color: var(--accent); }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 40px;
}
.contact-info strong { color: var(--white); font-weight: 700; }
.contact-info a { transition: color 0.3s; }
.contact-info a:hover { color: var(--accent); }

.contact-social { display: flex; gap: 24px; }
.contact-social a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    transition: color 0.3s;
}
.contact-social a:hover { color: var(--accent); }

.contact-newsletter { margin-top: 24px; }
.contact-newsletter-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 8px;
}
.contact-newsletter .newsletter-form {
    display: flex;
    gap: 8px;
}
.contact-newsletter .newsletter-form input {
    padding: 6px 12px;
    font-size: 0.7rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: #fff;
    outline: none;
    width: 160px;
}
.contact-newsletter .newsletter-form input::placeholder { color: var(--gray); }
.contact-newsletter .newsletter-form .btn-pill {
    padding: 6px 16px;
    font-size: 0.65rem;
}
.contact-newsletter .newsletter-feedback {
    font-size: 0.75rem;
    margin-top: 6px;
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 30px 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
}
.footer-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
}
.footer-copy {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal-up {
    opacity: 1;
    transform: none;
}
.reveal-up.visible {
    opacity: 1;
    transform: none;
}
.reveal-scale {
    opacity: 1;
    transform: none;
    transition-delay: var(--d, 0s);
}
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

/* ========================================
   HAMBURGER MENU
   ======================================== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .talent { width: calc((100% - 40px) / 3); }
    .about-grid { gap: 40px; }
    .burger { display: flex; }
    .header-nav {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh; height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 80px 40px 40px;
        background: #000;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 1000;
    }
    .header-nav::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        opacity: 0;
        transition: opacity 0.4s var(--ease);
        pointer-events: none;
        z-index: -1;
    }
    .header-nav.open { transform: translateX(0); }
    .header-nav.open::before { opacity: 1; }
    .header-nav a:not(.nav-cta) {
        display: block;
        font-size: 1.1rem;
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.8);
    }
    .header-nav a:not(.nav-cta):hover { color: var(--accent); }
    .header-nav .nav-cta {
        margin-top: 24px;
        text-align: center;
        width: 100%;
        display: block;
    }
    .impact-grid { flex-wrap: wrap; }
    .impact-item { flex: 0 0 45%; }
    .impact-sep { display: none; }
    .process-track { max-width: 100%; }
    .process-labels { max-width: 100%; }
    .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
    .about { padding: 80px 30px; }
    .services { padding: 80px 30px; }
    .talents { padding: 80px 30px; }
    .location { padding: 80px 30px; }
    .contact { padding: 80px 30px; }
    .footer { padding: 20px 30px; }
    .header { padding: 16px 20px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 350px; }

    .video-marquee-item { width: 200px; height: 360px; }

    .service-row { flex-wrap: wrap; gap: 10px; }
    .service-desc { text-align: left; max-width: none; }

    .talent { width: calc((100% - 20px) / 2); }
    .talents-track { gap: 16px; }
    .talent-img { height: 260px; }

    .studio-block { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
    .studio-block.reverse { direction: ltr; }
    .studio-gallery-main { height: 300px; }
    .contact-inner { grid-template-columns: 1fr; gap: 50px; }
    .stats { flex-wrap: wrap; gap: 30px; }
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
    .impact { padding: 60px 30px; }
    .impact-grid { flex-wrap: wrap; gap: 30px; }
    .impact-item { flex: 0 0 45%; }
    .impact-sep { display: none; }
    .process { padding: 80px 30px; }
    .process-label { font-size: 0.6rem; }
    .blog-preview { padding: 80px 30px 60px; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .hero-cta { justify-content: center; }
    .usp { padding: 80px 30px; }
    .usp-grid { grid-template-columns: 1fr; }
    .faq { padding: 50px 20px; }
    .faq-inner { grid-template-columns: 1fr; gap: 30px; }
    .faq-left { position: static; }
}

@media (max-width: 480px) {
    .hero-title .word { font-size: clamp(3rem, 15vw, 5rem); }
    .gallery-grid.three { grid-template-columns: 1fr; }
    .talent { width: 85%; }
    .service-name { font-size: 1.3rem; }
    .header-nav { gap: 16px; }
    .nav-cta { padding: 8px 20px; font-size: 0.8rem !important; }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--gray-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.5;
}
.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: var(--font);
}
.cookie-decline {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gray-light);
}
.cookie-decline:hover {
    border-color: var(--white);
    color: var(--white);
}
.cookie-accept {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--black);
}
.cookie-accept:hover {
    background: #b8ef00;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
}

/* ========================================
   BOOKING MODAL
   ======================================== */
/* ── Booking Modal ─────────────────────────────────────────────── */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}
.booking-modal.open {
    display: flex;
}
.booking-modal-inner {
    background: linear-gradient(165deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    max-width: 580px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 44px 40px 40px;
    position: relative;
    animation: modalIn 0.35s var(--ease-out);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
/* Custom scrollbar */
.booking-modal-inner::-webkit-scrollbar { width: 6px; }
.booking-modal-inner::-webkit-scrollbar-track { background: transparent; }
.booking-modal-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
.booking-modal-inner::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button */
.booking-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 10;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s;
    line-height: 1;
    margin-top: -4px;
}
.booking-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

/* Header */
.booking-header { margin-bottom: 28px; }
.booking-header .section-label {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}
.booking-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    line-height: 1.1;
}
.booking-title em {
    color: var(--accent);
    font-style: italic;
}
.booking-price {
    font-size: 0.85rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Steps indicator */
.booking-steps {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-step {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.25);
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.booking-step.active {
    color: var(--black);
    background: var(--accent);
    font-weight: 700;
}
.booking-step.done {
    color: var(--accent);
    border-color: rgba(200,255,0,0.2);
}

/* Step content */
.booking-step-content { display: none; }
.booking-step-content.active { display: block; }

/* Form fields */
.booking-modal .form-group {
    margin-bottom: 18px;
}
.booking-modal .form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.booking-modal .form-group input,
.booking-modal .form-group textarea,
.booking-modal .form-group select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.92rem;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
}
.booking-modal .form-group input:focus,
.booking-modal .form-group textarea:focus,
.booking-modal .form-group select:focus {
    border-color: var(--accent);
    background: rgba(200,255,0,0.02);
    box-shadow: 0 0 0 3px rgba(200,255,0,0.06);
}
.booking-modal .form-group input::placeholder,
.booking-modal .form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}
.booking-modal .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.booking-modal .form-group select option {
    background: #1a1a1a;
    color: var(--white);
}

/* Equipment section */
.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.equip-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.equip-check:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
}
.equip-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}
.equip-check:has(input:checked) {
    border-color: var(--accent);
    background: rgba(200,255,0,0.05);
}
.equip-check .equip-price {
    margin-left: auto;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
}
.equip-category {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin: 14px 0 6px;
    font-weight: 600;
}
.equip-category:first-of-type { margin-top: 2px; }
@media (max-width: 480px) {
    .equipment-grid { grid-template-columns: 1fr; }
}

/* Nav buttons */
.booking-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}
.booking-nav .btn-pill {
    flex: 1;
    text-align: center;
    border-radius: 10px;
    font-size: 0.82rem;
    padding: 14px 20px;
}

/* Summary */
.booking-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}
.booking-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row .label { color: rgba(255,255,255,0.45); }
.booking-summary-row .value { font-weight: 600; }
.booking-summary-row.total {
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid rgba(200,255,0,0.15);
    border-bottom: none;
}
.booking-summary-row.total .value {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 800;
}

.booking-deposit-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 8px;
}
.booking-deposit-note strong { color: var(--accent); }

/* Loading */
.booking-loading {
    text-align: center;
    padding: 50px 0;
}
.booking-spinner {
    width: 36px;
    height: 36px;
    border: 2.5px solid rgba(255,255,255,0.08);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-loading p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Flatpickr dark theme */
.flatpickr-calendar {
    background: #161616 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    font-family: var(--font) !important;
    border-radius: 12px !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--black) !important;
    font-weight: 700;
}
.flatpickr-day:hover {
    background: rgba(200,255,0,0.12) !important;
    border-color: transparent !important;
}
.flatpickr-day.today {
    border-color: var(--accent) !important;
}

/* Booking modal responsive */
@media (max-width: 768px) {
    .booking-modal-inner { padding: 32px 22px 28px; width: calc(100% - 20px); max-height: calc(100vh - 32px); }
    .booking-steps { flex-wrap: wrap; gap: 5px; }
    .booking-step { font-size: 0.62rem; padding: 5px 10px; }
    .booking-title { font-size: 1.5rem; }
}

/* Success modal */
#successModal .booking-modal-inner {
    max-width: 460px;
}
#successModal div[style*="font-size:48px"] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 32px !important;
}

/* ========================================
   BLOG PREVIEW
   ======================================== */
.blog-preview {
    padding: 120px 60px 80px;
}
.blog-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.blog-preview-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}
.blog-preview-title em { color: var(--accent); }
.blog-preview-link {
    padding: 12px 30px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.blog-preview-card {
    padding: 45px 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(200,255,0,0.02) 0%, transparent 60%);
    transition: transform 0.4s var(--ease), border-color 0.4s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-preview-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}
.blog-preview-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(200,255,0,0.08);
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
}
.blog-preview-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}
.blog-preview-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}
.blog-preview-read {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    transition: letter-spacing 0.3s;
}
.blog-preview-card:hover .blog-preview-read {
    letter-spacing: 0.04em;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    padding: 30px 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.newsletter-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.newsletter-text {
    flex: 0 0 auto;
}
.newsletter-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
}
.newsletter-text h2 em {
    color: var(--accent);
}
.newsletter-text p {
    display: none;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
}
.newsletter-form input[type="email"]::placeholder {
    color: var(--gray);
}
.newsletter-form .btn-pill {
    padding: 10px 24px;
    font-size: 0.75rem;
}
.newsletter-feedback {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    min-height: 20px;
    margin-top: -8px;
}
@media (max-width: 768px) {
    .newsletter-section {
        padding: 24px 20px;
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .newsletter-text h2 { font-size: 1rem; }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
    }
}
