:root {
    --cream: #fbf8f2;
    --white: #ffffff;
    --sand-100: #f4eee5;
    --sand-200: #eee4d6;
    --sand-300: #dfccb4;
    --sand-400: #c8ad8e;
    --sand-500: #b59370;
    --olive: #566145;
    --olive-dark: #444d37;
    --ink: #403832;
    --muted: #746a61;
    --line: #e4d8c8;
    --success: #4d684b;
    --error: #8b4a40;
    --shadow-soft: 0 18px 50px rgba(82, 65, 48, 0.08);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --site-width: 1280px;
    --text-width: 760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--olive); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--olive-dark); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.55em;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.08;
    text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.15rem, 4.2vw, 3.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }
p { margin: 0 0 1.25em; }
ul, ol { margin: 0 0 1.5em; padding-left: 1.35em; }
blockquote { margin: 0; }
::selection { background: var(--sand-300); color: var(--ink); }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
    position: fixed !important;
    z-index: 99999;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    clip: auto;
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--olive);
    border-radius: 10px;
}
:focus-visible { outline: 3px solid var(--olive); outline-offset: 4px; }

.site-container {
    width: min(calc(100% - 48px), var(--site-width));
    margin-inline: auto;
}
.narrow { max-width: var(--text-width); }
.text-center { text-align: center; }
.section { padding: clamp(78px, 9vw, 138px) 0; }
.section--compact { padding: clamp(54px, 7vw, 96px) 0; }
.section--sand { background: var(--sand-100); }
.section--deep-sand { background: var(--sand-200); }
.eyebrow {
    margin: 0 0 1.1rem;
    color: var(--sand-500);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}
.large-copy { color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.75; }

.top-line {
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 6px 20px;
    background: var(--sand-300);
    color: var(--ink);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(228, 216, 200, 0.9);
    transition: box-shadow 180ms ease, background-color 180ms ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 8px 30px rgba(70, 55, 41, 0.07); }
.site-header__inner {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.site-branding { flex: 0 1 285px; min-width: 210px; }
.default-logo { display: block; line-height: 0; }
.default-logo img { width: min(100%, 278px); height: auto; }
.custom-logo-link { display: block; line-height: 0; }
.custom-logo { width: auto; max-width: 278px; max-height: 80px; }
.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}
.primary-navigation .menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.8vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-navigation .menu-item { position: relative; }
.primary-navigation .menu-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 520;
    text-decoration: none;
}
.primary-navigation .menu-item > a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a { color: var(--olive); }
.primary-navigation .sub-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: calc(100% - 2px);
    left: -22px;
    min-width: 220px;
    margin: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    list-style: none;
    transform: translateY(8px);
    transition: 160ms ease;
}
.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.primary-navigation .sub-menu a { display: block; min-height: auto; padding: 9px 10px; }
.menu-toggle {
    display: none;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    background: transparent;
    color: var(--ink);
    border: 0;
}
.menu-toggle__label { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.menu-toggle__icon { width: 25px; display: grid; gap: 5px; }
.menu-toggle__icon span { display: block; width: 100%; height: 1.5px; background: currentColor; transition: 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 25px;
    background: var(--olive);
    color: var(--white);
    border: 1px solid var(--olive);
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { background: var(--olive-dark); color: var(--white); border-color: var(--olive-dark); transform: translateY(-1px); }
.button--outline { background: transparent; color: var(--ink); border-color: var(--sand-400); }
.button--outline:hover { background: var(--white); color: var(--ink); border-color: var(--olive); }
.button--small { min-height: 46px; padding: 11px 21px; font-size: 0.86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 0.91rem; font-weight: 750; text-decoration: none; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { overflow: hidden; }
.hero__grid {
    min-height: min(760px, calc(100svh - 140px));
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(540px, 1.17fr);
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
    padding-top: clamp(62px, 7vw, 104px);
    padding-bottom: clamp(62px, 7vw, 104px);
}
.hero__content { max-width: 600px; }
.hero__content h1 { max-width: 700px; }
.hero__lead { max-width: 590px; color: var(--muted); font-size: clamp(1.08rem, 1.55vw, 1.3rem); line-height: 1.75; }
.hero__visual { position: relative; }
.hero__visual > picture > img {
    width: 100%;
    aspect-ratio: 1.03 / 1;
    object-fit: cover;
    object-position: 58% center;
    border-radius: var(--radius-lg);
}
.hero-note {
    position: absolute;
    left: -42px;
    bottom: 36px;
    width: min(310px, 46%);
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
.hero-note span { display: block; margin-bottom: 8px; color: var(--sand-500); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-note strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.06rem, 1.5vw, 1.34rem); font-weight: 400; line-height: 1.28; }
.intro-section { background: var(--white); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card__image { display: block; overflow: hidden; }
.service-card__image img { width: 100%; aspect-ratio: 1.46 / 1; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card__image img { transform: scale(1.025); }
.service-card__body { padding: 30px 30px 32px; }
.service-card__body h3 { margin-bottom: 0.55rem; }
.service-card__body h3 a { color: inherit; text-decoration: none; }
.service-card__body p:not(.eyebrow) { min-height: 84px; color: var(--muted); font-size: 0.96rem; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.split-grid__image img { width: 100%; aspect-ratio: 1.2 / 1; object-fit: cover; border-radius: var(--radius-lg); }
.split-grid__content { max-width: 590px; }
.split-grid__content > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.soft-list { padding: 0; list-style: none; }
.soft-list li { position: relative; margin: 0 0 13px; padding-left: 27px; }
.soft-list li::before { content: ""; position: absolute; top: 0.72em; left: 1px; width: 9px; height: 9px; background: var(--sand-500); border-radius: 50%; }

.values-section { background: var(--white); }
.values-section blockquote { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem, 3.4vw, 3.25rem); line-height: 1.35; }
.quote-by { margin-top: 28px; color: var(--muted); font-size: 0.92rem; }

.steps-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(50px, 8vw, 120px); }
.steps-intro { max-width: 500px; }
.steps-intro p:not(.eyebrow) { color: var(--muted); }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 27px 0; border-top: 1px solid var(--line); }
.steps-list li:last-child { border-bottom: 1px solid var(--line); }
.steps-list > li > span { color: var(--sand-500); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.steps-list h3 { margin-bottom: 7px; font-size: 1.55rem; }
.steps-list p { margin: 0; color: var(--muted); }

.booking-cta { background: var(--white); }
.booking-cta__inner {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    align-items: stretch;
    padding: 0;
    background: var(--sand-100);
    border-radius: var(--radius-lg);
}
.booking-cta__content { align-self: center; padding: clamp(48px, 7vw, 95px); }
.booking-cta__content p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 1.06rem; }
.booking-cta__image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.post-card__image { display: block; overflow: hidden; }
.post-card__image img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; transition: transform 450ms ease; }
.post-card:hover .post-card__image img { transform: scale(1.025); }
.post-card__body { padding: 27px; }
.post-card__meta { margin-bottom: 9px; color: var(--sand-500); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card__body > p:not(.post-card__meta) { color: var(--muted); font-size: 0.94rem; }

.page-hero__grid { min-height: 590px; display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(55px, 7vw, 100px); padding-top: clamp(65px, 8vw, 105px); padding-bottom: clamp(65px, 8vw, 105px); }
.page-hero__content { max-width: 560px; }
.page-hero__image img { width: 100%; aspect-ratio: 1.38 / 1; object-fit: cover; border-radius: var(--radius-lg); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: clamp(55px, 8vw, 110px); }
.entry-content { max-width: 790px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 1.45em; font-size: clamp(2rem, 3.5vw, 3.15rem); }
.entry-content h3 { margin-top: 1.7em; }
.entry-content p, .entry-content li { color: #554d47; }
.entry-content a { font-weight: 650; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content blockquote { margin: 2.2em 0; padding: 0 0 0 28px; border-left: 3px solid var(--sand-400); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.gentle-aside { position: sticky; top: 155px; padding: 32px; background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius-md); }
.gentle-aside h2 { font-size: 2rem; }
.gentle-aside p:not(.eyebrow) { color: var(--muted); }

.form-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: start; gap: clamp(52px, 8vw, 110px); }
.form-intro { max-width: 520px; }
.form-intro > p, .form-intro .entry-content p { color: var(--muted); }
.info-box, .contact-details { margin-top: 32px; padding: 28px; background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius-md); }
.info-box h3, .contact-details h2 { font-size: 1.6rem; }
.form-card { padding: clamp(28px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.grunda-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grunda-form label { display: grid; gap: 8px; color: var(--ink); font-size: 0.88rem; font-weight: 700; }
.grunda-form input:not([type="checkbox"]), .grunda-form select, .grunda-form textarea {
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 400;
}
.grunda-form textarea { resize: vertical; }
.grunda-form input:focus, .grunda-form select:focus, .grunda-form textarea:focus { border-color: var(--olive); outline: 2px solid rgba(86, 97, 69, 0.24); outline-offset: 1px; }
.check-row { grid-template-columns: 22px 1fr !important; align-items: start; gap: 12px !important; font-weight: 450 !important; line-height: 1.5; }
.check-row input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--olive); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.form-notice { margin-bottom: 22px; padding: 14px 17px; border-radius: 12px; font-size: 0.94rem; }
.form-notice--success { background: #edf3eb; color: var(--success); border: 1px solid #c8d9c3; }
.form-notice--error { background: #f7ece9; color: var(--error); border: 1px solid #e0c4be; }

.archive-hero, .single-header { padding: clamp(85px, 10vw, 150px) 0; }
.archive-hero h1, .single-header h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.pagination-wrap { margin-top: 55px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 8px; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; text-decoration: none; }
.page-numbers.current, .page-numbers:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }
.single-featured { margin-top: clamp(-65px, -5vw, -35px); }
.single-featured img { width: 100%; max-height: 730px; object-fit: cover; border-radius: var(--radius-lg); }
.error-page { min-height: 55vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.site-footer { padding: 76px 0 28px; background: #eee5da; border-top: 1px solid var(--line); }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr; gap: 70px; }
.site-footer__brand img { width: 240px; height: auto; margin-bottom: 20px; }
.site-footer__brand p { max-width: 380px; color: var(--muted); }
.footer-heading { margin-bottom: 18px; font-family: inherit; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a, .site-footer a { color: var(--ink); text-decoration: none; }
.footer-menu a:hover, .site-footer a:hover { color: var(--olive); text-decoration: underline; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(64, 56, 50, 0.14); }
.site-footer__bottom p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.medical-note { margin-top: 22px; color: var(--muted); font-size: 0.72rem; line-height: 1.55; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .site-header__inner { min-height: 96px; }
    .site-branding { flex-basis: 230px; min-width: 190px; }
    .default-logo img, .custom-logo { max-width: 225px; }
    .primary-navigation { gap: 14px; }
    .primary-navigation .menu { gap: 15px; }
    .primary-navigation .menu-item > a { font-size: 0.82rem; }
    .hero__grid { grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr); gap: 55px; }
    .hero-note { left: -26px; }
}

@media (max-width: 999px) {
    .admin-bar .site-header { top: 46px; }
    .site-header__inner { min-height: 84px; }
    .site-branding { flex-basis: 235px; min-width: 0; }
    .default-logo img, .custom-logo { max-width: 230px; max-height: 66px; }
    .menu-toggle { display: flex; }
    .primary-navigation {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        inset: calc(34px + 84px) 0 0;
        display: block;
        padding: 32px 24px 50px;
        overflow-y: auto;
        background: rgba(251, 248, 242, 0.99);
        transform: translateY(-10px);
        transition: 180ms ease;
    }
    .admin-bar .primary-navigation { inset: calc(46px + 34px + 84px) 0 0; }
    .primary-navigation.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .primary-navigation .menu { display: block; }
    .primary-navigation .menu-item { border-bottom: 1px solid var(--line); }
    .primary-navigation .menu-item > a { width: 100%; min-height: 58px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
    .primary-navigation .sub-menu { position: static; visibility: visible; opacity: 1; min-width: 0; padding: 0 0 14px 18px; background: transparent; border: 0; box-shadow: none; transform: none; }
    .primary-navigation .sub-menu a { font-family: inherit; font-size: 1rem; }
    .nav-booking { width: 100%; margin-top: 26px; }
    .hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 50px; }
    .hero__content { max-width: 760px; }
    .hero__visual > picture > img { aspect-ratio: 1.35 / 1; }
    .hero-note { left: 24px; bottom: 24px; width: 300px; }
    .service-grid, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); justify-self: center; }
    .split-grid, .steps-grid, .page-hero__grid, .form-layout { grid-template-columns: 1fr; }
    .split-grid__content, .steps-intro, .form-intro { max-width: 760px; }
    .page-hero__grid { min-height: 0; }
    .page-hero__content { max-width: 760px; }
    .content-layout { grid-template-columns: 1fr; }
    .gentle-aside { position: static; max-width: 620px; }
    .booking-cta__inner { grid-template-columns: 1fr; }
    .booking-cta__image { order: -1; }
    .booking-cta__image img { min-height: 350px; max-height: 480px; }
    .site-footer__grid { grid-template-columns: 1.2fr 0.8fr; }
    .site-footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    body { font-size: 16px; }
    .site-container { width: min(calc(100% - 32px), var(--site-width)); }
    .top-line { min-height: 30px; font-size: 0.58rem; line-height: 1.3; }
    .site-header__inner { min-height: 76px; }
    .site-branding { flex-basis: 190px; }
    .default-logo img, .custom-logo { max-width: 188px; max-height: 58px; }
    .menu-toggle__label { display: none; }
    .primary-navigation { inset: calc(30px + 76px) 0 0; }
    .admin-bar .primary-navigation { inset: calc(46px + 30px + 76px) 0 0; }
    .section { padding: 76px 0; }
    .section--compact { padding: 56px 0; }
    .hero__grid { padding-top: 58px; padding-bottom: 70px; gap: 38px; }
    .hero__content h1 { font-size: clamp(2.75rem, 15vw, 4.25rem); }
    .hero__visual > picture > img { aspect-ratio: 4 / 5; object-position: 62% center; border-radius: 27px; }
    .hero-note { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 18px; }
    .button-row { display: grid; grid-template-columns: 1fr; }
    .button-row .button { width: 100%; }
    .service-grid, .post-grid { grid-template-columns: 1fr; }
    .service-card:last-child { grid-column: auto; max-width: none; }
    .service-card__body p:not(.eyebrow) { min-height: 0; }
    .split-grid { gap: 38px; }
    .split-grid__image img { aspect-ratio: 1 / 1.1; border-radius: 27px; }
    .steps-list li { grid-template-columns: 52px 1fr; gap: 12px; }
    .booking-cta__inner { border-radius: 27px; }
    .booking-cta__content { padding: 38px 26px 46px; }
    .booking-cta__image img { min-height: 270px; }
    .section-heading { display: block; }
    .section-heading .text-link { margin-top: 8px; }
    .page-hero__grid { gap: 34px; padding-top: 56px; padding-bottom: 64px; }
    .page-hero__image img { aspect-ratio: 1 / 1; border-radius: 27px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-card { padding: 25px 20px; border-radius: 25px; }
    .single-featured { margin-top: -35px; }
    .single-featured img { border-radius: 25px; }
    .site-footer { padding-top: 58px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 35px; }
    .site-footer__grid > div:last-child { grid-column: auto; }
    .site-footer__brand img { width: 205px; }
    .site-footer__bottom { display: block; margin-top: 42px; }
    .site-footer__bottom p + p { margin-top: 9px; }
}

@media (max-width: 430px) {
    .site-branding { flex-basis: 165px; }
    .default-logo img, .custom-logo { max-width: 164px; }
    .hero-note { position: relative; left: auto; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Refined harmony layer */
.site-logo-image { display: block; width: min(100%, 278px); height: auto; max-height: 80px; object-fit: contain; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo .site-logo-image { width: 240px; max-height: none; }
.site-footer__brand .footer-logo img { width: 240px; margin-bottom: 0; }

.hero { position: relative; isolation: isolate; }
.hero .site-container { position: relative; z-index: 2; }
.hero-organic-shape { display: none; position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.grunda-ambient-shapes .hero-organic-shape { display: block; }
.hero-organic-shape--one { width: 440px; height: 440px; top: -180px; left: -145px; background: rgba(255,255,255,.48); }
.hero-organic-shape--two { width: 360px; height: 360px; right: -120px; bottom: -180px; background: rgba(200,173,142,.18); }
.hero__visual > picture { display: block; overflow: hidden; border-radius: var(--radius-lg); }
.hero__visual > picture > img { transition: transform 1.2s ease; }
.grunda-gentle-motion .hero__visual > picture > img { animation: grunda-breathe-image 18s ease-in-out infinite alternate; }
.hero-ripple { position: absolute; z-index: 2; top: 26px; right: 26px; width: 88px; height: 88px; pointer-events: none; }
.hero-ripple span { position: absolute; inset: 50%; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; transform: translate(-50%,-50%); }
.hero-ripple span:nth-child(1) { width: 26px; height: 26px; }
.hero-ripple span:nth-child(2) { width: 52px; height: 52px; }
.hero-ripple span:nth-child(3) { width: 78px; height: 78px; }
.grunda-gentle-motion .hero-ripple span { animation: grunda-ripple 5.5s ease-in-out infinite; }
.grunda-gentle-motion .hero-ripple span:nth-child(2) { animation-delay: .7s; }
.grunda-gentle-motion .hero-ripple span:nth-child(3) { animation-delay: 1.4s; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 34px; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; background: var(--olive); border-radius: 50%; opacity: .7; }

.harmony-band { padding: 0 0 44px; background: var(--cream); }
.harmony-band__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.harmony-word { position: relative; display: grid; grid-template-columns: 42px 1fr; column-gap: 18px; padding: 32px 26px; }
.harmony-word + .harmony-word { border-left: 1px solid var(--line); }
.harmony-word > span { grid-row: 1 / span 2; align-self: center; width: 42px; height: 42px; border: 1px solid var(--sand-400); border-radius: 50%; }
.harmony-word > span::after { content: ""; display: block; width: 14px; height: 14px; margin: 13px; background: var(--sand-400); border-radius: 50%; opacity: .55; }
.grunda-gentle-motion .harmony-word > span::after { animation: grunda-pulse-dot 4s ease-in-out infinite; }
.harmony-word strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 400; }
.harmony-word small { color: var(--muted); }

.services-section { position: relative; }
.service-card { position: relative; }
.service-card__image { position: relative; }
.card-orbit { position: absolute; top: 18px; right: 18px; width: 68px; height: 68px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: inset 0 0 0 10px rgba(255,255,255,.1); }
.card-orbit--small { width: 48px; height: 48px; }
.sound-lines { position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 4px; height: 42px; padding: 8px 10px; background: rgba(251,248,242,.78); border: 1px solid rgba(255,255,255,.66); border-radius: 999px; backdrop-filter: blur(8px); }
.sound-lines i { display: block; width: 2px; height: 12px; background: var(--olive); border-radius: 2px; }
.sound-lines i:nth-child(2), .sound-lines i:nth-child(4) { height: 22px; }
.sound-lines i:nth-child(3) { height: 30px; }
.grunda-gentle-motion .sound-lines i { animation: grunda-sound-line 2.4s ease-in-out infinite; }
.grunda-gentle-motion .sound-lines i:nth-child(2) { animation-delay: .2s; }
.grunda-gentle-motion .sound-lines i:nth-child(3) { animation-delay: .4s; }
.grunda-gentle-motion .sound-lines i:nth-child(4) { animation-delay: .6s; }
.grunda-gentle-motion .sound-lines i:nth-child(5) { animation-delay: .8s; }

.meaning-section { background: var(--white); }
.meaning-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(55px,9vw,130px); align-items: start; }
.meaning-grid__intro { position: sticky; top: 160px; }
.meaning-grid__copy { max-width: 690px; }
.meaning-grid__copy p { color: var(--muted); font-size: 1.08rem; }
.image-caption { display: inline-flex; margin-top: 13px; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.quote-symbol { width: 58px; height: 58px; margin: 0 auto 20px; color: var(--sand-500); font-family: Georgia, serif; font-size: 4.5rem; line-height: .9; }

.faq-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(55px,8vw,115px); align-items: start; }
.faq-intro { position: sticky; top: 155px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 22px; right: 4px; color: var(--olive); font-family: inherit; font-size: 1.55rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 50px 22px 0; color: var(--muted); }

body:not(.grunda-reveal-effects) .reveal { opacity: 1; transform: none; }

.grunda-style-cf7 .wpcf7 form { display: grid; gap: 18px; }
.grunda-style-cf7 .wpcf7 p { margin: 0 0 18px; }
.grunda-style-cf7 .wpcf7 label { display: grid; gap: 8px; color: var(--ink); font-size: .88rem; font-weight: 700; }
.grunda-style-cf7 .wpcf7 input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.grunda-style-cf7 .wpcf7 select,
.grunda-style-cf7 .wpcf7 textarea {
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
}
.grunda-style-cf7 .wpcf7 textarea { resize: vertical; }
.grunda-style-cf7 .wpcf7 input:focus,
.grunda-style-cf7 .wpcf7 select:focus,
.grunda-style-cf7 .wpcf7 textarea:focus { border-color: var(--olive); outline: 2px solid rgba(86,97,69,.24); outline-offset: 1px; }
.grunda-style-cf7 .wpcf7 input[type="submit"] { min-height: 54px; padding: 13px 25px; background: var(--olive); color: var(--white); border: 1px solid var(--olive); border-radius: 999px; font-weight: 700; cursor: pointer; }
.grunda-style-cf7 .wpcf7 input[type="submit"]:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.grunda-style-cf7 .wpcf7-not-valid-tip { margin-top: 5px; color: var(--error); font-size: .82rem; }
.grunda-style-cf7 .wpcf7 form .wpcf7-response-output { margin: 10px 0 0; padding: 14px 17px; border-width: 1px; border-radius: 12px; }

@keyframes grunda-breathe-image { from { transform: scale(1.002); } to { transform: scale(1.035); } }
@keyframes grunda-ripple { 0%,100% { opacity: .48; transform: translate(-50%,-50%) scale(.92); } 50% { opacity: .9; transform: translate(-50%,-50%) scale(1.05); } }
@keyframes grunda-pulse-dot { 0%,100% { transform: scale(.82); opacity: .42; } 50% { transform: scale(1.08); opacity: .72; } }
@keyframes grunda-sound-line { 0%,100% { transform: scaleY(.62); } 50% { transform: scaleY(1.08); } }

@media (max-width: 999px) {
    .site-logo-image { max-width: 230px; max-height: 66px; }
    .meaning-grid, .faq-grid { grid-template-columns: 1fr; }
    .meaning-grid__intro, .faq-intro { position: static; }
    .harmony-word { grid-template-columns: 34px 1fr; padding: 25px 18px; }
    .harmony-word > span { width: 34px; height: 34px; }
    .harmony-word > span::after { width: 10px; height: 10px; margin: 11px; }
}

@media (max-width: 700px) {
    .site-logo-image { max-width: 188px; max-height: 58px; }
    .footer-logo .site-logo-image { width: 205px; max-width: 205px; max-height: none; }
    .hero-ripple { top: 16px; right: 16px; transform: scale(.78); transform-origin: top right; }
    .hero-trust { margin-top: 26px; }
    .harmony-band { padding-bottom: 18px; }
    .harmony-band__grid { grid-template-columns: 1fr; }
    .harmony-word + .harmony-word { border-left: 0; border-top: 1px solid var(--line); }
    .harmony-word { padding: 20px 4px; }
    .meaning-grid, .faq-grid { gap: 35px; }
    .faq-list summary { padding-right: 38px; font-size: 1.2rem; }
    .faq-list details p { padding-right: 15px; }
}

@media (max-width: 430px) {
    .site-logo-image { max-width: 164px; }
}

/* Compact supplied brand mark in the footer */
.footer-logo-image {
    display: block;
    width: min(100%, 220px);
    height: auto;
    object-fit: contain;
}
.footer-logo-image--full {
    width: 176px;
}
.site-footer__brand .footer-logo-image {
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .footer-logo-image { width: min(100%, 196px); }
    .footer-logo-image--full { width: 152px; }
}
