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

:root {
    --rose:       #c9a98e;
    --rose-light: #f5ede6;
    --gold:       #b8975a;
    --dark:       #2d2421;
    --text:       #5a4a44;
    --white:      #fdfaf8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

/* ── NAV ────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 6%;
    background: rgba(253,250,248,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(185,151,90,.18);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .04em;
}

.nav-logo span { color: var(--gold); }

nav ul {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

nav ul a {
    text-decoration: none;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color .25s;
}

nav ul a:hover { color: var(--gold); }

/* ── HERO ───────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(245,237,230,.95) 0%, rgba(253,250,248,.7) 100%),
        url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1600&auto=format&fit=crop') center/cover no-repeat;
    padding: 9rem 6% 5rem;
}

.hero-content { max-width: 640px; }

.hero-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

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

.hero-content p {
    font-size: 1rem;
    color: var(--text);
    max-width: 460px;
    margin-bottom: 2.4rem;
}

.btn {
    display: inline-block;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 28px rgba(184,151,90,.35);
}

.btn-primary:hover {
    background: #a07840;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(184,151,90,.45);
}

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
}

/* ── SECTION BASE ───────────────────────────────── */
section { padding: 6rem 6%; }

.section-label {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 2rem;
}

/* ── ABOUT ──────────────────────────────────────── */
#about {
    background: var(--rose-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 4px 60px 4px 60px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45,36,33,.18);
    aspect-ratio: 4/5;
}

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

.about-text p { margin-bottom: 1rem; font-size: .95rem; }

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.highlight-item .num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.highlight-item .lbl {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
}

/* ── SERVICES ───────────────────────────────────── */
#services { background: var(--white); }

.services-intro { max-width: 560px; margin-bottom: 3.5rem; }

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

.service-card {
    background: var(--rose-light);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(201,169,142,.25);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(184,151,90,.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45,36,33,.12);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .5rem;
}

.service-card p { font-size: .85rem; color: var(--text); }

.service-price {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
}

/* ── HOW IT WORKS ───────────────────────────────── */
#how {
    background: var(--dark);
    color: #e8d9cf;
}

#how .section-title { color: #f5ede6; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.2rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5ede6;
    margin-bottom: .6rem;
}

.step p { font-size: .83rem; opacity: .75; }

/* ── BOOKING ────────────────────────────────────── */
#booking { background: var(--rose-light); }

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.booking-info p { font-size: .95rem; margin-bottom: 1rem; }

.contact-list {
    list-style: none;
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
}

.contact-list li span.icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.iframe-shell {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45,36,33,.14);
    border: 1px solid rgba(201,169,142,.3);
}

.iframe-shell iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* ── TESTIMONIALS ───────────────────────────────── */
#testimonials { background: var(--white); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--rose-light);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(201,169,142,.25);
}

.testi-card .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: .8rem;
}

.testi-card p {
    font-size: .88rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.testi-author {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dark);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(245,237,230,.6);
    padding: 3.5rem 6% 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--rose-light);
    letter-spacing: .05em;
    margin-bottom: .4rem;
}

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

.footer-tagline {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    text-decoration: none;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,237,230,.55);
    transition: color .25s;
}

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

footer hr {
    border: none;
    border-top: 1px solid rgba(245,237,230,.1);
    margin-bottom: 1.4rem;
}

footer p.copy { font-size: .72rem; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid,
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image { max-height: 360px; }
}

@media (max-width: 640px) {
    nav ul { display: none; }
    .btn-outline { display: none; }
    section { padding: 4rem 5%; }
}
