/* ============================================================
   LYNX LILY — lynxlily.com
   Monochromatic Pink SPA Stylesheet
   Mobile-first. Single page. Restoration, not correction.
   Three-voice type system (Fablehesion proprietary editorial)
   ============================================================ */

/* --- Fonts: Self-hosted, base64, font-display: block --- */
@import url('fonts/font-trajan.css');
@import url('fonts/font-playfair.css');
@import url('fonts/font-ebgaramond.css');
@import url('fonts/font-sourcesans.css');

/* --- Palette: Monochromatic Pink (dark to light) ---
   Derived from lily mark colorization.
   --------------------------------------------------- */
:root {
    --ink: #3D1A2A;           /* Deepest — text, header bg */
    --dark: #5C2D40;          /* Dark rose — headings */
    --mid: #8B4A62;           /* Mid rose — accents, borders */
    --soft: #B87A92;          /* Soft rose — secondary text */
    --blush: #D9A8B8;         /* Blush — card borders, dividers */
    --whisper: #F0D6E0;       /* Whisper — subtle backgrounds */
    --petal: #F8EBF0;         /* Petal — page background */
    --white: #FFFFFF;         /* White — card surfaces */

    /* Typography: Three-Voice System + Wordmark */
    --font-wordmark: 'Trajan Pro', 'Playfair Display', Georgia, serif;
    --font-authority: 'Playfair Display', Georgia, serif;
    --font-nuance: 'EB Garamond', Georgia, serif;
    --font-clarity: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --max-width: 780px;
    --radius: 4px;
}

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

/* --- Base --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-clarity);
    background: var(--petal);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    border-bottom: 1px solid var(--dark);
    overflow: visible;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-mark img {
    height: 48px;
    width: auto;
}

.site-nav {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

.site-nav a {
    font-family: var(--font-clarity);
    color: var(--blush);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav .nav-cta {
    background: var(--mid);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.site-nav .nav-cta:hover {
    background: var(--soft);
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blush);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--ink);
    color: var(--white);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-mark img {
    height: 120px;
    width: auto;
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

.hero h1 {
    font-family: var(--font-wordmark);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-xs);
}

.wm-lynx {
    color: var(--white);
}

.wm-lily {
    color: var(--blush);
}

.hero-tagline {
    font-size: 0.82rem;
    color: var(--blush);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.hero-sub {
    font-size: 0.75rem;
    color: var(--soft);
    letter-spacing: 0.06em;
}

/* --- Sections --- */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.section-title {
    font-family: var(--font-wordmark);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    text-align: center;
    color: var(--ink);
}

/* --- Treatment Cards --- */
.treatment-card {
    background: var(--white);
    border: 1px solid var(--blush);
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.treatment-card .card-header,
.treatment-card .card-tagline,
.treatment-card .card-description,
.treatment-card .card-closer,
.treatment-card .card-footer,
.treatment-card .wax-list {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.treatment-card .card-header {
    padding-top: var(--space-lg);
}

.treatment-card .card-footer {
    padding-bottom: var(--space-lg);
}

.treatment-card .wax-list {
    padding-bottom: var(--space-lg);
}

.card-image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.treatment-card:hover {
    border-color: var(--mid);
    box-shadow: 0 2px 12px rgba(61, 26, 42, 0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.card-header h3 {
    font-family: var(--font-authority);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
}

.duration {
    font-size: 0.78rem;
    color: var(--mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.card-tagline {
    font-family: var(--font-nuance);
    font-style: italic;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
    font-size: 1.05em;
}

.card-description {
    color: var(--ink);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.card-closer {
    font-family: var(--font-nuance);
    font-style: italic;
    color: var(--mid);
    margin-bottom: var(--space-sm);
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-sm);
}

.card-benefits li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
    line-height: 1.6;
}

.card-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--whisper);
}

.price {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.btn-book {
    display: inline-block;
    background: var(--mid);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.btn-book:hover {
    background: var(--dark);
}

.btn-book-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* --- Add-Ons --- */
.addons {
    background: var(--ink);
    color: var(--white);
}

.addons .section-title {
    color: var(--whisper);
}

.addons .section-note {
    color: var(--blush);
}

.addons .addon-card {
    color: var(--ink);
}

.addon-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    background: var(--white);
    border: 1px solid var(--blush);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.addon-card .card-image {
    width: 100%;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
}

.addon-card .card-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.addon-card .price {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    text-align: right;
}

.addon-info h3 {
    font-family: var(--font-authority);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.addon-tagline {
    font-family: var(--font-nuance);
    font-style: italic;
    color: var(--mid);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.addon-info p {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.6;
}

/* --- Section Intro --- */
.section-intro {
    text-align: center;
    font-family: var(--font-nuance);
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.8;
    max-width: 36rem;
    margin: 0 auto var(--space-lg);
}

/* --- Advanced Treatments --- */
.advanced {
    background: var(--whisper);
}

/* --- Section Note (travel fee) --- */
.section-note {
    text-align: center;
    font-family: var(--font-nuance);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

/* --- Waxing --- */
.waxing {
    background: var(--white);
}

.wax-group {
    margin-bottom: var(--space-lg);
}

.wax-group:last-child {
    margin-bottom: 0;
}

.wax-group-title {
    font-family: var(--font-authority);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--whisper);
}

.wax-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wax-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--petal);
}

.wax-item:last-child {
    border-bottom: none;
}

.wax-name {
    font-family: var(--font-clarity);
    font-size: 0.92rem;
    color: var(--ink);
    flex: 1;
}

.wax-price {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
}

/* --- Booking --- */
.booking-embed {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-md);
    min-height: 400px;
}

.booking-embed iframe {
    clip-path: inset(0 0 70px 0);
    margin-bottom: -70px;
}
.booking {
    background: var(--ink);
    color: var(--white);
}

.booking .section-title {
    color: var(--blush);
}

.booking .section-note {
    color: var(--soft);
}


.booking-placeholder {
    color: var(--soft);
    font-style: italic;
}

/* --- Footer --- */
.site-footer {
    background: var(--ink);
    color: var(--blush);
    border-top: 1px solid var(--dark);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
}

.footer-mark img {
    height: 48px;
    width: auto;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.footer-name {
    font-family: var(--font-wordmark);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.footer-descriptor {
    font-size: 0.8rem;
    color: var(--soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-contact {
    margin-bottom: var(--space-lg);
}

.footer-esthetician {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.footer-credentials,
.footer-license,
.footer-location {
    font-size: 0.82rem;
    color: var(--soft);
    line-height: 1.6;
}

.footer-links {
    margin-bottom: var(--space-lg);
}

.footer-link {
    color: var(--blush);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-legal {
    font-size: 0.72rem;
    color: var(--soft);
    letter-spacing: 0.06em;
}

/* --- Mobile nav open state --- */
.site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    border-top: 1px solid var(--dark);
    gap: var(--space-sm);
    text-align: center;
    z-index: 200;
}

.site-nav.is-open .nav-cta {
    display: block;
    margin-top: var(--space-xs);
    padding: 0.6rem 1.2rem;
    text-align: center;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Print --- */
@media print {
    .site-header,
    .booking,
    .btn-book,
    .mobile-toggle {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    .treatment-card,
    .addon-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .site-footer {
        background: #fff;
        color: #333;
    }
}
