/* Google Fonts loaded via functions.php wp_enqueue_style — do NOT @import here */

:root {
    /* Salon64-inspired warm palette */
    --clr-bg: #FFFCF5;
    --clr-bg-alt: #F5F0E8;
    --clr-text: #1E1E1E;
    --clr-text-muted: #6b6358;
    --clr-accent: #9C8970;
    --clr-border: #1E1E1E;
    --clr-border-light: rgba(30, 30, 30, 0.12);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
    --space-xxl: 10rem;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-smooth: 0.45s cubic-bezier(0.525, 0, 0, 1);
}

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

/* Accessibility skip-link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-text);
    color: var(--clr-bg);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0.5rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (min-width: 1920px) {
    html { font-size: 19.2px; }
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Subtle parchment/linen texture */
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 185, 160, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 185, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(156, 137, 112, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9b9a0' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* ============================================================
   DECORATIVE TEXTURE OVERLAYS
   ============================================================ */
/* Adds a very faint noise/grain texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

body > * { position: relative; z-index: 1; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

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

.text-allcaps {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.6875rem;
    font-weight: 500;
}

.italic { font-style: italic; }
.caps { text-transform: uppercase; }

em {
    font-style: italic;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.page-padding {
    padding-left: 5%;
    padding-right: 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-divider {
    width: 100%;
    height: 1px;
    background: var(--clr-border-light);
}

/* Decorative line element */
.decorative-line {
    width: 80px;
    height: 1px;
    background: var(--clr-accent);
    margin: var(--space-md) 0;
}

/* ============================================================
   SIGNPOST (Section Label)
   ============================================================ */
.signpost {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.signpost-text {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.6875rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--clr-accent);
}

.signpost-line {
    height: 1px;
    width: 60px;
    background: var(--clr-accent);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 252, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--trans-smooth);
}

.header-topbar {
    border-bottom: 1px solid var(--clr-border-light);
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.header-topbar a {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
}

.header-topbar a:hover {
    color: var(--clr-text);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--clr-border-light);
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--trans-smooth);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--clr-text);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--clr-text);
    position: absolute;
    left: 0;
    transition: var(--trans-smooth);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }

.nav-toggle.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}

.nav-toggle.open span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: var(--trans-smooth);
    background: transparent;
    color: var(--clr-text);
}

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

.btn-filled {
    background: var(--clr-text);
    color: var(--clr-bg);
}

.btn-filled:hover {
    background: transparent;
    color: var(--clr-text);
}

/* Arrow-style link (Salon64 signature) */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    transition: var(--trans-fast);
}

.arrow-link svg {
    width: 28px;
    height: auto;
    transition: transform 0.4s ease;
}

.arrow-link:hover svg {
    transform: translateX(6px);
}

/* ============================================================
   FLOATING BOOKING BUTTON
   ============================================================ */
/* Floating booking widget — permanent corner pill */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--clr-accent);
    color: #fff;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    transition: var(--trans-smooth);
    border: none;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(156, 137, 112, 0.35);
}

.fab-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.fab-icon i {
    font-size: 1.125rem;
}

/* Pulsing dot */
.fab-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid var(--clr-accent);
    animation: fab-pulse 2s ease-in-out infinite;
}

@keyframes fab-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.fab-text {
    padding: 0 1.25rem 0 0.5rem;
    white-space: nowrap;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 137, 112, 0.5);
    background: var(--clr-text);
}

.fab:hover .fab-icon {
    background: rgba(255,255,255,0.15);
}

.fab:hover .fab-icon::after {
    border-color: var(--clr-text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(255,252,245,0.97) 0%,
        rgba(255,252,245,0.92) 20%,
        rgba(255,252,245,0.65) 40%,
        rgba(255,252,245,0.25) 60%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-xl);
    width: 100%;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 .caps {
    font-style: normal;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
}

/* Hero brand logo */
.hero-logo {
    display: block;
    max-width: 220px;
    height: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(0);
    opacity: 0.85;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-bottom: 0;
}

.hero-arrow-link {
    color: var(--clr-text);
}

/* Large hero CTA button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--clr-accent);
    color: #fff;
    border: 2px solid var(--clr-accent);
    cursor: pointer;
    transition: var(--trans-smooth);
}

.btn-hero:hover {
    background: var(--clr-text);
    border-color: var(--clr-text);
    color: var(--clr-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 137, 112, 0.3);
}

.btn-hero i { font-size: 0.875rem; }

/* ============================================================
   QUICK BOOKING BAR
   ============================================================ */
.quick-book-bar {
    background: var(--clr-text);
    color: var(--clr-bg);
    padding: 1.25rem 0;
    position: relative;
    z-index: 10;
}

.quick-book-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-book-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    white-space: nowrap;
}

.quick-book-label i {
    font-size: 1.125rem;
    color: var(--clr-accent);
}

.quick-book-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(255,252,245,0.25);
    color: var(--clr-bg);
    transition: var(--trans-smooth);
    white-space: nowrap;
}

.quick-book-btn:hover {
    background: rgba(255,252,245,0.1);
    border-color: rgba(255,252,245,0.5);
}

.quick-book-btn.qb-primary {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
}

.quick-book-btn.qb-primary:hover {
    background: #b39e85;
    border-color: #b39e85;
}

.quick-book-btn.qb-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.quick-book-btn.qb-whatsapp:hover {
    background: #1eba59;
    border-color: #1eba59;
}

.quick-book-btn i {
    font-size: 0.875rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    border-bottom: 1px solid var(--clr-border-light);
    padding: var(--space-lg) 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(156, 137, 112, 0.05), transparent 50%),
        var(--clr-bg);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.trust-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--trans-smooth);
}

.trust-logo-srf { height: 30px; }
.trust-logo-cert { height: 50px; border-radius: 4px; }

.trust-item:hover .trust-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: var(--clr-border-light);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--clr-accent);
}

/* CTA actions row */
.cta-actions {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-color: rgba(255,252,245,0.5);
    color: var(--clr-bg);
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* ============================================================
   INTRO / TEXT SECTIONS
   ============================================================ */
.intro-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
}

.intro-text {
    max-width: 700px;
}

.intro-text h2 .caps {
    font-style: normal;
    text-transform: uppercase;
}

/* ============================================================
   SERVICES (Numbered List — Salon64 Style)
   ============================================================ */
.services-numbered-list {
    border-top: 1px solid var(--clr-border-light);
}

.service-item {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--clr-border-light);
    transition: var(--trans-smooth);
    cursor: pointer;
    gap: 2rem;
}

.service-item:hover {
    padding-left: 1rem;
    background: rgba(156, 137, 112, 0.04);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-accent);
    min-width: 2rem;
}

.service-number::before {
    content: '0';
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    flex: 1;
}

.service-desc {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    max-width: 300px;
    line-height: 1.6;
}

.service-arrow {
    width: 20px;
    opacity: 0;
    transform: translateX(-100%);
    transition: var(--trans-smooth);
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   CATEGORY RANGE GRID (Services Blocks)
   ============================================================ */
.range-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--clr-border-light);
}

.range-item {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--clr-border-light);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    transition: var(--trans-smooth);
}

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

.range-item-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.range-item:hover .range-item-bg {
    transform: scale(1.06);
}

.range-item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(30,30,30,0.75) 0%, transparent 65%);
    z-index: 1;
}

.range-item-content {
    position: relative;
    z-index: 2;
    color: var(--clr-bg);
}

.range-number {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.range-number::before { content: '0'; }

.range-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-bg);
    font-weight: 400;
}

.range-title-caps {
    font-style: normal;
    text-transform: uppercase;
    display: block;
    font-size: 0.7em;
    letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT SECTION (Split layout)
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: auto;
}

.about-img-col {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    background:
        radial-gradient(ellipse at center, rgba(156, 137, 112, 0.08), transparent 60%),
        var(--clr-bg-alt);
}

.about-img-col img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--clr-accent);
    box-shadow: 0 8px 40px rgba(156, 137, 112, 0.2);
}

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    background:
        radial-gradient(ellipse at bottom right, rgba(156, 137, 112, 0.06), transparent 60%),
        var(--clr-bg);
}

.about-text-col h2 {
    margin-bottom: var(--space-md);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl) 0;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--clr-text);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
}

/* ============================================================
   STATS / KEY NUMBERS STRIP
   ============================================================ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--clr-border-light);
    border-bottom: 1px solid var(--clr-border-light);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-right: 1px solid var(--clr-border-light);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--clr-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--clr-accent);
}

/* ============================================================
   CTA SECTION (Full-width image + overlay)
   ============================================================ */
.cta-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 30, 30, 0.55);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--clr-bg);
    max-width: 700px;
    padding: var(--space-lg);
}

.cta-content h2 {
    color: var(--clr-bg);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,252,245,0.8);
}

.cta-content .btn {
    border-color: var(--clr-bg);
    color: var(--clr-bg);
    margin-top: var(--space-md);
}

.cta-content .btn:hover {
    background: var(--clr-bg);
    color: var(--clr-text);
}

/* ============================================================
   FEATURE MARQUEE
   ============================================================ */
.marquee-strip {
    overflow: hidden;
    border-top: 1px solid var(--clr-border-light);
    border-bottom: 1px solid var(--clr-border-light);
    padding: 1.5rem 0;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    padding: 0 2rem;
    color: var(--clr-text);
}

.marquee-item .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-accent);
    margin-left: 2rem;
    vertical-align: middle;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background:
        radial-gradient(ellipse at 60% 0%, rgba(156, 137, 112, 0.06), transparent 50%),
        var(--clr-bg);
    border-top: 1px solid var(--clr-border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
}

.footer-col .signpost {
    margin-bottom: 1.5rem;
}

.footer-text-link {
    display: block;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.footer-text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.footer-text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-info {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border-light);
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    position: relative;
}

.footer-legal a:hover {
    color: var(--clr-text);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--clr-text);
    font-size: 1.125rem;
    transition: var(--trans-fast);
}

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

/* ============================================================
   PRICE LIST (Behandlungen page)
   ============================================================ */
.price-list {
    list-style: none;
    margin-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--clr-border-light);
    font-size: 0.875rem;
    gap: 1rem;
}

.price-name {
    color: var(--clr-text);
    font-weight: 400;
}

.price-val {
    color: var(--clr-accent);
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================================
   PAGE HEADER (Sub-pages)
   ============================================================ */
.page-hero {
    padding: 180px 0 80px;
    border-bottom: 1px solid var(--clr-border-light);
    background:
        radial-gradient(ellipse at 70% 30%, rgba(156, 137, 112, 0.06), transparent 50%),
        transparent;
}

/* ============================================================
   TREATMENT BLOCKS
   ============================================================ */
.treatment-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--clr-border-light);
}

.treatment-block:nth-child(even) .treatment-img-col {
    order: 2;
}

.treatment-img-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.treatment-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-block:hover .treatment-img-col img {
    transform: scale(1.04);
}

.treatment-text-col {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(ellipse at bottom left, rgba(156, 137, 112, 0.04), transparent 50%),
        transparent;
}

.treatment-text-col h2 {
    margin-bottom: 1rem;
}

/* ============================================================
   CONTACT GRID
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--clr-border-light);
}

.contact-card {
    padding: var(--space-lg);
    text-align: center;
    border-right: 1px solid var(--clr-border-light);
    transition: var(--trans-smooth);
}

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

.contact-card:hover {
    background: var(--clr-bg-alt);
}

.contact-icon {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--clr-border-light);
    margin-top: var(--space-lg);
}

.social-card {
    padding: var(--space-md);
    text-align: center;
    border-right: 1px solid var(--clr-border-light);
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--clr-text);
}

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

.social-card i {
    font-size: 1.5rem;
}

.social-card span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.social-card:hover {
    background: var(--clr-text);
    color: var(--clr-bg);
}

/* ============================================================
   STANDORT CARDS (Kontakt page)
   ============================================================ */
.standort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.standort-card {
    border: 1px solid var(--clr-border-light);
    padding: var(--space-lg);
    transition: var(--trans-smooth);
    background:
        radial-gradient(ellipse at top right, rgba(156, 137, 112, 0.04), transparent 50%),
        var(--clr-bg);
}

.standort-card:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 8px 40px rgba(156, 137, 112, 0.08);
}

.standort-card h3 {
    margin-bottom: 0.75rem;
}

.standort-hours {
    margin-top: 1rem;
}

.standort-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--clr-border-light);
    list-style: none;
}

.standort-hours li:last-child {
    border-bottom: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-up[data-delay="1"] { transition-delay: 0.15s; }
.fade-up[data-delay="2"] { transition-delay: 0.3s; }
.fade-up[data-delay="3"] { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE — TABLET (max 992px)
   ============================================================ */
@media (max-width: 992px) {
    .nav-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform var(--trans-smooth);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .about-split,
    .treatment-block {
        grid-template-columns: 1fr;
    }

    .treatment-block:nth-child(even) .treatment-img-col {
        order: 0;
    }

    .treatment-img-col {
        min-height: 300px;
    }

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

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

    .range-item:nth-child(2) {
        border-right: none;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--clr-border-light);
    }

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

    .contact-card {
        border-right: none;
        border-bottom: 1px solid var(--clr-border-light);
    }

    .contact-card:last-child { border-bottom: none; }

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

    .social-card:nth-child(2) { border-right: none; }

    .quick-book-inner {
        justify-content: center;
        text-align: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-inner {
        gap: var(--space-md);
    }

    .about-img-col {
        padding: var(--space-lg);
    }

    .about-img-col img {
        width: 200px;
        height: 200px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {

    /* ---- HERO: separate mobile image ---- */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background: url('images/hero-mobile.png') center/cover no-repeat;
    }

    .hero-img {
        display: none !important;
    }

    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(255,252,245,0.97) 0%,
            rgba(255,252,245,0.88) 30%,
            rgba(255,252,245,0.4) 60%,
            rgba(255,252,245,0.15) 80%,
            transparent 100%
        );
    }

    .hero-logo {
        max-width: 140px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-arrow-link {
        justify-content: center;
    }

    .hero-content {
        padding-bottom: var(--space-lg);
    }

    /* ---- HEADER ---- */
    .header-topbar {
        display: none;
    }

    .nav-container {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 38px;
    }

    /* ---- QUICK BOOK BAR ---- */
    .quick-book-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .quick-book-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .quick-book-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
        padding: 0.6rem 0.75rem;
        font-size: 0.65rem;
    }

    /* ---- TRUST STRIP — CENTERED ---- */
    .trust-strip {
        padding: var(--space-md) 0;
    }

    .trust-inner {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .trust-divider {
        display: none !important;
    }

    .trust-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid var(--clr-border-light);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    /* SRF logo: crop to show only the red SRF box,
       the image is ~4x wider than the box because of invisible text */
    .trust-logo-srf {
        height: 44px !important;
        width: auto;
        max-width: 56px;
        object-fit: cover;
        object-position: left center;
        display: block;
        margin: 0 auto;
    }

    .trust-logo-cert {
        height: 50px !important;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }

    .trust-logo {
        display: block;
        margin: 0 auto;
    }

    .trust-badge {
        width: 42px;
        height: 42px;
        font-size: 0.7rem;
        margin: 0 auto;
    }

    .trust-label {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* ---- MARQUEE ---- */
    .marquee-item {
        font-size: clamp(1rem, 4vw, 1.5rem);
        padding: 0 1rem;
    }

    /* ---- SERVICES GRID ---- */
    .range-grid {
        grid-template-columns: 1fr;
    }

    .range-item {
        border-right: none;
        border-bottom: 1px solid var(--clr-border-light);
        min-height: 280px;
    }

    /* ---- ABOUT DANIELA ---- */
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-img-col {
        padding: var(--space-lg) var(--space-md);
    }

    .about-img-col img {
        width: 180px;
        height: 180px;
    }

    .about-text-col {
        padding: var(--space-lg) var(--space-md);
    }

    /* ---- STATS ---- */
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    /* ---- STANDORT CARDS ---- */
    .standort-grid {
        grid-template-columns: 1fr;
    }

    .standort-card {
        padding: var(--space-md);
    }

    /* ---- CTA ---- */
    .cta-content {
        padding: var(--space-md);
    }

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

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* ---- FOOTER CENTERED ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-col .signpost {
        justify-content: center;
    }

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

    .footer-text-link {
        display: block;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

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

    /* ---- FAB WIDGET ---- */
    .fab {
        bottom: 1rem;
        right: 1rem;
    }

    .fab-icon {
        width: 44px;
        height: 44px;
    }

    .fab-text {
        font-size: 0.6rem;
        padding: 0 1rem 0 0.4rem;
    }

    /* ---- INTRO ---- */
    .intro-grid {
        grid-template-columns: 1fr;
    }

    /* ---- PAGE HERO (subpages) ---- */
    .page-hero {
        padding: 140px 0 50px;
    }

    /* ---- TREATMENT BLOCKS ---- */
    .treatment-text-col {
        padding: var(--space-md);
    }

    .treatment-img-col {
        min-height: 250px;
    }

    /* ---- SOCIAL GRID ---- */
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        border-right: none;
        border-bottom: 1px solid var(--clr-border-light);
    }

    /* ---- CONTACT GRID ---- */
    .contact-card {
        padding: var(--space-md);
    }

    /* ---- SECTION SPACING ---- */
    .section-padding {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    /* ---- TESTIMONIALS ---- */
    .testimonial-wrapper {
        padding: var(--space-lg) 0;
    }

    .testimonial-quote {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
}
