:root {
    --bg: #f6efe2;
    --surface: rgba(255, 250, 241, 0.92);
    --surface-strong: #fff8ec;
    --surface-dark: #8f6123;
    --text: #352415;
    --muted: #6d563f;
    --accent: #b9832f;
    --accent-strong: #8f6123;
    --accent-soft: #f3e3c5;
    --line: rgba(122, 89, 44, 0.2);
    --shadow: 0 24px 70px rgba(116, 82, 38, 0.14);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(200, 151, 71, 0.22), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(241, 220, 181, 0.5), transparent 30%),
        linear-gradient(180deg, #f9f3e8 0%, var(--bg) 36%, #fff9f0 100%);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    width: min(calc(100% - 2rem), var(--content-width));
    margin: 0 auto;
    padding: 1rem 0 4rem;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    margin-top: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.94) 0%, rgba(249, 237, 211, 0.92) 100%);
    box-shadow: 0 14px 38px rgba(116, 82, 38, 0.12);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    padding: 0.38rem 0.7rem 0.38rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 97, 35, 0.2);
    background: linear-gradient(180deg, rgba(255, 249, 236, 0.98) 0%, rgba(244, 225, 186, 0.55) 100%);
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(143, 97, 35, 0.25);
    background: radial-gradient(circle at 30% 26%, rgba(255, 240, 204, 0.95), rgba(183, 130, 48, 0.3) 76%);
    box-shadow: 0 8px 20px rgba(112, 74, 27, 0.18);
}

.brand-logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(68, 41, 16, 0.26));
}

.brand-kicker,
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.72rem;
    color: var(--accent-strong);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.brand-name,
.brand-name-display {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-nav a {
    padding: 0.4rem 0.1rem;
    color: #5f472f;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.site-nav a:hover {
    color: var(--accent-strong);
}

.header-cta {
    justify-self: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--accent);
    color: #fffaf2;
    box-shadow: 0 12px 30px rgba(143, 97, 35, 0.28);
}

.button-primary:hover {
    background: var(--accent-strong);
}

.button-secondary {
    background: rgba(255, 249, 238, 0.92);
    border-color: rgba(143, 97, 35, 0.24);
}

.hero,
.split-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.hero {
    padding: 2rem 0 3rem;
    align-items: center;
}

.seo-hero {
    padding-top: 1.6rem;
}

.hero-copy h1,
.section-heading h2,
.panel h2,
.section-grid h2 {
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    line-height: 0.98;
    font-weight: 600;
}

.section-heading h2,
.panel h2,
.section-grid h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.02;
}

.lead,
.section-heading p,
.panel p,
.info-card p,
.stack-list p,
.contact-strip dd,
.form-note {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.8rem 0 2rem;
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 249, 238, 0.9);
    backdrop-filter: blur(14px);
}

.contact-strip dt {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-strip dd {
    margin: 0;
}

.contact-reveal,
.contact-revealed-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 97, 35, 0.28);
    background: rgba(255, 252, 245, 0.98);
    color: var(--text);
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-reveal {
    cursor: pointer;
}

.contact-reveal:hover,
.contact-revealed-link:hover {
    border-color: rgba(143, 97, 35, 0.5);
}

.contact-privacy-note {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.92rem;
}

.seo-intro,
.seo-booking-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.seo-booking-note {
    margin-top: 0.3rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
}

.contact-privacy-note a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.hero-visual img,
.gallery-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.section {
    padding: 2rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.seo-internal-links {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.seo-internal-links a {
    width: fit-content;
    color: var(--accent-strong);
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.seo-internal-links a:hover {
    color: var(--text);
}

.card-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.info-card,
.gallery-card,
.panel,
.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.panel-accent {
    background: linear-gradient(180deg, rgba(255, 250, 239, 0.94) 0%, rgba(244, 227, 196, 0.9) 100%);
}

.info-card,
.gallery-card {
    padding: 1.4rem;
}

.info-card h3,
.stack-list h3,
.gallery-card figcaption {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.section-heading.narrow {
    max-width: 36rem;
}

.gallery-card figcaption {
    margin-top: 1rem;
}

.panel {
    padding: 2rem;
}

.panel-dark {
    background: linear-gradient(180deg, #b9853c 0%, var(--surface-dark) 100%);
    color: #fff8eb;
}

.panel-dark p,
.panel-dark .eyebrow {
    color: rgba(255, 248, 234, 0.84);
}

.treatwell-widget-shell {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 241, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.treatwell-consent-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
}

#wahanda-online-booking-widget-iframe {
    width: 100%;
    min-height: 700px;
}

#wahanda-online-booking-widget-iframe iframe {
    display: block;
    width: 100%;
    min-height: 700px;
    border: 0;
}

.treatwell-section {
    padding-top: 2.5rem;
}

.stack-list {
    display: grid;
    gap: 1rem;
}

.contact-section {
    padding-bottom: 0;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 250, 241, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.footer-block h2,
.footer-block h3 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
}

.footer-block h3 {
    font-size: 1.18rem;
}

.footer-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-link-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-link-list a {
    width: fit-content;
    color: var(--accent-strong);
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.footer-button {
    margin-top: 1rem;
    width: fit-content;
}

.footer-block p + p {
    margin-top: 0.75rem;
}

.legal-content {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.legal-section {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 241, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-section h2 {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.legal-section ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

.footer-block a {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.footer-contact p strong {
    color: var(--text);
}

.notice {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-family: "Trebuchet MS", sans-serif;
}

.notice-success {
    background: rgba(255, 246, 227, 0.96);
    border: 1px solid rgba(143, 97, 35, 0.3);
}

.notice-error {
    background: rgba(252, 240, 223, 0.96);
    border: 1px solid rgba(143, 97, 35, 0.24);
}

.contact-form {
    padding: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid label {
    display: grid;
    gap: 0.45rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 700;
}

.full-width {
    grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid rgba(143, 97, 35, 0.24);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: rgba(255, 252, 246, 0.98);
    color: var(--text);
    font: inherit;
}

.form-grid textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    width: min(28rem, calc(100% - 2rem));
    padding: 1.1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(143, 97, 35, 0.24);
    background: rgba(255, 250, 241, 0.98);
    box-shadow: 0 18px 48px rgba(112, 74, 27, 0.24);
    backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-title {
    margin: 0;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.cookie-banner-copy {
    margin: 0.65rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.cookie-banner-small {
    font-size: 0.92rem;
}

.cookie-banner-small a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.95rem;
}

.cookie-settings-button {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 29;
    min-height: 2.6rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 97, 35, 0.24);
    background: rgba(255, 250, 241, 0.95);
    color: var(--text);
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(112, 74, 27, 0.2);
}

.cookie-settings-button:hover {
    border-color: rgba(143, 97, 35, 0.4);
}

@media (max-width: 960px) {
    .hero,
    .split-panel,
    .section-grid,
    .card-grid,
    .gallery-grid,
    .site-footer,
    .contact-strip,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-nav,
    .header-cta {
        justify-self: start;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

    .form-actions,
    .site-header {
        align-items: stretch;
        flex-direction: column;
    }

    .treatwell-widget-shell {
        padding: 0.8rem;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 1rem), var(--content-width));
    }

    .hero {
        padding-top: 1rem;
    }

    .panel,
    .contact-form,
    .info-card,
    .gallery-card {
        border-radius: 24px;
    }
}