*,
*::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 {
    display: block;
    width: auto;
    height: var(--ws-brand-logo-size, 80px);
    max-width: min(320px, 46vw);
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    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;
}

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

.ws-hero--centered {
    text-align: center;
}

.ws-hero--centered .ws-hero-inner {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    justify-items: center;
}

.ws-hero--centered .ws-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 44rem;
}

.ws-hero--centered .ws-hero-title,
.ws-hero--centered .ws-hero-intro {
    max-width: none;
    margin-inline: auto;
}

.ws-hero--centered .ws-hero-actions,
.ws-hero--centered .ws-trust-strip {
    justify-content: center;
}

.ws-hero--centered .ws-hero-visual {
    width: min(100%, 52rem);
}

.ws-hero--centered .ws-hero-visual::after {
    display: none;
}

.ws-hero--overlay {
    display: flex;
    align-items: center;
    min-height: clamp(28rem, 72vh, 40rem);
    padding: clamp(2.5rem, 8vw, 4.5rem) 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--ws-accent, #c4a574) 22%, transparent), transparent 55%),
        linear-gradient(165deg, var(--ws-secondary, #f5efe6) 0%, color-mix(in srgb, var(--ws-primary, #8b6f47) 18%, #2c2418) 100%);
}

.ws-hero--overlay::before {
    display: none;
}

.ws-hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ws-hero-backdrop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-hero-backdrop-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(20, 16, 12, 0.72) 0%, rgba(20, 16, 12, 0.35) 52%, rgba(20, 16, 12, 0.55) 100%),
        linear-gradient(180deg, rgba(20, 16, 12, 0.15), rgba(20, 16, 12, 0.45));
}

.ws-hero--overlay .ws-hero-inner {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.ws-hero-panel {
    width: min(100%, 34rem);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(16, 12, 8, 0.22);
    backdrop-filter: blur(10px);
}

.ws-hero--overlay .ws-hero-title {
    max-width: none;
}

.ws-hero--scenic {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(30rem, 78vh, 44rem);
    padding: 0;
    background:
        linear-gradient(165deg, var(--ws-secondary, #f5efe6) 0%, color-mix(in srgb, var(--ws-primary, #8b6f47) 22%, #2c2418) 100%);
}

body.ws-hero-flush .ws-hero--scenic {
    margin-top: calc(-1 * var(--ws-header-min-height, 96px));
    min-height: calc(clamp(30rem, 78vh, 44rem) + var(--ws-header-min-height, 96px));
}

.ws-hero--scenic::before {
    display: none;
}

.ws-hero--scenic .ws-hero-backdrop-scrim {
    background:
        linear-gradient(105deg, rgba(18, 14, 10, 0.72) 0%, rgba(18, 14, 10, 0.28) 48%, rgba(18, 14, 10, 0.45) 100%),
        linear-gradient(180deg, rgba(18, 14, 10, 0.1), rgba(18, 14, 10, 0.55));
}

body.ws-hero-flush .ws-hero--scenic .ws-hero-backdrop-scrim {
    background:
        linear-gradient(180deg, rgba(10, 8, 6, 0.62) 0%, rgba(10, 8, 6, 0.28) 22%, transparent 42%),
        linear-gradient(105deg, rgba(18, 14, 10, 0.72) 0%, rgba(18, 14, 10, 0.28) 48%, rgba(18, 14, 10, 0.45) 100%),
        linear-gradient(180deg, rgba(18, 14, 10, 0.1), rgba(18, 14, 10, 0.55));
}

.ws-hero-inner--scenic {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(1180px, calc(100% - clamp(2.5rem, 8vw, 5rem)));
    min-height: inherit;
    padding:
        clamp(5rem, 12vw, 8rem)
        clamp(0.5rem, 2vw, 1.25rem)
        clamp(1.25rem, 3vw, 2rem);
}

.ws-hero-scenic-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(1rem, 4vw, 2.5rem);
}

.ws-hero-copy--scenic {
    max-width: 40rem;
    padding-inline: clamp(0.25rem, 1.5vw, 0.75rem);
}

.ws-hero-copy--scenic .ws-hero-title {
    max-width: 12ch;
    color: #fff;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 600;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.ws-hero-tagline {
    margin: 0 0 0.35rem;
    font-family: var(--ws-font-script);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.ws-hero-seal {
    position: relative;
    width: clamp(7rem, 14vw, 9.5rem);
    height: clamp(7rem, 14vw, 9.5rem);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.ws-hero-seal-ring {
    position: absolute;
    inset: 0.45rem;
    border: 2px solid color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, #fff);
    border-radius: 50%;
}

.ws-hero-seal-text {
    position: relative;
    max-width: 6.5rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ws-primary, #8b6f47);
}

.ws-hero-booking-dock {
    position: relative;
    z-index: 2;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding: 0;
}

.ws-hero-booking-dock-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem 1rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 20px 50px rgba(16, 12, 8, 0.18);
    backdrop-filter: blur(8px);
}

.ws-hero-booking-dock-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.ws-hero-booking-dock-copy strong {
    font-size: 0.95rem;
    color: #1a1612;
}

.ws-hero-booking-dock-copy span {
    font-size: 0.84rem;
    color: #6d655c;
}

.ws-hero-booking-dock-link {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.1);
    color: #1a1612;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.ws-hero-booking-dock-link:hover {
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, rgba(47, 42, 38, 0.1));
    color: var(--ws-primary, #8b6f47);
}

.ws-hero-booking-dock-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ws-accent, #c4a574) 72%, #2f7f86);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(16, 12, 8, 0.14);
}

.ws-hero-booking-dock-cta:hover {
    filter: brightness(1.05);
    color: #fff;
}

.ws-hero--minimal {
    background: #fff;
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.ws-hero--minimal::before {
    display: none;
}

.ws-hero--minimal .ws-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

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

.ws-hero--minimal .ws-hero-visual::after {
    display: none;
}

.ws-hero--minimal .ws-hero-photo,
.ws-hero--minimal .ws-hero-gallery,
.ws-hero--minimal .ws-hero-photo-duo {
    width: min(100%, 320px);
    margin-left: auto;
}

.ws-hero--minimal .ws-hero-photo {
    max-height: 260px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(26, 22, 18, 0.1);
}

.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: var(--ws-section-y, 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: var(--ws-card-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;
    min-height: 240px;
    background: linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-treatment-card-media.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-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: var(--ws-card-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 {
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 22, 18, 0.1);
    background: linear-gradient(135deg, var(--ws-secondary), #fff);
}

.ws-detail-media.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-detail-media img {
    display: block;
    width: 100%;
    border-radius: 24px;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

.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: 0.85rem;
}

.ws-booking-start-intro {
    margin: 0.35rem 0 0.85rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #625b53;
}

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

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

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

.ws-booking-treatment-label + .ws-booking-steps {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.ws-booking-treatment-alternatives {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(47, 42, 38, 0.08);
}

.ws-booking-treatment-alternatives summary {
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: #625b53;
    list-style: none;
    user-select: none;
}

.ws-booking-treatment-alternatives summary::-webkit-details-marker {
    display: none;
}

.ws-booking-treatment-alternatives summary::after {
    content: " ›";
    color: var(--ws-primary, #8b6f47);
}

.ws-booking-treatment-alternatives[open] summary {
    margin-bottom: 0.75rem;
}

.ws-booking-treatment-alternatives[open] summary::after {
    content: "";
}

.ws-booking-treatment-switch-label {
    margin: 0 0 0.65rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #625b53;
}

.ws-booking-treatment-list {
    display: grid;
    gap: 0.85rem;
}

.ws-booking-treatment-card {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0;
    min-height: 6.75rem;
    border-radius: 18px;
    border: 1px solid rgba(47, 42, 38, 0.1);
    background: #fff;
    box-shadow: 0 10px 28px rgba(26, 22, 18, 0.05);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ws-booking-treatment-card.is-static {
    cursor: default;
    pointer-events: none;
}

.ws-booking-treatment-card.is-static:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(26, 22, 18, 0.08);
}

.ws-booking-treatment-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, rgba(47, 42, 38, 0.1));
    box-shadow: 0 16px 36px rgba(26, 22, 18, 0.1);
    text-decoration: none;
}

.ws-booking-treatment-card.is-selected {
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 55%, rgba(47, 42, 38, 0.1));
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 6%, #fff);
    box-shadow: 0 12px 30px rgba(26, 22, 18, 0.08);
}

.ws-booking-treatment-media {
    grid-column: 1;
    grid-row: 1 / -1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ws-secondary, #f5efe6), #fff);
}

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

.ws-booking-treatment-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 6.75rem;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.ws-booking-treatment-body {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.95rem 1rem;
    min-width: 0;
}

.ws-booking-treatment-name {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
    font-family: var(--ws-font-display, var(--ws-font-family, system-ui, sans-serif));
    font-weight: 600;
    color: #241f1b;
}

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

.ws-booking-treatment-teaser {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #625b53;
}

.ws-booking-treatment-cue {
    grid-column: 3;
    align-self: center;
    justify-self: end;
    flex-shrink: 0;
    width: max-content;
    max-width: none;
    margin-right: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 10%, #fff);
    color: var(--ws-primary, #8b6f47);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.ws-booking-treatment-card.is-selected .ws-booking-treatment-cue {
    background: var(--ws-primary, #8b6f47);
    color: #fff;
}

.ws-booking-treatment-list.is-compact {
    gap: 0.65rem;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-card {
    grid-template-columns: 5.25rem minmax(0, 1fr) auto;
    min-height: 5.5rem;
    border-radius: 14px;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-media img {
    min-height: 5.5rem;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-body {
    padding: 0.75rem 0.85rem;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-name {
    font-size: 1rem;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-teaser {
    display: none;
}

.ws-booking-treatment-list.is-compact .ws-booking-treatment-cue {
    margin-right: 0.75rem;
    font-size: 0.72rem;
}

.ws-booking-progress {
    display: flex;
    gap: 0.5rem;
    margin: 0.85rem 0 1rem;
    padding: 0;
    list-style: none;
}

.ws-booking-progress-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.45rem;
    border-radius: 999px;
    background: rgba(47, 42, 38, 0.04);
    color: #7a7268;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.ws-booking-progress-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(47, 42, 38, 0.08);
    font-size: 0.72rem;
}

.ws-booking-progress-step.is-active {
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 12%, #fff);
    color: #241f1b;
}

.ws-booking-progress-step.is-active .ws-booking-progress-num {
    background: var(--ws-primary, #8b6f47);
    color: #fff;
}

.ws-booking-progress-step.is-done {
    color: #4a433c;
}

.ws-booking-progress-step.is-done .ws-booking-progress-num {
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 20%, #fff);
    color: var(--ws-primary, #8b6f47);
}

.ws-booking-field-label {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #625b53;
}

.ws-booking-practitioner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ws-booking-chip {
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(47, 42, 38, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #4a433c;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ws-booking-chip:hover {
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, rgba(47, 42, 38, 0.12));
}

.ws-booking-chip.is-active {
    border-color: var(--ws-primary, #8b6f47);
    background: color-mix(in srgb, var(--ws-primary, #8b6f47) 10%, #fff);
    color: #241f1b;
}

.ws-booking-empty-wrap {
    display: grid;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.ws-booking-jump-first {
    justify-self: start;
}

.ws-booking-day-skeleton {
    min-height: 4.25rem;
    border-radius: 12px;
    border: 1px solid rgba(47, 42, 38, 0.06);
    background: linear-gradient(90deg, rgba(47, 42, 38, 0.04) 25%, rgba(47, 42, 38, 0.08) 50%, rgba(47, 42, 38, 0.04) 75%);
    background-size: 200% 100%;
    animation: ws-booking-skeleton 1.2s ease-in-out infinite;
}

@keyframes ws-booking-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ws-booking-trust {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #7a7268;
}

.ws-booking-sticky-summary {
    display: none;
}

.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-visitors {
    margin: 0;
    color: rgba(244, 239, 232, 0.78);
    font-size: 0.88rem;
}

.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-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ws-faq-item {
    border: 1px solid rgba(47, 42, 38, 0.1);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.ws-faq-question {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    font-weight: 600;
    color: var(--ws-text);
    line-height: 1.45;
}

.ws-faq-question::-webkit-details-marker {
    display: none;
}

.ws-faq-question::before {
    content: '+';
    display: inline-block;
    width: 1.25rem;
    margin-right: 0.35rem;
    color: var(--ws-primary);
    font-weight: 700;
}

.ws-faq-item[open] .ws-faq-question::before {
    content: '−';
}

.ws-faq-answer {
    padding: 0 1.15rem 1.1rem;
    color: rgba(44, 36, 24, 0.88);
}

.ws-faq-answer p:last-child {
    margin-bottom: 0;
}

.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--split .ws-hero-inner,
    .ws-hero--minimal .ws-hero-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .ws-hero--split .ws-hero-copy,
    .ws-hero--minimal .ws-hero-copy {
        order: 1;
    }

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

    .ws-hero--overlay {
        min-height: auto;
    }

    .ws-hero--overlay .ws-hero-inner {
        justify-content: stretch;
    }

    .ws-hero--scenic {
        min-height: auto;
    }

    .ws-hero-inner--scenic {
        width: min(1180px, calc(100% - clamp(2rem, 10vw, 3rem)));
        padding:
            clamp(4.5rem, 14vw, 6rem)
            clamp(0.75rem, 4vw, 1.25rem)
            clamp(1.25rem, 4vw, 2rem);
    }

    body.ws-hero-flush .ws-hero-inner--scenic {
        padding-top: calc(var(--ws-header-min-height, 96px) + clamp(1.5rem, 8vw, 3rem));
    }

    .ws-hero-scenic-main {
        grid-template-columns: 1fr;
    }

    .ws-hero-seal {
        display: none;
    }

    .ws-hero-booking-dock-inner {
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 1rem;
    }

    .ws-hero-booking-dock-link,
    .ws-hero-booking-dock-cta {
        width: 100%;
        text-align: center;
    }

    .ws-hero-panel {
        width: 100%;
    }

    .ws-hero--minimal .ws-hero-photo,
    .ws-hero--minimal .ws-hero-gallery,
    .ws-hero--minimal .ws-hero-photo-duo {
        margin-left: 0;
        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 {
        height: calc(var(--ws-brand-logo-size, 80px) * 0.82);
        max-width: min(240px, 58vw);
    }

    .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-booking-treatment-card {
        grid-template-columns: 4.75rem minmax(0, 1fr);
    }

    .ws-booking-treatment-cue {
        display: none;
    }

    .ws-booking-treatment-list.is-compact .ws-booking-treatment-card {
        grid-template-columns: 4.25rem minmax(0, 1fr);
    }

    .ws-booking-progress-step {
        font-size: 0.72rem;
        padding-inline: 0.35rem;
    }

    .ws-booking-sticky-summary {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(47, 42, 38, 0.1);
        box-shadow: 0 -8px 28px rgba(26, 22, 18, 0.08);
        backdrop-filter: blur(8px);
    }

    .ws-booking-sticky-summary[hidden] {
        display: none !important;
    }

    .ws-booking-sticky-summary-text {
        margin: 0;
        font-size: 0.88rem;
        font-weight: 600;
        color: #241f1b;
        text-align: center;
    }

    .ws-section-booking:has(.ws-booking-sticky-summary:not([hidden])) {
        padding-bottom: 4.5rem;
    }

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

.ws-account-layout {
    max-width: 36rem;
}

.ws-account-card {
    padding: 1.5rem;
    margin-top: 1rem;
}

.ws-account-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-account-switch {
    margin-top: 1.25rem;
}

.ws-account-cancel-hint {
    margin-top: 0.5rem;
}

.ws-account-appointment-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.ws-account-appointment-item {
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ws-account-appointment-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ws-account-appointment-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ws-booking-login-gate {
    padding: 1.5rem;
    max-width: 32rem;
}

.ws-booking-login-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ws-booking-reschedule-intro {
    margin: 0 0 1rem;
}

.ws-booking-account-hint {
    margin: 0 0 1rem;
}

.ws-booking-success {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(72, 140, 90, 0.12);
    color: #2f5f3b;
}

/* ——— Website-stijl varianten ——— */

.ws-variant-editorial .ws-header {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(47, 42, 38, 0.1);
    box-shadow: none;
}

.ws-variant-editorial .ws-hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    max-width: 14ch;
    letter-spacing: -0.03em;
}

.ws-variant-editorial .ws-treatment-card,
.ws-variant-editorial .ws-home-blog-item,
.ws-variant-editorial .ws-booking-treatment-card {
    box-shadow: none;
    border: 1px solid rgba(47, 42, 38, 0.12);
}

.ws-variant-editorial .ws-treatment-card:hover {
    transform: none;
    box-shadow: none;
    border-color: color-mix(in srgb, var(--ws-primary, #8b6f47) 35%, rgba(47, 42, 38, 0.12));
}

.ws-variant-editorial .ws-btn-primary {
    background: var(--ws-primary, #8b6f47);
    box-shadow: none;
}

.ws-variant-editorial .ws-cta-band {
    background: #fff;
    border: 1px solid rgba(47, 42, 38, 0.12);
    box-shadow: none;
}

.ws-variant-editorial .ws-cta-band .ws-cta-title,
.ws-variant-editorial .ws-cta-band .ws-cta-text {
    color: inherit;
}

.ws-variant-editorial .ws-cta-band .ws-eyebrow-light {
    color: var(--ws-primary, #8b6f47);
}

.ws-variant-immersive .ws-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ws-header-shadow);
}

.ws-variant-immersive .ws-hero--overlay .ws-hero-panel {
    max-width: 38rem;
}

.ws-variant-immersive .ws-treatment-card-media {
    min-height: 260px;
}

.ws-variant-immersive .ws-cta-band {
    border-radius: 0;
    background: linear-gradient(135deg, #1a1612, color-mix(in srgb, var(--ws-primary, #8b6f47) 55%, #1a1612));
    box-shadow: none;
}

.ws-variant-immersive .ws-section-muted,
.ws-variant-immersive .ws-section-tiles {
    background: color-mix(in srgb, var(--ws-secondary, #f5efe6) 55%, #fff);
}

.ws-variant-zen .ws-header {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(47, 42, 38, 0.06);
    box-shadow: none;
}

.ws-variant-zen .ws-hero--minimal {
    background: #fff;
}

.ws-variant-zen .ws-treatment-card,
.ws-variant-zen .ws-home-tile,
.ws-variant-zen .ws-booking-treatment-card {
    box-shadow: none;
    border-left: 3px solid color-mix(in srgb, var(--ws-primary, #8b6f47) 45%, #fff);
    border-radius: 0 var(--ws-card-radius, 12px) var(--ws-card-radius, 12px) 0;
}

.ws-variant-zen .ws-treatment-card:hover,
.ws-variant-zen .ws-booking-treatment-card:hover {
    transform: none;
    box-shadow: none;
}

.ws-variant-zen .ws-btn-primary {
    background: var(--ws-primary, #8b6f47);
    box-shadow: none;
}

.ws-variant-zen .ws-cta-band {
    background: var(--ws-secondary, #f5efe6);
    box-shadow: none;
}

.ws-variant-zen .ws-cta-band .ws-cta-title {
    color: #1a1612;
}

.ws-variant-zen .ws-cta-band .ws-cta-text {
    color: #625b53;
}

.ws-variant-zen .ws-cta-band .ws-eyebrow-light {
    color: var(--ws-primary, #8b6f47);
}

.ws-variant-urban .ws-header {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 2px solid #1a1612;
    box-shadow: none;
}

.ws-variant-urban .ws-nav-link {
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

.ws-variant-urban .ws-nav-link.is-active,
.ws-variant-urban .ws-nav-link:hover {
    border-radius: 0;
    background: transparent;
    border-bottom-color: var(--ws-primary, #8b6f47);
}

.ws-variant-urban .ws-nav-cta {
    border-radius: var(--ws-button-radius, 4px);
}

.ws-variant-urban .ws-treatment-card,
.ws-variant-urban .ws-home-blog-item,
.ws-variant-urban .ws-booking-widget,
.ws-variant-urban .ws-booking-treatment-card {
    border: 2px solid rgba(26, 22, 18, 0.12);
    box-shadow: none;
    border-radius: var(--ws-card-radius, 6px);
}

.ws-variant-urban .ws-treatment-card:hover,
.ws-variant-urban .ws-booking-treatment-card:hover {
    transform: none;
    border-color: #1a1612;
    box-shadow: none;
}

.ws-variant-urban .ws-btn-primary {
    background: var(--ws-primary, #8b6f47);
    box-shadow: none;
    border-radius: var(--ws-button-radius, 4px);
}

.ws-variant-urban .ws-cta-band {
    border-radius: 0;
    background: #1a1612;
    box-shadow: none;
}

.ws-variant-urban .ws-hero--split {
    background: #fff;
}

.ws-variant-urban .ws-hero--split::before {
    display: none;
}

.ws-variant-urban .ws-section-head {
    border-bottom: 2px solid #1a1612;
    padding-bottom: 0.75rem;
}

.ws-variant-nature .ws-container {
    width: min(1180px, calc(100% - clamp(2.5rem, 6vw, 4.5rem)));
}

.ws-variant-nature:not(.ws-hero-flush) .ws-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ws-header-shadow);
}

/* Homepage Beleving: hero vanaf bovenkant, header over de foto */
body.ws-variant-nature.ws-hero-flush .ws-header--overlay {
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.58) 0%, rgba(10, 8, 6, 0.22) 72%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: none;
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-brand {
    padding: 0.4rem 0.9rem 0.4rem 0.55rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-brand-logo {
    filter: none;
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-brand-name {
    color: #1a1612;
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-nav-link {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-nav-link:hover,
body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-nav-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-nav-cta {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

body.ws-variant-nature.ws-hero-flush .ws-header--overlay .ws-nav-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body.ws-variant-nature.ws-hero-flush.ws-nav-open .ws-header--overlay {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47, 42, 38, 0.08);
}

body.ws-variant-nature.ws-hero-flush.ws-nav-open .ws-header--overlay .ws-nav-link {
    color: #4a433c;
    text-shadow: none;
}

body.ws-variant-nature.ws-hero-flush.ws-nav-open .ws-header--overlay .ws-nav-link:hover,
body.ws-variant-nature.ws-hero-flush.ws-nav-open .ws-header--overlay .ws-nav-link.is-active {
    background: var(--ws-secondary, #f5efe6);
    color: #1a1612;
}

body.ws-variant-nature.ws-hero-flush.ws-nav-open .ws-header--overlay .ws-nav-toggle {
    border-color: rgba(47, 42, 38, 0.12);
    background: #fff;
    color: #4a433c;
}

body.ws-hero-flush .ws-hero-inner--scenic {
    padding-top: calc(var(--ws-header-min-height, 96px) + clamp(2rem, 6vw, 4.5rem));
}

.ws-variant-nature .ws-nav-cta {
    background: color-mix(in srgb, var(--ws-accent, #c4a574) 55%, var(--ws-primary, #8b6f47));
    border-color: transparent;
}

.ws-variant-nature .ws-hero-title,
.ws-variant-nature .ws-section-title,
.ws-variant-nature .ws-cta-title {
    font-weight: 600;
    letter-spacing: -0.025em;
}

.ws-variant-nature .ws-section-tiles {
    background: color-mix(in srgb, var(--ws-secondary, #f5efe6) 70%, #fff);
}

.ws-variant-nature .ws-home-tiles {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
    padding-top: 0.5rem;
}

.ws-variant-nature .ws-home-tile {
    padding: 0.65rem 0.65rem 1.25rem;
    border-radius: 4px;
    background: #fff;
    border: none;
    box-shadow: 0 16px 40px rgba(26, 22, 18, 0.12);
    transform: rotate(-2deg);
    text-align: left;
}

.ws-variant-nature .ws-home-tile:nth-child(even) {
    transform: rotate(2deg);
}

.ws-variant-nature .ws-home-tile:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 22px 50px rgba(26, 22, 18, 0.16);
}

.ws-variant-nature .ws-home-tile-media {
    width: 100%;
    height: auto;
    margin: 0 0 0.85rem;
    border-radius: 2px;
    aspect-ratio: 4 / 3;
    box-shadow: none;
}

.ws-variant-nature .ws-treatment-card,
.ws-variant-nature .ws-booking-treatment-card {
    border: 1px solid rgba(47, 42, 38, 0.08);
    box-shadow: 0 12px 32px rgba(26, 22, 18, 0.06);
}

.ws-variant-nature .ws-btn-primary {
    background: color-mix(in srgb, var(--ws-accent, #c4a574) 45%, var(--ws-primary, #8b6f47));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--ws-primary, #8b6f47) 22%, transparent);
}

.ws-variant-nature .ws-cta-band {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--ws-primary, #8b6f47) 88%, #1a1612), #1a1612);
    box-shadow: none;
}

.ws-variant-nature .ws-section-head {
    align-items: end;
}
