/* ============================================
   CSS CUSTOM PROPERTIES - BERRY THEMES
   ============================================ */
:root {
    /* Base structure */
    --nav-height: 90px;
    --section-padding: clamp(80px, 12vw, 160px);

    /* Animation timing */
    --ease-liquid: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
}

/* Sharp edges mode - overrides all border radius */
[data-radius="sharp"] {
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
}

/* Mulberry Light - Deep dusty rose-berry tones (softened) */
[data-theme="mulberry-light"] {
    --bg-primary: #FDFBFC;
    --bg-secondary: #F8F5F6;
    --bg-accent: #4A2C3D;
    --text-primary: #2A2428;
    --text-secondary: #5A5356;
    --text-muted: #8A8588;
    --text-inverse: #FDFBFC;
    --accent: #874C62;
    --accent-hover: #6D3D4F;
    --accent-subtle: rgba(135, 76, 98, 0.06);
    --border: rgba(74, 44, 61, 0.08);
    --border-strong: rgba(74, 44, 61, 0.14);
    --card-bg: #FFFFFF;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(74, 44, 61, 0.6);
    --gradient-hero: linear-gradient(135deg, rgba(135, 76, 98, 0.9) 0%, rgba(74, 44, 61, 0.95) 100%);
}

/* Mulberry Dark - Deep dusty rose-berry tones */
[data-theme="mulberry-dark"] {
    --bg-primary: #0F0D0E;
    --bg-secondary: #1A1618;
    --bg-accent: #874C62;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B0B4;
    --text-muted: #706A6D;
    --text-inverse: #0F0D0E;
    --accent: #A86B7E;
    --accent-hover: #BC8494;
    --accent-subtle: rgba(135, 76, 98, 0.12);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --card-bg: #1A1618;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(0, 0, 0, 0.8);
    --gradient-hero: linear-gradient(135deg, rgba(135, 76, 98, 0.85) 0%, rgba(74, 44, 61, 0.95) 100%);
}

/* Raspberry Light - Warm coral-rose tones (softened) */
[data-theme="raspberry-light"] {
    --bg-primary: #FDFBFB;
    --bg-secondary: #F9F5F5;
    --bg-accent: #5C3A3A;
    --text-primary: #2A2525;
    --text-secondary: #5A5454;
    --text-muted: #8A8585;
    --text-inverse: #FDFBFB;
    --accent: #9E5A5A;
    --accent-hover: #824949;
    --accent-subtle: rgba(158, 90, 90, 0.06);
    --border: rgba(92, 58, 58, 0.08);
    --border-strong: rgba(92, 58, 58, 0.14);
    --card-bg: #FFFFFF;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(92, 58, 58, 0.6);
    --gradient-hero: linear-gradient(135deg, rgba(158, 90, 90, 0.9) 0%, rgba(92, 58, 58, 0.95) 100%);
}

/* Raspberry Dark - Warm coral-rose tones */
[data-theme="raspberry-dark"] {
    --bg-primary: #100D0D;
    --bg-secondary: #1A1616;
    --bg-accent: #9E5A5A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B0B0;
    --text-muted: #706A6A;
    --text-inverse: #100D0D;
    --accent: #B87070;
    --accent-hover: #C98888;
    --accent-subtle: rgba(158, 90, 90, 0.12);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --card-bg: #1A1616;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(0, 0, 0, 0.8);
    --gradient-hero: linear-gradient(135deg, rgba(158, 90, 90, 0.85) 0%, rgba(92, 58, 58, 0.95) 100%);
}

/* Blueberry Light - Deep navy-indigo tones */
[data-theme="blueberry-light"] {
    --bg-primary: #FBFBFD;
    --bg-secondary: #F5F6F8;
    --bg-accent: #2B3A5C;
    --text-primary: #252430;
    --text-secondary: #54535A;
    --text-muted: #85848A;
    --text-inverse: #FBFBFD;
    --accent: #2B3A5C;
    --accent-hover: #3D4E72;
    --accent-subtle: rgba(43, 58, 92, 0.06);
    --border: rgba(43, 58, 92, 0.08);
    --border-strong: rgba(43, 58, 92, 0.14);
    --card-bg: #FFFFFF;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(43, 58, 92, 0.6);
    --gradient-hero: linear-gradient(135deg, rgba(43, 58, 92, 0.9) 0%, rgba(30, 42, 68, 0.95) 100%);
}

/* Blueberry Dark - Deep navy-indigo tones */
[data-theme="blueberry-dark"] {
    --bg-primary: #0A0C12;
    --bg-secondary: #141822;
    --bg-accent: #4A5A7C;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C8;
    --text-muted: #6A7080;
    --text-inverse: #0A0C12;
    --accent: #4A5A7C;
    --accent-hover: #5C6E92;
    --accent-subtle: rgba(74, 90, 124, 0.12);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --card-bg: #141822;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(0, 0, 0, 0.8);
    --gradient-hero: linear-gradient(135deg, rgba(43, 58, 92, 0.85) 0%, rgba(30, 42, 68, 0.95) 100%);
}

/* Black Light - Grounded Studio palette (warm, softened) */
[data-theme="black-light"] {
    --bg-primary: #FAF8F5;
    --bg-secondary: #F3F1EE;
    --bg-accent: #2C2C2C;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-muted: #8B8B8B;
    --text-inverse: #FAF8F5;
    --accent: #2C2C2C;
    --accent-hover: #404040;
    --accent-subtle: rgba(44, 44, 44, 0.05);
    --border: rgba(44, 44, 44, 0.08);
    --border-strong: rgba(44, 44, 44, 0.14);
    --card-bg: #FFFFFF;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(44, 44, 44, 0.7);
    --gradient-hero: linear-gradient(135deg, rgba(70, 70, 70, 0.9) 0%, rgba(30, 30, 30, 0.95) 100%);
}

/* Black Dark - Pure monochrome elegance */
[data-theme="black-dark"] {
    --bg-primary: #050505;
    --bg-secondary: #0F0F0F;
    --bg-accent: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #606060;
    --text-inverse: #050505;
    --accent: #FFFFFF;
    --accent-hover: #E0E0E0;
    --accent-subtle: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --card-bg: #0F0F0F;
    --card-shadow: none;
    --card-shadow-hover: none;
    --overlay: rgba(0, 0, 0, 0.85);
    --gradient-hero: linear-gradient(135deg, rgba(60, 60, 60, 0.85) 0%, rgba(5, 5, 5, 0.95) 100%);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::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;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.5s var(--ease-liquid), color 0.5s var(--ease-liquid);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}
h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.03em;
}
h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease-liquid);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-liquid);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--text-inverse);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-inverse {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.btn-inverse:hover {
    background-color: var(--accent);
    color: var(--text-inverse);
    transform: translateY(-3px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background-color: var(--bg-primary);
    border-bottom: none;
    z-index: 1000;
    transition: all 0.4s var(--ease-liquid);
}

.header.scrolled {
    background-color: rgba(253, 251, 252, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}

[data-theme*="dark"] .header.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    gap: 60px;
}

@media (max-width: 1023px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.logo img {
    height: 44px;
    width: auto;
    transition: filter 0.3s var(--ease-liquid);
}

[data-theme*="dark"] .logo .logo-dark,
.logo .logo-light {
    display: none;
}

[data-theme*="dark"] .logo .logo-light {
    display: block;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 48px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-liquid);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.4s var(--ease-liquid);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

/* Responsive nav text - short version hidden by default */
.nav-text-short {
    display: none;
}

/* Show short text at narrower desktop widths */
@media (min-width: 1024px) and (max-width: 1150px) {
    .nav-text-full {
        display: none;
    }
    .nav-text-short {
        display: inline;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-liquid);
}

.lang-switch:hover {
    color: var(--accent);
}

.lang-switch span.active {
    color: var(--text-primary);
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s var(--ease-liquid);
}

.menu-toggle span:nth-child(2) {
    margin: 6px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-liquid);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-liquid);
}

.mobile-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-liquid);
    transition-delay: 0.3s;
}

.mobile-menu.active .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION (Homepage only)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

/* Fullscreen Hero */
.hero.hero-fullscreen {
    padding-top: 0;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Centered Hero Content */
.hero-content-centered {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-location {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-liquid) 0.2s forwards;
}

.hero-tagline-centered {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 48px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-liquid) 0.6s forwards;
}

.hero-ctas-centered {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-liquid) 0.8s forwards;
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: var(--accent);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease-liquid);
}

.btn-hero-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease-liquid);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Legacy bottom-right content (kept for compatibility) */
.hero-content-bottom-right {
    position: relative;
    z-index: 3;
    padding: 60px clamp(20px, 5vw, 80px);
    text-align: right;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-liquid) 0.3s forwards;
}

@media (min-width: 768px) {
    .hero-content-bottom-right {
        padding: 80px clamp(40px, 8vw, 120px);
    }
}

.hero-content-bottom-right .hero-location {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-content-bottom-right .hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-title-large {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-ctas-carve {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.btn-carve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: var(--accent);
    color: var(--text-inverse);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease-liquid);
}

.btn-carve:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-carve.btn-carve-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-carve.btn-carve-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Black theme special button colors */
[data-theme="black-light"] .btn-carve,
[data-theme="black-dark"] .btn-carve {
    background-color: #C9B896;
    color: #2C2C2C;
}

[data-theme="black-light"] .btn-carve:hover,
[data-theme="black-dark"] .btn-carve:hover {
    background-color: #D4C5A5;
}

[data-theme="black-light"] .btn-carve.btn-carve-outline,
[data-theme="black-dark"] .btn-carve.btn-carve-outline {
    background-color: #C9B896;
    color: #2C2C2C;
    border: none;
}

[data-theme="black-light"] .btn-carve.btn-carve-outline:hover,
[data-theme="black-dark"] .btn-carve.btn-carve-outline:hover {
    background-color: #D4C5A5;
}

/* Fullscreen video wrapper */
.hero-video-fullscreen {
    position: absolute;
    inset: 0;
    width: 100% !important;
    top: 0 !important;
    clip-path: none !important;
}

.hero-video-fullscreen::before {
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Original hero styles (kept for compatibility) */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .hero-content {
        width: 45%;
        padding: 0;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-liquid) 0.3s forwards;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-liquid) 0.4s forwards;
}

.hero-subtitle {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-liquid) 0.5s forwards;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: unset;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-liquid) 0.6s forwards;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-liquid) 0.7s forwards;
}

.hero-ctas .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-ctas .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-video-wrapper {
    position: absolute;
    right: 0;
    top: var(--nav-height);
    bottom: 0;
    width: 100%;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-video-wrapper:not(.hero-video-fullscreen) {
        width: 60%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-video-wrapper:not(.hero-video-fullscreen)::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.55) 100%);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s var(--ease-liquid) 1s forwards;
    z-index: 3;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

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

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Diagonal Divider */
.diagonal-divider {
    position: relative;
    height: 80px;
    background-color: var(--bg-secondary);
    margin-top: -1px;
    display: none;
}

.diagonal-divider::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--bg-secondary);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, var(--accent-subtle) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, var(--accent-subtle) 0%, transparent 50%);
    opacity: 0.5;
    animation: heroGradientShift 8s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Floating particles effect */
.page-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.03;
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.page-hero .section-eyebrow {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.1s forwards;
}

.page-hero h1 {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.2s forwards, gradientShift 4s ease 1s infinite;
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-primary) 40%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.3s forwards;
    font-size: 1.125rem;
}

/* Page Hero with Image */
.page-hero-with-image {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 50vh;
    padding: 0;
    background: var(--bg-secondary);
}

@media (min-width: 768px) {
    .page-hero-with-image {
        grid-template-columns: 1fr 1fr;
        min-height: 60vh;
    }
}

.page-hero-with-image::before,
.page-hero-with-image::after {
    display: none;
}

.page-hero-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    order: -1;
}

@media (min-width: 768px) {
    .page-hero-image {
        order: 1;
        min-height: unset;
    }
}

.page-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px clamp(20px, 5vw, 80px);
    padding-top: calc(var(--nav-height) + 40px);
    text-align: left;
}

@media (min-width: 768px) {
    .page-hero-content {
        padding: clamp(60px, 8vw, 100px);
        padding-top: calc(var(--nav-height) + 60px);
    }
}

.page-hero-content .section-eyebrow {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.1s forwards;
}

.page-hero-content h1 {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.2s forwards;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    max-width: 500px;
    margin: 0;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease-liquid) 0.3s forwards;
    font-size: 1.05rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-classes {
    background-color: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.section-testimonials {

}

.section-about {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 24px;
}

/* ============================================
   CLASSES GRID (Homepage)
   ============================================ */
.classes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .classes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.class-card {
    position: relative;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: all 0.5s var(--ease-liquid);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.class-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.class-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.8s var(--ease-liquid);
}

.class-card:hover .class-card-image img {
    transform: scale(1.08);
}

.class-card-content {
    position: relative;
    z-index: 1;
    padding: 32px 0 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.class-card-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.class-card-title {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    transition: color 0.4s var(--ease-liquid);
}

.class-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    max-width: 280px;
}

.classes-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.classes-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    font-weight: 500;
    color: var(--accent);
    transition: gap 0.3s var(--ease-liquid);
}

.classes-link:hover {
    gap: 16px;
}

.classes-link svg {
    transition: transform 0.3s var(--ease-liquid);
}

.classes-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
    padding: 48px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s var(--ease-liquid);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 24px;
    text-align: center;
}

.testimonial-quote {
    position: relative;
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-top: 32px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Sofia Pro', serif;
    font-size: 3rem;
    font-style: normal;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease-liquid);
    color: var(--text-muted);
}

.testimonial-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-inverse);
}

.testimonial-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-dots {
    display: flex;
    gap: 6px;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    background-color: var(--border-strong);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease-liquid);
}

.testimonial-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* ============================================
   ABOUT / TEAM SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about-content {
    max-width: 500px;
}

.about-content .section-eyebrow {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   TRAINERS PAGE
   ============================================ */
.trainers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: var(--section-padding) 0;
}

@media (min-width: 768px) {
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .trainers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trainer-card {
    background-color: transparent;
    overflow: hidden;
    transition: all 0.5s var(--ease-liquid);
    position: relative;
    cursor: pointer;
}

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

.trainer-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 0;
}

.trainer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-liquid);
}

.trainer-card:hover .trainer-card-image img {
    transform: scale(1.05);
}

/* Trainer card content overlay */
.trainer-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    transform: translateY(0);
    transition: all 0.5s var(--ease-liquid);
}

.trainer-card-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    display: block;
    color: #FFFFFF;
}

.trainer-card-role {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 0;
    transition: margin-bottom 0.4s var(--ease-liquid);
}

.trainer-card-bio {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s var(--ease-liquid);
}

/* Active state - show bio */
.trainer-card.active .trainer-card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.7) 100%);
}

.trainer-card.active .trainer-card-role {
    margin-bottom: 16px;
}

.trainer-card.active .trainer-card-bio {
    max-height: 300px;
    opacity: 1;
}

/* Close indicator */
.trainer-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-liquid);
    color: #FFFFFF;
}

.trainer-card.active .trainer-card-close {
    opacity: 1;
    transform: scale(1);
}

.trainer-card-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Read more indicator */
.trainer-card-expand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    opacity: 1;
    transition: all 0.3s var(--ease-liquid);
}

.trainer-card.active .trainer-card-expand {
    opacity: 0;
    pointer-events: none;
}

.trainer-card-expand svg {
    transition: transform 0.3s var(--ease-liquid);
}

.trainer-card:hover:not(.active) .trainer-card-expand svg {
    transform: translateY(2px);
}

/* Enhanced reveal animations for trainer cards */
.trainers-grid .trainer-card.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.trainers-grid .trainer-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.trainers-grid .trainer-card:nth-child(1) { transition-delay: 0s; }
.trainers-grid .trainer-card:nth-child(2) { transition-delay: 0.08s; }
.trainers-grid .trainer-card:nth-child(3) { transition-delay: 0.16s; }
.trainers-grid .trainer-card:nth-child(4) { transition-delay: 0.24s; }
.trainers-grid .trainer-card:nth-child(5) { transition-delay: 0.32s; }
.trainers-grid .trainer-card:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background-color: var(--bg-secondary);
}

.pricing-table td {
    font-size: 1rem;
    color: var(--text-primary);
}

.pricing-table tbody tr {
    transition: background-color 0.3s var(--ease-liquid);
}

.pricing-table tbody tr:hover {
    background-color: var(--accent-subtle);
}

.pricing-table .price {
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
}

.pricing-class-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.pricing-class-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Newbie Toggle */
.newbie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-inverse);
    cursor: pointer;
    margin-bottom: 32px;
    transition: all 0.3s var(--ease-liquid);
}

.newbie-toggle svg {
    stroke: var(--text-inverse);
    flex-shrink: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newbie-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.newbie-toggle:hover svg {
    stroke: var(--text-inverse);
}

.newbie-info {
    display: none;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.newbie-info.visible {
    display: block;
}

.newbie-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.newbie-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newbie-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.newbie-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Pricing Rules */
.pricing-rules {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.pricing-rules h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.pricing-rules ul {
    list-style: none;
}

.pricing-rules li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-rules li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--accent-subtle);
    border-radius: var(--radius-lg);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-item-content a:hover {
    color: var(--accent);
}

/* Map */
.contact-map {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--bg-secondary);
}

.contact-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-liquid);
}

.contact-map:hover::after {
    opacity: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) contrast(1.05) sepia(10%);
    transition: filter 0.5s var(--ease-liquid);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1) sepia(0%);
}

/* ============================================
   FIRST VISIT PAGE
   ============================================ */
.first-visit-section {
    padding: var(--section-padding) 0;
}

.first-visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .first-visit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.first-visit-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.4s var(--ease-liquid);
    border-left: 2px solid var(--accent);
    padding-left: 32px;
}

.first-visit-card:hover {
    transform: translateX(4px);
}

.first-visit-icon {
    display: none;
}

.first-visit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.first-visit-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.first-visit-cta {
    text-align: center;
    padding-top: 80px;
}

.first-visit-cta h2 {
    margin-bottom: 32px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-cta {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .section-cta {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }
}

.cta-image {
    position: relative;
    min-height: 450px;
}

.cta-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    background-color: var(--bg-accent);
    padding: clamp(60px, 8vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content > * {
    max-width: 500px;
}

.cta-content .section-eyebrow {
    color: var(--text-inverse);
    opacity: 0.6;
}

.cta-content h2 {
    color: var(--text-inverse);
    margin-bottom: 28px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.cta-content p {
    color: var(--text-inverse);
    opacity: 0.8;
    max-width: 420px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

/* Reset z-index for footer logo to prevent overlap with mobile menu */
.footer .logo {
    z-index: auto;
}

@media (min-width: 768px) {
    .footer-main {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 48px;
        align-items: start;
    }
}

/* Brand section - centered */
.footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-brand {
        order: 2;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-liquid);
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-social a svg {
    flex-shrink: 0;
}

.footer-social .instagram-handle {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer columns wrapper */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-columns {
        display: contents;
    }

    .footer-column:first-child {
        order: 1;
        text-align: left;
    }

    .footer-column:last-child {
        order: 3;
        text-align: right;
    }
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-liquid);
}

.footer-column a:hover {
    color: var(--accent);
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .footer-contact-item {
        justify-content: flex-end;
    }
}

.footer-contact-item svg,
.footer-contact-item [data-lucide] {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-contact-item a {
    color: var(--text-secondary);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

/* Mobile footer ordering and centering */
@media (max-width: 767px) {
    .footer-columns {
        display: flex;
        flex-direction: column;
    }

    .footer-column {
        padding-bottom: 32px;
        border-bottom: 1px solid var(--border);
    }

    .footer-column:last-child {
        order: -1;
        border-bottom: 1px solid var(--border);
    }

    .footer-column:first-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile footer centering */
@media (max-width: 768px) {
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column li a {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
        padding: 0 8px;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-contact-item a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-contact-item span {
        color: var(--text-inverse);
        opacity: 0.8;
    }
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-liquid);
    display: block;
}

@media (min-width: 1024px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta .btn {
    width: 100%;
}

/* ============================================
   SETTINGS PANEL
   ============================================ */
.settings-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s var(--ease-liquid);
    box-shadow: var(--card-shadow);
    color: var(--text-primary);
}

.settings-trigger:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-inverse);
    transform: rotate(90deg);
}

@media (max-width: 1023px) {
    .settings-trigger {
        bottom: 88px;
    }
}

.settings-panel {
    position: fixed;
    bottom: 88px;
    left: 24px;
    width: 280px;
    max-height: 70vh;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    z-index: 999;
    box-shadow: var(--card-shadow-hover);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s var(--ease-liquid);
    overflow-y: auto;
}

@media (max-width: 1023px) {
    .settings-panel {
        bottom: 152px;
    }
}

.settings-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.settings-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--ease-liquid);
}

.theme-option:hover {
    border-color: var(--accent);
}

.theme-option.active {
    border-color: var(--accent);
    background-color: var(--accent-subtle);
}

.theme-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.theme-dot.mulberry { background: linear-gradient(135deg, #874C62, #4A2C3D); }
.theme-dot.raspberry { background: linear-gradient(135deg, #9E5A5A, #5C3A3A); }
.theme-dot.blueberry { background: linear-gradient(135deg, #4A4080, #2D2A4A); }
.theme-dot.black { background: linear-gradient(135deg, #3A3A3A, #050505); }

.theme-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.mode-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: var(--accent-subtle);
    border-radius: var(--radius-md);
}

.mode-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.mode-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background-color: var(--border-strong);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: background-color 0.3s var(--ease-liquid);
}

.mode-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s var(--ease-liquid);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mode-switch.dark {
    background-color: var(--accent);
}

.mode-switch.dark::after {
    transform: translateX(22px);
}

/* Settings panel backdrop */
.settings-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-liquid);
}

.settings-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   REVEAL ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-liquid), transform 0.5s var(--ease-liquid);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ============================================
   STUDIO PAGE - STORY SECTIONS
   ============================================ */
.studio-story {
    padding: var(--section-padding) 0;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.story-block-reverse .story-content {
    order: 1;
}

@media (min-width: 768px) {
    .story-block-reverse .story-content {
        order: 2;
    }

    .story-block-reverse .story-image {
        order: 1;
    }
}

.story-content h2 {
    margin-bottom: 32px;
}

.story-content h2 em {
    font-style: italic;
    color: var(--accent);
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content p strong {
    color: var(--text-primary);
    font-weight: 500;
}

.story-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-liquid);
}

.story-image:hover img {
    transform: scale(1.03);
}

/* Full Width Image */
.studio-fullwidth-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.studio-fullwidth-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ============================================
   STUDIO PAGE - VALUES SECTION
   ============================================ */
.studio-values {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 600px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
}

.value-item {
    text-align: left;
}

.value-number {
    display: block;
    font-family: 'Sofia Pro', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ============================================
   STUDIO PAGE - GALLERY MOSAIC
   ============================================ */
.studio-gallery {
    padding: var(--section-padding) 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }

    .gallery-item-large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-liquid);
}

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

.gallery-item-large img {
    min-height: 400px;
}

@media (min-width: 768px) {
    .gallery-item-large img {
        min-height: 100%;
    }
}

/* ============================================
   LUCIDE ICONS - Global Styling
   ============================================ */
[data-lucide] {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    vertical-align: middle;
    flex-shrink: 0;
    color: var(--accent);
}

/* Dark backgrounds - use inverse text color */
.cta-content [data-lucide],
.trainer-card-content [data-lucide],
.btn-inverse [data-lucide],
.btn-primary [data-lucide] {
    color: var(--text-inverse);
}

/* Footer icons inherit parent color */
.footer-contact-item [data-lucide],
.footer-social [data-lucide] {
    color: inherit;
}

/* Specific icon contexts */
.newbie-item [data-lucide],
.contact-item-icon [data-lucide] {
    color: var(--accent);
}

/* Pricing table icons */
.pricing-class-name [data-lucide] {
    opacity: 0.6;
}

/* Class card subtitle icons */
.class-card-subtitle [data-lucide] {
    color: var(--text-muted);
    width: 16px;
    height: 16px;
}

/* Settings trigger icon */
.settings-trigger [data-lucide] {
    color: inherit;
}

/* Testimonial navigation buttons */
.testimonial-btn [data-lucide] {
    color: inherit;
}
