/* --- Global Reset & Variables --- */
:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-main: #f5fbf6;
    --text-header: #ffffff;
    --accent-dark: #223d34;
    --card-bg: rgba(255, 255, 255, 0.75);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #d9e7de;
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- Fixed Glass Background --- */
.home-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("pictures/20260508_192441.jpg") center center / cover no-repeat;
    filter: blur(12px)
                brightness(0.9)
                contrast(1.2)
                saturate(0.7)
                sepia(0);
    transform: scale(1.05);
    z-index: -2;
}

/* --- Layout Structure --- */
.glass-shell {
    width: min(1200px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    backdrop-filter: blur(40px) saturate(110%);
    box-shadow: 0 18px 45px rgba(27, 56, 45, 0.16);
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2.5rem;
}

/* --- Navigation --- */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid var(--glass-border);
    background-color: #d7d7d75c;
}

.top-bar__brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-header);
    letter-spacing: 1px;
}

.nav-button {
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--accent-dark);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: 1rem;
    display: inline-block;
}

.nav-button:hover, .nav-button.active {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--text-header);
    text-shadow: 0 2px 15px rgba(16, 41, 29, 0.4);
    text-align: center;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; margin-top: 0.5rem; }
h2 { font-size: 2.8rem; margin: 0 0 2rem; }

.subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

/* --- Page Section Header --- */
.zen-header {
    text-align: center;
    margin-bottom: 3rem;
}

.zen-header h1 {
    margin-bottom: 0;
}

.hero-portrait {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 300px 300px 40px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: block;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% center;
    transform: scale(1.2);
    display: block;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--accent-dark);
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease;
}

.service-item h3 { color: var(--accent-dark); text-shadow: none; margin-bottom: 1rem; font-size: 24px; }
.service-item:hover { transform: translateY(-5px); }

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.service-detail {
    color: var(--accent-dark);
    font-size: 1rem;
    font-weight: 500;
}

.service-note {
    margin: 0;
    color: rgba(34, 61, 52, 0.88);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-tag {
    display: inline-block;
    background: rgba(34, 61, 52, 0.12);
    border: 1px solid rgba(34, 61, 52, 0.2);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

/* --- Contact Block (booking page) --- */
.contact-block {
    margin-top: 4rem;
    background: rgba(34, 61, 52, 0.4);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.contact-block h2 {
    margin-top: 0;
    border: none;
    text-shadow: none;
}

.contact-block p {
    color: white;
    margin: 0.5rem 0;
}

.contact-block__summary {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-block__divider {
    width: min(540px, 100%);
    height: 1px;
    margin: 1.2rem auto 1rem;
    background: rgba(255, 255, 255, 0.25);
}

.contact-block__subtitle {
    margin: 0.4rem 0 0.85rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--text-header);
    text-shadow: none;
}

.contact-block a {
    color: white;
    text-decoration: underline;
}

/* --- Booking compact layout --- */

.booking-page .container.booking-compact {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

.booking-compact .zen-header {
    margin-bottom: 1.5rem;
}

.booking-compact .services-grid {
    margin-top: 1.25rem;
    gap: 1.25rem;
}

.booking-compact .service-item {
    padding: 1.75rem 1.5rem;
}

.booking-compact .service-meta {
    margin-bottom: 0;
}

.booking-compact .contact-block {
    margin-top: 1.5rem;
    padding: 1.75rem 1.5rem;
}

.booking-compact .contact-block h2 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
}

.booking-compact .contact-block__subtitle {
    margin: 0.25rem 0 0.65rem;
    font-size: 1.7rem;
}

.booking-compact .contact-block__divider {
    margin: 0.9rem auto 0.8rem;
}

/* --- Testimonials --- */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonials-group__title {
    margin: 0 0 0.2rem;
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    text-align: left;
    text-shadow: 0 2px 15px rgba(16, 41, 29, 0.4);
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(5px);
}

.testimonial-item blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 0.9rem 1rem;
        gap: 1rem;
    }

    .top-bar__brand {
        display: block;
        text-align: center;
        white-space: nowrap;
        font-size: clamp(1.55rem, 7.2vw, 2.1rem);
        line-height: 1.1;
    }

    .top-bar__nav {
        display: grid;
        grid-template-columns: 1fr 1.6fr 1fr;
        gap: 0.5rem;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .nav-button {
        margin-left: 0;
        padding: 0.75rem 0.6rem;
        min-height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        font-size: clamp(0.68rem, 2.6vw, 0.8rem);
        letter-spacing: 0.6px;
    }

    .top-bar__nav .nav-button:nth-child(2) {
        white-space: nowrap;
        font-size: clamp(0.62rem, 2.2vw, 0.78rem);
        letter-spacing: 0.4px;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }

    .home-title {
        white-space: nowrap;
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .testimonial-item {
        padding: 2rem 1.5rem;
    }

    .testimonial-item blockquote {
        font-size: 1.2rem;
    }

    .reviews-page .zen-header h1 {
        white-space: nowrap;
        font-size: clamp(2.15rem, 9vw, 2.8rem);
        line-height: 1.1;
    }
}

/* --- About Timeline --- */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
}

.timeline-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    padding-top: 0.2rem;
    text-align: right;
}

.timeline-body p {
    margin: 0 0 1rem;
    color: var(--text-main);
}

.timeline-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .timeline-label {
        text-align: left;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
    }
}

/* --- Home Page: no-scroll full-viewport layout --- */
.home-shell {
    height: 100vh;
    overflow: hidden;
}

.home-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 4rem 3rem;
    gap: 2.5rem;
}

.home-portrait {
    display: flex;
    justify-content: center;
}

.home-portrait .hero-portrait {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 300px 300px 40px 40px;
}

/* Content: centered column */
.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.home-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.75rem;
    text-align: center;
}

.home-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-header);
    text-shadow: 0 2px 15px rgba(16, 41, 29, 0.4);
    text-align: center;
    margin: 0 0 1.25rem;
    line-height: 1.05;
}

.home-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin: 2rem 0;
}

/* Offerings: two rows, label + description inline */
.home-offerings {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-offering {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    justify-content: center;
}

.home-offering__name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-header);
    white-space: nowrap;
    min-width: 130px;
}

.home-offering__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (min-width: 900px) {
    .home-offerings {
        width: max-content;
        margin: 0 auto;
    }

    .home-content {
        max-width: 760px;
    }

    .home-offering {
        display: grid;
        grid-template-columns: 240px auto;
        align-items: baseline;
        column-gap: 1rem;
        justify-content: start;
    }

    .home-offering__name {
        min-width: 0;
        text-align: right;
    }

    .home-offering__desc {
        font-size: 0.98rem;
        white-space: nowrap;
        text-align: left;
    }
}

@media (max-width: 750px) {
    .home-shell {
        height: auto;
        overflow: visible;
    }

    .home-main {
        grid-template-columns: 1fr;
    }

    .home-portrait {
        padding: 3rem 2rem 1rem;
        height: 340px;
    }

    .home-portrait .hero-portrait {
        max-height: 100%;
        min-width: 300px;
    }

    .hero-portrait img {
        object-position: 40% center;
        min-width: 300px;
    }

    .home-content {
        padding: 1rem 2rem 3rem;
        align-items: center;
        text-align: center;
    }

    .home-title {
        text-align: center;
    }

    .home-offering {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
    }
}