:root {
    --bg: #f6f0e8;
    --bg-soft: #fbf7f1;
    --surface: #fffdfa;
    --surface-strong: #f0e4d3;
    --ink: #231a15;
    --muted: #6d5b4e;
    --line: rgba(72, 50, 35, 0.14);
    --accent: #b9773f;
    --accent-deep: #8f5728;
    --forest: #22322b;
    --forest-soft: #32463c;
    --shadow: 0 20px 55px rgba(34, 23, 17, 0.16);
    --radius: 28px;
    --radius-small: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(185, 119, 63, 0.12), transparent 28%),
        linear-gradient(180deg, #f4eee5 0%, #f9f5ef 100%);
    line-height: 1.6;
}

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

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

p,
ul,
ol,
figure,
blockquote {
    margin: 0;
}

ul {
    padding-left: 1.2rem;
}

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

.sr-only,
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.topbar {
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
    border-bottom: 1px solid rgba(255, 248, 239, 0.2);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(34, 23, 17, 0.12);
}

.topbar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 197, 148, 0.34), transparent);
}

.topbar-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    min-height: 5.7rem;
    padding: 0 1.6rem;
    color: rgba(255, 249, 242, 0.92);
    font-size: 0.92rem;
}

.topbar .container {
    width: 100%;
}

.topbar-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.topbar-side-right {
    align-items: flex-end;
}

.topbar-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-deep);
}

.topbar-copy,
.topbar-phone {
    font-size: 0.95rem;
    color: rgba(255, 251, 246, 0.96);
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0 1rem 0 0.95rem;
    border: 1px solid rgba(255, 248, 239, 0.22);
    background: rgba(255, 250, 245, 0.1);
    box-shadow: 0 10px 24px rgba(34, 23, 17, 0.1);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.topbar-phone::before {
    content: "";
    width: 0.85rem;
    height: 0.85rem;
    margin-right: 0.7rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23efc594' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.07 21 3 13.93 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
}

.topbar-side-right {
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-end;
}

.brand-centered {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.brand-image {
    width: min(240px, 26vw);
    height: auto;
}

.topbar-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    appearance: none;
    border-radius: 0;
    background: linear-gradient(135deg, var(--accent), #d5965b);
    color: white;
    min-height: 3rem;
    padding: 0 1.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    box-shadow: 0 12px 30px rgba(143, 87, 40, 0.25);
}

.topbar-button {
    min-height: 3rem;
    padding: 0 1.3rem;
    border: 1px solid rgba(255, 244, 232, 0.18);
    box-shadow: 0 12px 24px rgba(104, 63, 27, 0.16);
}

.topbar-button:hover,
.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(143, 87, 40, 0.3);
}

.topbar-phone:hover,
.topbar-phone:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 248, 239, 0.34);
    background: rgba(255, 252, 248, 0.16);
    box-shadow: 0 14px 28px rgba(34, 23, 17, 0.14);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.button-contrast {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.site-header {
    position: sticky;
    top: 5.7rem;
    z-index: 25;
    background:
        radial-gradient(circle at top center, rgba(214, 170, 128, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(230, 218, 205, 0.94) 0%, rgba(215, 198, 182, 0.94) 100%);
    border-bottom: 1px solid rgba(111, 84, 61, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 26px rgba(69, 50, 37, 0.08);
}

.anchor-section,
#anfrageformular {
    scroll-margin-top: 10.25rem;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 3.8rem;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.01em;
}

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

.site-nav a {
    color: rgba(63, 47, 37, 0.88);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.2rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 87, 40, 0.9), transparent);
    opacity: 0;
    transform: scaleX(0.65);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--accent-deep);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.button-nav {
    min-height: 2.35rem;
    padding: 0 1.05rem;
    font-size: 0.76rem;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(63, 47, 37, 0.9);
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.flash {
    padding: 0.9rem 0;
    font-size: 0.96rem;
}

.flash-success {
    background: #edf7ef;
    color: #224c2c;
}

.flash-error {
    background: #fff1ef;
    color: #852d20;
}

.form-notice {
    margin: 0 0 1.2rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-notice p + p {
    margin-top: 0.35rem;
}

.form-notice-success {
    background: #edf7ef;
    border: 1px solid rgba(34, 76, 44, 0.12);
    color: #224c2c;
}

.form-notice-error {
    background: #fff1ef;
    border: 1px solid rgba(133, 45, 32, 0.12);
    color: #852d20;
}

.hero {
    color: white;
    position: relative;
    overflow: hidden;
    background: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 34%, rgba(23, 16, 12, 0.22), transparent 38%),
        linear-gradient(180deg, rgba(18, 12, 9, 0.44) 0%, rgba(18, 12, 9, 0.18) 34%, rgba(18, 12, 9, 0.1) 58%, rgba(18, 12, 9, 0.28) 100%);
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 58%;
}

.hero-home .container {
    position: relative;
    z-index: 1;
}

.hero-home {
    min-height: calc(100vh - 9.25rem);
    display: flex;
    align-items: center;
    padding: 2rem 0 2.8rem;
}

.hero-home > .container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.hero-frame {
    position: relative;
    height: auto;
    min-height: calc(100vh - 13rem);
    border-radius: 0;
    display: grid;
    align-items: center;
    padding: 4rem 0 2.8rem;
    background: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-grid-centered {
    justify-items: center;
    text-align: center;
}

.hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hero-copy h1,
.page-hero h1,
.page-hero-title {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    line-height: 0.98;
    margin: 0 auto 1.2rem;
    max-width: 12ch;
    text-shadow: 0 4px 16px rgba(12, 8, 6, 0.26);
}

.hero-text,
.page-hero p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(12, 8, 6, 0.24);
}

.eyebrow,
.card-kicker,
.footer-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.hero .eyebrow,
.page-hero-dark .eyebrow,
.cta-band .eyebrow {
    color: #efc594;
    text-shadow: 0 2px 8px rgba(12, 8, 6, 0.18);
}

.section-accent .eyebrow {
    color: #efc594;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 980px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-small);
    padding: 1.15rem 1.25rem;
}

.fact-card span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #efc594;
    margin: 0 auto 0.8rem;
}

.fact-card p {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.92);
}

.section,
.page-hero {
    padding: 3.75rem 0;
}

.section-light {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.98)),
        radial-gradient(circle at top right, rgba(185, 119, 63, 0.08), transparent 22%);
}

.page-hero-dark {
    background:
        radial-gradient(circle at top left, rgba(239, 197, 148, 0.12), transparent 24%),
        linear-gradient(180deg, #1f2d26 0%, #24332b 100%);
    color: white;
}

.page-home .page-hero-dark {
    background:
        radial-gradient(circle at top center, rgba(214, 170, 128, 0.18), transparent 34%),
        linear-gradient(180deg, #e6dacd 0%, #d7c6b6 100%);
    color: #3f2f25;
}

.page-home .page-hero-dark .page-hero-title {
    color: #3f2f25;
}

.page-home .page-hero-dark .eyebrow {
    color: var(--accent-deep);
}

.page-home .page-hero-dark p {
    color: rgba(63, 47, 37, 0.86);
}

.page-hero {
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
    color: white;
}

.section-accent {
    background: linear-gradient(135deg, var(--accent), #d5965b);
    color: white;
}

.section-accent .eyebrow {
    color: rgba(255, 245, 232, 0.88);
}

.section-accent .split-copy p,
.section-accent .check-list-light li {
    color: rgba(255, 255, 255, 0.92);
}

.section-accent .button-contrast {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: white;
    box-shadow: none;
}

.section-exclusive {
    background: transparent;
    color: inherit;
}

.section-exclusive > .container.exclusive-grid {
    width: 100%;
    max-width: none;
}

.split-grid.exclusive-grid {
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
    min-height: 31rem;
}

.exclusive-copy {
    order: 1;
    padding: 3rem 3.1rem;
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
    align-content: center;
    gap: 1.1rem;
}

.exclusive-media {
    order: 2;
    min-height: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
}

.exclusive-media img {
    border-radius: 0;
    min-height: 100%;
    object-fit: contain;
    object-position: 65% center;
}

.exclusive-media-landscape img {
    object-fit: cover;
    object-position: center center;
}

.exclusive-grid,
.exclusive-grid .exclusive-media,
.exclusive-grid .exclusive-media img {
    border-radius: 0 !important;
}

.section-exclusive .eyebrow {
    color: rgba(239, 197, 148, 0.9);
    margin-bottom: 0.35rem;
}

.exclusive-copy h2 {
    color: white;
    max-width: none;
    font-size: clamp(2.1rem, 3.2vw, 3.3rem);
}

.section-exclusive .split-copy p {
    color: rgba(255, 247, 238, 0.82);
    max-width: none;
}

.exclusive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.4rem;
    margin-top: 2.6rem;
}

.exclusive-list li {
    font-size: 0.96rem;
    line-height: 1.5;
    color: rgba(255, 247, 238, 0.92);
}

.exclusive-list li::before {
    width: 0.58rem;
    height: 0.58rem;
    top: 0.52rem;
    background: linear-gradient(135deg, #efc594, #f8debc);
    box-shadow: none;
}

.page-hero-inner {
    max-width: 48rem;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
}

.section-heading h2,
.split-copy h2,
.quote-panel blockquote,
.info-panel h2,
.contact-panel h2,
.form-panel h2,
.site-footer h2,
.cta-band h2 {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
}

.feature-grid,
.experience-grid,
.footer-grid,
.contact-grid,
.gallery-grid {
    display: grid;
    gap: 1.4rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.experience-card,
.contact-panel,
.form-panel,
.quote-panel,
.info-panel,
.gallery-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 2.3rem 2rem 2.1rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 247, 241, 0.96)),
        radial-gradient(circle at top center, rgba(185, 119, 63, 0.06), transparent 38%);
}

.feature-card h3,
.experience-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.85rem;
}

.feature-icon {
    display: inline-flex;
    width: 4.6rem;
    height: 4.6rem;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    border: 1px solid rgba(185, 119, 63, 0.24);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 236, 218, 0.92));
    position: relative;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.feature-icon-berg::before {
    left: 1rem;
    bottom: 1.3rem;
    width: 2.4rem;
    height: 1.5rem;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: skewX(-35deg) rotate(-10deg);
}

.feature-icon-sonne::before {
    left: 50%;
    top: 50%;
    width: 2.2rem;
    height: 2.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ccircle cx='24' cy='24' r='8.5' fill='none' stroke='%23b9773f' stroke-width='2.6'/%3E%3Cg stroke='%23b9773f' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M24 6v5'/%3E%3Cpath d='M24 37v5'/%3E%3Cpath d='M6 24h5'/%3E%3Cpath d='M37 24h5'/%3E%3Cpath d='M11.6 11.6l3.6 3.6'/%3E%3Cpath d='M32.8 32.8l3.6 3.6'/%3E%3Cpath d='M36.4 11.6l-3.6 3.6'/%3E%3Cpath d='M15.2 32.8l-3.6 3.6'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.feature-icon-sonne::after {
    display: none;
}

.feature-icon-familie::before {
    left: 1rem;
    right: 1rem;
    top: 1.25rem;
    bottom: 1.15rem;
    border: 2px solid var(--accent);
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    border-bottom-left-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
}

.feature-icon-familie::after {
    left: 1.65rem;
    right: 1.65rem;
    bottom: 1.95rem;
    height: 2px;
    background: var(--accent);
}

.feature-icon-zimmer::before {
    left: 50%;
    top: 50%;
    width: 2.45rem;
    height: 1.55rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 32'%3E%3Cg fill='none' stroke='%23b9773f' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 23.5h36'/%3E%3Cpath d='M12 23.5V14c0-1.7 1.3-3 3-3h22c1.7 0 3 1.3 3 3v9.5'/%3E%3Cpath d='M16 17h20'/%3E%3Cpath d='M10 23.5v3'/%3E%3Cpath d='M42 23.5v3'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.feature-icon-zimmer::after {
    display: none;
}

.feature-icon-fruehstueck::before {
    left: 50%;
    top: 50%;
    width: 2.35rem;
    height: 1.55rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 32'%3E%3Cpath d='M8 23c2-9 9-14 16-14s14 5 16 14c-4-2-9-3-16-3s-12 1-16 3Z' fill='none' stroke='%23b9773f' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22c1.5-5.5 6.2-8.8 12-8.8S34.5 16.5 36 22' fill='none' stroke='%23b9773f' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M18 14.5c-1.2 2.2-1.7 4.3-1.7 6.2' fill='none' stroke='%23b9773f' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M24 13.3c-.4 2.3-.5 4.6-.2 6.8' fill='none' stroke='%23b9773f' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M30 14.5c1.2 2.2 1.7 4.3 1.7 6.2' fill='none' stroke='%23b9773f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.feature-icon-fruehstueck::after {
    display: none;
}

.feature-icon-lage::before {
    left: 50%;
    top: 50%;
    width: 1.45rem;
    height: 1.45rem;
    border: 2px solid var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -48%) rotate(-45deg);
}

.feature-icon-lage::after {
    left: 50%;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -8%);
}

.feature-card p:last-child,
.experience-card p,
.split-copy p,
.legal-copy p,
.legal-copy li,
.contact-list span,
.site-footer p {
    color: var(--muted);
}

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

.split-grid-wide {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.split-media img,
.experience-card img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.split-media {
    min-height: 27rem;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-media-card {
    min-height: 22rem;
}

.split-copy {
    display: grid;
    gap: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    margin-top: 2.4rem;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #e3b27a);
    box-shadow: 0 0 0 4px rgba(185, 119, 63, 0.14);
}

.check-list-light li {
    color: rgba(255, 255, 255, 0.92);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-deep);
    font-weight: 600;
}

.text-link::after {
    content: "→";
}

.inline-link {
    color: var(--accent-deep);
    font-weight: 600;
}

.image-band {
    margin-top: 1.6rem;
}

.image-band img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.experience-card {
    overflow: hidden;
}

.experience-card img {
    height: 18rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.experience-card-copy {
    padding: 1.7rem;
}

.season-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.season-panel {
    display: grid;
    gap: 1.5rem;
    padding: 1.9rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.season-panel-header {
    display: grid;
    gap: 0.7rem;
}

.season-panel h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.08;
}

.season-panel-header p:last-child,
.season-mini-card p {
    color: var(--muted);
}

.season-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.season-mini-card {
    display: grid;
    gap: 0.35rem;
    align-content: start;
    overflow: hidden;
    background: rgba(248, 242, 233, 0.84);
    border: 1px solid rgba(72, 50, 35, 0.1);
    border-radius: var(--radius-small);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.season-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(34, 23, 17, 0.16);
    border-color: rgba(185, 119, 63, 0.28);
    background: rgba(255, 248, 239, 0.96);
}

.season-mini-card:hover .season-mini-kicker {
    color: var(--accent-deep);
}

.season-mini-card:hover img {
    transform: scale(1.03);
}

.season-mini-card img {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    transition: transform 0.3s ease, object-position 0.3s ease;
}

.season-mini-card img.season-mini-image-shift-up {
    object-position: center 36%;
}

.season-mini-card img.season-mini-image-shift-down {
    object-position: center 74%;
}

.season-mini-card img.season-mini-image-shift-down-light {
    object-position: center 62%;
}

.season-mini-card img.season-mini-image-eisklettern {
    object-fit: cover;
    object-position: center 22%;
}

.season-mini-card p {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

.season-mini-kicker {
    margin: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    padding-top: 0.55rem;
    padding-bottom: 0;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.season-mini-card p {
    font-size: 0.84rem;
    line-height: 1.45;
}

.season-mini-card .season-mini-kicker + p {
    color: var(--muted);
    padding-top: 0;
    padding-bottom: 0.75rem;
}

.quote-panel {
    padding: 3rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 230, 0.9)),
        radial-gradient(circle at top center, rgba(185, 119, 63, 0.08), transparent 25%);
}

.quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(185, 119, 63, 0.32);
}

.quote-panel blockquote {
    max-width: 16ch;
    margin: 0 auto 1rem;
}

.quote-source {
    color: var(--muted);
}

.ref-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.photo-stack {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 36rem;
    background: #d9c6b0;
}

.photo-stack-single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.photo-stack figure {
    margin: 0;
    overflow: hidden;
}

.photo-stack-main {
    grid-row: 1 / span 2;
}

.photo-stack-single .photo-stack-main {
    grid-row: auto;
}

.photo-stack-main img,
.photo-stack-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-panel {
    padding: 3rem 2.7rem;
    background: linear-gradient(180deg, #362925 0%, #2b211d 100%);
    color: white;
    display: grid;
    align-content: center;
    gap: 1rem;
}

.why-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin-top: 0.5rem;
}

.why-item {
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #efc594;
}

.why-copy {
    display: grid;
    gap: 0.65rem;
}

.why-copy-compact {
    font-size: 0.95rem;
}

.room-showcase {
    padding-left: 0;
    padding-right: 0;
}

.room-showcase + .section-exclusive {
    padding-top: 1.4rem;
}

.room-showcase-heading,
.room-showcase-copy {
    gap: 1rem;
}

.room-showcase-media {
    margin: 0 0 2rem;
}

.room-showcase-media img {
    width: 100%;
    height: min(72vh, 46rem);
    object-fit: cover;
}

.room-showcase-copy {
    display: grid;
    gap: 1.35rem;
}

.room-showcase-intro {
    max-width: 58rem;
}

.room-showcase-copy > p,
.room-showcase-intro p,
.room-showcase-notes p {
    color: var(--muted);
}

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

.room-showcase-panel {
    padding: 1.8rem 1.9rem;
    background: rgba(255, 253, 250, 0.84);
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    align-content: start;
}

.room-showcase-panel > :not(.card-kicker) {
    margin-top: 0.9rem;
}

.room-showcase-panel > .room-showcase-grid {
    margin-top: 0.9rem;
}

.room-showcase-panel-wide {
    grid-column: 1 / -1;
}

.room-showcase-breakfast-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0;
    align-items: stretch;
}

.room-showcase-breakfast {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.room-showcase-breakfast > :not(.card-kicker) {
    margin-top: 0;
}

.room-showcase-breakfast-media {
    margin: 0;
    overflow: hidden;
}

.room-showcase-breakfast-media img {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.room-showcase-breakfast-copy {
    display: grid;
    gap: 1rem;
    align-content: center;
    min-height: 20rem;
    height: 100%;
    padding: 2.2rem 2.3rem;
    background:
        radial-gradient(circle at top center, rgba(201, 145, 93, 0.2), transparent 34%),
        linear-gradient(180deg, #6a5648 0%, #4e3f35 100%);
    color: rgba(255, 247, 238, 0.92);
}

.room-showcase-breakfast-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: rgba(239, 197, 148, 0.86);
}

.room-showcase-breakfast-title {
    margin: 0;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    line-height: 1.05;
    color: white;
}

.room-showcase-grid .why-item {
    color: var(--ink);
}

.room-showcase-highlight {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 247, 238, 0.88);
    font-weight: 400;
    max-width: 32ch;
    text-align: left;
}

.room-showcase-notes {
    max-width: none;
}

.room-showcase-note-strong {
    font-weight: 700;
    color: var(--ink);
}

.room-showcase-notes p.room-showcase-subkicker {
    margin-top: 1.2rem;
    margin-bottom: 0.9rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.text-link-light {
    color: #efc594;
}

.cta-band {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cta-band + .section-exclusive {
    padding-top: 0;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #8f5728, #bc8048);
    color: white;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    max-width: 20ch;
}

.gallery-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.gallery-card {
    overflow: hidden;
    min-height: 21rem;
}

.gallery-card-large {
    grid-row: span 2;
    min-height: 43.5rem;
}

.info-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.1rem;
}

.info-panel-inline {
    margin-top: 2rem;
}

.contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
}

.contact-panel,
.form-panel {
    padding: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    margin: 1.4rem 0 1.6rem;
}

.hc-widget {
    width: 148px;
    overflow: hidden;
    border: 1px solid rgba(60, 49, 41, 0.14);
    border-radius: 0.2rem;
    box-shadow: 0 10px 24px rgba(29, 54, 93, 0.12);
}

.hc-widget-body {
    padding: 0.7rem 0.65rem 0.6rem;
    background: linear-gradient(180deg, #3f649d 0%, #264d8c 100%);
    text-align: center;
}

.hc-widget-body > a {
    display: inline-block;
}

.hc-widget-body img {
    display: block;
}

.hc-widget-content-box {
    margin-top: 0.7rem;
}

.hc-widget-rating,
.hc-widget-rating-subline {
    display: block;
    color: white;
}

.hc-widget-rating {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.hc-widget-rating-subline {
    margin-top: 0.18rem;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.2;
}

.hc-widget-clearfix {
    display: none;
}

.hc-widget-hotel-name {
    margin-top: 0.45rem;
}

.hc-widget-default-link {
    font-size: 0.74rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.hc-widget-cta {
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.82rem;
    color: #3c3129;
    background: #f4df4f;
}

.holidaycheck-band {
    padding: 0;
}

.holidaycheck-band .hc-widget {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.holidaycheck-band .hc-widget-body {
    padding: 0.95rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    text-align: left;
}

.holidaycheck-band .hc-widget-body > a {
    flex: 0 0 auto;
}

.holidaycheck-band .hc-widget-content-box {
    margin-top: 0;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.holidaycheck-band .hc-widget-rating {
    font-size: 1.7rem;
}

.holidaycheck-band .hc-widget-rating-subline {
    margin-top: 0;
    font-size: 0.9rem;
}

.holidaycheck-band .hc-widget-hotel-name {
    margin-top: 0;
}

.holidaycheck-band .hc-widget-default-link {
    font-size: 0.9rem;
    white-space: nowrap;
}

.holidaycheck-band .hc-widget-cta {
    min-width: 170px;
    padding: 0.95rem 1.6rem;
}

.contact-list li {
    display: grid;
    gap: 0.18rem;
}

.contact-list strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-deep);
}

.map-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
}

.map-panel-media {
    min-height: 20rem;
    display: block;
}

.map-panel-copy {
    display: grid;
    gap: 1.1rem;
    align-content: center;
    padding: 3rem 3.1rem;
}

.map-panel-copy .eyebrow {
    color: var(--accent);
}

.map-panel-copy h2 {
    color: var(--ink);
    max-width: 11ch;
}

.map-panel-copy p {
    color: var(--muted);
}

.map-panel-copy p:last-child {
    margin: 0;
}

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

label {
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: var(--ink);
}

.label-block,
.consent-row {
    margin-top: 1rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(66, 49, 37, 0.18);
    border-radius: 18px;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    font: inherit;
    color: var(--ink);
    background: rgba(255, 252, 248, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 10rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(185, 119, 63, 0.72);
    box-shadow: 0 0 0 4px rgba(185, 119, 63, 0.12);
}

small,
.form-error {
    color: #a44331;
}

.consent-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
}

.consent-copy {
    display: grid;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
}

.consent-row + .form-error,
.consent-row + .button {
    margin-top: 1rem;
}

.consent-row input {
    width: 1.15rem;
    min-height: 1.15rem;
    margin-top: 0.25rem;
}

.legal-copy {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.88);
    padding: 2.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-copy h2,
.legal-copy h3 {
    margin: 1rem 0 0;
    font-size: 1.55rem;
}

.legal-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-contact-line-spaced {
    margin-top: 1.2rem;
}

.legal-contact-line::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.88;
}

.legal-contact-line-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238f5728' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.07 21 3 13.93 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.legal-contact-line-mail::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5h16v9H4z' fill='none' stroke='%238f5728' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m5.5 9 6.5 5 6.5-5' fill='none' stroke='%238f5728' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.legal-contact-line-web::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%238f5728' stroke-width='1.8'/%3E%3Cpath d='M4.5 12h15' fill='none' stroke='%238f5728' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M12 4.2c2.1 2.2 3.2 4.8 3.2 7.8s-1.1 5.6-3.2 7.8c-2.1-2.2-3.2-4.8-3.2-7.8s1.1-5.6 3.2-7.8Z' fill='none' stroke='%238f5728' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-footer {
    padding: 4.4rem 0 3.2rem;
    background:
        radial-gradient(circle at top center, rgba(214, 170, 128, 0.18), transparent 34%),
        linear-gradient(180deg, #e6dacd 0%, #d7c6b6 100%);
    color: #3f2f25;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 119, 63, 0.34), transparent);
}

.footer-shell {
    display: grid;
    gap: 2rem;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(111, 84, 61, 0.14);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
}

.footer-brand-image {
    width: min(220px, 34vw);
    height: auto;
}

.footer-brand-copy {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: rgba(63, 47, 37, 0.74);
}

.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.4rem;
}

.footer-panel {
    height: 100%;
    padding: 1.65rem 1.7rem 1.55rem;
    background:
        linear-gradient(180deg, rgba(255, 253, 250, 0.72), rgba(247, 239, 231, 0.58)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(234, 220, 206, 0.18));
    border: 1px solid rgba(111, 84, 61, 0.12);
    box-shadow: 0 16px 34px rgba(69, 50, 37, 0.08);
}

.footer-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.footer-list li,
.footer-list a {
    color: rgba(63, 47, 37, 0.88);
}

.footer-list a {
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-link::before {
    content: "";
    width: 0.92rem;
    height: 0.92rem;
    flex: 0 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
}

.footer-link-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23efc594' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.07 21 3 13.93 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.footer-list li:has(.footer-link-phone) {
    margin-top: 2.0rem;
}

.footer-link-mail::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5h16v9H4z' fill='none' stroke='%23efc594' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m5.5 9 6.5 5 6.5-5' fill='none' stroke='%23efc594' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: var(--accent-deep);
    transform: translateX(2px);
}

.js [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-grid .feature-card:nth-child(1) {
    transition-delay: 0s;
}

.feature-grid .feature-card:nth-child(2) {
    transition-delay: 0.14s;
}

.feature-grid .feature-card:nth-child(3) {
    transition-delay: 0.28s;
}

@media (max-width: 1200px) {
    .site-nav {
        gap: 3rem;
    }

    .topbar-inner {
        gap: 1rem;
    }

    .room-showcase-media img {
        height: min(62vh, 38rem);
    }

    .why-panel,
    .exclusive-copy,
    .map-panel-copy {
        padding: 2.4rem;
    }
}

@media (max-width: 1040px) {
    .hero-grid,
    .split-grid,
    .contact-grid,
    .footer-grid,
    .experience-grid,
    .ref-panel {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .gallery-grid,
    .season-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid .feature-card:last-child,
    .gallery-card-large {
        grid-column: 1 / -1;
    }

    .gallery-card-large {
        grid-row: auto;
        min-height: 22rem;
    }

    .hero-frame {
        height: auto;
        min-height: auto;
    }

    .photo-stack {
        min-height: 28rem;
    }

    .info-panel,
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1,
    .page-hero h1,
    .page-hero-title {
        max-width: 10.5ch;
    }

    .room-showcase-panels {
        grid-template-columns: 1fr;
    }

    .room-showcase-breakfast-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .topbar {
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .site-header {
        top: 0;
        background: transparent;
        border-bottom: 0;
        backdrop-filter: none;
        box-shadow: none;
    }

    .topbar-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        justify-items: stretch;
        align-items: center;
        padding: 1rem 0.85rem;
    }

    .topbar-side-right,
    .topbar-side-left {
        align-items: center;
    }

    .topbar-side-right {
        flex-direction: row;
        width: auto;
        align-items: center;
        justify-content: flex-end;
        justify-self: end;
        gap: 0.65rem;
    }

    .header-inner {
        min-height: 0;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: inline-flex;
        position: static;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 3rem;
        min-width: 3rem;
        height: 3rem;
        min-height: 3rem;
        padding: 0.75rem;
        border: 1px solid rgba(111, 84, 61, 0.14);
        border-radius: 999px;
        background: rgba(255, 252, 248, 0.42);
        box-shadow: 0 10px 24px rgba(69, 50, 37, 0.08);
        flex: 0 0 auto;
    }

    .site-nav {
        position: fixed;
        top: 4.85rem;
        right: 0;
        left: auto;
        width: min(18rem, calc(100vw - 1.4rem));
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        gap: 0.8rem;
        border-radius: 24px;
        background:
            radial-gradient(circle at top center, rgba(214, 170, 128, 0.16), transparent 40%),
            linear-gradient(180deg, rgba(238, 228, 218, 0.98) 0%, rgba(222, 207, 192, 0.98) 100%);
        border: 1px solid rgba(111, 84, 61, 0.12);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        font-size: 0.84rem;
        letter-spacing: 0.12em;
        padding: 0.45rem 0;
    }

    .site-nav .button-nav {
        justify-content: center;
    }

    .topbar-phone,
    .topbar-button {
        width: 3rem;
        min-width: 3rem;
        height: 3rem;
        min-height: 3rem;
        padding: 0;
        justify-content: center;
        font-size: 0;
        line-height: 0;
        flex: 0 0 auto;
        border-radius: 999px;
    }

    .topbar-phone::before {
        width: 1rem;
        height: 1rem;
        margin-right: 0;
    }

    .topbar-button::before {
        content: "";
        width: 1rem;
        height: 1rem;
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5h16v9H4z' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m5.5 9 6.5 5 6.5-5' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        opacity: 0.95;
    }

    .nav-toggle span {
        width: 1rem;
        margin: 2px 0;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-frame {
        padding: 3rem 0 2rem;
        height: auto;
        min-height: auto;
        background: none;
    }

    .hero-facts,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section,
    .page-hero {
        padding: 3rem 0;
    }

    .topbar-inner {
        min-height: auto;
        padding: 0.85rem 0.85rem;
        gap: 0.85rem;
    }

    .brand-image {
        width: min(220px, 58vw);
    }

    .site-nav {
        top: 4.55rem;
        right: 0.6rem;
        left: auto;
    }

    .hero-copy h1,
    .page-hero h1,
    .page-hero-title {
        max-width: none;
        font-size: clamp(2.3rem, 9vw, 3.6rem);
    }

    .hero-text,
    .page-hero p {
        font-size: 1rem;
    }

    .feature-grid,
    .gallery-grid,
    .season-mini-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid .feature-card:last-child,
    .gallery-card-large {
        grid-column: auto;
    }

    .contact-panel,
    .form-panel,
    .feature-card,
    .footer-panel,
    .info-panel,
    .legal-copy,
    .quote-panel,
    .room-showcase-panel {
        padding: 1.5rem;
    }

    .why-panel,
    .exclusive-copy,
    .map-panel-copy,
    .room-showcase-breakfast-copy {
        padding: 1.6rem;
    }

    .form-grid,
    .consent-row {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .cta-band-inner {
        padding: 1.5rem;
        gap: 1rem;
        align-items: stretch;
    }

    .cta-band .button {
        width: 100%;
    }

    .holidaycheck-band .hc-widget {
        grid-template-columns: 1fr;
    }

    .holidaycheck-band .hc-widget-body {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .holidaycheck-band .hc-widget-content-box {
        flex-wrap: wrap;
    }

    .holidaycheck-band .hc-widget-default-link {
        white-space: normal;
    }

    .holidaycheck-band .hc-widget-cta {
        width: 100%;
        min-width: 0;
    }

    .split-media,
    .gallery-card,
    .gallery-card-large,
    .map-panel-media,
    .room-showcase-breakfast-media img {
        min-height: 18rem;
    }

    .room-showcase-media img {
        height: min(48vh, 24rem);
    }

    .season-panel {
        padding: 1.6rem;
    }

    .season-panel h3 {
        font-size: 1.75rem;
    }

    .map-panel-copy h2 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .section,
    .page-hero {
        padding: 2.5rem 0;
    }

    .container {
        width: min(calc(100% - 1rem), var(--container));
    }

    .brand-image {
        width: min(200px, 62vw);
    }

    .hero-copy h1,
    .page-hero h1,
    .page-hero-title,
    .section-heading h2,
    .split-copy h2,
    .contact-panel h2,
    .form-panel h2,
    .cta-band h2,
    .site-footer h2 {
        max-width: none;
        font-size: clamp(1.75rem, 7vw, 2.35rem);
    }

    .hero-home {
        padding: 0.5rem 0 1.5rem;
    }

    .hero-frame {
        padding: 1.6rem 0 1.2rem;
    }

    .contact-panel,
    .form-panel,
    .feature-card,
    .footer-panel,
    .info-panel,
    .legal-copy,
    .quote-panel {
        padding: 1.3rem;
    }

    .cta-band-inner {
        padding: 1.35rem;
    }

    .split-media,
    .gallery-card,
    .gallery-card-large,
    .map-panel-media {
        min-height: 16rem;
    }

    .why-panel {
        padding: 1.6rem 1.3rem;
    }

    .exclusive-copy,
    .map-panel-copy,
    .room-showcase-breakfast-copy {
        padding: 1.35rem;
    }

    .photo-stack {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 12rem);
        min-height: auto;
    }

    .photo-stack-main {
        grid-row: auto;
    }

    .room-showcase-breakfast-title {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
    }

    .season-mini-card img {
        height: 6.5rem;
    }

    .legal-copy h2,
    .legal-copy h3 {
        font-size: 1.35rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section,
    .page-hero {
        padding: 2.2rem 0;
    }

    .container {
        width: min(calc(100% - 0.85rem), var(--container));
    }

    .site-nav {
        top: 4.35rem;
        right: 0.4rem;
        left: auto;
        padding: 0.85rem;
        border-radius: 20px;
    }

    .hero-copy h1,
    .page-hero h1,
    .page-hero-title,
    .section-heading h2,
    .split-copy h2,
    .contact-panel h2,
    .form-panel h2,
    .cta-band h2,
    .site-footer h2 {
        font-size: clamp(1.6rem, 8.6vw, 2rem);
    }

    .button {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .topbar-phone,
    .topbar-button {
        width: auto;
    }

    .contact-panel,
    .form-panel,
    .feature-card,
    .footer-panel,
    .info-panel,
    .legal-copy,
    .quote-panel,
    .room-showcase-panel {
        padding: 1.15rem;
    }

    .why-panel,
    .exclusive-copy,
    .map-panel-copy,
    .room-showcase-breakfast-copy {
        padding: 1.25rem;
    }

    .cta-band {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .cta-band-inner {
        padding: 1.2rem;
    }

    .holidaycheck-band .hc-widget-body {
        padding: 0.9rem 1rem;
    }

    .holidaycheck-band .hc-widget-rating {
        font-size: 1.45rem;
    }

    .holidaycheck-band .hc-widget-cta {
        padding: 0.85rem 1rem;
    }

    .consent-copy {
        font-size: 0.84rem;
    }

    .footer-brand-image {
        width: min(180px, 52vw);
    }

    .room-showcase-media img {
        height: min(40vh, 19rem);
    }
}

@media (max-width: 596px) {
    .hero-copy h1 {
        line-height: 1.16;
    }
}
