/* ============================================
   KATHY NAILS — Stylesheet
   Palette: Soft pink, nude, warm gold, cream
   ============================================ */

:root {
    /* Core Colors */
    --bg-primary: #fdf6f0;
    --bg-secondary: #faeee5;
    --bg-card: #ffffff;
    --bg-hero: linear-gradient(175deg, #fdf6f0 0%, #f8e8dc 40%, #fce4d8 100%);

    /* Text */
    --text-primary: #3d2c2c;
    --text-secondary: #6b5252;
    --text-light: #9a8080;
    --text-white: #ffffff;

    /* Accents */
    --gold: #c4956a;
    --gold-light: #d4a87a;
    --gold-dark: #a67c55;
    --rose: #c9887a;
    --rose-light: #e8b4a8;
    --pink-soft: #f0d0c4;
    --pink-pale: #fae8e0;
    --blush: #f5ddd3;

    /* UI */
    --border: rgba(196, 149, 106, 0.2);
    --border-strong: rgba(196, 149, 106, 0.4);
    --shadow-sm: 0 2px 8px rgba(61, 44, 44, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 44, 44, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 44, 44, 0.1);
    --shadow-glow: 0 4px 30px rgba(196, 149, 106, 0.15);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --nav-height: 72px;
    --section-padding: 100px;
    --container-width: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-butterfly {
    font-size: 48px;
    animation: float 2s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--gold);
    margin: 12px 0 20px;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloaderFill 1.5s var(--ease) forwards;
}

@keyframes preloaderFill { to { width: 100%; } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s var(--ease);
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(253, 246, 240, 0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}

.logo-caps {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 246, 240, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-inner { text-align: center; }

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    padding: 12px 0;
    transition: color 0.3s;
}

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

.mobile-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto;
}

.mobile-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.mobile-social {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hero);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-dec-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-dec-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 136, 122, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    animation: heroFadeIn 1s var(--ease) forwards;
    opacity: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
}

.diamond { color: var(--gold); font-size: 8px; }

.hero-title { margin-bottom: 8px; line-height: 1; }

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(64px, 12vw, 110px);
    color: var(--gold);
    display: block;
    line-height: 1.1;
}

.hero-caps {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 400;
    letter-spacing: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: -8px;
}

.hero-butterfly {
    font-size: 36px;
    margin: 16px 0;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-availability {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 40px;
    margin-bottom: 40px;
}

.avail-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 4px;
}

.avail-days {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

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

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

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: white;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
}

.stat-icon {
    font-size: 22px;
    color: var(--gold);
    display: block;
    letter-spacing: 2px;
}

.stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-soft), var(--gold), var(--rose-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-detail {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--pink-pale);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   STUDIO
   ============================================ */
.studio {
    padding: var(--section-padding) 0;
    background: white;
}

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

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

.studio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.studio-image-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--radius) - 4px);
    pointer-events: none;
}

.studio-content .section-tag { text-align: left; }
.studio-content .section-title { text-align: left; }

.studio-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.studio-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.studio-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-icon { font-size: 20px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease);
    position: relative;
}

.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 44, 44, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

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

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.6;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   POLICIES
   ============================================ */
.policies {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.policy-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.policy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-icon { font-size: 36px; margin-bottom: 16px; }

.policy-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.policy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Payment Methods */
.payment-methods {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border);
}

.payment-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.payment-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.payment-icon.cash-app { background: #00D632; }
.payment-icon.zelle { background: #6C1CD3; }
.payment-icon.card { background: var(--gold); font-size: 24px; }

.payment-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: white;
}

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

.testimonial-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-soft), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.author-service {
    font-size: 12px;
    color: var(--text-light);
}

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

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

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card .btn { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-primary);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-script { color: var(--gold-light); }
.footer-logo .logo-caps { color: rgba(255, 255, 255, 0.6); }

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(196, 149, 106, 0.1);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* ============================================
   GO TO TOP
   ============================================ */
.go-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 90;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 90;
    transition: all 0.3s var(--ease);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .studio-image img { height: 400px; }

    .studio-content .section-tag,
    .studio-content .section-title { text-align: center; }
    .studio-text { text-align: center; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
        --nav-height: 64px;
    }

    .nav-links { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding: 100px 24px 60px; min-height: 100svh; }

    .hero-availability { padding: 14px 28px; }
    .avail-days { font-size: 18px; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .stats-grid { gap: 20px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 28px; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { flex-wrap: wrap; justify-content: center; }
    .footer-social { justify-content: center; }

    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero-script { font-size: 56px; }
    .hero-caps { letter-spacing: 8px; font-size: 20px; }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .studio-features { grid-template-columns: 1fr; }

    .payment-grid { gap: 20px; }
}
