*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ws-body {
    margin: 0;
    font-family: var(--ws-font-family, system-ui, sans-serif);
    color: var(--ws-text, #2f2a26);
    background: #fff;
    line-height: 1.6;
}

a {
    color: var(--ws-primary, #8b6f47);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.ws-container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.ws-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(47, 42, 38, 0.08);
}

.ws-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--ws-header-min-height, 84px);
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.ws-brand:hover {
    text-decoration: none;
}

.ws-brand-logo {
    width: var(--ws-brand-logo-size, 58px);
    height: var(--ws-brand-logo-size, 58px);
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.ws-brand-name {
    font-size: var(--ws-brand-font-size, 1.12rem);
}

.ws-nav {
    display: flex;
    align-items: center;
    gap: var(--ws-nav-gap, 0.35rem);
    flex-wrap: wrap;
}

.ws-nav-link {
    padding: var(--ws-nav-pad-y, 0.55rem) var(--ws-nav-pad-x, 0.9rem);
    border-radius: 999px;
    color: #4a433c;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--ws-nav-font-size, 0.95rem);
    line-height: 1.2;
}

.ws-nav-link:hover,
.ws-nav-link.is-active {
    background: var(--ws-secondary, #f5efe6);
    text-decoration: none;
}

.ws-nav-cta {
    background: var(--ws-primary, #8b6f47);
    color: #fff;
}

.ws-nav-cta:hover,
.ws-nav-cta.is-active {
    background: #745a39;
    color: #fff;
}

.ws-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(47, 42, 38, 0.12);
    border-radius: 12px;
    background: #fff;
    color: #4a433c;
    cursor: pointer;
    flex-shrink: 0;
}

.ws-nav-toggle:hover {
    background: var(--ws-secondary, #f5efe6);
}

.ws-nav-toggle-icon {
    display: grid;
    gap: 5px;
    width: 20px;
}

.ws-nav-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ws-nav-toggle[aria-expanded="true"] .ws-nav-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ws-nav-toggle[aria-expanded="true"] .ws-nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.ws-nav-toggle[aria-expanded="true"] .ws-nav-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.ws-nav-open {
    overflow: hidden;
}

.ws-hero {
    background:
        radial-gradient(circle at top right, rgba(196, 165, 116, 0.18), transparent 42%),
        linear-gradient(180deg, var(--ws-secondary, #f5efe6) 0%, #fff 100%);
    padding: 4.5rem 0 3.5rem;
}

.ws-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.ws-eyebrow {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ws-primary, #8b6f47);
}

.ws-hero-title,
.ws-page-title,
.ws-section-title,
.ws-cta-title,
.ws-card-title {
    margin: 0;
    line-height: 1.15;
    font-weight: 700;
    color: #241f1b;
}

.ws-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    max-width: 12ch;
}

.ws-hero-intro,
.ws-page-intro,
.ws-cta-text,
.ws-muted,
.ws-empty {
    color: #6d655c;
}

.ws-hero-intro {
    font-size: 1.08rem;
    max-width: 46ch;
}

.ws-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ws-hero-visual {
    display: flex;
    justify-content: center;
}

.ws-hero-logo,
.ws-hero-photo {
    width: min(100%, 420px);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(47, 42, 38, 0.12);
}

.ws-hero-photo {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(47, 42, 38, 0.12);
}

.ws-hero-photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: min(100%, 420px);
}

.ws-hero-photo-duo .ws-hero-photo {
    aspect-ratio: 3 / 4;
}

.ws-hero-gallery {
    position: relative;
    width: min(100%, 420px);
}

.ws-hero-gallery-track {
    position: relative;
    aspect-ratio: 4 / 5;
}

.ws-hero-gallery-track .ws-hero-photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ws-hero-gallery-track .ws-hero-photo.is-active {
    opacity: 1;
}

.ws-hero-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.ws-hero-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(47, 42, 38, 0.2);
    cursor: pointer;
}

.ws-hero-gallery-dot.is-active {
    width: 22px;
    background: var(--ws-primary);
}

.ws-section {
    padding: 3.5rem 0;
}

.ws-section-muted {
    background: #faf8f5;
}

.ws-section-tiles {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.ws-home-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.ws-home-tile {
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.08);
    box-shadow: 0 8px 24px rgba(47, 42, 38, 0.04);
    text-align: center;
}

.ws-home-tile-media {
    width: 72px;
    height: 72px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ws-secondary);
}

.ws-home-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-home-tile-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a433c;
}

.ws-section-home-blog {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(47, 42, 38, 0.06);
}

.ws-home-blog-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ws-home-blog-item {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ws-home-blog-item:hover {
    box-shadow: 0 10px 28px rgba(47, 42, 38, 0.07);
    transform: translateY(-2px);
}

.ws-home-blog-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-home-blog-thumb.is-placeholder {
    background:
        radial-gradient(circle at 30% 20%, rgba(196, 165, 116, 0.2), transparent 55%),
        linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-home-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-home-blog-title {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
}

.ws-home-blog-title a {
    color: inherit;
    text-decoration: none;
}

.ws-home-blog-title a:hover {
    color: var(--ws-primary);
}

.ws-home-blog-date {
    margin: 0;
    font-size: 0.78rem;
    color: #7a7268;
}

.ws-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ws-section-title {
    font-size: 1.8rem;
}

.ws-link-arrow {
    font-weight: 600;
}

.ws-page-head {
    padding: 3rem 0 1rem;
    background: linear-gradient(180deg, var(--ws-secondary, #f5efe6), #fff);
}

.ws-page-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.ws-breadcrumb {
    margin: 0 0 0.75rem;
    color: #7a7268;
    font-size: 0.92rem;
}

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1.15rem;
    border-radius: var(--ws-button-radius, 8px);
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ws-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.ws-btn-lg {
    padding: 0.9rem 1.35rem;
}

.ws-btn-primary {
    background: var(--ws-primary, #8b6f47);
    color: #fff;
    box-shadow: 0 10px 24px rgba(139, 111, 71, 0.22);
}

.ws-btn-primary:hover {
    background: #745a39;
    color: #fff;
}

.ws-btn-secondary,
.ws-btn-ghost {
    background: #fff;
    color: #3f3831;
    border-color: rgba(47, 42, 38, 0.12);
}

.ws-btn-ghost {
    background: transparent;
}

.ws-treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.ws-treatment-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(47, 42, 38, 0.05);
}

.ws-treatment-card-media img,
.ws-detail-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ws-treatment-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem;
    flex: 1;
}

.ws-treatment-card-title {
    margin: 0;
    font-size: 1.15rem;
}

.ws-treatment-card-title a {
    color: inherit;
    text-decoration: none;
}

.ws-treatment-card-meta {
    margin: 0;
    font-size: 0.92rem;
    color: #7a7268;
    font-weight: 600;
}

.ws-treatment-card-text {
    margin: 0;
    color: #625b53;
    font-size: 0.95rem;
}

.ws-treatment-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.ws-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.08);
}

.ws-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.ws-detail-media img {
    border-radius: 22px;
    height: auto;
    min-height: 320px;
}

.ws-prose {
    font-size: 1.02rem;
    color: #4d463f;
}

.ws-booking-layout {
    display: grid;
    gap: 1.25rem;
    max-width: 760px;
}

.ws-booking-selected,
.ws-booking-placeholder {
    padding: 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.08);
}

.ws-booking-selected-name {
    margin: 0.35rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.ws-contact-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.ws-footer {
    margin-top: 2rem;
    padding: 2rem 0 2.5rem;
    background: #241f1b;
    color: #f4efe8;
}

.ws-footer a {
    color: #fff;
}

.ws-footer-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.ws-footer-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    text-align: right;
}

.ws-footer-contact {
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.ws-footer-note {
    margin: 0;
    color: rgba(244, 239, 232, 0.62);
    font-size: 0.88rem;
}

.ws-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1.25rem;
    margin: 0;
}

.ws-footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.ws-content {
    max-width: 720px;
}

.ws-content h1,
.ws-content h2,
.ws-content h3 {
    color: var(--ws-primary);
    margin: 1.5rem 0 0.75rem;
}

.ws-content h1:first-child,
.ws-content h2:first-child,
.ws-content h3:first-child {
    margin-top: 0;
}

.ws-content p {
    margin: 0 0 1rem;
}

.ws-content ul,
.ws-content ol {
    margin: 0 0 1rem 1.25rem;
}

.ws-content li {
    margin-bottom: 0.35rem;
}

.ws-blog-layout {
    max-width: 760px;
}

.ws-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ws-blog-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.ws-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(47, 42, 38, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(47, 42, 38, 0.05);
}

.ws-blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-blog-card-media.is-placeholder {
    background:
        radial-gradient(circle at 30% 20%, rgba(196, 165, 116, 0.25), transparent 55%),
        linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ws-blog-card:hover .ws-blog-card-media img {
    transform: scale(1.03);
}

.ws-blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.25rem 1.35rem;
    flex: 1;
}

.ws-blog-card-date {
    margin: 0;
    font-size: 0.82rem;
    color: #7a7268;
}

.ws-blog-card-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
}

.ws-blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.ws-blog-card-excerpt {
    margin: 0;
    color: #6d655c;
    line-height: 1.55;
}

.ws-article-hero-wrap {
    padding: 0 1rem;
}

.ws-article-hero {
    position: relative;
    max-width: 900px;
    max-height: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.ws-article-hero-image {
    width: 100%;
    height: min(48vh, 400px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.ws-page-head-overlap {
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

.ws-page-head-overlap .ws-container {
    padding: 1.5rem 1.5rem 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 40px rgba(47, 42, 38, 0.06);
}

.ws-page-head-overlap .ws-blog-layout {
    max-width: 760px;
}

.ws-article-content {
    padding-top: 0.5rem;
}

.ws-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-booking-form .mm-form-group {
    margin-bottom: 1rem;
}

.ws-booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.ws-booking-form input,
.ws-booking-form select,
.ws-booking-form textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(47, 42, 38, 0.15);
    border-radius: 10px;
    font: inherit;
}

.ws-booking-thanks {
    padding: 1.5rem;
    background: var(--ws-secondary);
    border-radius: 16px;
}

.ws-booking-error {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #fdecea;
    color: #8a2f28;
}

.ws-booking-widget {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
}

.ws-booking-select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(47, 42, 38, 0.15);
    border-radius: 10px;
    font: inherit;
    background: #fff;
}

.ws-booking-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 1.25rem 0 1rem;
}

.ws-booking-week-label {
    margin: 0;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.ws-booking-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.ws-booking-day {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.35rem;
    border: 1px solid rgba(47, 42, 38, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.ws-booking-day.is-selected {
    border-color: var(--ws-primary);
    background: var(--ws-secondary);
}

.ws-booking-day.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ws-booking-day-label {
    font-weight: 600;
    font-size: 0.92rem;
}

.ws-booking-day-count {
    font-size: 0.75rem;
    color: rgba(47, 42, 38, 0.65);
}

.ws-booking-slots-wrap {
    margin-top: 1.25rem;
}

.ws-booking-slots-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.ws-booking-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
}

.ws-booking-slot {
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(47, 42, 38, 0.12);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.ws-booking-slot.is-selected,
.ws-booking-slot:hover {
    border-color: var(--ws-primary);
    background: var(--ws-secondary);
}

.ws-booking-chosen {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--ws-secondary);
    font-weight: 600;
}

.ws-booking-empty,
.ws-booking-loading {
    margin: 1rem 0 0;
    color: rgba(47, 42, 38, 0.7);
}

.ws-booking-summary-list {
    margin: 1rem 0;
    padding-left: 1.1rem;
}

.ws-link-muted {
    color: rgba(47, 42, 38, 0.65);
    font-size: 0.92rem;
}

@media (max-width: 860px) {
    .ws-hero {
        padding: 2.5rem 0 2rem;
    }

    .ws-hero-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .ws-hero-copy {
        order: 1;
    }

    .ws-hero-visual {
        order: 2;
        width: 100%;
    }

    .ws-hero-title {
        max-width: none;
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .ws-hero-intro {
        max-width: none;
    }

    .ws-hero-photo,
    .ws-hero-gallery,
    .ws-hero-photo-duo {
        width: 100%;
        max-width: none;
    }

    .ws-hero-photo {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }

    .ws-hero-gallery-track {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }

    .ws-hero-photo-duo .ws-hero-photo {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    .ws-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ws-detail-media img {
        width: 100%;
        min-height: 0;
        max-height: 320px;
        object-fit: cover;
    }

    .ws-cta-band,
    .ws-footer-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .ws-footer-side {
        align-items: flex-end;
    }

    .ws-header-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 0;
        min-height: 0;
        gap: 0.75rem;
    }

    .ws-brand {
        flex: 1;
        min-width: 0;
    }

    .ws-brand-logo {
        width: calc(var(--ws-brand-logo-size, 58px) * 1.1);
        height: calc(var(--ws-brand-logo-size, 58px) * 1.1);
    }

    .ws-nav-toggle {
        display: inline-flex;
    }

    .ws-nav {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.5rem 0 0.25rem;
        border-top: 1px solid rgba(47, 42, 38, 0.08);
    }

    .ws-nav.is-open {
        display: flex;
    }

    .ws-nav-link {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        border-radius: 12px;
    }

    .ws-booking-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-booking-week-nav {
        flex-direction: column;
    }

    .ws-home-blog-strip {
        grid-template-columns: 1fr;
    }

    .ws-home-tiles {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ws-home-tile {
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0;
        overflow: hidden;
    }

    .ws-home-tile-media {
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 0;
        aspect-ratio: 16 / 10;
    }

    .ws-home-tile-text {
        padding: 1rem 1.1rem 1.15rem;
    }
}
