*,
*::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.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a:hover {
    text-decoration: underline;
}

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

.ws-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(47, 42, 38, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.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: linear-gradient(135deg, var(--ws-primary, #8b6f47), color-mix(in srgb, var(--ws-primary, #8b6f47) 75%, #000));
    color: #fff;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--ws-primary, #8b6f47) 28%, transparent);
}

.ws-nav-cta:hover,
.ws-nav-cta.is-active {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ws-primary, #8b6f47) 88%, #000), var(--ws-primary, #8b6f47));
    color: #fff;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--ws-primary, #8b6f47) 34%, transparent);
}

.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 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--ws-accent, #c4a574) 22%, transparent), transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, color-mix(in srgb, var(--ws-primary, #8b6f47) 10%, transparent), transparent 50%),
        linear-gradient(165deg, var(--ws-secondary, #f5efe6) 0%, #fff 58%, #fffaf6 100%);
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.ws-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--ws-accent, #c4a574) 14%, transparent), transparent 68%);
    pointer-events: none;
}

.ws-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

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

.ws-eyebrow-light {
    color: rgba(255, 255, 255, 0.82);
}

.ws-hero-title,
.ws-page-title,
.ws-section-title,
.ws-cta-title,
.ws-card-title {
    margin: 0;
    line-height: 1.08;
    font-weight: 600;
    font-family: var(--ws-font-display, var(--ws-font-family, system-ui, sans-serif));
    color: #1a1612;
    letter-spacing: -0.02em;
}

.ws-hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    max-width: 11ch;
    font-weight: 600;
}

.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.85rem;
    margin-top: 1.75rem;
}

.ws-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.ws-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5c544b;
}

.ws-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 12%, #fff);
    color: var(--ws-primary, #8b6f47);
    font-size: 0.68rem;
    font-weight: 800;
}

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

.ws-hero-logo,
.ws-hero-photo {
    width: min(100%, 440px);
    border-radius: 28px;
    box-shadow:
        0 28px 70px rgba(26, 22, 18, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.ws-hero-photo {
    aspect-ratio: 16 / 10;
    max-height: 320px;
    object-fit: cover;
    display: block;
    width: 100%;
    border-radius: 28px;
    box-shadow:
        0 28px 70px rgba(26, 22, 18, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.ws-hero-visual::after {
    content: '';
    position: absolute;
    inset: auto -8% -6% 12%;
    height: 40%;
    border-radius: 28px;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--ws-primary, #8b6f47) 8%, transparent));
    pointer-events: none;
    z-index: -1;
}

.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: 4 / 3;
    max-height: 200px;
}

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

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

.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: 1.35rem 1.15rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #fffaf6);
    border: 1px solid rgba(47, 42, 38, 0.07);
    box-shadow: 0 10px 30px rgba(26, 22, 18, 0.05);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-home-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 22, 18, 0.08);
}

.ws-home-tile-media {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ws-secondary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--ws-primary, #8b6f47) 10%, #fff);
}

.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: clamp(1.85rem, 3.5vw, 2.35rem);
}

.ws-link-arrow {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, transparent);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.ws-link-arrow:hover {
    text-decoration: none;
    border-bottom-color: var(--ws-primary, #8b6f47);
}

.ws-page-head {
    padding: clamp(2.5rem, 6vw, 3.75rem) 0 1.25rem;
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, color-mix(in srgb, var(--ws-accent, #c4a574) 12%, transparent), transparent 55%),
        linear-gradient(180deg, var(--ws-secondary, #f5efe6), #fff);
}

.ws-page-title {
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
}

.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.78rem 1.25rem;
    border-radius: var(--ws-button-radius, 12px);
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.ws-btn:active {
    transform: translateY(0);
}

.ws-btn-lg {
    padding: 1rem 1.6rem;
    font-size: 1rem;
}

.ws-btn-block {
    width: 100%;
}

.ws-btn-primary {
    background: linear-gradient(135deg, var(--ws-primary, #8b6f47), color-mix(in srgb, var(--ws-primary, #8b6f47) 78%, #000));
    color: #fff;
    box-shadow:
        0 12px 28px color-mix(in srgb, var(--ws-primary, #8b6f47) 30%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.ws-btn-primary:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ws-primary, #8b6f47) 92%, #000), var(--ws-primary, #8b6f47));
    color: #fff;
    box-shadow:
        0 16px 36px color-mix(in srgb, var(--ws-primary, #8b6f47) 36%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.ws-btn-secondary,
.ws-btn-ghost {
    background: #fff;
    color: #3f3831;
    border-color: rgba(47, 42, 38, 0.14);
    box-shadow: 0 4px 14px rgba(26, 22, 18, 0.04);
}

.ws-btn-secondary:hover,
.ws-btn-ghost:hover {
    background: #fff;
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 25%, transparent);
    color: var(--ws-primary, #8b6f47);
}

.ws-btn-ghost {
    background: transparent;
    box-shadow: none;
}

.ws-btn-light {
    background: #fff;
    color: var(--ws-primary, #8b6f47);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.ws-btn-light:hover {
    background: #fff;
    color: color-mix(in srgb, var(--ws-primary, #8b6f47) 85%, #000);
}

.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.07);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(26, 22, 18, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(26, 22, 18, 0.1);
}

.ws-treatment-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.ws-treatment-card-media img,
.ws-detail-media img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ws-treatment-card:hover .ws-treatment-card-media img {
    transform: scale(1.05);
}

.ws-treatment-card-badge {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    color: #2c2418;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(26, 22, 18, 0.12);
}

.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.35rem;
    font-family: var(--ws-font-display, var(--ws-font-family, system-ui, sans-serif));
    font-weight: 600;
    line-height: 1.2;
}

.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-section-cta {
    padding: 0 0 4rem;
}

.ws-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 28px;
    background:
        radial-gradient(ellipse 80% 120% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
        linear-gradient(135deg, var(--ws-primary, #8b6f47), color-mix(in srgb, var(--ws-primary, #8b6f47) 70%, #1a1612));
    box-shadow: 0 24px 60px color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, transparent);
}

.ws-cta-band-copy {
    max-width: 36ch;
}

.ws-cta-band .ws-cta-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.ws-cta-band .ws-cta-text {
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.5rem;
}

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

.ws-detail-media img {
    border-radius: 24px;
    height: auto;
    min-height: 320px;
    box-shadow: 0 20px 50px rgba(26, 22, 18, 0.1);
}

.ws-detail-cta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(47, 42, 38, 0.08);
}

.ws-detail-cta-note {
    margin: 0.65rem 0 0;
    font-size: 0.92rem;
}

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

.ws-section-booking {
    padding-top: 2.5rem;
}

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

.ws-booking-page-title {
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    line-height: 1.15;
    font-weight: 700;
    color: #241f1b;
}

.ws-booking-start {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.ws-booking-treatment-label {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.ws-booking-treatment-switch {
    margin-bottom: 0.25rem;
}

.ws-booking-info-link {
    margin: 0;
    font-size: 0.92rem;
}

.ws-booking-info-link a {
    color: rgba(47, 42, 38, 0.68);
}

.ws-booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

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

.ws-footer {
    margin-top: 2rem;
    padding: 2.75rem 0 2.5rem;
    background:
        radial-gradient(ellipse 60% 80% at 0% 100%, color-mix(in srgb, var(--ws-primary, #8b6f47) 18%, transparent), transparent 55%),
        #1a1612;
    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: 42rem;
}

.ws-container.ws-content {
    width: min(42rem, calc(100% - 2rem));
    max-width: 42rem;
    margin-inline: auto;
}

.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 {
    width: min(42rem, calc(100% - 2rem));
    max-width: 42rem;
    margin-inline: auto;
}

.ws-container.ws-blog-layout {
    width: min(42rem, calc(100% - 2rem));
    max-width: 42rem;
}

.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-blog-article {
    padding: 0 0 3rem;
    background: linear-gradient(180deg, var(--ws-secondary, #f5efe6) 0%, #fff 42%);
}

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

.ws-blog-article-hero,
.ws-article-hero {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

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

.ws-blog-article-shell {
    width: min(42rem, 100%);
    max-width: 42rem;
    margin-inline: auto;
}

.ws-blog-article.has-hero .ws-blog-article-shell {
    margin-top: -2.75rem;
    position: relative;
    z-index: 1;
}

.ws-blog-article:not(.has-hero) .ws-blog-article-shell {
    padding-top: 2rem;
}

.ws-blog-article-card {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(47, 42, 38, 0.08);
}

.ws-blog-article.has-hero .ws-blog-article-card {
    box-shadow: 0 -8px 36px rgba(47, 42, 38, 0.06), 0 16px 40px rgba(47, 42, 38, 0.08);
}

.ws-blog-article-header {
    padding: 1.5rem 1.5rem 1rem;
}

.ws-blog-article-body {
    padding: 0.25rem 1.5rem 1.75rem;
    font-size: 1.02rem;
    line-height: 1.75;
}

.ws-blog-article .ws-content {
    width: 100%;
    max-width: none;
}

.ws-blog-article-body :is(p, h1, h2, h3, ul, ol, li, blockquote) {
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
}

.ws-blog-article-body a {
    overflow-wrap: anywhere;
}

.ws-blog-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding: 0 0.25rem;
}

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

.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 {
    width: min(42rem, calc(100% - 2rem));
    max-width: 42rem;
}

.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 (prefers-reduced-motion: no-preference) {
    .ws-hero-copy,
    .ws-hero-visual {
        animation: ws-fade-up 0.7s ease both;
    }

    .ws-hero-visual {
        animation-delay: 0.12s;
    }

    .ws-treatment-card,
    .ws-home-tile,
    .ws-home-blog-item {
        animation: ws-fade-up 0.55s ease both;
    }
}

@keyframes ws-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .ws-trust-strip {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ws-cta-band {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ws-cta-band-copy {
        max-width: none;
    }

    .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-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-booking-form-row {
        grid-template-columns: 1fr;
    }

    .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;
    }
}
