*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --soft-black: #1e1e1e;
    --warm-white: #faf7f2;
    --dusty-rose: #d4a5a5;
    --deep-burgundy: #6b3e4b;
    --champagne: #f2e3d5;
    --sage: #a3b18a;
    --charcoal: #3a3a3a;
    --radius-sm: 20px;
    --radius-lg: 48px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.45s var(--ease-out-expo);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250,247,242,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.4s ease, border-color 0.4s;
}
.nav-bar.scrolled { background: rgba(250,247,242,0.95); border-bottom-color: rgba(0,0,0,0.08); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-burgundy);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: opacity 0.3s;
}
.logo:hover { opacity: 0.7; }
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--soft-black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--dusty-rose);
    transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--deep-burgundy); }
.nav-links a:hover::after { width: 100%; }
.btn-book-nav {
    background: var(--deep-burgundy);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: background 0.3s, transform 0.2s;
}
.btn-book-nav:hover { background: #552d38; transform: translateY(-2px); }
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 30%, #f9ecec 5%, var(--warm-white) 70%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--deep-burgundy);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--charcoal);
    max-width: 420px;
    margin-bottom: 2.2rem;
}
.btn-cta-hero {
    background: var(--dusty-rose);
    border: none;
    color: #fff;
    padding: 16px 42px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    box-shadow: 0 12px 30px rgba(212,165,165,0.25);
    display: inline-block;
    text-decoration: none;
}
.btn-cta-hero:hover { background: #c58e8e; transform: translateY(-3px); box-shadow: 0 18px 35px rgba(212,165,165,0.35); }
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-circle {
    width: 380px;
    height: 380px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><circle cx="50" cy="50" r="48" stroke="%23d4a5a5" stroke-width="0.8" stroke-dasharray="8 6" opacity="0.5"/></svg>') center/contain no-repeat;
    position: absolute;
    animation: rotateSlow 28s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-img-placeholder {
    width: 260px;
    height: 340px;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 90px 20px 90px 20px;
    box-shadow: 0 30px 50px rgba(107,62,75,0.15);
    position: relative;
    z-index: 3;
}
.hero-img-placeholder::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    right: 28px;
    font-size: 2.2rem;
    color: var(--deep-burgundy);
    opacity: 0.6;
}
.hero-float-text {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    background: rgba(255,255,250,0.75);
    backdrop-filter: blur(10px);
    padding: 0.35rem 1.6rem;
    border-radius: 30px;
    z-index: 4;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
.float-one { top: -15px; left: -20px; }
.float-two { bottom: 30px; right: -40px; }
section { padding: 5rem 0; }
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--dusty-rose);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.section-heading {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--soft-black);
    margin-bottom: 1.8rem;
    font-weight: 600;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.service-card {
    background: #fff;
    border-radius: 38px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: 1px solid rgba(212,165,165,0.2);
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 55px -15px rgba(107,62,75,0.12);
    border-color: var(--dusty-rose);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1.4rem; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.why-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1.8rem 0;
}
.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    color: var(--dusty-rose);
    opacity: 0.5;
    margin-bottom: 0.3rem;
}
.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1.2rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.testimonial-card {
    min-width: 320px;
    background: #fff;
    border-radius: 42px;
    padding: 2.2rem;
    scroll-snap-align: start;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0e4e4;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.2rem;
}
.gallery-item {
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, filter 0.3s;
    filter: sepia(0.08);
}
.gallery-item:hover { transform: scale(0.98); filter: sepia(0); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    margin-top: 2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    line-height: 2.1;
}
.footer-col ul li a:hover { color: var(--deep-burgundy); }
.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e1d7d1;
    font-size: 0.8rem;
    color: #7a7a7a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    transition: transform 0.5s var(--ease-out-expo);
    max-width: 90vw;
}
.cookie-consent.show { transform: translateX(-50%) translateY(0); }
.cookie-btns { display: flex; gap: 0.8rem; }
.cookie-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.cookie-btn.accept { background: var(--deep-burgundy); color: #fff; }
.cookie-btn.decline { color: #444; border: 1px solid #ccc; }
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: #fff;
    border-radius: 50px;
    padding: 2.8rem;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 40px 60px rgba(0,0,0,0.2);
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-expo);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    float: right;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #888;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label { font-weight: 600; display: block; margin-bottom: 0.3rem; font-size: 0.9rem; }
.form-group input, .form-group select {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid #e2dcd7;
    border-radius: 28px;
    font-family: inherit;
    background: #fdfbf9;
}
.btn-submit {
    background: var(--dusty-rose);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}