:root {
    --bg: #f4f1ea;
    --bg-soft: #fbfaf5;
    --surface: rgba(255, 252, 246, 0.84);
    --surface-strong: #fffdf8;
    --text: #42483a;
    --ink: #42483a;
    --muted: #737b6d;
    --accent: #7d866c;
    --accent-dark: #5f6752;
    --accent-soft: #dce1d2;
    --highlight: #b8b197;
    --sage: #a6af97;
    --panel: #737b66;
    --line: rgba(66, 72, 58, 0.14);
    --shadow: 0 24px 60px rgba(66, 72, 58, 0.12);
    --shadow-soft: 0 16px 36px rgba(66, 72, 58, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(184, 177, 151, 0.18), transparent 28%),
        radial-gradient(circle at right 20%, rgba(125, 134, 108, 0.12), transparent 22%),
        linear-gradient(180deg, #f8f5ef 0%, var(--bg) 42%, #ece8df 100%);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

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

.section {
    padding: 5.5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(255, 253, 248, 0.96));
}

.section-dark {
    color: #f7f4ec;
    background:
        radial-gradient(circle at top right, rgba(220, 225, 210, 0.14), transparent 22%),
        linear-gradient(135deg, #798169 0%, #616a54 100%);
}

.award-strip-section {
    padding: 1.15rem 0 1.35rem;
    background:
        linear-gradient(180deg, rgba(220, 225, 210, 0.64), rgba(247, 244, 236, 0.94));
    border-top: 1px solid rgba(66, 72, 58, 0.08);
    border-bottom: 1px solid rgba(66, 72, 58, 0.08);
}

.award-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.4rem;
}

.award-strip-badge {
    width: 7.2rem;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.82);
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(66, 72, 58, 0.1);
    box-shadow: 0 10px 24px rgba(66, 72, 58, 0.08);
}

.award-strip-copy h2 {
    margin: 0.15rem 0 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.2rem);
    line-height: 1;
}

.award-strip-copy p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.award-strip-link {
    justify-self: end;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
    transition: color 180ms ease, opacity 180ms ease;
}

.award-strip-link:hover,
.award-strip-link:focus-visible {
    color: var(--accent);
}

.award-strip-source {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid rgba(66, 72, 58, 0.12);
}

.header-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 0 0.7rem;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
    text-align: center;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    border: 1px solid rgba(66, 72, 58, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--accent-dark);
    box-shadow: 0 10px 22px rgba(66, 72, 58, 0.08);
}

.nav-toggle[hidden] {
    display: none;
}

.site-header.nav-enhanced .nav-toggle {
    display: none;
}

.nav-toggle-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.24rem;
    width: 1.25rem;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.brand-kicker,
.eyebrow,
.season-tag,
.host-card-label,
.feature-index {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
}

.brand-name,
.footer-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.brand-name-line {
    display: block;
}

.footer-name-line {
    display: inline;
}

.footer-name-line + .footer-name-line::before {
    content: " ";
}

.footer-name {
    margin-top: 0;
    margin-bottom: 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem 1.5rem;
    width: 100%;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(66, 72, 58, 0.1);
}

.site-nav a {
    color: #68705b;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: color 180ms ease, opacity 180ms ease;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-left: 0;
}

.language-switch-mobile {
    display: none;
}

.language-switch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 2.1rem;
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(104, 112, 91, 0.24);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #68705b;
    background: rgba(255, 255, 255, 0.65);
}

.language-switch-link.is-active {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.contact-details a:hover,
.contact-details a:focus-visible {
    color: var(--accent);
}

.hero {
    padding: 0;
}

.hero-copy-shell,
.section-grid,
.amenities-layout,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 2rem;
}

.hero-copy-shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: 100%;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 56rem);
    max-width: 56rem;
    margin: 0 auto;
    padding: 1.75rem 2rem 2rem;
    text-align: center;
    color: #fff9f2;
    text-shadow: 0 10px 26px rgba(7, 20, 20, 0.42);
}

.hero-copy h1,
.section-heading h2,
.season-card h3,
.contact-card h2,
.booking-card h3,
.host-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5.8vw, 5rem);
    font-weight: 600;
    width: min(100%, 17ch);
    max-width: 17ch;
    margin: 0.4rem auto 0;
    letter-spacing: 0.01em;
    text-align: center;
    text-wrap: balance;
}

.hero-title-accent {
    display: inline-block;
    max-width: 100%;
    color: var(--accent-dark);
    background: rgba(255, 253, 248, 0.68);
    padding: 0.12em 0.62em 0.18em 0.5em;
    border-radius: 0.16em;
    box-shadow: 0 10px 24px rgba(54, 61, 46, 0.14);
    text-shadow: none;
    white-space: normal;
    line-height: 1.08;
    overflow: visible;
}

.hero-name-nowrap {
    white-space: nowrap;
}

.hero-prep-nowrap {
    white-space: nowrap;
}

.lead,
.section-heading p,
.amenities-copy p,
.contact-card p,
.booking-card p,
.host-card p {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-copy .lead {
    max-width: 34rem;
    margin: 1.25rem auto 0;
    color: rgba(255, 249, 242, 0.96);
    font-size: 1.12rem;
}

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

.hero-actions {
    justify-content: center;
    margin-top: 1.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.85rem 1.35rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    appearance: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff7ef;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: 0 18px 34px rgba(95, 103, 82, 0.24);
}

.booking-primary-button {
    margin-bottom: 1.5rem;
}

.button-secondary {
    color: #fff9f2;
    background: rgba(255, 253, 248, 0.12);
    border: 1px solid rgba(255, 253, 248, 0.46);
}

.hero-facts,
.feature-grid,
.season-grid,
.amenities-grid {
    display: grid;
    gap: 1rem;
}

.hero-facts-shell {
    position: relative;
    z-index: 2;
    margin-top: -3.25rem;
    display: flex;
    justify-content: center;
}

.fact-card,
.feature-card,
.host-card,
.season-card,
.contact-card,
.booking-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.fact-card,
.feature-card,
.host-card,
.season-card,
.contact-card,
.booking-card,
.contact-form-card,
.contact-map-card,
.summer-card-panel,
.pitztal-fact-card,
.pitztal-topic-card,
.ferienwohnung-fact-card,
.ferienwohnung-copy-card,
.ferienwohnung-spec-card,
.ferienwohnung-amenities-group,
.booking-page-meta-item,
.legal-card {
    min-width: 0;
    max-width: 100%;
}

.fact-card {
    padding: 1.25rem;
    background: rgba(255, 253, 248, 0.84);
    border: 1px solid rgba(66, 72, 58, 0.08);
    backdrop-filter: none;
}

.fact-card strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
}

.fact-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-main-image img,
.stack-card img {
    height: 100%;
    object-fit: cover;
}

.hero-visual {
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    position: relative;
    display: grid;
}

.hero-main-image {
    grid-area: 1 / 1;
    margin: 0;
    overflow: hidden;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.hero-overlay {
    grid-area: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(54, 61, 46, 0.08), rgba(54, 61, 46, 0.14) 42%, rgba(54, 61, 46, 0.42) 100%),
        linear-gradient(180deg, rgba(54, 61, 46, 0.2) 0%, rgba(54, 61, 46, 0.26) 26%, rgba(54, 61, 46, 0.46) 100%);
}

.hero-stack-shell {
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

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

.stack-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1.02;
    background: #e8e5db;
    box-shadow: var(--shadow);
}

.host-card {
    min-height: 100%;
    padding: 1.7rem;
    background: rgba(255, 253, 248, 0.92);
}

.hero-intro-card {
    width: min(100%, 54rem);
    text-align: center;
}

.hero-intro-card p {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.host-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-top: 0.5rem;
}

.section-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
}

#ferienwohnung .section-grid {
    align-items: stretch;
}

#ferienwohnung .section-heading {
    align-content: center;
}

#ferienwohnung .feature-grid {
    height: 100%;
    align-items: stretch;
}

.section-heading {
    display: grid;
    gap: 1rem;
}

.section-heading-action {
    margin-top: 0.4rem;
}

.section-heading h2,
.contact-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.amenities-copy h2 {
    min-height: 2em;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 3.8rem 1.6rem 1.6rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.feature-card h3 {
    margin: 0.45rem 0 1rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
    line-height: 1.15;
    min-height: 3.45em;
    text-wrap: balance;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.amenities-layout,
.contact-grid,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
}

.amenity-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.15rem;
    min-height: 100%;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid var(--line);
    font-weight: 600;
    text-align: center;
}

.summer-card-section {
    background: var(--panel);
    color: #f7f4ec;
}

.summer-card-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.summer-card-copy {
    max-width: 36rem;
}

.summer-card-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.35rem 0.7rem;
    margin-top: 0.3rem;
}

.summer-card-heading-top,
.summer-card-heading-bottom {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.94;
}

.summer-card-heading-top {
    font-size: clamp(3rem, 5vw, 4.6rem);
}

.summer-card-heading-bottom {
    display: block;
    width: 100%;
    font-size: clamp(3rem, 5vw, 4.6rem);
    font-style: italic;
}

.summer-card-logo {
    width: auto;
    height: 3.35rem;
}

.summer-card-intro {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.75rem;
}

.summer-card-badge {
    margin: 0;
}

.summer-card-text > p {
    margin: 0;
    color: rgba(247, 244, 236, 0.94);
    font-size: 1.08rem;
}

.summer-card-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.1rem;
    margin-top: 1.5rem;
}

.summer-card-fact {
    display: grid;
    grid-template-columns: 1.45rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    color: rgba(247, 244, 236, 0.94);
    font-weight: 600;
}

.summer-card-fact-icon,
.summer-card-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.summer-card-fact-icon {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    border: 1px solid rgba(247, 244, 236, 0.36);
    background: rgba(255, 255, 255, 0.08);
}

.summer-card-fact-icon svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.summer-card-panel-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.summer-card-button {
    width: min(100%, 24rem);
    margin-top: 2rem;
    color: #f7f4ec;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(247, 244, 236, 0.42);
    box-shadow: none;
}

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

.summer-card-panel {
    min-width: 0;
    min-height: 100%;
    padding: 2rem 1.25rem 1.4rem;
    text-align: center;
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(247, 244, 236, 0.16);
}

.summer-card-panel-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1rem;
    color: rgba(247, 244, 236, 0.96);
}

.summer-card-panel h3 {
    margin: 0 0 0.9rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    line-height: 1.05;
    min-height: calc(2 * 1.05em);
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.summer-card-panel p {
    margin: 0;
    max-width: 100%;
    color: rgba(247, 244, 236, 0.9);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.section-dark .section-heading p,
.section-dark .season-card p,
.section-dark .season-list {
    color: rgba(247, 244, 236, 0.84);
}

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

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

.season-card {
    padding: 2rem;
    background: rgba(247, 244, 236, 0.08);
    border: 1px solid rgba(247, 244, 236, 0.15);
}

.season-card h3 {
    font-size: 2rem;
    margin-top: 0.75rem;
}

.season-list,
.booking-notes {
    margin: 1.1rem 0 0;
    padding-left: 1.15rem;
}

.season-list li,
.booking-notes li {
    margin-top: 0.5rem;
}

.contact-card,
.booking-card {
    padding: 2rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.contact-card h2,
.booking-card h3,
.host-card h2,
.season-card h3,
.pitztal-topic-card h3,
.ferienwohnung-copy-card h2,
.ferienwohnung-spec-card h3,
.booking-page-meta-title,
.legal-card h2,
.ferienwohnung-fact-card strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.contact-card p,
.booking-card p,
.host-card p,
.season-card p,
.pitztal-topic-card p,
.pitztal-fact-card span,
.ferienwohnung-copy-card p,
.ferienwohnung-summary-note,
.booking-page-meta-copy,
.legal-card p,
.legal-card li,
.ferienwohnung-spec-list,
.ferienwohnung-compact-list li,
.ferienwohnung-summary-list li {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.contact-details p {
    margin: 0 0 0.85rem;
}

.contact-details p.contact-detail-row {
    margin: 0;
}

.contact-details p.contact-detail-row + p.contact-detail-row {
    margin-top: 0;
}

.contact-form-card {
    margin-top: 1.6rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-map-card {
    margin-top: 1.6rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-map-link {
    display: block;
    margin-top: 1.35rem;
    color: inherit;
    text-decoration: none;
}

.contact-map-link:hover .contact-map-cta,
.contact-map-link:focus-visible .contact-map-cta {
    color: var(--accent);
}

.contact-map-image {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    aspect-ratio: 16 / 7.5;
    object-fit: cover;
    object-position: center bottom;
    box-shadow: var(--shadow-soft);
}

.contact-map-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: color 180ms ease;
}

.contact-form-card .section-heading {
    margin-bottom: 1.5rem;
}

#kontaktformular {
    scroll-margin-top: 9rem;
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

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

.contact-form-grid-narrow {
    grid-template-columns: minmax(0, 28rem);
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    font-weight: 600;
    color: var(--ink);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.9);
    color: var(--ink);
    font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(95, 103, 82, 0.18);
    outline-offset: 1px;
    border-color: rgba(95, 103, 82, 0.38);
}

.form-field textarea {
    resize: vertical;
    min-height: 11rem;
}

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

.form-consent-field {
    margin-top: 0.2rem;
}

.form-checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    font-weight: 400;
}

.form-checkbox input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
}

.form-checkbox span {
    color: var(--muted);
}

.captcha-row {
    display: grid;
    grid-template-columns: auto minmax(0, 10rem);
    gap: 0.9rem;
    align-items: center;
}

.captcha-question {
    display: inline-flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(220, 225, 210, 0.34);
    color: var(--accent-dark);
    font-weight: 700;
}

.form-status,
.form-error {
    border-radius: 1rem;
}

.form-status {
    padding: 0.9rem 1rem;
    font-weight: 600;
}

.form-status-success {
    color: #29503d;
    background: rgba(206, 236, 218, 0.82);
    border: 1px solid rgba(87, 136, 104, 0.22);
}

.form-status-error,
.form-error {
    color: #8b3b3b;
    background: rgba(252, 233, 233, 0.92);
    border: 1px solid rgba(184, 98, 98, 0.2);
}

.form-error {
    margin: 0;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
}

.kontakt-form-actions {
    justify-content: flex-start;
    margin-top: 0.4rem;
}

.contact-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    color: var(--accent-dark);
    flex: 0 0 auto;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-notes {
    color: var(--muted);
}

.site-footer {
    padding: 1.8rem 0 3rem;
    color: var(--muted);
}

.footer-grid {
    align-items: start;
    row-gap: 0.8rem;
    grid-template-columns: minmax(0, 1fr);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-contact {
    align-items: flex-start;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}

.pitztal-page-hero {
    position: relative;
    min-height: 35rem;
    color: #fff9f2;
    background: #d8ddd2;
}

.pitztal-hero-image,
.pitztal-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pitztal-hero-image {
    margin: 0;
}

.pitztal-hero-image img {
    object-fit: cover;
    object-position: center center;
}

.pitztal-hero-overlay {
    position: relative;
    min-height: 35rem;
    background:
        linear-gradient(180deg, rgba(38, 46, 45, 0.18) 0%, rgba(38, 46, 45, 0.38) 100%),
        radial-gradient(circle at top left, rgba(255, 253, 248, 0.16), transparent 30%);
}

.pitztal-hero-shell {
    min-height: 35rem;
    display: grid;
    align-items: center;
}

.pitztal-hero-copy {
    width: min(100%, 42rem);
    padding: 7rem 0 5rem;
    text-shadow: 0 10px 28px rgba(19, 28, 29, 0.34);
}

.pitztal-hero-copy h1,
.pitztal-copy h2,
.pitztal-topic-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.pitztal-hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.96;
    max-width: 11ch;
    margin-top: 0.5rem;
}

.pitztal-hero-copy p {
    width: min(100%, 38rem);
    margin: 1.2rem 0 0;
    font-size: 1.1rem;
    color: rgba(255, 249, 242, 0.96);
}

.pitztal-intro-section .section-heading {
    max-width: 44rem;
}

.pitztal-fact-grid,
.pitztal-topic-grid {
    display: grid;
    gap: 1rem;
}

.pitztal-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.pitztal-fact-card,
.pitztal-topic-card {
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.pitztal-fact-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.5rem;
}

.pitztal-fact-card strong {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--accent-dark);
}

.pitztal-fact-card span {
    color: var(--muted);
}

.pitztal-section {
    background: transparent;
}

.pitztal-section-alt {
    background: transparent;
}

.pitztal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.pitztal-copy h2 {
    font-size: clamp(2.4rem, 4vw, 3.45rem);
    line-height: 0.98;
    margin-top: 0.45rem;
}

.pitztal-section-intro {
    max-width: 46rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.pitztal-topic-grid {
    margin-top: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(15.5rem, 18rem));
    justify-content: start;
    align-items: start;
    gap: 0.85rem;
}

.pitztal-topic-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 1rem 0.95rem;
}

.pitztal-topic-image {
    margin: -1rem -1rem 0.8rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pitztal-topic-image img {
    width: 100%;
    aspect-ratio: 16 / 7.5;
    object-fit: cover;
    object-position: center center;
}

.pitztal-topic-card h3 {
    font-size: clamp(1.22rem, 2.3vw, 1.4rem);
    line-height: 1;
}

.pitztal-topic-card p {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    flex: 1 1 auto;
}

.pitztal-topic-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    color: var(--accent-dark);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.pitztal-topic-link::after {
    content: "›";
    margin-left: 0.4rem;
    font-size: 1rem;
}

.pitztal-closing .section-heading {
    max-width: 44rem;
}

.pitztal-actions {
    justify-content: flex-start;
}

.kontakt-closing .section-heading {
    max-width: 44rem;
}

.kontakt-actions {
    justify-content: flex-start;
}

.ferienwohnung-closing .section-heading {
    max-width: 46rem;
}

.ferienwohnung-closing-actions {
    justify-content: flex-start;
}

.ferienwohnung-page-hero {
    position: relative;
    min-height: 34rem;
    color: #fff9f2;
    background: #dad8ce;
}

.ferienwohnung-hero-image,
.ferienwohnung-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ferienwohnung-hero-image {
    margin: 0;
}

.ferienwohnung-hero-image img {
    object-fit: cover;
    object-position: center center;
}

.ferienwohnung-hero-overlay {
    position: relative;
    min-height: 34rem;
    background:
        linear-gradient(180deg, rgba(43, 49, 43, 0.18) 0%, rgba(43, 49, 43, 0.42) 100%),
        radial-gradient(circle at left top, rgba(255, 253, 248, 0.12), transparent 30%);
}

.ferienwohnung-hero-shell {
    min-height: 34rem;
    display: grid;
    align-items: center;
}

.ferienwohnung-hero-copy {
    width: min(100%, 42rem);
    padding: 6.6rem 0 4rem;
    text-shadow: 0 10px 26px rgba(17, 25, 23, 0.38);
}

.ferienwohnung-hero-copy h1,
.ferienwohnung-copy-card h2,
.ferienwohnung-spec-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.ferienwohnung-hero-copy h1 {
    margin-top: 0.5rem;
    font-size: clamp(3rem, 5.8vw, 4.9rem);
    line-height: 0.96;
    max-width: 11ch;
}

.ferienwohnung-hero-copy p {
    width: min(100%, 37rem);
    margin: 1.15rem 0 0;
    color: rgba(255, 249, 242, 0.95);
    font-size: 1.08rem;
}

.ferienwohnung-fact-grid,
.ferienwohnung-gallery,
.ferienwohnung-spec-grid {
    display: grid;
    gap: 1rem;
}

.ferienwohnung-fact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.ferienwohnung-fact-card,
.ferienwohnung-copy-card,
.ferienwohnung-spec-card,
.ferienwohnung-gallery-card {
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.ferienwohnung-fact-card {
    position: relative;
    overflow: hidden;
    min-height: 10.5rem;
    padding: 1.6rem 1.5rem 1.45rem;
    text-align: left;
    background:
        radial-gradient(circle at top right, rgba(166, 175, 151, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 242, 233, 0.94));
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ferienwohnung-fact-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.35rem;
    background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
}

.ferienwohnung-fact-card:hover,
.ferienwohnung-fact-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(95, 103, 82, 0.22);
    box-shadow: 0 24px 44px rgba(66, 72, 58, 0.14);
}

.ferienwohnung-fact-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    margin-bottom: 1rem;
    color: var(--accent-dark);
    background: rgba(220, 225, 210, 0.48);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ferienwohnung-fact-card strong {
    display: block;
    max-width: 7ch;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 0.94;
    color: var(--accent-dark);
}

.ferienwohnung-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: stretch;
}

.ferienwohnung-copy-card,
.ferienwohnung-spec-card {
    padding: 1.8rem;
}

.ferienwohnung-detail-layout > * {
    height: 100%;
}

.ferienwohnung-copy-card,
.ferienwohnung-detail-layout .booking-card {
    display: flex;
    flex-direction: column;
}

.ferienwohnung-copy-card h2 {
    margin-top: 0.45rem;
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    line-height: 0.98;
}

.ferienwohnung-copy-card p {
    margin: 1rem 0 0;
    color: var(--muted);
}

.ferienwohnung-compact-list,
.ferienwohnung-summary-list {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.ferienwohnung-compact-list li,
.ferienwohnung-summary-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
}

.ferienwohnung-compact-list li::before,
.ferienwohnung-summary-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(181, 145, 74, 0.12);
}

.ferienwohnung-summary-note {
    margin: 1.15rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.ferienwohnung-actions {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.ferienwohnung-amenities-wide {
    margin-top: 1.35rem;
}

.ferienwohnung-floorplan-card {
    margin-top: 1.35rem;
    text-align: center;
}

.ferienwohnung-floorplan-card h3 {
    margin-top: 0.45rem;
}

.ferienwohnung-floorplan-figure {
    margin: 1.35rem 0 0;
}

.ferienwohnung-floorplan-figure img {
    display: block;
    width: min(100%, 62rem);
    margin: 0 auto;
    height: auto;
}

.ferienwohnung-amenities-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.ferienwohnung-amenities-group {
    padding: 1.25rem;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    background: rgba(246, 242, 233, 0.68);
    border: 1px solid rgba(95, 103, 82, 0.08);
    text-align: center;
}

.ferienwohnung-amenities-group h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    text-align: center;
}

.ferienwohnung-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 4.6rem;
    grid-auto-flow: dense;
    align-items: start;
    gap: 0.35rem;
}

.ferienwohnung-gallery-slider {
    display: grid;
    gap: 1rem;
}

.ferienwohnung-gallery-card {
    margin: 0;
    overflow: hidden;
    height: 100%;
    grid-column: span 2;
    grid-row: span 3;
}

.ferienwohnung-gallery-card:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 6;
}

.ferienwohnung-gallery-card:nth-child(2) {
    grid-column: 5 / span 2;
    grid-row: 1 / span 2;
}

.ferienwohnung-gallery-card:nth-child(3) {
    grid-column: 7 / span 2;
    grid-row: 1 / span 2;
}

.ferienwohnung-gallery-card:nth-child(4) {
    grid-column: 5 / span 2;
    grid-row: 3 / span 2;
}

.ferienwohnung-gallery-card:nth-child(5) {
    grid-column: 7 / span 2;
    grid-row: 3 / span 2;
}

.ferienwohnung-gallery-card:nth-child(6) {
    grid-column: 5 / span 4;
    grid-row: 5 / span 2;
}

.ferienwohnung-gallery-card:nth-child(7) {
    grid-column: 1 / span 4;
    grid-row: 7 / span 3;
}

.ferienwohnung-gallery-card:nth-child(8) {
    grid-column: 5 / span 4;
    grid-row: 7 / span 3;
}

.ferienwohnung-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ferienwohnung-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.ferienwohnung-gallery-controls {
    display: none;
}

.ferienwohnung-gallery-button {
    width: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.96);
    color: var(--accent-dark);
    box-shadow: var(--shadow-soft);
}

.ferienwohnung-gallery-button[disabled] {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.ferienwohnung-gallery-status {
    min-width: 4.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.06em;
}

.ferienwohnung-lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: rgba(19, 23, 19, 0.82);
}

.ferienwohnung-lightbox[hidden] {
    display: none;
}

.ferienwohnung-lightbox-figure {
    margin: 0;
    max-width: min(92vw, 1200px);
    max-height: 88vh;
}

.ferienwohnung-lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: 88vh;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.ferienwohnung-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    min-width: 3.4rem;
    min-height: 3.4rem;
    padding: 0;
    border: 1px solid rgba(66, 72, 58, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.96);
    color: var(--accent-dark);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.ferienwohnung-lightbox-close-icon {
    display: block;
    font-family: Arial, "Segoe UI", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

body.ferienwohnung-lightbox-open {
    overflow: hidden;
}

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

.ferienwohnung-spec-card h3 {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.ferienwohnung-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
}

.ferienwohnung-spec-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--muted);
}

.ferienwohnung-spec-list li + li {
    margin-top: 0.45rem;
}

.legal-page-section {
    padding-top: 4.4rem;
}

.booking-page-section {
    padding-top: 4.4rem;
}

.booking-page-shell {
    display: grid;
    gap: 1.35rem;
}

.booking-page-shell-wide {
    width: min(calc(100% - 1.5rem), 1380px);
}

.booking-page-shell h1,
.contact-page-shell h1 {
    margin: 0.55rem 0 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
}

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

.booking-page-meta-item {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(248, 245, 237, 0.88)),
        radial-gradient(circle at top right, rgba(166, 175, 151, 0.14), transparent 42%);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 34px rgba(66, 72, 58, 0.08);
}

.booking-page-meta-label {
    display: block;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.booking-page-meta-title {
    display: block;
    min-height: 2.1em;
    margin-bottom: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    line-height: 1.05;
    font-weight: 600;
    text-wrap: balance;
}

.booking-page-meta-copy {
    margin: 0.45rem 0 0.9rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.booking-page-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    word-break: break-word;
}

.booking-page-meta-item-action {
    grid-template-rows: auto auto 1fr auto;
}

.booking-page-meta-button {
    justify-self: start;
}

.booking-module-card {
    padding: 0;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.booking-module-card iframe {
    display: block;
    width: 100%;
    min-height: 1900px;
    border: 0;
}

.legal-shell {
    max-width: 58rem;
}

.legal-shell h1,
.legal-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1;
}

.legal-shell h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    margin-top: 0.55rem;
}

.legal-intro {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.legal-grid {
    display: grid;
    gap: 1.4rem;
    margin-top: 2rem;
}

.legal-card {
    padding: 1.7rem 1.8rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    font-size: 1.02rem;
}

.legal-card p {
    margin: 0;
}

.legal-card p + p,
.legal-card p + .legal-contact-list,
.legal-card p + .legal-list,
.legal-contact-list + p,
.legal-list + p {
    margin-top: 0.9rem;
}

.legal-contact-list,
.legal-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-list {
    display: grid;
    gap: 0.42rem;
}

.legal-label {
    font-weight: 600;
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: fade-up 720ms ease forwards;
}

.hero-copy {
    animation-delay: 80ms;
}

.hero-visual {
    animation-delay: 180ms;
}

.feature-card:nth-child(2),
.amenity-pill:nth-child(2),
.season-card:nth-child(2),
.booking-card {
    animation-delay: 120ms;
}

.feature-card:nth-child(3),
.amenity-pill:nth-child(3) {
    animation-delay: 180ms;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .section-grid,
    .summer-card-layout {
        grid-template-columns: 1fr;
    }

    .summer-card-grid,
    .pitztal-fact-grid,
    .ferienwohnung-fact-grid,
    .booking-page-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #ferienwohnung .feature-grid {
        grid-template-columns: 1fr;
    }

    .booking-page-meta-item:last-child {
        grid-column: 1 / -1;
    }

    .feature-card h3,
    .summer-card-panel h3,
    .booking-page-meta-title,
    .amenities-copy h2 {
        min-height: 0;
    }

    .site-nav {
        gap: 0.4rem 1rem;
    }
}

@media (max-width: 980px) {
    .hero-copy-shell,
    .section-grid,
    .summer-card-layout,
    .amenities-layout,
    .contact-grid,
    .footer-grid,
    .season-grid {
        grid-template-columns: 1fr;
    }

    .pitztal-fact-grid,
    .pitztal-topic-grid,
    .pitztal-layout,
    .pitztal-layout.is-reversed,
    .ferienwohnung-fact-grid,
    .ferienwohnung-detail-layout,
    .ferienwohnung-spec-grid {
        grid-template-columns: 1fr;
    }

    .ferienwohnung-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 8rem;
    }

    .booking-page-meta {
        grid-template-columns: 1fr;
    }

    .booking-page-meta-item:last-child {
        grid-column: auto;
    }

    .ferienwohnung-gallery-card,
    .ferienwohnung-gallery-card:nth-child(3),
    .ferienwohnung-gallery-card:nth-child(4),
    .ferienwohnung-gallery-card:nth-child(5),
    .ferienwohnung-gallery-card:nth-child(n+9) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .ferienwohnung-gallery-card:nth-child(1),
    .ferienwohnung-gallery-card:nth-child(2),
    .ferienwohnung-gallery-card:nth-child(6),
    .ferienwohnung-gallery-card:nth-child(7),
    .ferienwohnung-gallery-card:nth-child(8) {
        grid-column: span 2;
        grid-row: span 3;
    }

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

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

    .summer-card-copy,
    .hero-intro-card {
        max-width: none;
    }

    .site-nav a {
        font-size: 0.88rem;
        letter-spacing: 0.06em;
    }

    .contact-card,
    .booking-card,
    .contact-form-card,
    .contact-map-card,
    .legal-card,
    .booking-page-meta-item,
    .ferienwohnung-copy-card,
    .ferienwohnung-spec-card,
    .pitztal-topic-card,
    .pitztal-fact-card {
        padding: 1.55rem;
    }

    .hero-copy-shell {
        padding: 2.5rem 0;
    }

    .hero-copy {
        padding: 1.5rem 1.4rem 1.7rem;
    }

    .hero-stack-shell {
        margin-top: 1.5rem;
    }

    .hero-facts-shell {
        margin-top: -2rem;
    }

    .award-strip {
        grid-template-columns: auto 1fr;
    }

    .award-strip-link {
        justify-self: start;
        grid-column: 2;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 7.8rem;
    }

    .section-heading-compact {
        margin-bottom: 0;
    }

    .section {
        padding: 4.25rem 0;
    }

    .hero {
        padding-top: 0;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .hero-copy-shell {
        padding: 2rem 0;
    }

    .hero-copy {
        padding: 1.2rem 1rem 1.45rem;
    }

    .header-bar {
        justify-content: center;
        text-align: center;
        gap: 0.45rem;
        padding: 0.9rem 0 0.65rem;
    }

    .site-nav {
        justify-content: center;
        gap: 0.3rem 0.8rem;
    }

    .site-nav a {
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }

    .hero-stack,
    .summer-card-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid,
    .contact-form-grid-narrow,
    .captcha-row {
        grid-template-columns: 1fr;
    }

    .pitztal-page-hero,
    .pitztal-hero-overlay,
    .pitztal-hero-shell,
    .ferienwohnung-page-hero,
    .ferienwohnung-hero-overlay,
    .ferienwohnung-hero-shell {
        min-height: 28rem;
    }

    .pitztal-hero-copy {
        padding: 5.4rem 0 3.4rem;
    }

    .ferienwohnung-hero-copy {
        padding: 5.4rem 0 3.4rem;
    }

    .pitztal-hero-copy h1 {
        max-width: 9ch;
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .ferienwohnung-hero-copy h1 {
        max-width: 10ch;
        font-size: clamp(2.7rem, 10vw, 4rem);
    }

    .ferienwohnung-gallery {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ferienwohnung-gallery::-webkit-scrollbar {
        display: none;
    }

    .ferienwohnung-gallery-card,
    .ferienwohnung-gallery-card:nth-child(1),
    .ferienwohnung-gallery-card:nth-child(2),
    .ferienwohnung-gallery-card:nth-child(3),
    .ferienwohnung-gallery-card:nth-child(4),
    .ferienwohnung-gallery-card:nth-child(5),
    .ferienwohnung-gallery-card:nth-child(6),
    .ferienwohnung-gallery-card:nth-child(7),
    .ferienwohnung-gallery-card:nth-child(8),
    .ferienwohnung-gallery-card:nth-child(n+9) {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        grid-column: auto;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .ferienwohnung-gallery-card img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .ferienwohnung-gallery-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
    }

    .ferienwohnung-gallery-slider.is-single-slide .ferienwohnung-gallery-controls {
        display: none;
    }

    .pitztal-copy h2 {
        font-size: clamp(2.15rem, 9vw, 3rem);
    }

    .ferienwohnung-amenities-grid {
        grid-template-columns: 1fr;
    }

    .ferienwohnung-amenities-groups {
        grid-template-columns: 1fr;
    }

    .summer-card-intro,
    .summer-card-facts {
        grid-template-columns: 1fr;
    }

    .summer-card-badge {
        max-width: 7rem;
    }

    .summer-card-logo {
        height: 2.7rem;
    }

    .brand-name {
        font-size: 1.55rem;
    }

    .feature-card h3,
    .summer-card-panel h3,
    .booking-page-meta-title,
    .amenities-copy h2 {
        min-height: 0;
    }

    .hero-actions,
    .booking-actions,
    .kontakt-actions,
    .ferienwohnung-actions,
    .ferienwohnung-closing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .booking-actions .button,
    .kontakt-actions .button,
    .ferienwohnung-actions .button,
    .ferienwohnung-closing-actions .button,
    .summer-card-button,
    .booking-page-meta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-card,
    .booking-card,
    .season-card,
    .contact-form-card,
    .contact-map-card,
    .legal-card,
    .booking-page-meta-item,
    .ferienwohnung-copy-card,
    .ferienwohnung-spec-card,
    .ferienwohnung-fact-card,
    .pitztal-topic-card,
    .pitztal-fact-card {
        padding: 1.35rem;
    }

    .feature-card {
        padding: 2.4rem 1.25rem 1.25rem;
    }

    .booking-module-card iframe {
        min-height: 1600px;
    }

    .contact-detail-link,
    .booking-page-meta-link {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .captcha-question {
        justify-content: center;
    }

    .form-checkbox {
        gap: 0.65rem;
    }

    .summer-card-intro {
        gap: 1rem;
    }

    .booking-page-shell h1,
    .legal-shell h1 {
        line-height: 0.95;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
        width: min(100%, 13ch);
        max-width: 13ch;
    }

    .hero-copy .lead {
        font-size: 1rem;
    }

    .hero-title-accent {
        font-size: 0.88em;
        padding: 0.14em 0.5em 0.18em;
        line-height: 1.04;
    }

    .hero-name-nowrap,
    .hero-prep-nowrap {
        white-space: normal;
    }

    .award-strip {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .award-strip-badge {
        width: 6.4rem;
    }

    .award-strip-link {
        grid-column: auto;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .site-header.nav-enhanced .header-bar {
        align-items: stretch;
    }

    .site-header.nav-enhanced .header-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .site-header.nav-enhanced .brand {
        align-items: flex-start;
        text-align: left;
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header.nav-enhanced .brand-name-line {
        display: inline;
    }

    .site-header.nav-enhanced .brand-name-line + .brand-name-line::before {
        content: " ";
    }

    .site-header.nav-enhanced .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-header.nav-enhanced .language-switch-mobile {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-header.nav-enhanced .site-nav {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.15rem;
        margin-top: 0.55rem;
        padding-top: 0.75rem;
    }

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

    .site-header.nav-enhanced .site-nav a {
        width: 100%;
        padding: 0.7rem 0.1rem;
        text-align: right;
    }

    .site-header.nav-enhanced .site-nav .language-switch-desktop {
        display: none;
    }

    .site-header.nav-enhanced .site-nav .language-switch {
        justify-content: flex-end;
        width: 100%;
        margin-left: 0;
        margin-top: 0.35rem;
    }
}

@media (max-width: 560px) {
    html {
        scroll-padding-top: 7.2rem;
    }

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

    .brand-kicker,
    .eyebrow,
    .season-tag,
    .host-card-label,
    .feature-index {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .site-header.nav-enhanced .brand-name {
        font-size: 1.2rem;
        line-height: 0.95;
    }

    .site-header.nav-enhanced .brand-name-line {
        display: block;
    }

    .site-header.nav-enhanced .brand-name-line + .brand-name-line::before {
        content: "";
    }

    .site-nav a {
        font-size: 0.78rem;
    }

    .button {
        padding: 0.8rem 1.1rem;
    }

    .hero-copy h1 {
        width: min(100%, 12.5ch);
        max-width: 12.5ch;
    }

    .hero-title-accent {
        font-size: 0.84em;
        padding: 0.14em 0.46em 0.18em;
        line-height: 1.04;
    }

    .hero-name-nowrap,
    .hero-prep-nowrap {
        white-space: normal;
    }

    .contact-card,
    .booking-card,
    .season-card,
    .contact-form-card,
    .contact-map-card,
    .legal-card,
    .booking-page-meta-item,
    .ferienwohnung-copy-card,
    .ferienwohnung-spec-card,
    .ferienwohnung-fact-card,
    .pitztal-topic-card,
    .pitztal-fact-card {
        padding: 1.2rem;
    }

    .contact-map-image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 430px) {
    .site-header.nav-enhanced .brand-name-line {
        display: block;
    }

    .site-header.nav-enhanced .brand-name-line + .brand-name-line::before {
        content: "";
    }

    .footer-name-line {
        display: block;
    }

    .footer-name-line + .footer-name-line::before {
        content: "";
    }
}
