:root {
    --ink: #3b2430;
    --muted: #7a5a68;
    --blush: #f8dce6;
    --rose: #e59bb3;
    --rose-deep: #c45f7f;
    --cream: #fff7f9;
    --cream-deep: #f3e6eb;
    --white: #ffffff;
    --line: rgba(196, 95, 127, 0.18);
    --shadow: 0 18px 50px rgba(59, 36, 48, 0.10);
    --radius: 22px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --max: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(229, 155, 179, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(243, 230, 235, 0.9), transparent 50%),
        var(--cream);
    line-height: 1.55;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.5rem;
}

p {
    margin: 0 0 1rem;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(255, 247, 249, 0.88);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wordmark {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.wordmark span {
    color: var(--rose-deep);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"]:not(.btn) {
    color: var(--rose-deep);
}

.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus,
.site-nav .btn-primary[aria-current="page"],
.site-nav .btn-primary:visited {
    color: #fff;
    background: var(--rose-deep);
}

.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus {
    background: #b04f6e;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.35rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--rose-deep);
    color: #fff;
    box-shadow: 0 10px 24px rgba(196, 95, 127, 0.28);
}

.btn-primary:hover {
    background: #b04f6e;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid var(--line);
}

.hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(59, 36, 48, 0.18) 0%, rgba(59, 36, 48, 0.55) 48%, rgba(59, 36, 48, 0.78) 100%),
        url("../images/Facial2.jpg") center / cover no-repeat;
    transform: scale(1.02);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    from { transform: scale(1.02) translateY(0); }
    to { transform: scale(1.06) translateY(-1.5%); }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 4.5rem 1.25rem 3.5rem;
}

.hero__brand {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    animation: riseIn 0.9s ease both;
}

.hero__brand span {
    color: var(--blush);
}

.hero h1 {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-family: var(--font-body);
    font-weight: 400;
    max-width: 22ch;
    margin-bottom: 0.85rem;
    animation: riseIn 0.9s ease 0.08s both;
}

.hero p {
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    animation: riseIn 0.9s ease 0.16s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: riseIn 0.9s ease 0.24s both;
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

.section__intro {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.section__intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section__intro p {
    color: var(--muted);
}

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

.category-card {
    position: relative;
    display: block;
    min-height: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card__label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.2rem 1.15rem 1.15rem;
    background: linear-gradient(180deg, transparent, rgba(59, 36, 48, 0.78));
    color: #fff;
    z-index: 1;
}

.category-card__label h3 {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
}

.category-card__label p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.86);
}

.visit {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
}

.visit-card,
.visit-media {
    border-radius: var(--radius);
    overflow: hidden;
}

.visit-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.visit-card h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.visit-card dl {
    margin: 0 0 1.25rem;
}

.visit-card dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose-deep);
    margin-top: 0.85rem;
}

.visit-card dd {
    margin: 0.2rem 0 0;
    color: var(--ink);
}

.visit-media {
    min-height: 280px;
    background:
        linear-gradient(145deg, rgba(196, 95, 127, 0.25), rgba(59, 36, 48, 0.15)),
        url("../images/Makeup1.jpg") center / cover no-repeat;
}

.page-hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 1.25rem 1.25rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-hero p {
    color: var(--muted);
    max-width: 40rem;
}

.service-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
}

.service-jump a {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.service-jump a:hover {
    background: var(--blush);
    color: var(--ink);
}

.services-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
    display: grid;
    gap: 1.5rem;
}

.service-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    scroll-margin-top: 5.5rem;
}

.service-block__media {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.service-block__body {
    padding: 1.4rem 1.35rem 1.2rem;
}

.service-block__body h2 {
    font-size: 1.85rem;
    color: var(--rose-deep);
}

.service-block__blurb {
    color: var(--muted);
    margin-bottom: 1rem;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    padding: 0.55rem 0;
    border-top: 1px solid rgba(196, 95, 127, 0.12);
}

.menu-item__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}

.menu-item__name {
    font-weight: 500;
}

.menu-item__price {
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--rose-deep);
    white-space: nowrap;
}

.menu-item__summary {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.audience-note {
    font-size: 0.82em;
    font-weight: 500;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    padding: 2rem 1.25rem;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-inner strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit,
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block__media {
        min-height: 180px;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1rem;
        background: rgba(255, 247, 249, 0.98);
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .site-nav .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 0;
    }

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

    .hero {
        min-height: 78vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero__media { animation: none; }
    .hero__brand,
    .hero h1,
    .hero p,
    .hero__actions {
        animation: none;
    }
}

/* On-site booking page (Square widget) — keep site chrome around embed */
.page-book .site-header {
    position: relative;
    z-index: 10010;
}

.page-book .site-nav.is-open {
    z-index: 10012;
}

.book-page-embed {
    max-width: 1100px;
    margin: 1.25rem auto 3rem;
    padding: 0 1.25rem 2rem;
}

.book-page-loading {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--muted);
    background: #fff;
}

.square-booking-root {
    position: relative;
    z-index: 2;
    isolation: isolate;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 480px;
}

.square-booking-root iframe,
.square-booking-root > div {
    max-width: 100%;
}

.book-page-fallback {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 1rem;
}

.book-page-fallback a {
    color: var(--rose-deep);
    font-weight: 500;
}

.book-page-fallback a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .square-booking-root {
        min-height: 0;
        box-shadow: none;
    }

    .square-booking-root iframe {
        display: block;
        width: 100%;
        border: 0;
    }
}
