:root {
  --ink: #18312d;
  --forest: #173c36;
  --forest-2: #214b44;
  --sage: #b7c6af;
  --mist: #edf0e8;
  --cream: #f5f0e7;
  --paper: #fbfaf6;
  --sand: #d6b98d;
  --white: #fff;
  --muted: #66736f;
  --line: rgba(24, 49, 45, .16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(25, 45, 39, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: var(--white); background: var(--forest); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.section { width: var(--page); margin-inline: auto; padding-block: 120px; }
.kicker { margin: 0 0 18px; color: #657865; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.kicker.light { color: rgba(255, 255, 255, .72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h2 { max-width: 760px; margin-bottom: 28px; font-size: clamp(46px, 6vw, 78px); }
h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; border: 1px solid transparent; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: background .25s, color .25s, border .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--forest); background: var(--white); }
.button-light:hover { background: var(--cream); }
.button-primary { color: var(--white); background: var(--forest); }
.button-primary:hover { background: var(--forest-2); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline-light:hover { color: var(--forest); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 13px; font-weight: 600; letter-spacing: .04em; cursor: pointer; }
.light-link { color: var(--white); }

.site-header { position: absolute; z-index: 20; top: 20px; left: 50%; display: flex; width: min(1380px, calc(100% - 40px)); height: 86px; align-items: center; justify-content: space-between; padding: 10px 12px 10px 24px; color: var(--white); background: rgba(10,35,30,.34); border: 1px solid rgba(255,255,255,.25); box-shadow: 0 18px 50px rgba(5,24,20,.16); backdrop-filter: blur(16px); transform: translateX(-50%); transition: height .25s, top .25s, width .25s, background .25s, border-color .25s; }
.site-header.scrolled { position: fixed; top: 0; width: 100%; height: 78px; color: var(--ink); background: rgba(251,250,246,.96); border-color: transparent transparent var(--line); box-shadow: 0 8px 35px rgba(23,60,54,.08); animation: header-in .35s both; }
@keyframes header-in { from { transform: translate(-50%, -100%); } }
.brand { display: inline-flex; align-items: center; gap: 13px; line-height: 1.15; }
.brand-image { position: relative; display: block; width: 285px; aspect-ratio: 350 / 86; flex: 0 0 auto; line-height: 0; transition: width .2s; }
.brand-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .2s; }
.brand-image .wide-logo-dark { opacity: 0; }
.site-header.scrolled .brand-image .wide-logo-light,
.site-header.inner-header .brand-image .wide-logo-light { opacity: 0; }
.site-header.scrolled .brand-image .wide-logo-dark,
.site-header.inner-header .brand-image .wide-logo-dark { opacity: 1; }
.site-header.menu-active .brand-image .wide-logo-light { opacity: 1; }
.site-header.menu-active .brand-image .wide-logo-dark { opacity: 0; }
.site-header.scrolled .brand-image { width: 255px; }
.brand-emblem { position: relative; display: block; width: 54px; height: 54px; flex: 0 0 54px; }
.brand-emblem img { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity .2s; }
.brand-emblem .logo-dark { opacity: 0; }
.site-header.scrolled .brand-emblem .logo-light,
.site-header.inner-header .brand-emblem .logo-light { opacity: 0; }
.site-header.scrolled .brand-emblem .logo-dark,
.site-header.inner-header .brand-emblem .logo-dark { opacity: 1; }
.brand-mark { display: grid; width: 39px; aspect-ratio: 1; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 24px; }
.brand-copy { display: flex; flex-direction: column; gap: 4px; }
.brand-copy strong { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.brand-copy small { font-size: 9px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 500; letter-spacing: .01em; }
.site-nav > a { position: relative; padding: 11px 15px; transition: color .2s, background .2s; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 15px; bottom: 6px; left: 15px; height: 1px; background: currentColor; content: ""; opacity: .7; transform: scaleX(0); transition: transform .25s; }
.site-nav > a:hover { background: rgba(255,255,255,.1); }
.site-nav > a:hover::after { transform: scaleX(1); }
.site-nav a.active:not(.nav-cta) { background: rgba(255,255,255,.12); }
.nav-cta { display: inline-flex; min-height: 52px; align-items: center; gap: 18px; margin-left: 8px; padding: 0 19px; color: var(--forest); background: var(--cream); }
.nav-cta:hover { color: var(--white); background: var(--forest-2) !important; }
.scrolled .site-nav > a:not(.nav-cta):hover, .scrolled .site-nav a.active:not(.nav-cta) { background: var(--mist); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 12px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 1px; margin: 7px 0; background: currentColor; transition: transform .25s; }

.hero { position: relative; min-height: max(640px, calc(100svh - 128px)); color: var(--white); background: var(--forest); overflow: hidden; }
.hero-image { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; animation: hero-zoom 1.8s cubic-bezier(.2,.7,.2,1) both; }
@keyframes hero-zoom { from { opacity: .25; transform: scale(1.05); } to { opacity: 1; transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,27,.77) 0%, rgba(10,31,27,.43) 48%, rgba(10,31,27,.08) 78%), linear-gradient(0deg, rgba(6,26,22,.5) 0%, transparent 35%); }
.hero-content { position: relative; z-index: 2; display: flex; width: var(--page); min-height: max(640px, calc(100svh - 128px)); margin-inline: auto; flex-direction: column; justify-content: center; padding: 125px 0 70px; }
.hero h1 { max-width: 900px; margin-bottom: 28px; font-size: clamp(58px, 8vw, 112px); text-wrap: balance; }
.hero h1 em { color: #dfdbc9; font-weight: 400; }
.hero-lead { max-width: 590px; margin-bottom: 40px; color: rgba(255,255,255,.85); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.fact-bar { display: grid; min-height: 128px; grid-template-columns: repeat(5, 1fr); align-items: stretch; padding-inline: max(24px, calc((100vw - 1280px) / 2)); color: var(--ink); background: var(--cream); border-bottom: 1px solid var(--line); }
.fact-bar > div { display: flex; min-height: 128px; flex-direction: column; align-items: center; justify-content: center; padding: 18px clamp(20px, 2.5vw, 40px); border-right: 1px solid var(--line); text-align: center; }
.fact-bar > div:last-child { border: 0; }
.fact-bar strong { margin-bottom: 2px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1; }
.fact-bar span { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.intro-copy { padding-bottom: 20px; }
.intro-copy h2 { font-size: clamp(52px, 5.5vw, 78px); }
.intro-copy p { color: var(--muted); }
.intro-copy .large-copy { color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.45; }
.intro-copy .text-link { margin-top: 16px; }
.intro-images { position: relative; min-height: 670px; }
.intro-images figure { margin: 0; overflow: hidden; box-shadow: 0 18px 48px rgba(25,45,39,.11); }
.intro-images img { width: 100%; height: 100%; object-fit: cover; }
.image-large { position: absolute; top: 0; right: 0; width: 79%; height: 78%; }
.image-small { position: absolute; bottom: 0; left: 0; width: 48%; height: 42%; border: 10px solid var(--paper); }
.hand-note { position: absolute; right: 3%; bottom: 4%; padding-left: 34px; color: #7d806f; font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.15; transform: rotate(-5deg); }
.hand-note::before { position: absolute; top: 21px; left: -18px; width: 41px; height: 1px; background: currentColor; content: ""; }

.highlights { width: 100%; max-width: none; padding-inline: max(24px, calc((100vw - 1180px) / 2)); background: var(--mist); }
.section-heading { display: flex; margin-bottom: 60px; flex-direction: column; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { max-width: 500px; color: var(--muted); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.highlight-grid article { padding: 30px 28px 20px 0; border-right: 1px solid var(--line); }
.highlight-grid article:not(:first-child) { padding-left: 34px; }
.highlight-grid article:last-child { border: 0; }
.highlight-image { height: 185px; margin: 0 0 30px; background: #dce3d7; box-shadow: 0 14px 36px rgba(25,45,39,.09); overflow: hidden; }
.highlight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.highlight-grid article:hover .highlight-image img { transform: scale(1.035); }
.highlight-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.room-story { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(55px, 8vw, 115px); align-items: center; }
.story-image { height: min(670px, 62vw); overflow: hidden; box-shadow: 0 18px 48px rgba(25,45,39,.11); }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.story-image:hover img { transform: scale(1.025); }
.story-copy { max-width: 520px; }
.story-copy h2 { font-size: clamp(48px, 5vw, 70px); }
.story-copy > p:not(.kicker) { color: var(--muted); }
.room-story-reverse { padding-top: 25px; grid-template-columns: .92fr 1.08fr; }
.room-story-reverse .story-image { grid-column: 2; grid-row: 1; }
.room-story-reverse .story-copy { grid-column: 1; grid-row: 1; }
.check-list { display: grid; margin: 32px 0 0; padding: 0; gap: 0; list-style: none; }
.check-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.check-list li::before { margin-right: 12px; color: #63806f; content: "✓"; }
.mini-facts { display: flex; margin-top: 36px; gap: 36px; }
.mini-facts div { display: flex; min-width: 80px; flex-direction: column; align-items: center; text-align: center; }
.mini-facts strong { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.mini-facts span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.gallery-section { width: 100%; max-width: none; padding-inline: max(24px, calc((100vw - 1320px) / 2)); background: var(--cream); }
.gallery-heading { flex-direction: row; align-items: end; justify-content: space-between; }
.gallery-grid { display: grid; grid-auto-rows: 260px; grid-template-columns: 1.2fr .8fr .8fr; gap: 12px; }
.gallery-item { position: relative; padding: 0; border: 0; background: #dcded6; cursor: zoom-in; overflow: hidden; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .35s; }
.gallery-item::after { position: absolute; right: 14px; bottom: 14px; display: grid; width: 34px; height: 34px; place-items: center; color: var(--forest); background: rgba(255,255,255,.9); border-radius: 50%; content: "+"; opacity: 0; transform: translateY(7px); transition: opacity .25s, transform .25s; }
.gallery-item:hover img { filter: brightness(.9); transform: scale(1.035); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.location-section { display: grid; min-height: 760px; grid-template-columns: 1.08fr .92fr; color: var(--white); background: var(--forest); }
.location-image { min-height: 600px; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-copy { display: flex; max-width: 620px; flex-direction: column; justify-content: center; padding: 100px clamp(55px, 7vw, 115px); }
.location-copy h2 { font-size: clamp(52px, 5.4vw, 76px); }
.location-copy > p:not(.kicker) { color: rgba(255,255,255,.68); }
.distance-list { margin: 30px 0 40px; padding: 0; list-style: none; }
.distance-list li { display: flex; justify-content: space-between; gap: 25px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 13px; }
.distance-list strong { color: #d5d9c7; font-weight: 500; }
.location-copy .button { align-self: flex-start; }

.booking-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.booking-intro { position: sticky; top: 120px; padding-top: 30px; }
.booking-intro h2 { font-size: clamp(50px, 5.5vw, 76px); }
.booking-intro > p:not(.kicker) { color: var(--muted); }
.booking-requirements { display: grid; margin: 28px 0 8px; gap: 10px; padding: 20px; background: var(--mist); border-left: 3px solid var(--forest); }
.booking-requirements strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.booking-requirements span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.booking-requirements b { color: var(--forest); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.booking-requirements a, .privacy-check a { border-bottom: 1px solid currentColor; font-weight: 600; }
.host-note { display: flex; margin: 35px 0 26px; align-items: center; gap: 14px; }
.host-initials { display: grid; width: 48px; height: 48px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; font-family: var(--serif); }
.host-note div { display: flex; flex-direction: column; }
.host-note strong { font-size: 13px; }
.host-note span:last-child { color: var(--muted); font-size: 11px; }
.booking-points { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #607168; font-size: 11px; }
.booking-form { padding: clamp(28px, 4vw, 54px); background: var(--white); box-shadow: var(--shadow); }
.form-heading { display: flex; margin-bottom: 32px; align-items: end; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading div { display: flex; flex-direction: column; }
.form-heading span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.form-heading strong { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.form-heading small { color: var(--muted); font-family: var(--sans); font-size: 12px; font-weight: 400; }
.form-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; }
.form-grid label > span { font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.form-grid label small { color: var(--muted); font-weight: 400; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 0; outline: none; transition: border .2s, box-shadow .2s; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(23,60,54,.08); }
::placeholder { color: #9aa29d; }
.booking-extras { min-width: 0; margin: 34px 0 0; padding: 0; border: 0; }
.booking-extras legend { display: flex; width: 100%; align-items: baseline; justify-content: space-between; gap: 20px; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.booking-extras legend span { color: var(--ink); font-family: var(--serif); font-size: 27px; }
.booking-extras legend small { max-width: 240px; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.extras-intro { margin: 16px 0 18px; color: var(--muted); font-size: 12px; }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.extra-option { position: relative; display: block; cursor: pointer; }
.extra-option > input { position: absolute; width: 1px; height: 1px; min-height: 0; opacity: 0; }
.extra-option > span { display: flex; min-height: 145px; flex-direction: column; padding: 18px; background: var(--paper); border: 1px solid var(--line); transition: border .2s, background .2s, box-shadow .2s; }
.extra-option > span::before { content: '+'; display: grid; width: 25px; height: 25px; margin-bottom: 14px; place-items: center; color: var(--forest); border: 1px solid var(--forest); border-radius: 50%; font-size: 16px; }
.extra-option input:checked + span { background: var(--mist); border-color: var(--forest); box-shadow: inset 0 0 0 1px var(--forest); }
.extra-option input:checked + span::before { content: '✓'; color: var(--white); background: var(--forest); }
.extra-option input:focus-visible + span { box-shadow: 0 0 0 3px rgba(23,60,54,.12); }
.extra-option-upcoming { cursor: not-allowed; }
.extra-option-upcoming > span { background: #f3f0e7; border-style: dashed; }
.extra-option-upcoming > span::before { content: '→'; color: #78857e; border-color: #9ca69f; }
.extra-option.extra-option-upcoming strong, .extra-option.extra-option-upcoming small { color: #78857e; }
.extra-option-upcoming em { color: #9a7250; }
.extra-option strong { margin-bottom: 6px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.extra-option small { color: var(--muted); font-size: 10px; line-height: 1.45; }
.extra-option em { margin-top: auto; padding-top: 12px; color: var(--forest); font-size: 9px; font-style: normal; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.extra-wish { display: flex; margin-top: 15px; flex-direction: column; gap: 7px; }
.extra-wish > span { font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.extra-wish small { color: var(--muted); font-weight: 400; }
.extras-footnote { margin: 10px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.estimate { display: grid; margin: 24px 0 18px; grid-template-columns: 1fr auto; align-items: center; padding: 18px 20px; background: var(--mist); }
.estimate span { grid-row: 1 / 3; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.estimate strong { font-family: var(--serif); font-size: 22px; font-weight: 500; text-align: right; }
.estimate small { color: var(--muted); font-size: 10px; text-align: right; }
.form-error { min-height: 0; margin: 0 0 12px; color: #a43e2e; font-size: 12px; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 10px; line-height: 1.45; cursor: pointer; }
.privacy-check input { width: 16px; min-height: 16px; margin: 1px 0 0; accent-color: var(--forest); }
.booking-terms-check { margin-bottom: 12px; padding: 14px; color: var(--ink); background: var(--mist); }
.booking-terms-check + .privacy-check { padding-inline: 14px; }

/* Haus- und Grundstücksordnung */
.rules-page-head { background: linear-gradient(125deg, #173c36, #2e574c); }
.rules-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.rules-intro h2 { margin-bottom: 0; }
.rules-intro-copy { padding-top: 34px; color: var(--muted); font-size: 17px; }
.rules-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 9vw, 120px); align-items: start; padding-top: 40px; }
.rules-aside { position: sticky; top: 110px; }
.rules-aside h2 { font-size: clamp(48px, 5.4vw, 72px); }
.rules-keyfacts { display: grid; margin-top: 38px; gap: 12px; }
.rules-keyfacts span { display: flex; align-items: baseline; gap: 13px; padding-bottom: 12px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 11px; }
.rules-keyfacts strong { min-width: 52px; color: var(--forest); font-family: var(--serif); font-size: 21px; font-weight: 500; }
.rules-list { border-top: 1px solid var(--line); }
.rules-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.rules-list article > span { color: #809087; font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.rules-list h3 { margin-bottom: 10px; font-size: 30px; }
.rules-list p { margin-bottom: 0; color: var(--muted); }
.rules-note { margin-bottom: 100px; padding: clamp(40px, 7vw, 85px); color: var(--white); background: var(--forest); }
.rules-note h2 { margin-bottom: 20px; }
.rules-note > p:not(.kicker) { color: rgba(255,255,255,.7); font-size: 17px; }
.rules-note .button { margin-top: 12px; color: var(--forest); background: var(--white); }

/* Datenschutz */
.privacy-page-head { background: linear-gradient(125deg, #173c36, #315a50); }
.legal-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(55px, 9vw, 125px); align-items: start; }
.legal-nav { position: sticky; top: 110px; }
.legal-nav h2 { font-size: clamp(48px, 5vw, 68px); }
.legal-nav nav { display: grid; margin: 34px 0 22px; border-top: 1px solid var(--line); }
.legal-nav nav a { padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 11px; transition: color .2s, padding .2s; }
.legal-nav nav a:hover { padding-left: 7px; color: var(--forest); }
.legal-nav > small { color: var(--muted); font-size: 10px; }
.legal-content { border-top: 1px solid var(--line); }
.legal-content > section { padding: 42px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 95px; }
.legal-content h2 { margin-bottom: 24px; font-size: clamp(39px, 4vw, 55px); }
.legal-content h3 { margin: 30px 0 12px; font-size: 25px; }
.legal-content p, .legal-content address { color: var(--muted); font-size: 15px; }
.legal-content address { margin: 24px 0; padding: 20px 22px; background: var(--mist); border-left: 3px solid var(--forest); font-style: normal; }
.legal-content address strong { color: var(--ink); }
.legal-content a { color: var(--forest); border-bottom: 1px solid currentColor; font-weight: 600; }
.legal-draft-note { padding: 18px 20px; color: #6c3d23 !important; background: #f3e3d3; border-left: 3px solid #b6774d; }
.legal-number { margin-bottom: 12px !important; color: #809087 !important; font-size: 10px !important; font-weight: 600; letter-spacing: .14em; }
.form-submit { width: 100%; margin-top: 18px; }
.form-footnote { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.faq { padding-top: 50px; }
.faq .section-heading { margin-bottom: 40px; }
.faq-list { max-width: 880px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; padding: 24px 0; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 23px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--sans); font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 0 24px; color: var(--muted); }

.site-footer { color: rgba(255,255,255,.72); background: #102c27; }
.quick-tabs { position: fixed; z-index: 40; top: 50%; right: 14px; display: grid; width: 205px; gap: 2px; pointer-events: none; transform: translateY(-50%); filter: drop-shadow(0 14px 25px rgba(8,31,26,.18)); }
.quick-tabs > a, .quick-tabs > .quick-tab { display: grid; width: 62px; min-height: 58px; grid-template-columns: 25px 130px; align-items: center; justify-self: end; gap: 14px; padding: 10px 18px; overflow: hidden; color: var(--white); background: var(--forest); border: 1px solid rgba(255,255,255,.14); pointer-events: auto; transition: width .28s cubic-bezier(.2,.75,.25,1), background .2s; }
.quick-tabs > a:first-child { background: var(--forest-2); }
.quick-tabs > a:last-child { color: var(--forest); background: var(--sand); border-color: rgba(23,60,54,.12); }
.quick-tabs > a:hover, .quick-tabs > a:focus-visible, .quick-tabs > .quick-tab:hover { width: 205px; background: #2b5b51; }
.quick-tabs > a:last-child:hover { background: #e3c9a0; }
.quick-tabs svg { width: 23px; height: 23px; justify-self: center; }
.quick-tabs span { font-size: 11px; font-weight: 600; letter-spacing: .025em; line-height: 1.25; }
.quick-tabs > a > span, .quick-tabs > .quick-tab > span { opacity: 0; white-space: nowrap; transition: opacity .12s; }
.quick-tabs > a:hover > span, .quick-tabs > a:focus-visible > span, .quick-tabs > .quick-tab:hover > span { opacity: 1; transition-delay: .1s; }
.quick-tabs .is-unavailable { opacity: .64; cursor: not-allowed; }
.consent-banner { position: fixed; z-index: 80; right: 24px; bottom: 24px; left: 24px; display: grid; width: min(900px, calc(100% - 48px)); margin-inline: auto; grid-template-columns: 1fr auto; align-items: end; gap: 32px; padding: 26px 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 80px rgba(9,31,27,.24); }
.consent-banner[hidden] { display: none; }
.consent-copy .kicker { margin-bottom: 7px; font-size: 9px; }
.consent-copy h2 { margin-bottom: 8px; font-size: 31px; }
.consent-copy > p:not(.kicker) { max-width: 600px; margin-bottom: 5px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent-copy > a { font-size: 10px; font-weight: 600; border-bottom: 1px solid currentColor; }
.consent-actions { display: grid; min-width: 310px; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent-button { min-height: 46px; padding: 9px 14px; border: 1px solid var(--forest); font-size: 11px; font-weight: 600; cursor: pointer; }
.consent-button-primary { color: var(--white); background: var(--forest); }
.consent-button-outline { color: var(--forest); background: var(--white); }
.consent-button:hover { transform: translateY(-1px); }
.consent-settings-link { grid-column: 1 / -1; padding: 4px; color: var(--muted); background: transparent; border: 0; font-size: 10px; text-decoration: underline; cursor: pointer; }
.consent-dialog { width: min(680px, calc(100% - 32px)); max-height: calc(100vh - 40px); padding: clamp(25px, 5vw, 48px); color: var(--ink); background: var(--paper); border: 0; box-shadow: 0 28px 90px rgba(7,28,23,.3); }
.consent-dialog::backdrop { background: rgba(7,28,23,.68); backdrop-filter: blur(4px); }
.consent-dialog h2 { margin-bottom: 14px; font-size: clamp(39px, 6vw, 58px); }
.consent-dialog > p:not(.kicker) { color: var(--muted); font-size: 13px; }
.consent-dialog-close { position: absolute; top: 15px; right: 18px; width: 38px; height: 38px; color: var(--muted); background: transparent; border: 0; font-size: 28px; cursor: pointer; }
.consent-category { display: grid; margin-top: 16px; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 18px 0; border-top: 1px solid var(--line); }
.consent-category div { display: flex; flex-direction: column; gap: 4px; }
.consent-category strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.consent-category div span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.consent-category label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; white-space: nowrap; cursor: pointer; }
.consent-category input { width: 18px; min-height: 18px; accent-color: var(--forest); }
.consent-dialog-actions { display: grid; margin-top: 25px; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-main { display: grid; width: var(--page); margin-inline: auto; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(35px, 5vw, 70px); padding: 80px 0 65px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 12px; }
.footer-main > div > strong { margin-bottom: 10px; color: var(--white); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand { margin-bottom: 15px; color: var(--white); }
.footer-brand .brand-emblem { width: 62px; height: 62px; flex-basis: 62px; }
.footer-logo-original { display: block; width: min(480px, 100%); }
.footer-logo-original img { width: 100%; height: auto; }
.footer-main p { max-width: 300px; color: rgba(255,255,255,.48); }
.footer-main a, .footer-main span { overflow-wrap: anywhere; }
.footer-main a:not(.brand):hover { color: var(--white); }
.footer-consent-button { padding: 0 0 2px; color: inherit; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 12px; cursor: pointer; }
.footer-consent-button:hover { color: var(--white); }
.social-links { display: flex; margin-top: 13px; flex-wrap: wrap; gap: 9px; }
.footer-main .social-link { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; color: rgba(245,244,237,.82); background: rgba(229,233,221,.1); border: 1px solid rgba(229,233,221,.22); border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,.1); opacity: .76; transition: color .2s, background .2s, border-color .2s, opacity .2s, transform .2s, box-shadow .2s; }
.footer-main .social-link:hover, .footer-main .social-link:focus-visible { color: var(--white); background: rgba(229,233,221,.18); border-color: rgba(229,233,221,.42); box-shadow: 0 11px 26px rgba(0,0,0,.2); opacity: 1; transform: translateY(-3px); }
.social-link svg { width: 21px; height: 21px; fill: currentColor; stroke: none; }
.social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-instagram .social-dot { fill: currentColor; stroke: none; }
.social-youtube .social-play { fill: var(--forest); }
.footer-bottom { display: flex; width: var(--page); margin-inline: auto; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }

/* Öffentliche Vorschaltseite */
.coming-soon-body { min-height: 100svh; color: var(--white); background: var(--forest); }
.coming-soon { position: relative; display: grid; min-height: 100svh; place-items: center; overflow: hidden; padding: 70px 24px; isolation: isolate; }
.coming-soon-background, .coming-soon-shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.coming-soon-background { object-fit: cover; animation: coming-soon-drift 18s ease-in-out infinite alternate; }
.coming-soon-shade { z-index: -1; background: linear-gradient(115deg, rgba(8,35,30,.9) 7%, rgba(15,49,42,.76) 52%, rgba(10,34,29,.5)); }
.coming-soon-content { width: min(940px, 100%); padding: clamp(35px, 7vw, 82px); text-align: center; background: rgba(12,44,38,.42); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 35px 100px rgba(2,17,14,.34); backdrop-filter: blur(10px); }
.coming-soon-logo { width: min(390px, 84%); margin: 0 auto 45px; }
.coming-soon-content h1 { margin-bottom: 28px; font-size: clamp(58px, 8vw, 112px); line-height: .87; }
.coming-soon-content h1 em { color: #e3d6bc; font-weight: 400; }
.coming-soon-copy { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.76); font-size: clamp(15px, 1.8vw, 19px); }
.coming-soon-follow { display: flex; margin-top: 38px; flex-direction: column; align-items: center; gap: 13px; }
.coming-soon-follow > span { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.coming-socials { display: flex; justify-content: center; gap: 11px; }
.coming-socials .social-link { display: grid; width: 46px; height: 46px; place-items: center; color: rgba(255,255,255,.84); background: rgba(237,240,231,.11); border: 1px solid rgba(237,240,231,.28); border-radius: 50%; opacity: .82; transition: color .2s, background .2s, border-color .2s, opacity .2s, transform .2s; }
.coming-socials .social-link:hover, .coming-socials .social-link:focus-visible { color: var(--white); background: rgba(237,240,231,.2); border-color: rgba(237,240,231,.5); opacity: 1; transform: translateY(-3px); }
.coming-socials .social-link svg { width: 22px; height: 22px; fill: currentColor; stroke: none; }
.coming-soon-login { position: absolute; z-index: 2; top: 24px; right: 26px; display: grid; width: 52px; height: 52px; place-items: center; color: rgba(255,255,255,.82); background: rgba(12,44,38,.4); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 12px 34px rgba(2,17,14,.2); backdrop-filter: blur(9px); transition: color .2s, background .2s, border-color .2s, transform .2s; }
.coming-soon-login:hover, .coming-soon-login:focus-visible { color: var(--white); background: rgba(12,44,38,.68); border-color: rgba(255,255,255,.58); transform: translateY(-2px); }
.coming-soon-login svg { width: 21px; height: 21px; }
.coming-soon-login span { position: absolute; top: 50%; right: 62px; padding: 6px 10px; color: var(--white); background: rgba(12,44,38,.76); border: 1px solid rgba(255,255,255,.18); font-size: 9px; letter-spacing: .1em; opacity: 0; pointer-events: none; text-transform: uppercase; transform: translate(7px,-50%); transition: opacity .2s, transform .2s; white-space: nowrap; }
.coming-soon-login:hover span, .coming-soon-login:focus-visible span { opacity: 1; transform: translate(0,-50%); }
@keyframes coming-soon-drift { from { transform: scale(1.01); } to { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .coming-soon-background { animation: none; } }

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 45px 85px; color: var(--white); background: rgba(7,20,17,.96); border: 0; }
.lightbox::backdrop { background: rgba(7,20,17,.9); }
.lightbox[open] { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
.lightbox figure { display: flex; height: 100%; min-width: 0; margin: 0; flex-direction: column; align-items: center; justify-content: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; }
.lightbox figcaption { min-height: 24px; margin-top: 8px; color: rgba(255,255,255,.65); font-size: 11px; }
.lightbox button { border: 0; color: var(--white); background: transparent; cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; top: 22px; right: 28px; font-size: 36px; font-weight: 200; }
.lightbox-arrow { width: 60px; height: 60px; font-size: 26px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --page: min(100% - 40px, 900px); }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; padding: 130px 35px 60px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; color: var(--white); background: var(--forest); font-family: var(--serif); font-size: 32px; opacity: 0; pointer-events: none; transition: opacity .25s; }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .site-nav > a { padding: 10px 14px; }
  .nav-cta { margin: 18px 0 0; font-family: var(--sans); font-size: 13px; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-header.menu-active { position: fixed; color: var(--white); background: transparent; border-color: transparent; box-shadow: none; }
  .site-header.menu-active .brand, .site-header.menu-active .nav-toggle { z-index: 2; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { max-width: 680px; }
  .intro-images { min-height: 700px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid article:nth-child(2) { border-right: 0; }
  .highlight-grid article:nth-child(3), .highlight-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .room-story, .room-story-reverse { grid-template-columns: 1fr; }
  .room-story-reverse .story-image, .room-story-reverse .story-copy { grid-column: 1; }
  .room-story-reverse .story-image { grid-row: 1; }
  .room-story-reverse .story-copy { grid-row: 2; }
  .story-copy { max-width: 700px; }
  .location-section { grid-template-columns: 1fr; }
  .location-image { height: 600px; }
  .location-copy { max-width: 800px; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-intro { position: static; max-width: 720px; }
  .guestbook-section { grid-template-columns: 1fr; }
  .guestbook-form-wrap { position: static; }
  .install-section { grid-template-columns: 1fr; }
  .install-intro { position: static; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 45px; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 32px); }
  html { scroll-padding-top: 70px; }
  .section { padding-block: 78px; }
  .site-header { top: 12px; width: calc(100% - 24px); height: 76px; padding: 8px 10px 8px 15px; }
  .site-header.scrolled { height: 76px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .brand-emblem { width: 45px; height: 45px; flex-basis: 45px; }
  .brand-image { width: min(230px, calc(100vw - 100px)); }
  .site-header.scrolled .brand-image { width: min(220px, calc(100vw - 100px)); }
  .brand-mark { width: 35px; }
  .hero { min-height: 680px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,31,27,.78), rgba(10,31,27,.28)), linear-gradient(0deg, rgba(6,26,22,.65), transparent 55%); }
  .hero-content { min-height: 680px; padding: 150px 0 55px; }
  .hero h1 { font-size: clamp(53px, 16vw, 74px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .fact-bar { min-height: auto; grid-template-columns: repeat(2, 1fr); padding: 20px 16px; }
  .fact-bar > div { min-height: 85px; padding: 16px 12px; border-bottom: 1px solid var(--line); }
  .fact-bar > div:nth-child(2n) { border-right: 0; }
  .fact-bar > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .intro { gap: 55px; }
  .intro-images { min-height: 480px; }
  .image-large { width: 91%; height: 76%; }
  .image-small { width: 52%; height: 41%; border-width: 6px; }
  .hand-note { right: 0; font-size: 16px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-grid article, .highlight-grid article:not(:first-child) { padding: 35px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .highlight-grid article:nth-child(2) { border-top: 0; }
  .highlight-grid article:last-child { border-bottom: 0; }
  .highlight-image { height: 250px; margin-bottom: 24px; }
  .story-image { height: 430px; }
  .room-story { gap: 45px; }
  .mini-facts { gap: 23px; }
  .gallery-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .gallery-grid { grid-auto-rows: 180px; grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .location-image { height: 420px; min-height: 0; }
  .location-copy { padding: 75px 24px; }
  .booking-section { gap: 45px; }
  .booking-form { padding: 26px 20px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .booking-extras legend { align-items: flex-start; flex-direction: column; gap: 5px; }
  .booking-extras legend small { max-width: none; text-align: left; }
  .extras-grid { grid-template-columns: 1fr; }
  .extra-option > span { min-height: 0; }
  .estimate { grid-template-columns: 1fr; }
  .estimate span { grid-row: auto; margin-bottom: 4px; }
  .estimate strong, .estimate small { text-align: left; }
  .faq-list summary { font-size: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding-block: 65px 45px; }
  .footer-bottom { gap: 10px; flex-direction: column; }
  .lightbox { padding: 55px 10px 25px; }
  .lightbox[open] { grid-template-columns: 45px 1fr 45px; }
  .lightbox-arrow { width: 45px; }
}

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

/* Multi-page layout */
.site-nav a.active:not(.nav-cta)::after { transform: scaleX(1); }
.inner-header { position: relative; top: 0; left: 0; width: 100%; color: var(--ink); background: var(--paper); border-color: transparent transparent var(--line); box-shadow: none; transform: none; }
.inner-header .site-nav > a:not(.nav-cta):hover, .inner-header .site-nav a.active:not(.nav-cta) { background: var(--mist); }
.inner-header.scrolled { position: fixed; left: 50%; transform: translateX(-50%); }

.page-hero { position: relative; min-height: 690px; color: var(--white); background: var(--forest); overflow: hidden; }
.page-hero > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,31,27,.72), rgba(9,31,27,.12)), linear-gradient(0deg, rgba(9,31,27,.42), transparent 55%); }
.page-hero-copy { position: absolute; z-index: 1; bottom: 85px; left: max(24px, calc((100vw - 1180px) / 2)); }
.page-hero h1, .simple-page-head h1 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 8vw, 110px); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.page-hero h1 em, .simple-page-head h1 em { color: #dedac9; font-weight: 400; }
.page-intro { padding-bottom: 55px; }
.page-intro h2 { max-width: 960px; }
.two-column-copy { display: grid; max-width: 900px; margin-left: auto; grid-template-columns: repeat(2, 1fr); gap: 60px; color: var(--muted); font-size: 17px; }
.amenities { width: 100%; max-width: none; padding-inline: max(24px, calc((100vw - 1180px) / 2)); background: var(--mist); }
.amenity-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.amenity-columns > div { padding: 40px 45px 20px 0; border-right: 1px solid var(--line); }
.amenity-columns > div:not(:first-child) { padding-left: 45px; }
.amenity-columns > div:last-child { border: 0; }
.amenity-columns ul { margin: 0; padding: 0; color: var(--muted); list-style: none; }
.amenity-columns li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.image-banner { position: relative; height: 680px; overflow: hidden; }
.image-banner img { width: 100%; height: 100%; object-fit: cover; }
.image-banner::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,31,25,.45), transparent 55%); content: ''; }
.image-banner .button { position: absolute; z-index: 1; right: max(24px, calc((100vw - 1180px) / 2)); bottom: 55px; }

.simple-page-head { min-height: 590px; padding: 190px max(24px, calc((100vw - 1180px) / 2)) 80px; color: var(--white); background: var(--forest); }
.simple-page-head > p:last-child { max-width: 520px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: 18px; }
.booking-head { background: linear-gradient(120deg, #173c36, #285248); }
.gallery-page-head { background: linear-gradient(125deg, #173c36, #285248); }
.gallery-category-nav { display: grid; width: min(1180px, calc(100% - 48px)); margin: -34px auto 0; grid-template-columns: repeat(3, 1fr); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.gallery-category-nav a { display: grid; min-height: 112px; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 25px 30px; border-right: 1px solid var(--line); transition: color .25s, background .25s; }
.gallery-category-nav a:last-child { border-right: 0; }
.gallery-category-nav a:hover { color: var(--white); background: var(--forest); }
.gallery-category-nav span { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.gallery-category-nav a:hover span { color: rgba(255,255,255,.65); }
.gallery-category-nav strong { font-family: var(--serif); font-size: clamp(22px, 2vw, 29px); font-weight: 400; }
.gallery-category-nav b { font-size: 18px; font-weight: 400; }
.gallery-collection { width: min(1320px, calc(100% - 40px)); }
.gallery-collection + .gallery-collection { padding-top: 30px; }
.gallery-collection-head { display: grid; margin-bottom: 52px; grid-template-columns: 1fr minmax(280px, 440px); align-items: end; gap: 60px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.gallery-collection-head h2 { margin-bottom: 0; font-size: clamp(48px, 6vw, 76px); }
.gallery-collection-head > p { margin: 0; color: var(--muted); }
.full-gallery { display: grid; width: 100%; grid-auto-rows: 280px; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.full-gallery .gallery-item:nth-child(7n+1) { grid-row: span 2; }
.full-gallery .gallery-item:nth-child(7n+4) { grid-column: span 2; }

.location-detail { display: grid; width: 100%; max-width: none; grid-template-columns: 1fr 1fr; padding: 0; color: var(--white); background: var(--forest); }
.location-card { padding: 110px max(45px, calc((100vw - 1180px) / 2)); padding-right: clamp(50px, 7vw, 110px); }
.location-card h2 { font-size: clamp(50px, 5vw, 72px); }
.location-visual { position: relative; min-height: 720px; background: #dfe5d8; overflow: hidden; }
.location-map-canvas { position: absolute; z-index: 1; inset: 0; background: #dfe5d8; }
.location-map-cover { position: absolute; z-index: 2; inset: 0; color: var(--white); background: var(--forest); transition: opacity .45s, visibility .45s; }
.location-map-cover > img { width: 100%; height: 100%; object-fit: cover; }
.location-map-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,24,.82), rgba(7,28,24,.28)), linear-gradient(0deg, rgba(7,28,24,.58), transparent 55%); }
.location-map-intro { position: absolute; z-index: 1; right: clamp(28px, 5vw, 70px); bottom: clamp(34px, 6vw, 76px); left: clamp(28px, 5vw, 70px); max-width: 510px; }
.location-map-intro h3 { max-width: 500px; margin-bottom: 22px; font-size: clamp(40px, 4.6vw, 62px); font-weight: 400; line-height: .98; }
.location-map-intro > p:not(.kicker) { max-width: 470px; margin-bottom: 27px; color: rgba(255,255,255,.78); }
.location-map-intro .button { margin-bottom: 17px; border: 0; }
.location-map-intro small { display: block; color: rgba(255,255,255,.58); font-size: 10px; }
.location-map-shell.is-loaded .location-map-cover { opacity: 0; visibility: hidden; pointer-events: none; }
.location-map-shell.has-map-error .location-map-intro small { color: #ffe0d8; }
.location-map-canvas .leaflet-tile-pane { filter: saturate(.72) sepia(.08) contrast(.96); }
.location-map-canvas .leaflet-control-zoom a { color: var(--forest); }
.location-map-canvas .leaflet-popup-content-wrapper { color: var(--ink); border-radius: 2px; box-shadow: var(--shadow); }
.location-map-canvas .leaflet-popup-content { margin: 16px 19px; font-family: var(--sans); line-height: 1.45; }
.location-map-canvas .leaflet-popup-content strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.location-map-canvas .leaflet-popup-content span { color: var(--muted); font-size: 11px; }
.bernsteinsee-map-marker { position: relative; }
.bernsteinsee-map-marker::after { position: absolute; bottom: 1px; left: 50%; width: 17px; height: 17px; background: var(--forest); content: ''; transform: translateX(-50%) rotate(45deg); }
.bernsteinsee-map-marker span { position: relative; z-index: 1; display: grid; width: 54px; height: 54px; place-items: center; color: var(--white); background: var(--forest); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 9px 25px rgba(11,42,35,.28); font-family: var(--serif); font-size: 24px; }
.map-ring { position: absolute; border: 1px solid rgba(23,60,54,.25); border-radius: 50%; }
.ring-one { width: 520px; height: 520px; top: 100px; left: 80px; }
.ring-two { width: 320px; height: 320px; top: 200px; left: 180px; }
.map-dot { position: absolute; top: 50%; left: 50%; display: flex; align-items: center; gap: 12px; color: var(--forest); transform: translate(-50%,-50%); }
.map-dot b { display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.map-dot small { font-weight: 600; }
.map-label { position: absolute; color: rgba(23,60,54,.6); font-family: var(--serif); font-size: 20px; }
.label-north { top: 12%; left: 42%; }.label-varel { top: 45%; left: 18%; }.label-oldenburg { right: 14%; bottom: 18%; }
.region-guide { padding-bottom: 80px; }
.region-guide-head { display: grid; margin-bottom: 42px; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(45px, 8vw, 110px); }
.region-guide-head h2 { margin-bottom: 0; }
.region-guide-head > p { margin: 0 0 5px; color: var(--muted); }
.guide-jump-nav { display: flex; margin-bottom: 90px; flex-wrap: wrap; gap: 8px; }
.guide-jump-nav a { padding: 10px 16px; color: var(--forest); background: var(--mist); border: 1px solid transparent; font-size: 11px; font-weight: 600; transition: color .2s, background .2s; }
.guide-jump-nav a:hover { color: var(--white); background: var(--forest); }
.guide-chapter { display: grid; grid-template-columns: .34fr .66fr; gap: clamp(45px, 7vw, 100px); padding: 80px 0; border-top: 1px solid var(--line); scroll-margin-top: 95px; }
.guide-chapter-copy { position: sticky; top: 115px; align-self: start; }
.guide-chapter-copy > span { display: block; margin-bottom: 28px; color: #8b9a8b; font-family: var(--serif); font-size: 18px; }
.guide-chapter-copy h3 { max-width: 430px; font-size: clamp(38px, 4vw, 54px); font-weight: 400; }
.guide-chapter-copy > p:last-child { max-width: 430px; color: var(--muted); }
.guide-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.guide-chapter-image { position: relative; height: clamp(280px, 31vw, 410px); grid-column: 1 / -1; margin: 0 0 8px; background: #dce3d7; box-shadow: 0 18px 48px rgba(25,45,39,.11); overflow: hidden; }
.guide-chapter-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,38,32,.18), transparent 48%); content: ''; pointer-events: none; }
.guide-chapter-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.guide-chapter:hover .guide-chapter-image img { transform: scale(1.02); }
.guide-card { display: flex; min-height: 300px; flex-direction: column; padding: clamp(26px, 3vw, 38px); background: var(--white); box-shadow: 0 14px 40px rgba(25,45,39,.07); }
.guide-card small { margin-bottom: 24px; color: #718170; font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.guide-card h4 { margin: 0 0 16px; font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.05; }
.guide-card p { margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.guide-card a { display: inline-flex; margin-top: auto; align-items: center; justify-content: space-between; gap: 18px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 600; }
.guide-card a span { font-size: 16px; font-weight: 400; }
.guide-card a:hover { color: #687d6d; }
.day-stories { width: 100%; padding: 115px max(24px, calc((100vw - 1180px) / 2)); color: var(--white); background: #102f29; }
.day-stories > header { display: grid; margin-bottom: 65px; grid-template-columns: 1fr 1fr; align-items: end; }
.day-stories > header .kicker { grid-column: 1 / -1; }
.day-stories > header h2 { margin-bottom: 0; }
.day-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.day-story-grid article { padding: 38px 38px 10px 0; border-right: 1px solid rgba(255,255,255,.16); }
.day-story-grid article:not(:first-child) { padding-left: 38px; }
.day-story-grid article:last-child { border-right: 0; }
.day-story-grid span { color: #a8b5a4; font-size: 10px; }
.day-story-grid h3 { margin-top: 32px; color: var(--white); font-size: 32px; }
.day-story-grid p { color: rgba(255,255,255,.68); font-size: 14px; }

.home-teasers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.home-teaser { position: relative; height: 520px; overflow: hidden; }
.home-teaser::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,31,27,.72), transparent 60%); content: ''; }
.home-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.home-teaser:hover img { transform: scale(1.035); }
.home-teaser > span { position: absolute; z-index: 1; right: 35px; bottom: 32px; left: 35px; display: grid; grid-template-columns: 1fr auto; color: var(--white); }
.home-teaser small { grid-column: 1; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.home-teaser strong { grid-column: 1; font-family: var(--serif); font-size: 33px; font-weight: 400; }
.home-teaser b { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 25px; font-weight: 400; }
.page-cta { display: grid; min-height: 560px; place-items: center; padding: 90px 24px; color: var(--white); background: var(--forest); text-align: center; }
.page-cta h2 { margin-inline: auto; }
.page-cta p:not(.kicker) { margin-bottom: 30px; color: rgba(255,255,255,.65); }

/* Voucher booking */
.availability-section { display: grid; width: min(1320px, calc(100% - 48px)); grid-template-columns: .36fr 1fr; gap: clamp(45px, 6vw, 90px); align-items: start; }
.calendar-copy { position: sticky; top: 120px; padding-top: 28px; }
.calendar-copy h2 { font-size: clamp(44px, 4.5vw, 66px); }
.calendar-copy > p:not(.kicker) { color: var(--muted); }
.calendar-legend { display: flex; margin-top: 32px; flex-wrap: wrap; gap: 12px 20px; color: var(--muted); font-size: 11px; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 13px; height: 13px; border: 1px solid var(--line); border-radius: 2px; }
.legend-free { background: var(--white); }.legend-selected { background: var(--forest); }.legend-booked { background: repeating-linear-gradient(135deg,#e1e1dc 0,#e1e1dc 3px,#f3f1ec 3px,#f3f1ec 6px); }
.calendar-shell { padding: 28px; background: var(--white); box-shadow: var(--shadow); transition: opacity .2s; }
.calendar-shell.is-loading { opacity: .65; }
.calendar-toolbar { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; margin-bottom: 26px; }
.calendar-toolbar strong { font-family: var(--serif); font-size: 25px; font-weight: 500; text-align: center; text-transform: capitalize; }
.calendar-toolbar button { display: grid; width: 42px; height: 42px; place-items: center; color: var(--forest); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: color .2s, background .2s; }
.calendar-toolbar button:hover:not(:disabled) { color: var(--white); background: var(--forest); }.calendar-toolbar button:disabled { opacity: .3; cursor: default; }
.calendar-months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.calendar-month h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 20px; font-weight: 500; text-align: center; text-transform: capitalize; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-weekdays span { padding: 7px 2px; color: var(--muted); font-size: 9px; font-weight: 600; text-align: center; text-transform: uppercase; }
.calendar-days { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.calendar-blank, .calendar-day { min-width: 0; min-height: 68px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.calendar-blank { background: #faf9f5; }
.calendar-day { position: relative; display: flex; padding: 7px 4px 5px; flex-direction: column; align-items: center; justify-content: space-between; color: var(--ink); background: var(--white); cursor: pointer; transition: color .15s, background .15s; }
.calendar-day > span { align-self: flex-start; padding-left: 3px; font-size: 12px; font-weight: 600; }
.calendar-day small { font-size: 9px; white-space: nowrap; }
.calendar-day:hover:not(.is-past):not(.is-booked) { background: var(--mist); }
.calendar-day.is-past { color: #adb3af; background: #f7f6f2; cursor: default; }
.calendar-day.is-past small { display: none; }
.calendar-day.is-booked { color: #8d918d; background: repeating-linear-gradient(135deg,#e5e5e0 0,#e5e5e0 4px,#f4f3ef 4px,#f4f3ef 8px); cursor: not-allowed; }
.calendar-day.is-booked small { font-size: 8px; font-weight: 600; text-transform: uppercase; }
.calendar-day.is-booked.can-checkout { color: var(--forest); background: #e8eee4; box-shadow: inset 0 0 0 2px var(--forest); cursor: pointer; }
.calendar-day.is-range { color: var(--forest); background: #dce5d8; }
.calendar-day.is-start, .calendar-day.is-end { color: var(--white); background: var(--forest); }
.calendar-day.is-start::after, .calendar-day.is-end::after { position: absolute; top: 5px; right: 5px; font-size: 7px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.calendar-day.is-start::after { content: 'An'; }.calendar-day.is-end::after { content: 'Ab'; }
.calendar-selection { display: grid; margin-top: 24px; grid-template-columns: 1fr auto; align-items: center; padding: 17px 20px; background: var(--mist); }
.calendar-selection > span { grid-row: 1 / 3; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.calendar-selection strong { font-family: var(--serif); font-size: 18px; font-weight: 500; text-align: right; }
.calendar-selection small { color: var(--muted); font-size: 10px; text-align: right; }
.calendar-selection.has-error { color: #913c31; background: #f8e8e3; }
.calendar-error { grid-column: 1 / -1; padding: 25px; color: #913c31; text-align: center; }
.rate-overview { margin: 35px 0; border-top: 1px solid var(--line); }
.rate-overview > div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.rate-overview span { color: var(--muted); font-size: 12px; }
.rate-overview strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.rate-overview small { color: var(--muted); font-family: var(--sans); font-size: 9px; font-weight: 400; }
.coupon-field label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 600; }
.coupon-field label small { color: var(--muted); font-weight: 400; }
.coupon-field > div { display: grid; grid-template-columns: 1fr auto; }
.coupon-field input { text-transform: none; }
.coupon-button { min-height: 50px; color: var(--white); background: var(--forest); }
.coupon-field p { min-height: 20px; margin: 5px 0 0; font-size: 11px; }
.coupon-field p.valid { color: #3d765d; }.coupon-field p.invalid { color: #a43e2e; }
.estimate .discount-line { grid-column: 1 / -1; margin-top: 10px; padding-top: 10px; color: #3d765d; border-top: 1px solid rgba(23,60,54,.13); font-size: 12px; text-align: right; }
.form-alert { margin-bottom: 22px; padding: 13px 16px; color: #8b352b; background: #f8e8e3; border-left: 3px solid #b84b3d; font-size: 12px; }
.form-alert p { margin: 0; }
.booking-success { max-width: 840px; text-align: center; }
.booking-success h2 { margin-inline: auto; }
.booking-success > p:not(.kicker) { color: var(--muted); font-size: 18px; }
.booking-success .button { margin: 15px 12px 15px 0; }
.success-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 26px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; font-size: 28px; }

/* Gästebuch */
.guestbook-page-head { background: linear-gradient(125deg, #173c36, #4f6757); }
.guestbook-section { display: grid; grid-template-columns: .92fr 1.08fr; align-items: start; gap: clamp(55px, 8vw, 110px); }
.guestbook-stories > h2 { margin-bottom: 45px; }
.guestbook-list { display: grid; gap: 24px; }
.guestbook-entry { padding: clamp(28px, 4vw, 46px); background: var(--white); border-top: 3px solid var(--forest); box-shadow: var(--shadow); }
.guestbook-rating { margin-bottom: 20px; color: #b98e56; font-size: 15px; letter-spacing: .18em; }
.guestbook-entry blockquote { margin: 0 0 28px; color: var(--ink); font-family: var(--serif); font-size: clamp(24px, 2.7vw, 34px); line-height: 1.25; }
.guestbook-entry footer { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 9px; color: var(--muted); font-size: 11px; }
.guestbook-entry footer strong { color: var(--forest); font-size: 12px; }
.guestbook-entry footer small { width: 100%; margin-top: 4px; color: #879089; }
.guestbook-empty { padding: 45px 35px; color: var(--muted); background: var(--mist); text-align: center; }
.guestbook-empty > span { display: block; margin-bottom: 15px; color: var(--forest); font-family: var(--serif); font-size: 45px; }
.guestbook-empty h3 { margin-bottom: 10px; font-size: 27px; }
.guestbook-empty p { margin: 0; font-size: 12px; }
.guestbook-form-wrap { position: sticky; top: 115px; }
.guestbook-form-intro { margin: -10px 0 25px; color: var(--muted); font-size: 12px; }
.guestbook-checks { display: grid; margin: 24px 0 20px; gap: 10px; }
.guestbook-checks .privacy-check { padding: 13px; background: var(--mist); }
.guestbook-success { display: flex; margin-bottom: 16px; align-items: flex-start; gap: 15px; padding: 18px 20px; color: var(--forest); background: #e3eadf; border-left: 3px solid var(--forest); }
.guestbook-success > span { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; }
.guestbook-success strong { display: block; margin-bottom: 3px; }
.guestbook-success p { margin: 0; color: var(--muted); font-size: 11px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Datenbankinstallation */
.install-section { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(55px, 8vw, 110px); }
.install-intro { position: sticky; top: 115px; }
.install-intro > p:not(.kicker) { color: var(--muted); }
.install-divider { display: flex; margin: 32px 0 22px; align-items: center; gap: 15px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.install-divider::before, .install-divider::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.install-complete { padding: clamp(35px, 6vw, 68px); background: var(--white); box-shadow: var(--shadow); }
.install-complete > span { display: grid; width: 56px; height: 56px; margin-bottom: 26px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; font-size: 23px; }
.install-complete h2 { font-size: clamp(44px, 5vw, 66px); }
.install-complete > p:not(.kicker) { color: var(--muted); }
.install-complete .button { margin-top: 12px; }

/* Footer administration icon */
.admin-login-icon { display: grid; width: 32px; height: 32px; place-items: center; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transition: color .2s, border-color .2s; }
.admin-login-icon:hover { color: var(--white); border-color: rgba(255,255,255,.6); }
.admin-login-icon svg { width: 15px; }

/* Administration */
.admin-body { background: #f1f3ee; }
.admin-main { display: grid; min-height: 760px; place-items: center; padding: 80px 20px; }
.login-card { width: min(480px, 100%); padding: 48px; background: var(--white); box-shadow: var(--shadow); }
.login-card h1 { margin-bottom: 14px; font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: 1; }
.login-card > p:not(.kicker) { color: var(--muted); }
.admin-shield { display: grid; width: 50px; height: 50px; margin-bottom: 30px; place-items: center; color: var(--white); background: var(--forest); border-radius: 50%; }
.admin-shield svg { width: 26px; }
.admin-login-form { display: grid; margin: 26px 0; gap: 18px; }
.admin-login-form label, .coupon-edit-form label { display: flex; flex-direction: column; gap: 6px; }
.admin-login-form label span, .coupon-edit-form label > span { font-size: 11px; font-weight: 600; }
.admin-dashboard { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 120px; }
.admin-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.admin-top-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.admin-top h1 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(48px, 6vw, 74px); font-weight: 400; line-height: 1; }
.admin-top p:last-child { margin: 0; color: var(--muted); }
.admin-logout { border-color: var(--line); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 30px; }
.admin-stats > div { display: flex; padding: 24px 28px; align-items: center; justify-content: space-between; background: var(--white); }
.admin-stats span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.admin-stats strong { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.admin-notice { margin-bottom: 20px; padding: 14px 18px; border-left: 3px solid; font-size: 13px; }
.admin-notice.success { color: #285e49; background: #e1eee7; border-color: #438062; }.admin-notice.error { color: #8b352b; background: #f8e8e3; border-color: #b84b3d; }
.coupon-create, .coupon-list { margin-bottom: 28px; background: var(--white); box-shadow: 0 10px 35px rgba(24,49,45,.06); }
.coupon-create > summary { display: flex; padding: 24px 28px; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 25px; cursor: pointer; list-style: none; }
.coupon-create > summary::-webkit-details-marker, .coupon-row > summary::-webkit-details-marker { display: none; }
.coupon-create > summary span { font-family: var(--sans); }
.coupon-create[open] > summary span { transform: rotate(45deg); }
.coupon-edit-form { padding: 28px; border-top: 1px solid var(--line); }
.admin-form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; }
.admin-full { grid-column: 1 / -1; }
.admin-check { align-self: end; min-height: 50px; flex-direction: row !important; align-items: center; }
.admin-check input { width: 18px; min-height: 18px; accent-color: var(--forest); }
.coupon-list-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; }
.coupon-list-head h2 { margin: 0; font-family: var(--serif); font-size: 32px; }
.coupon-list-head span { color: var(--muted); font-size: 11px; }
.coupon-row { border-top: 1px solid var(--line); }
.coupon-row > summary { display: grid; grid-template-columns: 12px 1fr 90px 90px 20px; align-items: center; gap: 18px; padding: 20px 28px; cursor: pointer; list-style: none; }
.status-dot { width: 9px; height: 9px; background: #aaa; border-radius: 50%; }.status-dot.active { background: #4c926e; box-shadow: 0 0 0 4px rgba(76,146,110,.13); }
.coupon-row summary div { display: flex; flex-direction: column; }.coupon-row summary strong { font-family: var(--serif); font-size: 23px; font-weight: 500; }.coupon-row summary small { color: var(--muted); }.coupon-row summary b { font-family: var(--serif); font-size: 25px; font-weight: 400; }.coupon-row summary em { color: var(--muted); font-size: 11px; font-style: normal; text-transform: uppercase; }.row-chevron { font-size: 20px; }
.coupon-actions { display: flex; gap: 10px; padding: 0 28px 28px; }
.button-secondary { border-color: var(--line); background: var(--paper); }.button-danger { color: #9b382c; border-color: #dfbbb5; background: #fff8f6; }
.admin-empty { padding: 30px; color: var(--muted); }
.admin-section-heading { display: flex; margin: 65px 0 22px; align-items: flex-end; justify-content: space-between; gap: 25px; }
.admin-section-heading .kicker { margin-bottom: 6px; }
.admin-section-heading h2 { margin: 0; font-family: var(--serif); font-size: 38px; }
.admin-section-heading > a { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; }
.coupons-heading { margin-top: 85px; }
.booking-row > summary { grid-template-columns: 12px 1fr 110px 90px 20px; }

/* Zweistufige Anfragen */
.inquiry-list { margin-bottom: 35px; background: var(--white); box-shadow: 0 10px 35px rgba(24,49,45,.06); }
.inquiry-row { border-top: 1px solid var(--line); }
.inquiry-row:first-child { border-top: 0; }
.inquiry-row > summary { display: grid; grid-template-columns: 12px 1fr 150px 110px 20px; align-items: center; gap: 18px; padding: 22px 28px; cursor: pointer; list-style: none; }
.inquiry-row > summary::-webkit-details-marker { display: none; }
.inquiry-row > summary div { display: flex; min-width: 0; flex-direction: column; }
.inquiry-row > summary strong { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.inquiry-row > summary small { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.inquiry-row > summary b { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.inquiry-row > summary em { color: var(--muted); font-size: 10px; font-style: normal; font-weight: 600; text-transform: uppercase; }
.inquiry-row.status-rejected .status-dot { background: #b84b3d; }
.inquiry-row.status-paid .status-dot { background: #d0a34e; box-shadow: 0 0 0 4px rgba(208,163,78,.14); }
.inquiry-detail { padding: 0 28px 28px; border-top: 1px solid var(--line); }
.inquiry-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; background: var(--mist); }
.inquiry-facts > span { display: flex; min-width: 0; padding: 16px; flex-direction: column; border-right: 1px solid var(--line); }
.inquiry-facts > span:last-child { border-right: 0; }
.inquiry-facts small { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-facts strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; }
.inquiry-message, .inquiry-address, .inquiry-extras { margin: 18px 0; padding: 18px; color: var(--muted); background: var(--paper); font-size: 12px; }
.inquiry-message strong, .inquiry-address strong, .inquiry-extras strong { display: block; margin-bottom: 7px; color: var(--ink); }
.inquiry-extras small { display: block; margin-top: 8px; color: var(--forest); }
.inquiry-access { display: grid; margin: 22px 0; grid-template-columns: 1fr auto; align-items: end; gap: 12px; }
.inquiry-access label { min-width: 0; }
.inquiry-access label span { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 600; }
.inquiry-access input { font-size: 10px; }
.inquiry-access .button { min-height: 50px; }
.inquiry-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.inquiry-actions .button { min-height: 44px; }
.booking-number { margin-left: auto; color: var(--muted); font-size: 11px; }
.admin-user-list { display: grid; gap: 14px; }
.admin-user-card { background: var(--white); border-left: 3px solid var(--forest); box-shadow: 0 12px 35px rgba(25,45,39,.06); }
.admin-user-card.is-inactive { border-left-color: #a99c8e; opacity: .76; }
.admin-user-card > header { display: flex; align-items: center; gap: 14px; padding: 22px 26px; }
.admin-user-card > header > div { display: flex; min-width: 0; flex-direction: column; }
.admin-user-card > header strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.admin-user-card > header small { color: var(--muted); font-size: 10px; }
.admin-user-card > details { border-top: 1px solid var(--line); }
.admin-user-card > details > summary { display: flex; padding: 15px 26px; align-items: center; justify-content: space-between; color: var(--muted); font-size: 11px; cursor: pointer; list-style: none; }
.admin-user-password { display: grid; padding: 4px 26px 24px; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 12px; }
.admin-user-password label { display: flex; flex-direction: column; gap: 6px; }
.admin-user-password label span { font-size: 10px; font-weight: 600; }
.admin-user-password .button { min-height: 50px; }
.admin-user-actions { display: flex; padding: 0 26px 22px; align-items: center; flex-wrap: wrap; gap: 9px; }
.admin-user-actions .button { min-height: 42px; }
.admin-user-self-note { color: var(--muted); font-size: 10px; }
.admin-user-create small { color: var(--muted); font-weight: 400; }

/* Persönlicher Buchungsschritt */
.completion-page-head { background: linear-gradient(125deg, #173c36, #315a50); }
.completion-section { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.completion-summary { position: sticky; top: 115px; padding: 30px; color: var(--white); background: var(--forest); }
.completion-summary .kicker { color: rgba(255,255,255,.65); }
.completion-summary h2 { margin-bottom: 30px; font-size: clamp(42px, 5vw, 60px); }
.completion-summary > div { display: flex; padding: 13px 0; align-items: baseline; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.completion-summary > div span { color: rgba(255,255,255,.6); font-size: 10px; text-transform: uppercase; }
.completion-summary > div strong { font-family: var(--serif); font-size: 18px; font-weight: 400; text-align: right; }
.completion-summary > p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 11px; }
.completion-form .form-heading strong { font-size: clamp(25px, 3vw, 34px); }
.completion-checks { display: grid; margin-top: 25px; gap: 12px; }
.completion-checks .privacy-check { padding: 13px; background: var(--mist); }

@media (max-width: 900px) {
  .availability-section { grid-template-columns: 1fr; }
  .calendar-copy { position: static; max-width: 700px; }
  .rules-intro, .rules-section { grid-template-columns: 1fr; }
  .rules-intro-copy { max-width: 760px; padding-top: 0; }
  .rules-aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .legal-nav nav { grid-template-columns: repeat(2, 1fr); column-gap: 24px; }
  .two-column-copy, .location-detail { grid-template-columns: 1fr; }
  .amenity-columns { grid-template-columns: 1fr; }
  .amenity-columns > div, .amenity-columns > div:not(:first-child) { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-category-nav { width: calc(100% - 32px); }
  .gallery-category-nav a { min-height: 96px; padding: 20px; }
  .gallery-category-nav a span { display: none; }
  .gallery-collection-head { grid-template-columns: 1fr; gap: 18px; }
  .full-gallery { grid-template-columns: repeat(2, 1fr); }
  .full-gallery .gallery-item:nth-child(7n+4) { grid-column: auto; }
  .region-guide-head, .guide-chapter { grid-template-columns: 1fr; }
  .guide-chapter-copy { position: static; max-width: 650px; }
  .day-stories > header { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .completion-section { grid-template-columns: 1fr; }
  .completion-summary { position: static; }
}

@media (max-width: 700px) {
  body { padding-bottom: 68px; }
  body.coming-soon-body { padding-bottom: 0; }
  .coming-soon { padding: 24px 14px 62px; }
  .coming-soon-content { padding: 34px 20px; }
  .coming-soon-logo { margin-bottom: 32px; }
  .coming-soon-content h1 { font-size: clamp(49px, 15vw, 67px); }
  .coming-soon-copy { font-size: 14px; }
  .coming-soon-login { top: 14px; right: 14px; width: 46px; height: 46px; }
  .quick-tabs { top: auto; right: 8px; bottom: 7px; left: 8px; width: auto; grid-template-columns: repeat(3, 1fr); gap: 2px; pointer-events: auto; transform: none; }
  .quick-tabs > a, .quick-tabs > .quick-tab { width: 100%; min-width: 0; min-height: 58px; grid-template-columns: 23px 1fr; gap: 7px; padding: 8px 9px; }
  .quick-tabs > a:hover, .quick-tabs > a:focus-visible, .quick-tabs > .quick-tab:hover { width: 100%; }
  .quick-tabs svg { width: 20px; height: 20px; }
  .quick-tabs span { font-size: 9px; }
  .quick-tabs > a > span, .quick-tabs > .quick-tab > span { opacity: 1; white-space: normal; }
  .consent-banner { right: 10px; bottom: 78px; left: 10px; width: auto; grid-template-columns: 1fr; gap: 18px; padding: 21px 18px; }
  .consent-copy h2 { font-size: 27px; }
  .consent-actions { min-width: 0; }
  .consent-category { grid-template-columns: 1fr; gap: 10px; }
  .consent-category label { justify-self: start; }
  .consent-dialog-actions { grid-template-columns: 1fr; }
  .availability-section { width: calc(100% - 24px); }
  .rules-intro, .rules-section { gap: 38px; }
  .rules-list article { grid-template-columns: 32px 1fr; gap: 12px; padding: 25px 0; }
  .rules-list h3 { font-size: 26px; }
  .rules-note { width: calc(100% - 24px); margin-bottom: 70px; }
  .legal-layout { gap: 35px; }
  .legal-nav nav { grid-template-columns: 1fr; }
  .legal-content > section { padding: 32px 0; }
  .legal-content p, .legal-content address { font-size: 14px; }
  .calendar-shell { padding: 18px 10px; }
  .calendar-months { grid-template-columns: 1fr; gap: 35px; }
  .calendar-toolbar strong { font-size: 18px; }
  .calendar-blank, .calendar-day { min-height: 58px; }
  .calendar-day small { font-size: 8px; }
  .calendar-selection { grid-template-columns: 1fr; }
  .calendar-selection > span { grid-row: auto; margin-bottom: 4px; }
  .calendar-selection strong, .calendar-selection small { text-align: left; }
  .admin-section-heading { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 610px; }
  .page-hero-copy { right: 18px; bottom: 55px; left: 18px; }
  .page-hero h1, .simple-page-head h1 { font-size: clamp(52px, 15vw, 70px); }
  .simple-page-head { min-height: 540px; padding: 165px 18px 65px; }
  .gallery-category-nav { margin-top: -22px; grid-template-columns: 1fr; }
  .gallery-category-nav a { min-height: 72px; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-category-nav a:last-child { border-bottom: 0; }
  .gallery-collection { width: calc(100% - 24px); padding-block: 82px; }
  .gallery-collection + .gallery-collection { padding-top: 8px; }
  .gallery-collection-head { margin-bottom: 34px; gap: 12px; padding-bottom: 24px; }
  .two-column-copy { gap: 10px; }
  .image-banner { height: 480px; }
  .full-gallery { width: 100%; grid-auto-rows: 180px; gap: 7px; }
  .full-gallery .gallery-item:nth-child(7n+1) { grid-row: span 1; }
  .full-gallery .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .location-card { padding: 75px 22px; }
  .location-visual { min-height: 500px; }
  .region-guide { padding-bottom: 45px; }
  .region-guide-head { gap: 18px; }
  .guide-jump-nav { margin-bottom: 55px; }
  .guide-jump-nav a { flex: 1 1 calc(50% - 8px); text-align: center; }
  .guide-chapter { gap: 30px; padding: 60px 0; }
  .guide-chapter-copy > span { margin-bottom: 18px; }
  .guide-card-grid { grid-template-columns: 1fr; }
  .guide-chapter-image { height: 260px; grid-column: 1; }
  .guide-card { min-height: 0; }
  .day-stories { padding: 82px 20px; }
  .day-stories > header { margin-bottom: 44px; }
  .day-story-grid { grid-template-columns: 1fr; }
  .day-story-grid article, .day-story-grid article:not(:first-child) { padding: 32px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .day-story-grid article:last-child { border-bottom: 0; }
  .day-story-grid h3 { margin-top: 18px; }
  .home-teasers { grid-template-columns: 1fr; }
  .home-teaser { height: 420px; }
  .admin-main { padding: 45px 16px; }
  .login-card { padding: 32px 24px; }
  .admin-dashboard { width: calc(100% - 24px); padding-top: 45px; }
  .admin-top { align-items: flex-start; flex-direction: column; }
  .admin-top-actions { width: 100%; justify-content: flex-start; }
  .admin-stats { grid-template-columns: 1fr; }
  .inquiry-row > summary { grid-template-columns: 10px 1fr auto 18px; padding: 18px 16px; }
  .inquiry-row > summary em { display: none; }
  .inquiry-detail { padding: 0 16px 20px; }
  .inquiry-facts { grid-template-columns: repeat(2, 1fr); }
  .inquiry-facts > span:nth-child(2) { border-right: 0; }
  .inquiry-facts > span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .inquiry-access { grid-template-columns: 1fr; }
  .admin-user-password { grid-template-columns: 1fr; }
  .booking-number { width: 100%; margin: 8px 0 0; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-full { grid-column: auto; }
  .coupon-row > summary { grid-template-columns: 10px 1fr auto 18px; padding: 18px 16px; }
  .coupon-row summary em { display: none; }
  .coupon-edit-form { padding: 20px 16px; }
  .coupon-actions { padding: 0 16px 20px; flex-wrap: wrap; }
  .coupon-actions .button { min-height: 44px; padding-inline: 14px; }
}
