/* ---------- HLB Beauty - base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --green: #0a3937;
    --green-deep: #06292a;
    --green-soft: #144a47;
    --gold: #e2c872;
    --gold-deep: #c9ad58;
    --cream: #f7f1e6;
    --cream-soft: #fbf6ec;
    --paper: #f1e9d8;
    --ink: #1a1a1a;
    --muted: #6e6a60;
    --line: #e7dfcd;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(10, 57, 55, .06), 0 4px 14px rgba(10, 57, 55, .06);
    --shadow-md: 0 6px 24px rgba(10, 57, 55, .10);
    --serif: "Times New Roman", Times, serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max: 1180px;
    --bar-h: 64px;
    --header-h: 72px;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(10,57,55,.35);
}
p a:hover { text-decoration-color: currentColor; }

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin: 0 0 .4em;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.2rem, 6.4vw, 3.6rem);
    font-weight: 500;
}

h1 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.7rem, 4.2vw, 2.4rem);
    font-weight: 500;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

h4 {
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: .85rem;
}

.centered {
    text-align: center;
}

.light {
    color: var(--cream);
}

.eyebrow {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b5210;
    margin: 0 0 .6em;
    text-align: center;
}

.eyebrow.light {
    color: var(--gold);
}

.section-title {
    margin-bottom: .35em;
    text-align: center;
}

.section-lede {
    color: var(--muted);
    max-width: 60ch;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-lede.light {
    color: rgba(247, 241, 230, .78);
}

.section-cream,
.section-split {
    border-bottom: 1rem solid var(--green);
}

/* In side-by-side sections (image + text), left-align headings on desktop */
@media (min-width: 860px) {

    .memberships-copy .eyebrow,
    .memberships-copy .section-title,
    .split-copy .eyebrow,
    .split-copy .section-title,
    .visit .eyebrow,
    .visit .section-title {
        text-align: left;
    }
}

.link:hover {
    text-decoration: none;
    border-bottom-color: var(--green);
}

.link-light {
    color: var(--gold);
}

/* ---------- Brand / Header ---------- */
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-logo {
    height: 48px;
    width: auto;
    max-width: none;
    display: block;
    flex-shrink: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--green);
    border-bottom: 1px solid rgba(226, 200, 114, .18);
    color: var(--cream);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    padding-top: 10px;
    padding-bottom: 10px;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: 1.6rem;
}

.primary-nav a {
    font-size: .92rem;
    color: var(--cream);
    font-weight: 500;
    letter-spacing: .02em;
}

.primary-nav a:hover {
    color: var(--gold);
    text-decoration: none;
}

.primary-nav-cta {
    display: none;
}

.header-cta {
    background: var(--gold);
    color: var(--green);
    padding: .55em 1.1em;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.header-cta:hover {
    text-decoration: none;
    background: #f0d685;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    background: transparent;
    border: 1px solid rgba(226, 200, 114, .35);
    color: var(--cream);
    padding: .5em .8em;
    border-radius: 999px;
    font: inherit;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    flex: 0 0 auto;
    line-height: 1;
}

.nav-toggle:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.nav-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 16px;
    height: 11px;
    flex-shrink: 0;
}

.nav-toggle-bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
}

@media (max-width: 400px) {
    .nav-toggle-label {
        display: none;
    }

    .nav-toggle {
        padding: .55em .65em;
    }
}

@media (min-width: 860px) {
    .brand-logo {
        height: 56px;
    }

    .primary-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

@media (max-width: 859px) {
    .header-cta {
        display: none;
    }

    .primary-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-h);
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--green-deep);
        padding: 1.2rem 1.4rem calc(var(--bar-h) + 2rem);
        transform: translateX(100%);
        transition: transform .28s ease;
        z-index: 49;
        overflow-y: auto;
        visibility: hidden;
        text-align: right;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .primary-nav a {
        font-family: var(--serif);
        font-size: 1.5rem;
        font-weight: 500;
        padding: .7rem 0;
        border-bottom: 1px solid rgba(226, 200, 114, .12);
        color: var(--cream);
    }

    .primary-nav-cta {
        display: inline-flex !important;
        align-self: stretch;
        justify-content: center;
        margin-top: 1.4rem;
        background: var(--gold);
        color: var(--green) !important;
        padding: 1em 1.4em;
        border-radius: 999px;
        font-family: var(--sans) !important;
        font-size: 1rem !important;
        font-weight: 600;
        letter-spacing: .04em;
        border-bottom: 0 !important;
        line-height: 1;
        text-align: center;
    }

    body.nav-open {
        overflow: hidden;
    }

    .visit .visit-intro {
        text-align: center;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 500px at 90% -10%, rgba(226, 200, 114, .18), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(10, 57, 55, .07), transparent 60%),
        var(--cream);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    align-items: center;
}

.lede {
    font-size: 1.05rem;
    color: #3a3a35;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin: 1.4rem 0 .9rem;
}

.hero-note {
    font-size: .85rem;
    color: var(--muted);
}

.hero-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    background: var(--green);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 860px) {
    .hero-inner {
        grid-template-columns: 1.1fr .9fr;
        gap: 3rem;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-photo {
        aspect-ratio: 5 / 6;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .85em 1.4em;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .03em;
    transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--green);
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--green-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--green);
    border-color: rgba(10, 57, 55, .25);
}

.btn-ghost:hover {
    background: var(--green);
    color: var(--gold);
    border-color: var(--green);
}

.btn-ghost-light {
    color: var(--cream);
    border-color: rgba(247, 241, 230, .35);
}

.btn-ghost-light:hover {
    background: var(--gold);
    color: var(--green);
    border-color: var(--gold);
}

/* ---------- Strip ---------- */
.strip {
    background: var(--green);
    color: var(--cream);
}

.strip-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 2rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    text-align: center;
}

.strip-inner>div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.strip-inner strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

.strip-inner span {
    font-size: .8rem;
    color: rgba(247, 241, 230, .75);
}

@media (min-width: 480px) {
    .strip-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 720px) {
    .strip-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 4rem 0;
}

.section-cream {
    background: var(--cream-soft);
}

.section-dark {
    background: var(--green);
    color: var(--cream);
}

.section-dark .section-title {
    color: var(--cream);
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-pic {
    aspect-ratio: 4 / 3;
    background: var(--green);
    overflow: hidden;
}

.service-pic img,
.service-pic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin: 1rem 1.1rem .35rem;
}

.service-card p {
    margin: 0 1.1rem 1.1rem;
    font-size: .92rem;
    color: var(--muted);
}

.services-cta {
    text-align: center;
    display: grid;
    gap: .6rem;
    justify-items: center;
}

/* ---------- Before / After slider ---------- */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ba-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    will-change: width;
}

.ba-before-wrap .ba-before {
    width: 200%;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(247, 241, 230, .9);
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    border: 2px solid var(--gold);
}

.ba-label {
    position: absolute;
    top: 12px;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: rgba(10, 57, 55, .7);
    color: var(--gold);
    padding: .35em .7em;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.ba-label-before {
    left: 12px;
}

.ba-label-after {
    right: 12px;
}

.ba-slider:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ---------- Memberships / split ---------- */
.memberships,
.split,
.visit {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 860px) {
    .memberships {
        grid-template-columns: 1fr 1fr;
    }

    .split {
        grid-template-columns: .9fr 1.1fr;
    }

    .visit {
        grid-template-columns: 1.2fr .8fr;
    }
}

.memberships-photo img,
.split-photo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.tick-list,
.cross-list,
.dash-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}

.tick-list li,
.cross-list li,
.dash-list li {
    position: relative;
    padding: .35em 0 .35em 1.4em;
    border-bottom: 1px dashed var(--line);
    overflow-wrap: anywhere;
}

.tick-list li:last-child,
.cross-list li:last-child,
.dash-list li:last-child {
    border-bottom: 0;
}

.tick-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: .35em;
    color: var(--green);
    font-weight: 600;
}

.cross-list li::before {
    content: "\2715";
    position: absolute;
    left: 0;
    top: .35em;
    color: #b34a4a;
    font-weight: 600;
}

.dash-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1em;
    width: .9em;
    height: 1px;
    background: var(--gold-deep);
}

.tick-list.small li,
.cross-list.small li {
    font-size: .9rem;
    padding-top: .25em;
    padding-bottom: .25em;
}

/* ---------- Care ---------- */
.care-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 860px) {
    .care-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.care-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.care-card h3 {
    margin-top: 0;
}

.dos-donts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
}

.dos-donts h4 {
    margin: 0 0 .5em;
    color: var(--green);
}

@media (min-width: 480px) {
    .care-card {
        padding: 1.6rem;
    }
}

/* ---------- Policies ---------- */
.policy-grid {
    display: grid;
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.policy {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem 1.2rem;
    box-shadow: var(--shadow-sm);
}

.policy-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green);
    margin: 0 0 .6rem;
    display: flex;
    align-items: center;
    gap: .5em;
}

.policy-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-body {
    color: #3a3a35;
}

.policy-body p:not(:last-child) {
    margin-bottom: .7em;
}

/* ---------- Visit ---------- */
.visit-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.visit-contact {
    background: rgba(247, 241, 230, .06);
    border: 1px solid rgba(226, 200, 114, .18);
    border-radius: var(--radius);
    padding: 1.25rem;
    min-width: 0;
}

@media (min-width: 480px) {
    .visit-contact {
        padding: 1.5rem;
    }
}

.visit-contact h3 {
    font-family: var(--serif);
    margin-top: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: .35rem 1rem;
    padding: .7em 0;
    border-bottom: 1px dashed rgba(226, 200, 114, .2);
    font-size: .95rem;
    min-width: 0;
}

.contact-list li:last-child {
    border-bottom: 0;
}

.contact-list span {
    color: rgba(247, 241, 230, .6);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    flex: 0 0 auto;
}

.contact-list a {
    color: var(--gold);
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: right;
    min-width: 0;
}

.contact-list a:hover {
    color: #fff;
    text-decoration: none;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--green-deep);
    color: rgba(247, 241, 230, .85);
    padding: 2.2rem 0;
}

.site-footer .muted {
    color: rgba(247, 241, 230, .78);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.site-footer a {
    color: var(--gold);
}

@media (min-width: 720px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-brand {
        align-items: flex-start;
    }
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    background: var(--green);
    box-shadow: 0 -4px 20px rgba(10, 57, 55, .25);
    border-top: 1px solid rgba(226, 200, 114, .2);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    color: var(--cream);
    font-size: .72rem;
    letter-spacing: .04em;
    text-decoration: none;
    min-height: var(--bar-h);
    transition: color .15s ease, background .15s ease;
}

.mb-item:hover,
.mb-item:active {
    color: var(--gold);
    text-decoration: none;
}

.mb-book {
    background: var(--gold);
    color: var(--green);
    margin: 6px 4px;
    border-radius: 12px;
    font-weight: 600;
    min-height: calc(var(--bar-h) - 12px);
}

.mb-book:hover {
    background: #f0d685;
    color: var(--green);
}

@media (min-width: 860px) {
    .mobile-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn:hover,
    .service-card:hover {
        transform: none;
    }
}
