/* ============================================
   VIA VERDI 18 - PREMIUM HAIR SALON CSS
   Archetipo: Classic & Luxury
   Mobile-First Design
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Colors */
    --color-bg: #f9f9f9;
    --color-bg-cream: #f4f0ec;
    --color-bg-dark: #0a0a0a;
    --color-bg-dark-secondary: #141414;
    --color-text: #1a1a1a;
    --color-text-light: #f9f9f9;
    --color-text-muted: #666666;
    --color-text-muted-light: #999999;
    --color-gold: #C5A059;
    --color-gold-light: #D4AF37;
    --color-border: rgba(0,0,0,0.08);
    --color-border-light: rgba(255,255,255,0.1);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --navbar-height: 72px;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    cursor: none;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--color-gold);
    transition: width 0.3s var(--ease-bounce), height 0.3s var(--ease-bounce), background 0.3s;
}

body.hovering .cursor-outline {
    width: 56px;
    height: 56px;
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--color-gold-light);
}

@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
    .cursor-dot, .cursor-outline {
        display: none;
    }
    button, a {
        cursor: pointer;
    }
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--ease-expo);
}

#preloader.loaded {
    transform: translateY(-100%);
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preloader-line {
    display: block;
    width: 3px;
    height: 0;
    background: var(--color-gold);
    border-radius: 2px;
    animation: lineGrow 0.6s var(--ease-expo) forwards;
}

.preloader-line.line-1 { animation-delay: 0.1s; }
.preloader-line.line-2 { animation-delay: 0.2s; height: 0; }
.preloader-line.line-3 { animation-delay: 0.3s; }

@keyframes lineGrow {
    to { height: 32px; }
}

.preloader-text {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.preloader-word {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s var(--ease-expo) forwards;
}

.preloader-word:nth-child(1) { animation-delay: 0.4s; }
.preloader-word:nth-child(2) { animation-delay: 0.5s; color: var(--color-gold); }
.preloader-word:nth-child(3) { animation-delay: 0.6s; }

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

.preloader-counter {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-light);
}

/* ---------- MOBILE FAB ---------- */
.mobile-booking-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: var(--radius-xl);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
    animation: fabPulse 2s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.mobile-booking-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
}

@media (min-width: 1025px) {
    .mobile-booking-fab {
        display: none;
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: var(--navbar-height);
    transition: background 0.4s var(--ease-smooth), backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.logo-secondary {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.navbar.scrolled .logo-primary {
    color: var(--color-text);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease-expo);
}

.nav-link:hover {
    opacity: 1;
}

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

.navbar.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link-highlight {
    padding: 0.625rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-bg-dark) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    opacity: 1;
}

.nav-link-highlight::after {
    display: none;
}

.nav-link-highlight:hover {
    background: var(--color-gold-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    color: var(--color-text-light);
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

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

.navbar.scrolled .nav-phone {
    color: var(--color-text);
}

.menu-toggle {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    transition: transform 0.3s var(--ease-expo), opacity 0.3s;
    transform-origin: center;
}

.navbar.scrolled .menu-toggle span {
    background: var(--color-text);
}

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

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

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

/* Mobile Menu */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--navbar-height) 0 0 0;
    background: var(--color-bg);
    padding: 3rem var(--container-padding);
    gap: 1.5rem;
    animation: slideDown 0.4s var(--ease-expo);
}

.nav-links.mobile-open .nav-link {
    color: var(--color-text);
    font-size: 1.25rem;
    opacity: 1;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1025px) {
    .nav-links {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border: 1.5px solid var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-primary-light {
    background: var(--color-text-light);
    color: var(--color-bg-dark);
    border: 1.5px solid var(--color-text-light);
}

.btn-primary-light:hover {
    background: transparent;
    color: var(--color-text-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1.5px solid rgba(255,255,255,0.3);
}

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

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
    border: 1.5px solid var(--color-border);
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
}

.btn-ghost:hover:not(:disabled) {
    border-color: var(--color-text);
    color: var(--color-text);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
    min-height: 56px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--navbar-height) + 2rem) var(--container-padding) 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?w=1920&h=1080&fit=crop') center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        rgba(10, 10, 10, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    color: var(--color-text-light);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 0.8s forwards;
}

.tag-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--color-gold);
}

.tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-expo) forwards;
}

.title-line:nth-child(1) { animation-delay: 1s; }
.title-line:nth-child(2) {
    animation-delay: 1.15s;
    color: var(--color-gold);
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 1.3s forwards;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 1.5s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 1.7s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: var(--container-padding);
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-expo) 2.2s forwards;
}

.badge-item {
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.badge-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.badge-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

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

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    .hero-badge {
        display: flex;
    }
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--space-xl) 0;
}

.bg-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

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

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-tag span:first-child {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-gold);
}

.section-tag p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.section-tag.light p {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text);
}

.section-title.light {
    color: var(--color-text-light);
}

.section-title span {
    display: block;
}

.reveal-text span {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

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

.reveal-text.visible span:nth-child(2) { transition-delay: 0.1s; }
.reveal-text.visible span:nth-child(3) { transition-delay: 0.2s; }

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 1rem;
}

.about-img-main {
    grid-row: 1 / 3;
}

.img-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc4 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.about-1 {
    aspect-ratio: 3/4;
    background: url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?w=800&h=1000&fit=crop') center/cover;
}

.about-2 {
    aspect-ratio: 1/1;
    background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=600&h=600&fit=crop') center/cover;
}

.img-caption {
    position: relative;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

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

.about-text {
    margin: var(--space-md) 0;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.drop-cap::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: var(--color-gold);
    font-weight: 400;
}

.about-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.signature-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 1rem;
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    font-style: italic;
}

.signature-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

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

/* ---------- SERVICES ---------- */
.services-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
    min-height: 44px;
}

.tab-btn.active {
    color: var(--color-bg-dark);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.tab-btn:hover:not(.active) {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s var(--ease-smooth);
}

.tab-panel.active {
    display: block;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

.service-item:hover {
    background: rgba(255,255,255,0.02);
    margin: 0 -1rem;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
}

.service-info h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.service-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
    line-height: 1.5;
}

.service-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-sm);
}

.service-meta {
    text-align: right;
    flex-shrink: 0;
}

.service-time {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted-light);
    margin-bottom: 0.25rem;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-gold);
}

.services-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

/* ---------- BOOKING SECTION - CRITICAL ---------- */
.booking {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg) 100%);
}

.booking-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Container */
.booking-container {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Progress Steps */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--container-padding);
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.booking-progress::-webkit-scrollbar {
    display: none;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--color-bg-cream);
    color: var(--color-text-muted);
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-smooth);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.progress-step.completed .step-number {
    font-size: 0;
}

.progress-step.completed .step-number::after {
    content: '✓';
    font-size: 0.875rem;
    font-weight: 700;
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--color-text);
}

.progress-line {
    flex: 1;
    min-width: 20px;
    height: 2px;
    background: var(--color-bg-cream);
    margin: 0 0.5rem;
    margin-bottom: 20px;
    transition: background 0.3s;
    position: relative;
}

.progress-line.completed {
    background: var(--color-gold);
}

/* Booking Form */
.booking-form {
    padding: var(--space-md) var(--container-padding);
}

.booking-step {
    display: none;
    animation: stepEnter 0.4s var(--ease-expo);
}

.booking-step.active {
    display: block;
}

@keyframes stepEnter {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header {
    margin-bottom: var(--space-md);
}

.step-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.step-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Step 1: Service Categories */
.service-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
    .service-categories {
        grid-template-columns: repeat(5, 1fr);
    }
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.25s var(--ease-smooth);
    min-height: 80px;
}

.category-btn .cat-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.category-btn.active {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--color-gold);
    color: var(--color-text);
}

.category-btn:hover:not(.active) {
    background: var(--color-bg-cream);
    color: var(--color-text);
}

/* Service List in Booking */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    text-align: left;
    width: 100%;
    min-height: 72px;
}

.service-option:hover {
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.03);
}

.service-option.selected {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.06);
}

.service-option .opt-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.service-option.selected .opt-check {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.service-option .opt-info {
    flex: 1;
    min-width: 0;
}

.service-option .opt-info h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.125rem;
}

.service-option .opt-info p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.service-option .opt-meta {
    text-align: right;
    flex-shrink: 0;
}

.service-option .opt-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-gold);
}

.service-option .opt-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Step 2: Professionals */
.pro-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pro-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    width: 100%;
    min-height: 80px;
}

.pro-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.pro-card.selected {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.06);
}

.pro-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pro-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-cream);
}

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

.pro-avatar-auto {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pro-info {
    flex: 1;
    min-width: 0;
}

.pro-info h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.125rem;
}

.pro-info p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.pro-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: all 0.2s;
}

.pro-card.selected .pro-check {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* Step 3: Calendar & Time */
.date-time-wrapper {
    display: grid;
    gap: var(--space-md);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text);
    transition: background 0.2s;
    min-height: 44px;
    min-width: 44px;
}

.cal-nav:hover {
    background: var(--color-bg-cream);
}

.cal-month {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.cal-weekday {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--color-bg);
    color: var(--color-text);
    transition: all 0.2s;
    border: 2px solid transparent;
    min-height: 44px;
    min-width: 44px;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--color-bg-cream);
    border-color: rgba(197, 160, 89, 0.3);
}

.cal-day.selected {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    font-weight: 600;
}

.cal-day.disabled {
    color: var(--color-border);
    background: transparent;
    cursor: not-allowed;
}

.cal-day.empty {
    background: transparent;
    cursor: default;
}

.cal-day.today {
    border-color: var(--color-gold);
}

.time-section h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

@media (min-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .time-slots {
        grid-template-columns: repeat(5, 1fr);
    }
}

.time-slot {
    padding: 0.625rem 0.5rem;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    transition: all 0.2s;
    min-height: 44px;
}

.time-slot:hover:not(.disabled) {
    border-color: rgba(197, 160, 89, 0.3);
}

.time-slot.selected {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    font-weight: 600;
}

.time-slot.disabled {
    color: var(--color-border);
    background: transparent;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.4;
}

/* Step 4: Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.field-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.form-group.has-error .field-error {
    display: block;
}

/* Step 5: Summary */
.booking-summary {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: var(--space-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.summary-value {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    text-align: right;
}

.summary-value.price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
}

.booking-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.booking-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
}

.booking-note a {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: underline;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: var(--space-md) 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    color: #27ae60;
}

.success-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.success-content > p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.success-details {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: var(--space-md);
    text-align: left;
}

.success-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.success-row .s-label {
    color: var(--color-text-muted);
}

.success-row .s-value {
    font-weight: 600;
    color: var(--color-text);
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

/* Booking Alternative */
.booking-alternative {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
}

.booking-alternative p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--color-gold);
}

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    gap: var(--space-md);
}

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

.team-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 4/5;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.6), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
}

.team-social:hover {
    background: var(--color-gold);
}

.team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.team-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

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

/* ---------- PORTFOLIO ---------- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    min-height: 40px;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

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

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.portfolio-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.portfolio-zoom {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

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

/* ---------- TESTIMONIALS ---------- */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-md) var(--container-padding);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--color-gold);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.author-source {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: var(--space-sm);
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: background 0.3s, transform 0.3s;
}

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

/* ---------- PRODUCTS ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    opacity: 0.5;
}

.product-logo {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text-light);
    line-height: 1.3;
}

.product-logo span {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.faq-item.open {
    border-color: rgba(197, 160, 89, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem var(--container-padding);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    transition: color 0.3s;
    min-height: 56px;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-bounce);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-expo);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--container-padding) 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    gap: var(--space-lg);
}

.contact-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: var(--space-sm) 0 var(--space-md);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    transition: color 0.3s;
}

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

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.contact-social a:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    min-height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3);
}

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

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding-top: var(--space-xl);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo .logo-primary {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.footer-logo .logo-secondary {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul li,
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-text-light);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-credits {
    font-size: 0.7rem !important;
}

.footer-marquee {
    display: flex;
    gap: 4rem;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}

.footer-marquee span {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    flex-shrink: 0;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ---------- MAGNETIC BUTTON ---------- */
.magnetic-btn {
    transition: transform 0.3s var(--ease-smooth);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ---------- SELECTION ---------- */
::selection {
    background: rgba(197, 160, 89, 0.3);
    color: inherit;
}
