/* ============================================
   ROSANA HOLISTIC STUDIO
   Design: Luxury Spa Aesthetic
   Inspired by: Monument Hotel, Zen House Marbella
   Palette: Earth tones + white
   Fonts: Playfair Display + Inter
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Olive earth palette — Rosana's brand colors */
    --color-dark: #353628;
    --color-dark-soft: #444838;
    --color-brown: #6F735C;
    --color-gold: #6F735C;
    --color-gold-light: #C2C5B0;
    --color-sage: #A4A88C;
    --color-cream: #D9CFC2;
    --color-cream-light: #EFE9E1;
    --color-white: #ffffff;
    --color-text: #4E503F;
    --color-text-light: #8a8e7a;
    --color-text-on-dark: #EFE9E1;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Fluid type scale */
    --text-hero: clamp(36px, 5vw, 64px);
    --text-display: clamp(40px, 6vw, 80px);
    --text-section: clamp(32px, 4vw, 56px);
    --text-body-large: clamp(18px, 1.5vw, 22px);
    --text-body: clamp(15px, 1.1vw, 17px);
    --text-label: clamp(11px, 0.8vw, 13px);

    /* Spacing */
    --section-padding: clamp(100px, 12vh, 180px);
    --container-width: 1280px;
    --gap: clamp(32px, 4vw, 60px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-reveal: 1.2s var(--ease-out-expo);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--cream {
    background: var(--color-cream-light);
}

.section--dark {
    background: var(--color-dark);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(53, 54, 40, 0.08);
}

.nav {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav__logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .nav__logo-img,
.header--solid .nav__logo-img {
    height: 45px;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav__logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-light);
    font-weight: 400;
    transition: var(--transition);
}

.header.scrolled .nav__logo-text {
    color: var(--color-dark);
}

.header.scrolled .nav__logo-sub {
    color: var(--color-gold);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__menu a {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-white);
    position: relative;
    transition: var(--transition);
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    inset-inline-start: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav__menu a:hover::after {
    width: 100%;
}

.header.scrolled .nav__menu a {
    color: var(--color-dark);
}

.nav__cta {
    padding: 10px 28px !important;
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    font-weight: 500 !important;
}

.nav__cta:hover {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
}

.nav__cta::after {
    display: none !important;
}

.header.scrolled .nav__cta {
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.header.scrolled .nav__cta:hover {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .nav__toggle span {
    background: var(--color-dark);
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-inline-start: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    min-width: 44px;
    min-height: 44px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.2;
}

.lang-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.lang-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.header.scrolled .lang-btn {
    border-color: rgba(53, 54, 40, 0.2);
    color: var(--color-dark);
}

.header.scrolled .lang-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.header.scrolled .lang-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.header--solid .lang-btn {
    border-color: rgba(53, 54, 40, 0.2);
    color: var(--color-dark);
}

.header--solid .lang-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.header--solid .lang-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-dark);
    background-image: url('assets/photos/treatment-room.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 30, 22, 0.6) 0%,
        rgba(30, 30, 22, 0.4) 50%,
        rgba(30, 30, 22, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero__tagline {
    font-size: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.hero__tagline::before,
.hero__tagline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    font-weight: 400;
    color: var(--color-white);
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: var(--text-body);
    color: var(--color-text-on-dark);
    line-height: 1.8;
    margin-bottom: 56px;
    font-weight: 300;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero__scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: transparent;
    color: var(--color-gold);
}

/* --- Section Typography --- */
.section__label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.section__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section__label--light {
    color: var(--color-gold-light);
}

.section__label--light::before {
    background: var(--color-gold-light);
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--text-section);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.section__title--light {
    color: var(--color-white);
}

.section__body {
    font-size: var(--text-body);
    line-height: 1.9;
    color: var(--color-text);
    max-width: 560px;
}

.section__body--large {
    font-size: var(--text-body-large);
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--color-brown);
}

.section__body--light {
    color: var(--color-text-on-dark);
}

.section__body + .section__body {
    margin-top: 16px;
}

.section__header--center {
    text-align: center;
    margin-bottom: 60px;
}

.section__header--center .section__body {
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: 60px;
}

/* Link arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    font-weight: 500;
    margin-top: 32px;
}

.link-arrow span {
    transition: var(--transition);
}

.link-arrow:hover span {
    transform: translateX(4px);
}

/* --- Introduction Section --- */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro__image {
    position: relative;
}

/* --- Treatments --- */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.treatment-card {
    padding: 48px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.treatment-card:hover {
    border-color: var(--color-gold);
    background: rgba(111, 115, 92, 0.05);
}

.treatment-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--color-gold-light);
}

.treatment-card__icon svg {
    width: 100%;
    height: 100%;
}

.treatment-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 16px;
}

.treatment-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-on-dark);
    margin-bottom: 24px;
}

.treatment-card__duration {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

/* --- About --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__credentials {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream);
}

.credential__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.credential__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

/* --- Gallery --- */
.gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery__item--large {
    grid-row: span 2;
}

/* --- Image Placeholders --- */
.image-placeholder {
    background: var(--color-cream);
    border: 1px dashed var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: attr(data-text);
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    padding: 24px;
    font-style: italic;
}

.image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder--portrait {
    min-height: 550px;
}

.image-placeholder--map {
    min-height: 300px;
    background: var(--color-cream-light);
}

/* --- Testimonials --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    padding: 48px 36px;
    border: 1px solid var(--color-cream);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial__name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
}

.testimonial__detail {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- CTA Section --- */
.section--cta {
    padding: 140px 0;
    background: var(--color-dark);
    background-image: url('assets/photos/treatment-room.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.section--cta .section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 54, 40, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-content__note {
    margin-top: 32px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
}

/* --- Contact --- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__item-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    font-weight: 500;
}

.contact__item a {
    color: var(--color-dark);
    font-weight: 500;
}

.contact__item a:hover {
    color: var(--color-gold);
}

.contact__social {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.contact__social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-cream);
    border-radius: 50%;
    color: var(--color-dark);
    transition: var(--transition);
}

.contact__social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-cream-light);
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    padding: 60px 0;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
}

.footer__tagline {
    font-size: 12px;
    color: #b8bba8;
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-on-dark);
}

.footer__links a:hover {
    color: var(--color-gold);
}

.footer__legal p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* --- Header Solid (for inner pages) --- */
.header--solid {
    background: var(--color-white);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(53, 54, 40, 0.08);
}

.header--solid .nav__logo-text { color: var(--color-dark); }
.header--solid .nav__logo-sub { color: var(--color-gold); }
.header--solid .nav__menu a { color: var(--color-dark); }
.header--solid .nav__toggle span { background: var(--color-dark); }

/* --- Hero BG Image --- */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video,
.hero__image {
    position: absolute;
    inset: 0;
}

.hero__video,
.hero__image {
    transform: scale(1);
}

/* Film grain overlay */
.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-dark);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.page-hero--compact {
    height: auto;
    min-height: 0;
    padding: 140px 0 80px;
    background: var(--color-dark);
}

/* --- Split Layout (asymmetric) --- */
.split {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.split--reverse {
    grid-template-columns: 7fr 5fr;
    direction: rtl;
}
.split--reverse > * { direction: ltr; }

.split__image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.split__image:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.split__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
    filter: saturate(0.92);
}

.split__image:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.split__image img.img--portrait {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

/* --- Card Grid --- */
.card-grid {
    display: grid;
    gap: 32px;
}

.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* --- Treatment Card (with image) --- */
.treatment-card {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
    text-decoration: none;
}

.treatment-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.treatment-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.treatment-card:hover .treatment-card__image img {
    transform: scale(1.05);
}

.treatment-card__body {
    padding: 28px 24px;
    text-align: center;
}

/* --- Stats --- */
.stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream);
}

.stats--row {
    justify-content: center;
    gap: 80px;
    padding: 0;
    border: none;
    margin: 0;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.stat--light .stat__number { color: var(--color-gold-light); }
.stat--light .stat__label { color: var(--color-text-on-dark); }

/* --- Gallery (updated) --- */
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__item {
    position: relative;
    overflow: hidden;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(transparent, rgba(53, 54, 40, 0.8));
    color: var(--color-white);
}

.gallery__caption h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery__caption p {
    font-size: 13px;
    color: var(--color-text-on-dark);
    line-height: 1.6;
}

.gallery__item--featured {
    grid-row: span 2;
}

.gallery--full {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 500px;
}

/* --- Value Cards --- */
.value-card {
    padding: 48px 36px;
    border: 1px solid var(--color-cream);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-gold);
}

.value-card__number {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.value-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

/* --- Treatment Features List --- */
.treatment-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.treatment-features li {
    padding: 8px 0;
    padding-inline-start: 24px;
    position: relative;
    font-size: 14px;
    color: var(--color-text);
}

.treatment-features li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

/* --- Aromatherapy Ingredients --- */
.aroma-ingredients {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--color-cream-light);
    border-radius: 12px;
    border-left: 3px solid var(--color-gold);
}

.aroma-ingredients__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.aroma-ingredients__list {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.8;
}

/* --- Treatment Meta --- */
.treatment-meta {
    display: flex;
    gap: 32px;
    margin: 24px 0 32px;
    padding: 16px 0;
    border-top: 1px solid var(--color-cream);
    border-bottom: 1px solid var(--color-cream);
}

.treatment-meta__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.treatment-meta__value {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-dark);
}

/* --- Container Narrow --- */
.container--narrow {
    max-width: 800px;
}

/* --- Text Center --- */
.text-center {
    text-align: center;
}

.section__body--center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    gap: 40px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-cream);
}

.blog-card--featured {
    grid-template-columns: 1.2fr 1fr;
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.03);
}

.blog-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-card--featured .blog-card__title {
    font-size: 28px;
}

.blog-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}

.blog-card__meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-light);
}

/* --- Newsletter Form --- */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 32px auto 0;
}

.newsletter-form__input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--color-cream);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-dark);
    outline: none;
    transition: var(--transition);
}

.newsletter-form__input:focus {
    border-color: var(--color-gold);
}

/* --- FAQ --- */
.faq-group {
    margin-bottom: 48px;
}

.faq-group__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-cream);
}

.faq-item {
    border-bottom: 1px solid var(--color-cream);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    text-align: start;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--color-gold);
}

.faq-item__icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-inline-start: 16px;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer p {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
}

.faq-cta {
    text-align: center;
    padding: 48px;
    background: var(--color-cream-light);
    margin-top: 48px;
}

.faq-cta h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* --- Contact Details --- */
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-item__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item__value {
    font-weight: 500;
    color: var(--color-dark);
    display: block;
}

a.contact-item__value:hover { color: var(--color-gold); }

.contact-item__note {
    font-size: 12px;
    color: var(--color-text-light);
    display: block;
}

/* --- Contact Form --- */
.split__form {
    display: flex;
    align-items: flex-start;
}

.contact-form-wrapper {
    width: 100%;
    padding: 48px;
    background: var(--color-cream-light);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-cream);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn--full { width: 100%; justify-content: center; }

/* --- Clinical History Form --- */
.clinical-form__section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-cream);
}
.clinical-form__section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}
.clinical-form__heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 24px;
}
.clinical-form__note {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}
.clinical-form__privacy {
    margin-bottom: 24px;
}
.clinical-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}
.clinical-form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-gold);
}
.clinical-form__success {
    padding: 48px 24px;
}
.clinical-form__success svg {
    margin-bottom: 24px;
}

/* --- Booking Options --- */
.booking-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.booking-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--color-cream);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.booking-option:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(53, 54, 40, 0.08);
}

.booking-option__icon {
    color: var(--color-gold);
    margin-bottom: 24px;
}

.booking-option__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.booking-option__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.booking-option__cta {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    font-weight: 500;
    margin-top: auto;
}

.booking-option__note {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: auto;
}

.booking-option--stripe {
    cursor: default;
}

/* --- Steps --- */
.steps {
    margin-top: 48px;
}

.step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-cream);
}

.step:last-child { border-bottom: none; }

.step__number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step__content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

/* --- Schedule --- */
.schedule {
    max-width: 400px;
    margin: 32px auto 0;
}

.schedule__row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-cream);
    font-size: 15px;
}

.schedule__row span:first-child {
    font-weight: 500;
    color: var(--color-dark);
}

.schedule__row span:last-child {
    color: var(--color-text);
}

.schedule__row--closed span {
    color: var(--color-text-light) !important;
}

/* --- Booking Embed (for future Cal.com) --- */
.booking-embed {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Interactive Calendar Widget --- */
.cal {
    max-width: 860px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-cream);
    overflow: hidden;
}

/* Progress Steps */
.cal__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 32px;
    border-bottom: 1px solid var(--color-cream);
    background: var(--color-cream-light);
}

.cal__step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.cal__step--active {
    opacity: 1;
}

.cal__step--done {
    opacity: 0.6;
}

.cal__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    flex-shrink: 0;
}

.cal__step--active .cal__step-num {
    background: var(--color-dark);
    color: var(--color-white);
}

.cal__step--done .cal__step-num {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.cal__step-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-dark);
}

.cal__step-line {
    width: 40px;
    height: 1px;
    background: var(--color-cream);
    margin: 0 16px;
    flex-shrink: 0;
}

/* Panels */
.cal__panel {
    display: none;
    padding: clamp(28px, 4vw, 48px);
    animation: calFadeIn 0.4s var(--ease-out-expo);
}

.cal__panel--active {
    display: block;
}

@keyframes calFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.cal__panel-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.cal__title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.cal__selected-treat,
.cal__booking-summary {
    font-size: 13px;
    color: var(--color-text-light);
}

.cal__back {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-cream);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-dark);
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.cal__back:hover {
    border-color: var(--color-dark);
    background: var(--color-cream-light);
}

/* Panel 1: Treatment Cards */
.cal__treatments {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cal__treat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: 1px solid var(--color-cream);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-out-expo);
    width: 100%;
    font-family: var(--font-body);
}

.cal__treat:hover {
    border-color: var(--color-dark);
    background: var(--color-cream-light);
    transform: translateX(4px);
}

.cal__treat--selected {
    border-color: var(--color-dark);
    background: var(--color-dark);
}

.cal__treat--selected .cal__treat-name,
.cal__treat--selected .cal__treat-dur,
.cal__treat--selected .cal__treat-price {
    color: var(--color-cream-light);
}

.cal__treat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cal__treat-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-dark);
}

.cal__treat-dur {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
}

.cal__treat-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

.cal__treat-price--free {
    color: var(--color-gold);
}

/* Panel 2: Calendar */
.cal__datetime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cal__calendar {
    min-width: 0;
}

.cal__month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal__month-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
}

.cal__nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-cream);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-dark);
    transition: var(--transition);
}

.cal__nav-btn:hover {
    border-color: var(--color-dark);
}

.cal__nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.cal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.cal__weekdays span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    padding: 8px 0;
}

.cal__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-dark);
    transition: all 0.2s ease;
    font-family: var(--font-body);
    position: relative;
}

.cal__day:hover:not(.cal__day--disabled):not(.cal__day--empty) {
    background: var(--color-cream-light);
}

.cal__day--today {
    font-weight: 600;
}

.cal__day--today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold);
}

.cal__day--selected {
    background: var(--color-dark) !important;
    color: var(--color-white);
}

.cal__day--selected::after {
    display: none;
}

.cal__day--disabled {
    color: var(--color-cream);
    cursor: not-allowed;
}

.cal__day--empty {
    cursor: default;
}

/* Time Slots */
.cal__times {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 280px;
}

.cal__times-prompt {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    padding-top: 80px;
}

.cal__times-header {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.cal__slot {
    padding: 12px 16px;
    border: 1px solid var(--color-cream);
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--color-dark);
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
}

.cal__slot:hover {
    border-color: var(--color-dark);
    background: var(--color-cream-light);
}

.cal__slot--selected {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

/* Panel 3: Form */
.cal__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-bottom: 24px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.cal__confirm-box {
    padding: 24px;
    background: var(--color-cream-light);
    border: 1px solid var(--color-cream);
}

.cal__confirm-summary {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.cal__confirm-summary strong {
    font-weight: 600;
}

.cal__deposit-note {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-cream);
}

/* Panel 4: Success */
.cal__success {
    text-align: center;
    padding: clamp(32px, 5vw, 64px) 0;
}

.cal__success-icon {
    color: var(--color-gold);
    margin-bottom: 24px;
}

.cal__success-icon svg {
    animation: calCheckPop 0.6s var(--ease-out-expo) both;
}

@keyframes calCheckPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.cal__success-detail {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.cal__success-note {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 440px;
    margin-inline: auto;
}

/* Deposit badge */
.cal__deposit-amount {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 16px;
}

.cal__deposit-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-cream);
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.04em;
}

.cal__deposit-badge svg {
    flex-shrink: 0;
}

/* WhatsApp Booking Bar */
.wa-booking {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: var(--color-white);
    border: 1px solid var(--color-cream);
}

.wa-booking__icon {
    color: #25D366;
    flex-shrink: 0;
}

.wa-booking__content {
    flex: 1;
}

.wa-booking__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.wa-booking__desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.wa-booking__btn {
    white-space: nowrap;
    flex-shrink: 0;
    color: #25D366;
    border-color: #25D366;
    font-weight: 500;
}
.wa-booking__btn:hover {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

/* --- Policy Cards --- */
.policy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.policy-card {
    padding: 36px 28px;
    border: 1px solid var(--color-cream);
    text-align: center;
    transition: var(--transition);
}

.policy-card:hover {
    border-color: var(--color-gold);
}

.policy-card__icon {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.policy-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.policy-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

/* --- Policy Page Content --- */
.policy-content {
    max-width: 700px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section__title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-cream);
}

.policy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}

.policy-highlight {
    background: var(--color-cream-light);
    padding: 24px;
    margin: 20px 0;
    border-inline-start: 3px solid var(--color-gold);
}

.policy-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-dark);
}

.policy-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.policy-list li {
    padding: 10px 0;
    padding-inline-start: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

.policy-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 18px;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

.policy-list li a {
    color: var(--color-gold);
    font-weight: 500;
}

.policy-list li a:hover {
    color: var(--color-dark);
}

.policy-updated {
    font-size: 12px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-cream);
}

@media (max-width: 768px) {
    .policy-cards {
        grid-template-columns: 1fr;
    }
}

/* --- Footer (updated for multi-page) --- */
.footer__nav {
    display: flex;
    gap: 60px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b8bba8;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer__col a {
    font-size: 13px;
    color: var(--color-text-on-dark);
    transition: var(--transition);
}

.footer__col a:hover { color: var(--color-gold); }

.footer__bottom {
    width: 100%;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    font-size: 12px;
    color: #b8bba8;
}

/* --- Active nav link --- */
.nav__menu a.active {
    color: var(--color-gold) !important;
}

/* --- Scroll Reveal System --- */
[data-reveal] {
    opacity: 0;
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
    will-change: opacity, transform;
}

[data-reveal="up"] { transform: translateY(60px); }
[data-reveal="down"] { transform: translateY(-60px); }
[data-reveal="left"] { transform: translateX(-80px); }
[data-reveal="right"] { transform: translateX(80px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    will-change: auto;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* --- Page Transition --- */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    z-index: 9999;
    pointer-events: none;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.8s var(--ease-out-expo) 0.1s;
}

.page-transition.loaded {
    transform: scaleY(0);
    transform-origin: bottom;
}

/* --- Organic Shapes --- */
.section--organic {
    position: relative;
    overflow: hidden;
}

.section--organic::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(111, 115, 92, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

.section--organic::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(164, 168, 140, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
    z-index: 0;
}

.section--organic > .container {
    position: relative;
    z-index: 1;
}

/* --- Section Divider --- */
.section-divider {
    position: relative;
    margin-top: -1px;
    z-index: 2;
    line-height: 0;
}

.section-divider svg {
    width: 100%;
    height: clamp(40px, 6vw, 80px);
    display: block;
}

/* --- Text Line Reveal --- */
.text-line {
    display: block;
    overflow: hidden;
}

.text-line__inner {
    display: block;
    transform: translateY(105%);
    animation: textLineReveal 1s var(--ease-out-expo) forwards;
}

@keyframes textLineReveal {
    to { transform: translateY(0); }
}

.text-line:nth-child(2) .text-line__inner {
    animation-delay: inherit;
}

/* --- Horizontal Scroll Treatment Gallery --- */
.treatment-scroll {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 clamp(24px, 5vw, 80px);
    cursor: grab;
}

.treatment-scroll::-webkit-scrollbar {
    display: none;
}

.treatment-scroll__track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    width: max-content;
}

.treatment-scroll__card {
    position: relative;
    width: clamp(300px, 30vw, 420px);
    aspect-ratio: 3/4;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.treatment-scroll__image {
    position: absolute;
    inset: 0;
}

.treatment-scroll__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.treatment-scroll__card:hover .treatment-scroll__image img {
    transform: scale(1.08);
}

.treatment-scroll__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(30,30,22,0.85) 0%, rgba(30,30,22,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.6s var(--ease-out-expo);
}

.treatment-scroll__card:hover .treatment-scroll__overlay {
    background: linear-gradient(0deg, rgba(30,30,22,0.9) 0%, rgba(30,30,22,0.3) 60%, rgba(30,30,22,0.1) 100%);
}

.treatment-scroll__number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: rgba(255,255,255,0.15);
    position: absolute;
    top: 24px;
    left: 24px;
    line-height: 1;
}

.treatment-scroll__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 28px);
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 400;
}

.treatment-scroll__desc {
    font-size: 14px;
    color: var(--color-text-on-dark);
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.treatment-scroll__card:hover .treatment-scroll__desc {
    opacity: 1;
    transform: translateY(0);
}

.treatment-scroll__duration {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
}

/* --- Gallery Hover Effects --- */
.gallery__item img {
    transition: transform 1s var(--ease-out-expo);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* ============================================
   RTL SUPPORT (Arabic)
   Uses CSS logical properties + dir="rtl" on <html>.
   dir="rtl" automatically reverses flexbox row direction,
   so NO manual flex-direction: row-reverse needed.
   ============================================ */

body.rtl {
    direction: rtl;
    text-align: right;
}

/* Arrow link flips for RTL */
body.rtl .link-arrow:hover span:last-child {
    transform: translateX(-4px);
}

/* Keep centered sections centered */
body.rtl .section__header--center,
body.rtl .text-center {
    text-align: center;
}

body.rtl .hero,
body.rtl .section--cta,
body.rtl .page-hero {
    text-align: center;
}

/* RTL: Horizontal scroll stays LTR, text inside flips */
body.rtl .treatment-scroll {
    direction: ltr;
    left: auto;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
body.rtl .treatment-scroll__overlay {
    direction: rtl;
}

/* RTL: Decorative blobs mirror */
body.rtl .section--organic::before {
    right: auto;
    left: -200px;
}
body.rtl .section--organic::after {
    left: auto;
    right: -150px;
}

/* RTL: Section label line */
body.rtl .section__label::before {
    order: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Lang switcher on mobile — inset-inline-end auto-flips for RTL */
    .lang-switcher {
        position: absolute;
        top: 20px;
        inset-inline-end: 60px;
        margin: 0;
    }

    /* Mobile nav */
    .nav__toggle {
        display: flex;
    }

    /* inset-inline-end: right in LTR, left in RTL — auto-flips */
    .nav__menu {
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: var(--transition-slow);
    }

    .nav__menu.active {
        inset-inline-end: 0;
    }

    .nav__menu a {
        color: var(--color-white) !important;
        font-size: 16px;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--color-white);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--color-white);
    }

    /* Layout adjustments */
    .split,
    .intro,
    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split--reverse {
        direction: ltr;
    }

    .split .split__image {
        order: 1;
    }

    .card-grid--4,
    .card-grid--3,
    .card-grid--2,
    .treatments-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .gallery,
    .gallery--full {
        grid-template-columns: 1fr;
    }

    .gallery__item--large,
    .gallery__item--featured {
        grid-row: span 1;
    }

    .hero__subtitle br,
    .section__title br {
        display: none;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .footer__col {
        align-items: center;
    }

    .stats--row {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .cal__steps {
        padding: 20px 16px;
        gap: 0;
    }

    .cal__step-label {
        display: none;
    }

    .cal__step-line {
        width: 24px;
        margin: 0 8px;
    }

    .cal__panel {
        padding: 24px 16px;
    }

    .cal__datetime {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cal__times {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .cal__times-prompt {
        grid-column: 1 / -1;
        padding-top: 24px;
    }

    .cal__times-header {
        grid-column: 1 / -1;
    }

    .cal__form-grid {
        grid-template-columns: 1fr;
    }

    .cal__treat {
        padding: 16px 18px;
    }

    .wa-booking {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    /* Lighter overlay on mobile so hero image is more visible */
    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(30, 30, 22, 0.5) 0%,
            rgba(30, 30, 22, 0.3) 40%,
            rgba(30, 30, 22, 0.6) 100%
        );
    }

    /* Horizontal scroll cards wider on mobile */
    .treatment-scroll__card {
        width: 85vw;
    }

    /* Disable parallax on mobile */
    [data-parallax] {
        transform: none !important;
    }

    /* Page transition faster on mobile */
    .page-transition {
        transition-duration: 0.5s;
    }

    /* Hero title smaller on mobile */
    .hero__title {
        font-size: clamp(40px, 12vw, 72px);
        line-height: 1.05;
    }
}

/* Disable magnetic cursor on touch devices */
@media (hover: none) {
    .split__image:hover img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .cta-content__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Treatment Pack Cards --- */
.value-card--dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 32px;
}

.value-card--dark .value-card__title {
    color: var(--color-white);
}

.value-card--dark .value-card__desc {
    color: var(--color-text-on-dark);
}

.pack-options {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pack-option {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pack-option__sessions {
    font-size: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage);
    width: 100%;
    margin-bottom: 4px;
}

.pack-option__price-old {
    font-size: var(--text-body);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pack-option__price {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 28px);
    color: var(--color-white);
    font-weight: 500;
}

.pack-option__discount {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-sage);
    padding: 2px 8px;
    border-radius: 4px;
}

.pack-validity {
    display: block;
    margin-top: 16px;
    font-size: var(--text-label);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================================
   V2 UPGRADES
   =========================================== */

/* --- Floating WhatsApp Button --- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.wa-float__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}
.wa-float__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.wa-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-dark);
    border-right: none;
}
.wa-float:hover .wa-float__tooltip {
    opacity: 1;
}

/* --- Sticky Mobile CTA Bar --- */
.sticky-cta {
    display: none;
}
@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 800;
        background: var(--color-dark);
        padding: 12px 16px;
        gap: 10px;
        transform: translateY(100%);
        transition: transform 0.4s var(--ease-out-expo);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }
    .sticky-cta--visible {
        transform: translateY(0);
    }
    .sticky-cta__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    .sticky-cta__btn--book {
        background: var(--color-gold);
        color: var(--color-white);
    }
    .sticky-cta__btn--book:hover {
        background: var(--color-sage);
    }
    .sticky-cta__btn--wa {
        background: #25D366;
        color: #fff;
    }
    .sticky-cta__btn--wa:hover {
        background: #20bd5a;
    }
    .sticky-cta__btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    /* Offset floating WA button when sticky bar visible */
    .wa-float {
        bottom: 88px;
        display: none;
    }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--color-dark);
    color: var(--color-text-on-dark);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}
.cookie-banner--visible {
    transform: translateY(0);
}
.cookie-banner__text {
    flex: 1;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: var(--color-gold-light);
    text-decoration: underline;
}
.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    background: var(--color-gold);
    color: var(--color-white);
    transition: background 0.2s ease;
}
.cookie-banner__btn:hover {
    background: var(--color-sage);
}
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 20px;
    }
}

/* --- Lightbox Gallery --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.lightbox--open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out-expo);
}
.lightbox--open .lightbox__img {
    transform: scale(1);
}
.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 14px;
}
.gallery__item[data-lightbox] {
    cursor: zoom-in;
}

/* --- Enhanced Testimonials with Stars --- */
.testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.testimonial__stars svg {
    width: 16px;
    height: 16px;
    fill: #D4A76A;
}
.testimonial__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(111, 115, 92, 0.15);
}
.testimonial__google {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-light);
}
.testimonial__google svg {
    width: 16px;
    height: 16px;
}

/* --- Instagram Feed Section --- */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}
.instagram-grid__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}
.instagram-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}
.instagram-grid__item:hover img {
    transform: scale(1.08);
}
.instagram-grid__overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 54, 40, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.instagram-grid__item:hover .instagram-grid__overlay {
    opacity: 1;
}
.instagram-grid__overlay svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.instagram-cta {
    text-align: center;
    margin-top: 32px;
}
.instagram-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.instagram-cta a:hover {
    color: var(--color-gold);
}
.instagram-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Gift Card Page --- */
.gift-hero {
    text-align: center;
    padding: 24px 0 0;
}
.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.gift-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-cream);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.gift-card__visual {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gift-card__visual::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gift-card__icon {
    color: var(--color-gold-light);
    margin-bottom: 16px;
}
.gift-card__name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 4px;
}
.gift-card__amount {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-gold-light);
    margin-top: 8px;
}
.gift-card__body {
    padding: 24px 28px;
}
.gift-card__desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}
.gift-card__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.gift-card__includes li {
    font-size: 14px;
    color: var(--color-text);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.gift-card__includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}
.gift-how {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.gift-how__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.gift-how__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
}
.gift-how__title {
    font-family: var(--font-heading);
    font-size: 17px;
}
.gift-how__desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .gift-how {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- Treatment Packages --- */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.package {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--color-cream);
    text-align: center;
    position: relative;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.package .btn { margin-top: auto; }
.package:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.package--popular {
    border-color: var(--color-gold);
}
.package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}
.package__title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
}
.package__sessions {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.package__price {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.package__original {
    font-size: 14px;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}
.package__save {
    font-size: 13px;
    color: #25D366;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- Legal / Privacy Page --- */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-dark);
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}
.legal-content__date {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-cream);
    font-size: 13px;
    color: var(--color-text-light);
    font-style: italic;
}

/* --- Modern Booking Treatment Selector --- */
.treatment-selector { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.treatment-group-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-gold); font-weight: 600; margin-top: 12px; margin-bottom: 2px; }
.treatment-option { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--color-cream); border-radius: 12px; cursor: pointer; transition: all 0.3s ease; background: white; }
.treatment-option:hover { border-color: var(--color-gold); box-shadow: 0 4px 16px rgba(0,0,0,0.05); transform: translateY(-1px); }
.treatment-option.selected { border-color: var(--color-olive); background: linear-gradient(135deg, rgba(92,96,74,0.04), rgba(183,141,105,0.04)); box-shadow: 0 4px 20px rgba(92,96,74,0.12); }
.treatment-option input[type="radio"] { display: none; }
.treatment-option__check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--color-cream); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.treatment-option.selected .treatment-option__check { border-color: var(--color-olive); background: var(--color-olive); }
.treatment-option.selected .treatment-option__check::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: white; }
.treatment-option__info { flex: 1; }
.treatment-option__name { font-family: var(--font-heading); font-size: 16px; font-weight: 500; color: var(--color-dark); line-height: 1.3; }
.treatment-option__meta { font-size: 13px; color: var(--color-text-light); margin-top: 2px; }
.treatment-option__price { text-align: right; flex-shrink: 0; }
.treatment-option__amount { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--color-dark); }
.treatment-option__deposit { font-size: 11px; color: var(--color-gold); font-weight: 500; }

/* Booking form modern inputs */
.booking-form-wrap .form-label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-olive); }
.booking-form-wrap .form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--color-cream); border-radius: 12px; font-family: var(--font-body); font-size: 15px; background: white; transition: border-color 0.3s, box-shadow 0.3s; }
.booking-form-wrap .form-input:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(183,141,105,0.1); }

@media (max-width: 600px) {
    .treatment-option { padding: 14px 16px; gap: 12px; }
    .treatment-option__name { font-size: 14px; }
    .treatment-option__amount { font-size: 16px; }
}