@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --rose: #b76e79;
    --rose-dark: #8f4e5b;
    --rose-soft: #f6e9ec;
    --cream: #fffaf7;
    --ink: #2f2429;
    --muted: #756a6f;
    --white: #ffffff;
    --border: rgba(77, 52, 63, .12);
    --shadow: 0 20px 60px rgba(73, 42, 54, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-space {
    padding: 100px 0;
}

.topbar {
    padding: 9px 0;
    background: var(--ink);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
}

.topbar a {
    color: #fff;
    font-weight: 700;
}

.site-header {
    background: rgba(255,250,247,.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 86px;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    flex-direction: column;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: .72;
    letter-spacing: -.04em;
}

.navbar-brand img {
    height: 45px;
}



.brand-accent,
.footer-brand span {
    margin-left: 18px;
    color: var(--rose);
    font-size: 1.15rem;
    letter-spacing: .08em;
}

.nav-link {
    margin: 0 5px;
    color: var(--ink);
    font-size: .91rem;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--rose-dark);
}

.btn-appointment,
.btn-submit {
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(183,110,121,.25);
}

.btn-appointment:hover,
.btn-submit:hover {
    background: var(--rose-dark);
    color: #fff;
}

.hero-section,
.carousel-item {
    min-height: 680px;
}

.carousel-item img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,19,25,.80) 0%, rgba(31,19,25,.46) 48%, rgba(31,19,25,.06) 100%);
}

.carousel-caption {
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
}

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

.eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--rose-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: #fff;
}

.hero-content h1,
.hero-content h2 {
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.04em;
}

.hero-content p {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.88);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-content .btn {
    margin: 5px 8px 5px 0;
    border-radius: 999px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
}

.section-title {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.section-text,
.section-heading p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.intro-section {
    background: #fff;
}

.feature-box {
    min-height: 112px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--cream);
}

.feature-box strong,
.feature-box span {
    display: block;
}

.feature-box span {
    margin-top: 8px;
    color: var(--muted);
    font-size: .85rem;
}

.intro-image-wrap {
    position: relative;
}

.intro-image-wrap img {
    width: 100%;
    height: 560px;
    border-radius: 48% 48% 22px 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 32px;
    max-width: 190px;
    padding: 22px;
    border-radius: 18px;
    background: var(--rose);
    color: #fff;
    box-shadow: var(--shadow);
}

.experience-badge span,
.experience-badge strong {
    display: block;
}

.services-section {
    background: var(--rose-soft);
}

.service-card {
    overflow: hidden;
    border: 1px solid rgba(183,110,121,.14);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(73,42,54,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-count {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    font-size: .75rem;
    font-weight: 800;
}

.service-body {
    padding: 26px;
}

.service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
}

.service-body p {
    min-height: 66px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.service-preview {
    min-height: 116px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.service-preview li {
    position: relative;
    padding: 5px 0 5px 18px;
    color: #5f5358;
    font-size: .86rem;
}

.service-preview li::before {
    position: absolute;
    left: 0;
    color: var(--rose);
    content: '•';
}

.service-link {
    color: var(--rose-dark);
    font-weight: 800;
}

.cta-strip {
    padding: 70px 0;
    background: var(--rose);
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner span {
    opacity: .78;
}

.cta-inner h2 {
    margin: 5px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
}

.page-hero {
    display: flex;
    min-height: 430px;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 6vw, 5.5rem);
}

.page-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.84);
    font-size: 1.1rem;
}

.treatment-item {
    display: flex;
    gap: 18px;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.treatment-icon {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-soft);
    color: var(--rose-dark);
    line-height: 44px;
    text-align: center;
}

.treatment-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
}

.treatment-item p {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.7;
}

.treatment-item a {
    color: var(--rose-dark);
    font-size: .86rem;
    font-weight: 800;
}

.appointment-section {
    background: #fff;
}

.appointment-shell {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.appointment-info {
    height: 100%;
    padding: 60px 48px;
    background:
        linear-gradient(rgba(53,32,42,.82),rgba(53,32,42,.82)),
        url('../images/appointment-bg.jpg') center/cover;
    color: #fff;
}

.appointment-info h2 {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    line-height: 1;
}

.appointment-info p {
    color: rgba(255,255,255,.77);
    line-height: 1.8;
}

.appointment-note {
    margin-top: 38px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}

.appointment-note strong,
.appointment-note span {
    display: block;
}

.appointment-note span {
    margin-top: 5px;
    color: #fff;
}

.appointment-form {
    height: 100%;
    padding: 55px 48px;
    background: var(--cream);
}

.form-label {
    color: #53464c;
    font-size: .84rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 54px;
    border: 1px solid rgba(77,52,63,.14);
    border-radius: 13px;
    background-color: #fff;
}

textarea.form-control {
    min-height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 .25rem rgba(183,110,121,.13);
}

.site-footer {
    padding: 75px 0 25px;
    background: var(--ink);
    color: rgba(255,255,255,.7);
}

.footer-brand {
    color: #fff;
}

.site-footer p {
    max-width: 480px;
    margin-top: 24px;
    line-height: 1.8;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .8rem;
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .hero-section,
    .carousel-item {
        min-height: 580px;
    }

    .carousel-item img {
        height: 580px;
    }

    .hero-content {
        max-width: 90%;
    }

    .section-space {
        padding: 75px 0;
    }

    .intro-image-wrap img {
        height: 450px;
    }

    .experience-badge {
        right: 15px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        display: none;
    }

    .hero-section,
    .carousel-item {
        min-height: 520px;
    }

    .carousel-item img {
        height: 520px;
    }

    .hero-overlay {
        background: rgba(31,19,25,.66);
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: .92rem;
        line-height: 1.65;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .section-space {
        padding: 60px 0;
    }

    .intro-image-wrap img {
        height: 380px;
    }

    .service-image img {
        height: 245px;
    }

    .cta-inner h2 {
        font-size: 2.3rem;
    }

    .appointment-info,
    .appointment-form {
        padding: 38px 24px;
    }

    .appointment-info h2 {
        font-size: 2.7rem;
    }
}

.services-dropdown {
    min-width: 260px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.services-dropdown .dropdown-item {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
}

.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
    background: var(--rose-soft);
    color: var(--rose-dark);
}

.footer-services-list {
    columns: 2;
    column-gap: 24px;
}

@media (max-width: 991.98px) {
    .services-dropdown {
        min-width: 100%;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
}
