/* ============================================
   Spa4Pet - Luxury Canine Spa & Grooming
   ============================================
   Design: Dark luxury with gold accents
   Elegant serif headings, immersive full-width sections
   High-end spa brand aesthetic
*/

/* ============================================
   FONTS - Elegant serif + clean sans
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Brand Colors */
    --gold: #c9a96e;
    --gold-light: #dfc392;
    --gold-dark: #a68b4b;
    --gold-rgb: 201, 169, 110;
    --teal: #5b8a8a;
    --teal-light: #7aadad;
    --teal-dark: #3d6b6b;

    /* Dark palette */
    --dark-900: #0a0a0a;
    --dark-800: #141414;
    --dark-700: #1c1c1c;
    --dark-600: #262626;
    --dark-500: #333333;
    --dark-400: #4a4a4a;

    /* Light palette */
    --cream: #faf6f0;
    --cream-dark: #f0e8d8;
    --warm-white: #fefcf9;
    --off-white: #f5f1eb;

    /* Semantic */
    --color-success: #6b9e6b;
    --color-error: #c75050;

    /* Text */
    --text-light: #faf6f0;
    --text-light-muted: rgba(250, 246, 240, 0.6);
    --text-light-subtle: rgba(250, 246, 240, 0.35);
    --text-dark: #1a1a1a;
    --text-dark-muted: #6b6b6b;
    --text-dark-subtle: #999999;

    /* Borders */
    --border-gold: rgba(201, 169, 110, 0.25);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
    --shadow-gold-lg: 0 8px 40px rgba(201, 169, 110, 0.2);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 3rem;
    --space-5xl: 3.5rem;
    --space-6xl: 4rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Z-index */
    --z-nav: 100;
    --z-overlay: 200;
    --z-modal: 300;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   LAYOUT
   ============================================ */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-wide {
    max-width: 1400px;
}

.container-narrow {
    max-width: 800px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    outline: none;
}

h1:focus, h2:focus, h3:focus { outline: none; }

h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
    outline: none;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-dark-muted);
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
}

.text-italic {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

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

/* Decorative line after label */
.section-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-left: 12px;
    vertical-align: middle;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    position: relative;
}

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

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

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-900);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(250, 246, 240, 0.3);
}

.btn-outline-light:hover {
    background: rgba(250, 246, 240, 0.1);
    border-color: rgba(250, 246, 240, 0.6);
}

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

.btn-dark:hover {
    background: var(--dark-600);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 0.9rem;
}

/* ============================================
   NAVIGATION - Luxury centered
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    transition: all var(--duration-normal) var(--ease-out);
    padding: var(--space-lg) 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar-scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left links */
.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex: 1;
}

.navbar-right {
    justify-content: flex-end;
}

/* Center logo */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    padding: 0 var(--space-2xl);
    text-decoration: none;
}

.navbar-brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.navbar-brand-name span {
    color: var(--gold);
}

.navbar-brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

.navbar-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light-muted);
    transition: color var(--duration-fast);
    padding: 8px 0;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--cream);
}

.navbar-link.active::after,
.navbar-link:hover::after {
    width: 100%;
}

/* Book button in nav */
.navbar-book {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.navbar-book:hover {
    background: var(--gold);
    color: var(--dark-900);
}

/* Language selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-light-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px;
    transition: color var(--duration-fast);
}

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

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--dark-700);
    border: 1px solid var(--border-dark);
    min-width: 150px;
    z-index: var(--z-overlay);
    display: none;
    overflow: hidden;
}

.language-dropdown.open {
    display: block;
    animation: fadeDown 0.2s var(--ease-out);
}

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

.language-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-light-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.language-option:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
}

.language-option.active {
    color: var(--gold);
}

/* Mobile nav */
.navbar-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(250, 246, 240, 0.2);
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.navbar-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream);
    transition: all var(--duration-fast);
}

.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
    display: none;
}

@media (max-width: 1024px) {
    .navbar-left, .navbar-right { display: none !important; }
    .navbar-toggle { display: flex !important; }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--duration-slow) var(--ease-out);
        padding: 0 var(--space-xl);
    }

    .mobile-menu.open {
        max-height: 600px;
        padding: var(--space-xl);
        border-top: 1px solid var(--border-dark);
        margin-top: var(--space-md);
    }

    .mobile-link {
        display: block;
        padding: var(--space-md) 0;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: var(--text-light-muted);
        border-bottom: 1px solid var(--border-dark);
        transition: color var(--duration-fast);
    }

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

    .mobile-divider {
        height: 1px;
        background: var(--border-dark);
        margin: var(--space-lg) 0;
    }

    .mobile-language {
        margin-bottom: var(--space-md);
    }

    .mobile-label {
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-light-subtle);
        margin-bottom: var(--space-sm);
    }

    .mobile-language-options {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .mobile-lang-btn {
        padding: 8px 14px;
        background: transparent;
        border: 1px solid var(--border-dark);
        color: var(--text-light-muted);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all var(--duration-fast);
    }

    .mobile-lang-btn:hover { border-color: var(--gold); color: var(--gold); }
    .mobile-lang-btn.active { background: var(--gold); color: var(--dark-900); border-color: var(--gold); }

    .mobile-actions {
        padding-top: var(--space-md);
    }

    .mobile-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HERO - Full-screen cinematic
   ============================================ */
.hero-cinematic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-xl);
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(91, 138, 138, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated gold lines */
.hero-cinematic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 169, 110, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-cinematic h1 {
    color: var(--cream);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-cinematic h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-cinematic .hero-sub {
    color: var(--text-light-muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Decorative elements */
.hero-deco {
    position: absolute;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.hero-deco-left { left: 15%; top: 20%; }
.hero-deco-right { right: 15%; bottom: 25%; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light-subtle);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 0.8; height: 50px; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-light {
    background: var(--warm-white);
    padding: var(--space-6xl) 0;
}

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

.section-dark {
    background: var(--dark-800);
    padding: var(--space-6xl) 0;
    color: var(--text-light);
}

.section-dark p {
    color: var(--text-light-muted);
}

.section-dark h2, .section-dark h3 {
    color: var(--cream);
}

/* Section header */
.section-intro {
    max-width: 600px;
    margin-bottom: var(--space-4xl);
}

.section-intro.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: var(--space-2xl) 0;
}

.gold-divider.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES - Horizontal scroll cards
   ============================================ */
.services-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-md) 0 var(--space-xl);
    margin: 0 calc(-1 * var(--space-xl));
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

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

.service-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--dark-700);
    border: 1px solid var(--border-dark);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

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

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

.service-card .service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-card .service-price {
    display: inline-block;
    margin-top: var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
}

/* Service grid (for services page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content .service-price-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.service-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.service-detail-content p {
    margin-bottom: var(--space-xl);
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-visual svg,
.service-detail-visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .service-detail.reverse { direction: ltr; }
}

/* Feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--text-dark-muted);
    font-size: 0.95rem;
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   ABOUT / WHY US - Split layout
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.split-content {
    display: flex;
    align-items: center;
    padding: var(--space-4xl);
}

.split-content-inner {
    max-width: 480px;
}

.split-visual {
    position: relative;
    overflow: hidden;
    background: var(--dark-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual svg, .split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-visual {
        min-height: 300px;
    }
}

/* ============================================
   STATS - Minimal elegant
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.stat-item {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-right: 1px solid rgba(201, 169, 110, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark-subtle);
}

.section-dark .stat-label {
    color: var(--text-light-subtle);
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) { border-right: none; }
}

/* ============================================
   PRICING - Elegant cards
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
}

.pricing-card {
    padding: var(--space-3xl);
    border-right: 1px solid var(--border-light);
    transition: all var(--duration-normal);
    position: relative;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.featured {
    background: var(--dark-800);
    color: var(--text-light);
    border-color: var(--border-dark);
}

.pricing-card.featured p,
.pricing-card.featured .pricing-feature {
    color: var(--text-light-muted);
}

.pricing-card.featured .pricing-card-name {
    color: var(--gold);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 20px;
    background: var(--gold);
    color: var(--dark-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.pricing-card-desc {
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.pricing-card-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.pricing-card.featured .pricing-card-price {
    color: var(--cream);
}

.pricing-card-unit {
    font-size: 0.8rem;
    color: var(--text-dark-subtle);
    margin-bottom: var(--space-xl);
}

.pricing-card.featured .pricing-card-unit {
    color: var(--text-light-subtle);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-dark-muted);
}

.pricing-feature svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .pricing-card:last-child { border-bottom: none; }
}

/* Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-3xl);
    border: 1px solid var(--border-light);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 12px 28px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark-muted);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.toggle-btn.active {
    background: var(--dark-800);
    color: var(--cream);
}

/* ============================================
   GALLERY - Masonry-like grid
   ============================================ */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 4px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img, .gallery-item svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img, .gallery-item:hover svg {
    transform: scale(1.05);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-band {
    background: var(--dark-900);
    padding: var(--space-5xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band h2 {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.cta-band p {
    color: var(--text-light-muted);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    transition: border-color var(--duration-fast);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-input::placeholder {
    color: var(--text-dark-subtle);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
    border: 1px solid var(--border-light);
    padding: 14px;
}

.form-textarea:focus {
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

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

/* Two column layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

@media (max-width: 768px) {
    .two-column-layout { grid-template-columns: 1fr; }
}

/* Success message */
.success-message {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    border: 1px solid var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.success-message p {
    color: var(--gold-dark);
    font-weight: 500;
}

/* Address card */
.address-card {
    background: var(--dark-800);
    padding: var(--space-2xl);
    color: var(--text-light);
}

.address-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: var(--space-xl);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

/* ============================================
   FOOTER - Minimal luxury
   ============================================ */
.footer {
    background: var(--dark-900);
    color: var(--text-light);
    padding: var(--space-5xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-4xl);
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.footer-brand-name span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--text-light-subtle);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--text-light-subtle);
    font-size: 0.85rem;
    transition: color var(--duration-fast);
}

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

.footer-info {
    color: var(--text-light-subtle);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer-copyright {
    color: var(--text-light-subtle);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-address {
    color: var(--text-light-subtle);
    font-size: 0.75rem;
}

.footer-powered {
    text-align: center;
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border-dark);
    font-size: 0.85rem;
    color: var(--text-light-muted);
    letter-spacing: 0.03em;
}

.footer-powered a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--duration-fast);
}

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

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    .footer-brand { grid-column: span 2; }
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.page-header {
    background: var(--dark-800);
    padding: calc(var(--space-5xl) + 2rem) 0 var(--space-3xl);
    text-align: center;
}

.page-header h1 {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.page-header p {
    color: var(--text-light-muted);
}

.page-header .section-label {
    color: var(--gold-light);
}

.page-header .section-label::after {
    background: var(--gold-light);
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
}

/* Alias for inner page hero */
.hero-section {
    background: var(--dark-800);
    padding: calc(var(--space-5xl) + 2rem) 0 var(--space-3xl);
    text-align: center;
}

.hero-section h1, .hero-section .hero-title {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.hero-section p, .hero-section .hero-subtitle {
    color: var(--text-light-muted);
}

.legal-content {
    padding: var(--space-4xl) 0;
    color: var(--text-dark-muted);
    line-height: 1.9;
}

.legal-content h2 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--gold);
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--text-dark); font-size: 1.2rem; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.legal-content p { margin-bottom: var(--space-md); }
.legal-content ul, .legal-content ol { margin-bottom: var(--space-lg); padding-left: var(--space-xl); }
.legal-content li { margin-bottom: var(--space-sm); }

.legal-updated {
    color: var(--text-dark-subtle);
    font-size: 0.85rem;
    margin-bottom: var(--space-xl);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.cookies-table th, .cookies-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookies-table th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* ============================================
   HERO variant for inner pages
   ============================================ */
.hero {
    background: var(--dark-800);
    padding: calc(var(--space-5xl) + 2rem) 0 var(--space-3xl);
    text-align: center;
}

.hero h1, .hero .hero-title {
    color: var(--cream);
}

.hero p, .hero .hero-subtitle {
    color: var(--text-light-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-header h1, .section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.05rem;
}

/* Map placeholder */
.map-placeholder {
    background: var(--dark-600);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-subtle);
    font-size: 0.8rem;
    margin-top: var(--space-xl);
}

/* Card title */
.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

/* Card base */
.card {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    padding: var(--space-2xl);
    transition: all var(--duration-normal);
}

.card:hover {
    box-shadow: var(--shadow-soft);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out);
}

.js-ready .scroll-reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-cinematic {
        min-height: auto;
        padding: calc(var(--space-5xl) + 2rem) var(--space-xl) var(--space-4xl);
    }

    .hero-cinematic h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-deco { display: none; }
    .hero-scroll { display: none; }

    .services-scroll {
        margin: 0 -1rem;
        padding-left: 1rem;
    }

    .service-card {
        flex: 0 0 280px;
    }
}
