/* The Moon Beauty Salon — luxury spa theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --rose-gold: #b76e79;
    --rose-gold-light: #d4a5a5;
    --blush: #f5e6e8;
    --cream: #faf6f2;
    --mauve: #4a2c3a;
    --mauve-deep: #2d1a24;
    --glow: rgba(183, 110, 121, 0.45);
    --glow-cyan: rgba(200, 162, 200, 0.35);
    --glass: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.22);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --nav-h: 72px;
    --radius: 1rem;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--mauve-deep);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--mauve);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--mauve); }

/* ── Glass panels ── */
.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(45, 26, 36, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--glow), var(--glow-cyan), var(--glow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.glow-border:hover::before { opacity: 1; }

/* ── Nav ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.12);
    transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(45, 26, 36, 0.08); }

.brand {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--mauve);
    letter-spacing: 0.02em;
}
.brand span { color: var(--rose-gold); }

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mauve);
}
.nav-links a:hover { color: var(--rose-gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--mauve);
    cursor: pointer;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), #c98994);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--glow), 0 0 20px var(--glow-cyan);
}
.btn-outline {
    background: transparent;
    color: var(--mauve);
    border: 1px solid var(--rose-gold-light);
}
.btn-outline:hover {
    background: var(--blush);
    border-color: var(--rose-gold);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: calc(var(--nav-h) + 3rem) 5vw 4rem;
    background: linear-gradient(145deg, var(--cream) 0%, var(--blush) 50%, #ede0e8 100%);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}
.hero-lead {
    font-size: 1.1rem;
    color: var(--mauve);
    opacity: 0.85;
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(45, 26, 36, 0.15);
}
.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}
.hero-image:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* ── Sections ── */
.section {
    padding: 5rem 5vw;
    position: relative;
}
.section-diagonal-top {
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    margin-top: -40px;
    padding-top: calc(5rem + 40px);
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--mauve); opacity: 0.8; }

/* ── Services grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service-card {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(183, 110, 121, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(183, 110, 121, 0.18);
}
.service-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 0.65rem;
    margin-bottom: 1rem;
    transition: transform var(--transition), filter var(--transition);
}
.service-card:hover img { transform: scale(1.04); filter: brightness(1.06); }
.service-icon {
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}
.service-card h3 { font-size: 1.35rem; margin: 0 0 0.5rem; }
.service-price {
    font-weight: 600;
    color: var(--rose-gold);
    font-size: 1.1rem;
}

/* ── Price list ── */
.price-list {
    max-width: 720px;
    margin: 0 auto;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(183, 110, 121, 0.25);
    gap: 1rem;
}
.price-row span:last-child {
    font-weight: 600;
    color: var(--rose-gold);
    white-space: nowrap;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.08); }
.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(45, 26, 36, 0.75));
    color: #fff;
    font-size: 0.85rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(45, 26, 36, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: var(--radius);
    box-shadow: 0 0 60px var(--glow);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}
.team-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(183, 110, 121, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(183, 110, 121, 0.15);
}
.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--rose-gold-light);
}
.team-card h3 { margin: 0 0 0.25rem; font-size: 1.25rem; }
.team-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose-gold);
    margin-bottom: 0.75rem;
}

/* ── Testimonials carousel ── */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 2.5rem;
    text-align: center;
}
.testimonial-slide blockquote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--mauve);
    margin: 0 0 1rem;
}
.stars { color: var(--rose-gold); font-size: 1rem; margin-bottom: 0.75rem; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--rose-gold-light);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}
.carousel-dots button.active {
    background: var(--rose-gold);
    transform: scale(1.3);
}

/* ── Booking wizard ── */
.booking-wizard {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(183, 110, 121, 0.15);
}
.booking-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.booking-step {
    flex: 1;
    height: 4px;
    background: var(--blush);
    border-radius: 2px;
    transition: background var(--transition);
}
.booking-step.active { background: var(--rose-gold); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mauve);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(183, 110, 121, 0.25);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px var(--glow);
}
.elegant-select {
    position: relative;
}
.elegant-select .select-caret {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rose-gold);
    pointer-events: none;
    font-size: 0.85rem;
}
.elegant-combobox {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.75rem;
    cursor: pointer;
    background: linear-gradient(180deg, #fffefb 0%, var(--cream) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.elegant-combobox:focus {
    background: #fff;
}
.service-select-group {
    max-width: 36rem;
}
.service-select-hint {
    margin-top: 0.65rem;
    font-size: 0.9rem;
}
.book-guest-fields {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(183, 110, 121, 0.2);
}
.book-guest-fields .form-group:last-child {
    margin-bottom: 0;
}
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}
.slot-btn {
    padding: 0.6rem;
    border: 1px solid rgba(183, 110, 121, 0.3);
    border-radius: 0.5rem;
    background: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--transition);
}
.slot-btn:hover, .slot-btn.selected {
    background: var(--rose-gold);
    color: #fff;
    border-color: var(--rose-gold);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}
.contact-info h3 { margin-top: 0; }
.contact-info p { margin: 0.5rem 0; }
.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.5rem 0;
}
.contact-line i {
    width: 1.1rem;
    margin-top: 0.2rem;
    color: var(--rose-gold);
    text-align: center;
    flex-shrink: 0;
}
.contact-hours-block {
    margin: 0.75rem 0;
}
.contact-hours-status-wrap {
    margin: 0.55rem 0 0 1.75rem;
}
.hours-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid transparent;
}
.hours-status-pill strong {
    font-weight: 700;
}
.hours-status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.hours-status-pill--open {
    color: #1f5f3f;
    background: rgba(131, 214, 170, 0.18);
    border-color: rgba(131, 214, 170, 0.45);
}
.hours-status-pill--open .hours-status-dot {
    background: #2f9d62;
    box-shadow: 0 0 0 3px rgba(47, 157, 98, 0.2);
}
.hours-status-pill--closed {
    color: #6b3a42;
    background: rgba(183, 110, 121, 0.14);
    border-color: rgba(183, 110, 121, 0.35);
}
.hours-status-pill--closed .hours-status-dot {
    background: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.18);
}

/* ── Footer ── */
.site-footer {
    background: var(--mauve-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 5vw 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.site-footer h4 {
    color: var(--rose-gold-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ── Cookie banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: 1rem 1.5rem;
    background: var(--mauve-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 200px; }

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Auth modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(45, 26, 36, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--mauve);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
}
/* ── Booking option cards ── */
.service-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(183, 110, 121, 0.2);
    border-radius: 0.65rem;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.service-option:has(input:checked) {
    border-color: var(--rose-gold);
    background: var(--blush);
}
.service-option input { margin-top: 0.25rem; accent-color: var(--rose-gold); }
.service-option-body { display: flex; flex-direction: column; gap: 0.2rem; }
.service-option-body strong { color: var(--mauve); }
.service-option-body span { font-size: 0.85rem; color: var(--mauve); opacity: 0.75; }
.text-muted { color: var(--mauve); opacity: 0.7; font-size: 0.9rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 4000;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    background: var(--mauve-deep);
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 90vw;
    text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-error { background: #8b3a4a; }
.toast-success { background: var(--mauve); }

/* ── Auth tabs ── */
.auth-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.auth-tabs button {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid rgba(183, 110, 121, 0.3);
    background: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
}
.auth-tabs button.active { background: var(--blush); border-color: var(--rose-gold); }

.book-section { background: linear-gradient(180deg, var(--cream), var(--blush)); }
#booking {
    scroll-margin-top: calc(var(--nav-h) + 1.25rem);
}
.booking-actions { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: space-between; }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(250, 246, 242, 0.98);
        padding: 1rem;
        border-bottom: 1px solid rgba(183, 110, 121, 0.12);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
}

/* ── Premium front-end finish ── */
body::before,
body::after {
    content: '';
    position: fixed;
    z-index: -2;
    width: 38rem;
    height: 38rem;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
}

body::before {
    top: -12rem;
    left: -12rem;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.72), rgba(212, 165, 165, 0));
}

body::after {
    right: -14rem;
    bottom: 20vh;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.38), rgba(200, 162, 200, 0));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    color: var(--rose-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    box-shadow: 0 0 12px var(--glow);
}

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

.hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.78), transparent 30%),
        radial-gradient(circle at 77% 18%, rgba(183, 110, 121, 0.20), transparent 34%),
        linear-gradient(145deg, #fffaf6 0%, var(--blush) 48%, #efe1e8 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 7rem 4vw auto auto;
    width: min(34vw, 26rem);
    height: min(34vw, 26rem);
    border: 1px solid rgba(183, 110, 121, 0.24);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(183, 110, 121, 0.04));
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.28), 0 0 52px rgba(183, 110, 121, 0.18);
    clip-path: polygon(50% 0, 62% 35%, 100% 38%, 70% 58%, 80% 96%, 50% 74%, 20% 96%, 30% 58%, 0 38%, 38% 35%);
    opacity: 0.42;
    z-index: -1;
}

.hero-content {
    max-width: 45rem;
}

.hero h1 {
    margin-top: 0;
    font-size: clamp(3rem, 7vw, 6.8rem);
    letter-spacing: -0.045em;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    color: var(--mauve);
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(45, 26, 36, 0.08);
}

.hero-badges i {
    color: var(--rose-gold);
    filter: drop-shadow(0 0 8px rgba(183, 110, 121, 0.45));
}

.hero-image {
    padding: 0.65rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.14));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: calc(var(--radius) - 0.2rem);
    pointer-events: none;
}

.hero-image img {
    border-radius: calc(var(--radius) - 0.35rem);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 220% 220%;
    background-image: linear-gradient(120deg, #b76e79 0%, #d4a5a5 34%, #8b5061 68%, #b76e79 100%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.34);
    pointer-events: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -35% auto -35% -40%;
    width: 40%;
    transform: rotate(14deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transition: left 0.62s ease;
}

.btn-primary:hover {
    animation: gradientShift 2.2s ease infinite;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.section {
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 5vw;
    width: 7.5rem;
    height: 7.5rem;
    border: 1px solid rgba(183, 110, 121, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(183, 110, 121, 0.08);
    opacity: 0.55;
    pointer-events: none;
}

.section:nth-of-type(even)::after {
    content: '';
    position: absolute;
    left: -3rem;
    bottom: 2rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.10), rgba(200, 162, 200, 0.04));
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    transform: rotate(18deg);
    pointer-events: none;
}

.price-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 230, 232, 0.92)),
        radial-gradient(circle at 10% 10%, rgba(183, 110, 121, 0.16), transparent 30%);
}

.team-section {
    background:
        linear-gradient(180deg, var(--cream), #fff),
        radial-gradient(circle at 90% 30%, rgba(212, 165, 165, 0.22), transparent 32%);
}

.service-card,
.team-card,
.booking-wizard,
.price-list,
.contact-info,
#contact-form,
.testimonial-slide,
.modal {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.50), transparent 36%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 52px rgba(45, 26, 36, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.service-card:hover,
.team-card:hover,
.gallery-item:hover,
.booking-wizard:hover,
.contact-info:hover,
#contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(45, 26, 36, 0.16), 0 0 34px rgba(183, 110, 121, 0.13);
}

.service-card,
.team-card,
.gallery-item,
.booking-wizard,
.contact-info,
#contact-form {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), filter var(--transition);
}

.service-card img,
.gallery-item img,
.team-card img {
    filter: saturate(0.94) contrast(1.02);
}

.service-card:hover img,
.gallery-item:hover img,
.team-card:hover img {
    filter: brightness(1.07) saturate(1.05) contrast(1.03);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.14), rgba(255, 255, 255, 0.44));
    box-shadow: inset 0 0 0 1px rgba(183, 110, 121, 0.18), 0 0 18px rgba(183, 110, 121, 0.12);
}

.price-list {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.price-row:first-child {
    border-top: 1px dashed rgba(183, 110, 121, 0.18);
}

.gallery-item {
    box-shadow: 0 20px 45px rgba(45, 26, 36, 0.10);
}

.team-card img {
    box-shadow: 0 0 0 6px rgba(245, 230, 232, 0.72), 0 0 35px rgba(183, 110, 121, 0.16);
}

.booking-wizard {
    max-width: 760px;
}

#booking-summary {
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.booking-action-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-info,
#contact-form {
    padding: clamp(1.35rem, 3vw, 2.1rem);
}

.contact-info i {
    width: 1.4rem;
    color: var(--rose-gold);
}

/* ── Legal pages (privacy, GDPR) ── */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 4rem;
}

.legal-lead {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.legal-updated {
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.legal-article {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 1.5rem;
}

.legal-article h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--mauve-deep);
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p,
.legal-article li {
    line-height: 1.7;
    color: var(--ink);
}

.legal-article ul,
.legal-article ol {
    padding-left: 1.35rem;
    margin: 0.75rem 0 1rem;
}

.legal-article li {
    margin-bottom: 0.45rem;
}

.legal-article a {
    color: var(--rose-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.legal-footer-note {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(183, 110, 121, 0.2);
    font-size: 0.9rem;
    color: var(--mauve);
}

.modal-submit {
    width: 100%;
}

.modal-alt-link {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-banner a {
    color: var(--rose-gold-light);
    text-decoration: underline;
}

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

@media (max-width: 900px) {
    .hero {
        padding-top: calc(var(--nav-h) + 2rem);
    }

    .hero-content {
        margin: 0 auto;
    }

    .inline-actions,
    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        --nav-h: 66px;
    }

    .site-nav {
        padding: 0 1rem;
    }

    .brand {
        font-size: 1.05rem;
    }

    .hero,
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 16vw, 4.1rem);
    }

    .btn {
        width: 100%;
    }

    .hero-badges span {
        width: 100%;
        justify-content: center;
    }

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

    .booking-actions,
    .booking-action-group {
        flex-direction: column;
        width: 100%;
    }

    .booking-action-group {
        margin-left: 0;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
    }
}
