/* ===========================
   ROOT & RESET
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #FAFAF8;
    --rose: #F2D9D9;
    --rose-dark: #E8C4C4;
    --mint: #D4EDE4;
    --mint-dark: #B8DDD0;
    --lavender: #DDD5F0;
    --lavender-dark: #C9BEE8;
    --gold: #C8A97E;
    --gold-dark: #B8946A;
    --text: #2C2C3A;
    --text-light: #6B6B7B;
    --white: #FFFFFF;
    --section-gap: 5rem;
    --radius: 1rem;
    --radius-sm: 0.5rem;
    --shadow: 0 4px 24px rgba(44, 44, 58, 0.08);
    --shadow-hover: 0 8px 40px rgba(44, 44, 58, 0.14);
    --transition: 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILITIES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-gap) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.section__lead {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.10s; }
.fade-in:nth-child(3) { transition-delay: 0.20s; }
.fade-in:nth-child(4) { transition-delay: 0.30s; }
.fade-in:nth-child(5) { transition-delay: 0.40s; }
.fade-in:nth-child(6) { transition-delay: 0.50s; }

/* ===========================
   BUTTON
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.35);
}

.btn--primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 28px rgba(200, 169, 126, 0.5);
    transform: translateY(-2px);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(44, 44, 58, 0.10);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-aurora {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}

.nav__logo-clinic {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
}

.nav__logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.9rem;
    color: var(--text);
    transition: color var(--transition);
}

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

.nav__cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 500;
    transition: all var(--transition) !important;
}

.nav__cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 169, 126, 0.4);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.nav__mobile.open {
    max-height: 400px;
}

.nav__mobile ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
}

.nav__mobile a {
    font-size: 1rem;
    color: var(--text);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 58, 0.08);
    display: block;
    transition: color var(--transition);
}

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

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero__logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    padding: 1.25rem 2rem;
    border-radius: var(--radius);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 2.1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.hero__text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===========================
   ABOUT
   =========================== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text .section__eyebrow {
    display: block;
    text-align: left;
}

.about__text .section__title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about__text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about__text p strong {
    color: var(--text);
    font-weight: 600;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 44, 58, 0.10);
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat strong {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about__stat span {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__card {
    padding: 1.75rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.about__card--rose { background: var(--rose); }
.about__card--mint { background: var(--mint); }

.about__card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
}

.about__card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   SERVICES
   =========================== */
.services {
    position: relative;
}

.services__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, #F4EFF8 40%, var(--bg) 100%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services__tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.services__tab {
    padding: 0.75rem 2rem;
    border-radius: 100px;
    border: 1.5px solid rgba(200, 169, 126, 0.35);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.services__tab span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.services__tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.services__tab--active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white) !important;
}

.services__panel {
    display: none;
}

.services__panel--active {
    display: block;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card__icon--rose { background: var(--rose); }
.service-card__icon--mint { background: var(--mint); }
.service-card__icon--lavender { background: var(--lavender); }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===========================
   TEAM
   =========================== */
.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-card__avatar--rose     { background: var(--rose); }
.team-card__avatar--mint     { background: var(--mint); }
.team-card__avatar--lavender { background: var(--lavender); }

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.team-card__role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===========================
   BOOKING
   =========================== */
.booking {
    background: linear-gradient(135deg, #F8F0F4 0%, #EEF5F2 100%);
}

.booking__widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    min-height: 420px;
}

/* ===========================
   CONTACT
   =========================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__item strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact__item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact__item a {
    color: var(--text-light);
    transition: color var(--transition);
}

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

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact__map-placeholder {
    height: 340px;
    background: linear-gradient(135deg, var(--mint) 0%, var(--lavender) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact__map-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
}

.contact__map-placeholder small {
    font-size: 0.8rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    position: relative;
}

.footer__wave {
    line-height: 0;
}

.footer__wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer__body {
    background: #2C2C3A;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 1.5rem 2rem;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.footer__tagline {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.45rem;
    line-height: 1.5;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
    :root { --section-gap: 3.5rem; }

    .nav__links    { display: none; }
    .nav__hamburger { display: flex; }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__text .section__title,
    .about__text .section__eyebrow {
        text-align: center;
    }

    .about__stats { justify-content: center; }

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

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

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
    .hero__title { font-size: clamp(3rem, 14vw, 4.5rem); }

    .about__stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .services__tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .services__tab { text-align: center; }

    .booking__widget { padding: 1rem; }
}
