@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --bg-color: #fdfbf7;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --accent: #8c7851;
    --white: #ffffff;
    --transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 1.2s ease;
}

/* Subtle Texture Overlay - Much lighter */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
}

nav {
    margin-left: auto;
    margin-right: 3rem;
}

nav a {
    text-decoration: none;
    color: inherit;
    margin-left: 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

nav a:hover {
    opacity: 1;
}

.lang-switcher {
    display: flex;
    gap: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



/* Section Base */
section {
    min-height: 100vh;
    padding: 10vh 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Typography styles */
.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-transform: none;
}

.title em {
    font-style: italic;
    opacity: 0.9;
    font-weight: inherit;
}

.description {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    max-width: 550px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Treatment Grid */
.treatments {
    background: radial-gradient(circle at center, #ffffff 0%, #f9f7f2 100%);
    overflow: hidden;
}

/* New Treatment Styles */
.highlight-list {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.read-more-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 2.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 2px;
}

.read-more-btn:hover {
    background: var(--accent);
    color: white;
}

.extra-content {
    animation: fadeIn 0.8s ease forwards;
}

.treatment-detail {
    margin-bottom: 2rem;
}

.treatment-detail h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.treatment-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Conditions Grid */
.conditions {
    padding: 10vh 0;
}

.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 4rem auto 0;
}

.condition-card {
    background: transparent !important;
    box-shadow: none !important;
    padding: 2rem 1.5rem;
    transition: transform 0.4s ease;
    text-align: center;
    border: none !important;
    flex: 0 1 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.condition-image {
    width: 180px; /* Slightly larger to match original feel */
    height: 180px;
    border-radius: 50%;
    margin-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06); /* Very subtle depth shadow */
}

.condition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.condition-card:hover {
    transform: translateY(-8px);
}

.condition-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.condition-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 250px;
}

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

/* Common Elements */
.read-more {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    background: var(--accent);
    color: white;
}

.footer-quote {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--white);
    opacity: 0.9;
}

/* Asymmetric Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: center;
}


.grid-2.reverse {
    direction: rtl;
}

.grid-2.reverse>* {
    direction: ltr;
}

/* Torn Paper / Organic Edge Effect - All 4 Sides */
.torn-paper {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='5'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='50'/%3E%3C/filter%3E%3Crect width='85%25' height='85%25' x='7.5%25' y='7.5%25' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='5'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='50'/%3E%3C/filter%3E%3Crect width='85%25' height='85%25' x='7.5%25' y='7.5%25' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: transform 0.8s ease;
}


.image-container {
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.1));
    /* Add depth to the "torn" piece */
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}


/* Hero Specific */
.hero {
    text-align: left;
}

.hero-bg-img {
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 45vw;
    z-index: -1;
    opacity: 0.4;
    filter: saturate(0.8);
}

/* Portrait Block */
.portrait-section {
    background-color: #f5f5f5;
}

.portrait-frame {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}


.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.portrait-frame:hover img {
    filter: grayscale(0.5);
}

/* Seasonal Navigation Icons */
.seasons-nav {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin-top: 5rem;
}

.season-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Ensure text internal centering */
    transition: transform 0.3s ease;
    width: 120px;
}

.season-link:hover {
    transform: translateY(-10px);
}

.season-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-icon svg {
    width: 100%;
    height: 100%;
}

.season-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 600;
    opacity: 0.8;
    display: block;
    width: 100%;
    text-align: center;
    /* Forced centering for labels */
}


/* Centered Sections */
.seasonal-intro .content-wrapper,
.workshops .content-wrapper,
.content-wrapper.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.seasonal-intro .description,
.workshops .description,
.center .description {
    max-width: 650px;
    text-align: center;
}


/* Booking Fixed UI */
.booking-bar {
    position: fixed;
    bottom: 2rem;
    right: 3rem;
    z-index: 1002;
}

.booking-btn {
    background: var(--text-primary);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, background 0.3s;
}

.booking-btn:hover {
    transform: translateY(-5px);
    background: var(--accent);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Transitions */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: transform var(--transition), opacity var(--transition);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
/* Contact Form & Socials */
.contact .grid-2 {
    align-items: center;
}

.form-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center frame and socials */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #666;
    /* Muted labels */
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--accent);
}

.submit-btn {
    align-self: center;
    /* Centered in frame */
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 1rem;
    width: 100%;
    /* Full width button in frame looks premium */
}

.submit-btn:hover {
    background: #7a6845;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-icon {
    color: rgba(0, 0, 0, 0.3);
    /* Muted dark color */
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Final Quote Section */
.final-quote {
    padding: 5vh 10vw 12vh 10vw; /* Professional headspace */
    text-align: center;
}

.closing-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .closing-quote {
        font-size: 1.6rem;
    }
}
.workshop-dates-grid {
    margin-top: 5rem;
    max-width: 900px;
    width: 100%;
}

.workshop-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s ease, border-color 0.3s ease;
    text-align: left;
}

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

.workshop-item:hover {
    transform: translateX(10px);
}

.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.date-box .day {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
}

.date-box .month {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.info-box {
    flex: 1;
    margin: 0 4rem;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.info-box .location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.05rem;
}

.enroll-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.enroll-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .workshop-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 4rem 1rem;
    }
    .info-box { margin: 0; }
}

@media (max-width: 900px) {

    /* Global layout adjustments */
    section {
        padding: 8vh 6vw;
        min-height: auto;
    }

    .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .text-side {
        order: 1;
        /* Force text to top */
    }

    .image-side,
    .form-side {
        order: 2;
        /* Force image/form to bottom */
    }

    .grid-2.reverse {
        direction: ltr;
        /* Reset reverse on mobile for better flow */
    }

    /* Header & Navigation */
    header {
        padding: 1.5rem 5vw;
        background: rgba(253, 251, 247, 0.95);
        /* Increased opacity for readability without filter */
    }

    nav {
        display: none;
        /* Hide main nav links on mobile to save space */
    }

    .lang-switcher {
        gap: 0.8rem;
    }

    .lang-btn {
        font-size: 0.65rem;
        gap: 0.3rem;
        padding: 0.2rem;
    }

    .flag-icon {
        width: 16px;
        height: 11px;
    }

    /* Typography */
    .title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 1.1rem;
    }

    /* Specific Sections */
    .hero-bg-img {
        width: 90vw;
        top: 60%;
        right: -10%;
        opacity: 0.15;
    }

    .portrait-frame {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .seasons-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Stack icons in a grid instead of a line */
        gap: 2rem;
        width: 100%;
    }

    .season-link {
        width: auto;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 100%;
    }

    .treatment-category,
    .treatment-category:nth-child(4),
    .treatment-category:nth-child(5) {
        grid-column: span 1;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .booking-bar {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.75rem;
    }
}

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

    .title {
        font-size: 2.5rem;
    }
}