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

:root {
    --cream:       #f6f3ee;
    --white:       #ffffff;
    --dark:        #1b1b19;
    --mid:         #6b6860;
    --sage:        #667a66;
    --sage-pale:   #edf2ed;
    --border:      #dedad4;

    --serif: Georgia, 'Times New Roman', serif;
    --sans:  system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

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


/* ─── Shared layout ───────────────────────────────────────── */
.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3rem;
}

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1.75rem;
}


/* ─── Navigation ──────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}


/* ─── Hero ────────────────────────────────────────────────── */
.hero {
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    min-width: 0;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: normal;
    line-height: 1.03;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 2rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--mid);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 3px;
}

.btn-dark {
    background: var(--dark);
    color: var(--cream);
    border: none;
    padding: 0.9rem 2rem;
    font-family: var(--sans);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 2px;
}

.btn-dark:hover {
    background: #2f2f2c;
}

.link-down {
    font-size: 0.88rem;
    color: var(--mid);
    transition: color 0.2s;
}

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


/* ─── Services ────────────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.services-accent-image {
    margin-bottom: 3.5rem;
    border-radius: 3px;
    overflow: hidden;
}

.services-accent-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.category-heading {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: normal;
    color: var(--dark);
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.category-heading:first-of-type {
    margin-top: 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.service-row {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.service-row:first-of-type {
    border-top: 1px solid var(--border);
}

.service-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--mid);
    align-self: start;
    padding-top: 0.35rem;
}

.service-body h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.price-tag {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 0.02em;
}

.service-body p {
    color: var(--mid);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 520px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    white-space: nowrap;
    padding-left: 1rem;
}

.service-duration {
    font-size: 0.78rem;
    color: var(--mid);
    letter-spacing: 0.02em;
}

.service-cta {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--mid);
    white-space: nowrap;
    transition: color 0.2s;
}

.service-cta:hover {
    color: var(--dark);
}

.service-row.highlighted {
    background: var(--sage-pale);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-color: transparent;
}

.note-inline {
    display: inline-block;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--sage);
    margin-left: 0.25rem;
}


/* ─── Gift Card Banner ───────────────────────────────────── */
.gift-banner {
    padding: 2.25rem 0;
    background: var(--dark);
}

.gift-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.gift-banner-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.gift-banner-text strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 0.8rem 1.8rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--cream);
}

.btn-outline-light {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}


/* ─── About ───────────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-left blockquote {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: normal;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.about-left cite {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-style: normal;
    display: block;
    margin-bottom: 2.5rem;
}

.about-image {
    border-radius: 3px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-right h2 {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.about-right p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-right strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.award-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.award-diamond {
    width: 10px;
    height: 10px;
    background: var(--sage);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.award-block strong {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.award-block p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    line-height: 1.4;
}


/* ─── Booking ─────────────────────────────────────────────── */
.booking {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.booking h2 {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 1rem;
}

.booking-note {
    font-size: 0.9rem;
    color: var(--mid);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.booking-frame {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2rem;
    min-height: 600px;
}


/* ─── Contact ─────────────────────────────────────────────── */
.contact {
    padding: 5rem 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

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

.contact-col h3 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1rem;
}

.contact-col p,
.contact-col a {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.75;
    display: block;
}

.contact-col a:hover {
    color: var(--sage);
}


/* ─── Footer ──────────────────────────────────────────────── */
.footer {
    padding: 1.5rem 2rem;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.05em;
}


/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 9vw, 5rem);
    }

    .hero-image img {
        height: 300px;
    }

    .services-accent-image img {
        height: 220px;
    }

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

    .service-meta {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.25rem;
        padding-left: 0;
        margin-top: 0.25rem;
    }

    .service-row.highlighted {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-image img {
        height: 240px;
    }

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

    .gift-banner-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .section-inner {
        padding: 0 1.25rem;
    }

    .hero-image img {
        height: 240px;
    }

    .services-accent-image img {
        height: 180px;
    }

    .service-body h3 {
        font-size: 1.1rem;
    }

    .category-heading {
        font-size: 1.15rem;
    }

    .booking-frame {
        padding: 1rem;
    }
}
