:root {
  --ink: #17211d;
  --forest: #15342d;
  --forest-deep: #0e2721;
  --cream: #f3eee3;
  --paper: #fbf8f1;
  --gold: #c8a56a;
  --gold-light: #dec28f;
  --muted: #6f756f;
  --line: rgba(23, 33, 29, .16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(88vw, 1280px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.7; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
address { font-style: normal; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: var(--paper); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding-block: clamp(90px, 11vw, 170px); }
.centered { margin-top: 64px; text-align: center; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { margin-bottom: 28px; font-size: clamp(4rem, 8.4vw, 8.5rem); color: #fff; }
h2 { margin-bottom: 32px; font-size: clamp(3.3rem, 6vw, 6.4rem); }
h3 { font-size: clamp(2rem, 3vw, 3rem); }
.eyebrow { margin-bottom: 22px; font-size: .72rem; font-weight: 650; letter-spacing: .2em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 34px; height: 1px; margin: 0 14px 4px 0; background: var(--gold); content: ""; }
.eyebrow.light { color: #fff; }
.lead { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.25rem); line-height: 1.35; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 14px 25px; border: 1px solid transparent; font-size: .75rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; transition: background-color .25s, color .25s, border-color .25s, transform .25s; }
.button span { margin-left: 12px; font-size: 1rem; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--forest-deep); background: var(--gold-light); }
.button-gold:hover { background: #efd3a1; }
.button-dark { color: #fff; background: var(--forest); }
.button-dark:hover { background: var(--forest-deep); }
.button-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.button-outline:hover { border-color: #fff; background: #fff; color: var(--forest); }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.text-link.light { color: #fff; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; display: flex; align-items: center; justify-content: space-between; height: 96px; padding: 0 4.8vw; color: #fff; border-bottom: 1px solid rgba(255,255,255,.22); transition: height .3s, background-color .3s, color .3s, box-shadow .3s; }
.site-header.scrolled { height: 74px; color: var(--ink); background: rgba(251,248,241,.95); box-shadow: 0 8px 30px rgba(10,25,20,.08); backdrop-filter: blur(14px); }
.wordmark { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.wordmark span { font-family: var(--serif); font-size: 1.45rem; letter-spacing: .13em; }
.wordmark small { margin-top: 6px; font-size: .52rem; letter-spacing: .31em; }
.site-nav { display: flex; gap: clamp(15px, 1.7vw, 32px); align-items: center; }
.site-nav a { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-nav a:not(.nav-book) { position: relative; }
.site-nav a:not(.nav-book)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; content: ""; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-book { padding: 11px 18px; border: 1px solid currentColor; }
.language-switcher { display: flex; gap: 8px; align-items: center; padding-left: 4px; }
.language-switcher a { padding: 5px 2px; opacity: .62; font-size: .62rem; letter-spacing: .08em; }
.language-switcher a:hover, .language-switcher a[aria-current="page"] { opacity: 1; }
.language-switcher a[aria-current="page"] { color: var(--gold-light); }
.site-header.scrolled .language-switcher a[aria-current="page"] { color: #9a7136; }
.menu-toggle { display: none; padding: 8px; border: 0; color: inherit; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 28px; height: 1px; margin: 7px 0; background: currentColor; transition: transform .25s; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: center; padding: 140px 6vw 90px; background: var(--forest-deep); }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 58% center; }
.hero-shade { background: linear-gradient(90deg, rgba(6,20,16,.88) 0%, rgba(6,20,16,.62) 35%, rgba(6,20,16,.08) 70%), linear-gradient(0deg, rgba(6,20,16,.38), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(770px, 88vw); }
.hero-logo { width: 102px; height: auto; margin-bottom: 25px; opacity: .96; }
.hero-intro { max-width: 610px; margin-bottom: 36px; color: rgba(255,255,255,.84); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.45; }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.hero-location { position: absolute; z-index: 2; right: 5vw; bottom: 44px; margin: 0; color: rgba(255,255,255,.8); font-size: .7rem; letter-spacing: .15em; line-height: 1.6; text-align: right; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 2; bottom: 0; left: 50%; width: 1px; height: 72px; overflow: hidden; background: rgba(255,255,255,.3); }
.scroll-cue span { display: block; width: 100%; height: 35%; background: #fff; animation: scroll 2.2s ease-in-out infinite; }
@keyframes scroll { 0% { transform: translateY(-120%); } 70%, 100% { transform: translateY(310%); } }

.story { overflow: hidden; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.story-copy { padding-top: 50px; }
.story-copy > p:not(.lead) { max-width: 590px; color: var(--muted); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.facts div { display: flex; flex-direction: column; }
.facts strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.facts span { color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.story-images { position: relative; display: grid; grid-template-columns: 1fr .39fr; gap: 24px; margin-top: 100px; align-items: end; }
.image-frame { margin: 0; overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.image-frame:hover img { transform: scale(1.025); }
.image-frame-wide { height: min(58vw, 680px); }
.image-frame-small { height: min(40vw, 480px); transform: translateY(45px); }
.image-note { position: absolute; right: 0; bottom: -42px; width: 39%; margin: 0; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1rem; }

.rooms { background: var(--paper); }
.rooms-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 12vw; align-items: end; margin-bottom: 90px; }
.rooms-heading > p { max-width: 470px; margin-bottom: 38px; color: var(--muted); }
.room-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card { margin: 0; }
.room-card-lift { transform: translateY(45px); }
.room-image { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.room-image:hover img { transform: scale(1.035); filter: saturate(.85); }
.room-meta { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: baseline; padding-top: 22px; border-top: 1px solid var(--line); }
.room-meta span, .room-meta p { margin: 0; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.room-meta h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.02em; }

.experience { color: #fff; background: var(--forest); }
.experience-intro { margin-bottom: 80px; }
.experience-intro h2 { max-width: 1050px; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.experience-card figure { aspect-ratio: 4 / 3; margin: 0 0 35px; overflow: hidden; }
.experience-card figure img { width: 100%; height: 100%; object-fit: cover; }
.experience-card > div { padding-left: 8%; }
.experience-card > div p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.68); }
.experience-card h3 { margin-bottom: 22px; }
.experience-card-reverse { margin-top: 130px; }
.experience-card-reverse figure { aspect-ratio: 3 / 2; }
.experience-card .text-link { margin-top: 18px; }

.gallery { overflow: hidden; background: var(--cream); }
.gallery-heading { margin-bottom: 70px; }
.gallery-grid { width: min(94vw, 1500px); margin: auto; display: grid; grid-template-columns: 1.35fr .65fr; grid-template-areas: "a b" "quote c"; gap: clamp(18px, 3vw, 48px); align-items: center; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-a { grid-area: a; aspect-ratio: 3 / 2; }
.gallery-b { grid-area: b; aspect-ratio: 3 / 4; }
.gallery-c { grid-area: c; aspect-ratio: 4 / 3; }
.gallery-quote { grid-area: quote; max-width: 600px; margin: 60px auto; padding: 0 5vw; }
.gallery-quote p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 4rem); line-height: 1.2; }

.location { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.location-copy > p:not(.eyebrow) { max-width: 500px; color: var(--muted); }
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin: 42px 0; padding: 32px 0; border-block: 1px solid var(--line); list-style: none; }
.amenities li { font-size: .82rem; }
.amenities span { margin-right: 8px; color: var(--gold); }
.location-image { height: min(65vw, 740px); margin: 0; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }

.contact { position: relative; color: #fff; text-align: center; background: var(--forest-deep); }
.contact::before { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle at 20% 20%, var(--gold) 0 1px, transparent 1.5px); background-size: 25px 25px; content: ""; }
.contact-inner { position: relative; }
.contact .eyebrow::before { display: none; }
.contact h2 { margin-bottom: 28px; }
.contact-inner > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.contact-actions { display: flex; justify-content: center; gap: 14px; margin: 44px 0 65px; }
.contact-details { display: flex; justify-content: center; gap: 26px; color: rgba(255,255,255,.72); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-details > * + * { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.25); }

.site-footer { padding-block: 60px; color: #fff; background: #081914; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr .8fr; gap: 5vw; align-items: start; }
.footer-wordmark { width: max-content; }
.site-footer p { margin: 0; color: rgba(255,255,255,.56); font-size: .8rem; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { margin-bottom: 5px; }
.legal { text-align: right; }

.js .reveal { opacity: 0; transform: translateY(35px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 1121px) {
  html[lang="de"] h1 { font-size: clamp(4rem, 7.2vw, 7.3rem); }
}

@media (max-width: 1120px) {
  .site-header { height: 76px; padding-inline: 5.5vw; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .menu-open .site-header { color: #fff; background: transparent; box-shadow: none; }
  .menu-open .wordmark { position: relative; z-index: 2; }
  .menu-open .menu-toggle span:not(.sr-only):nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:not(.sr-only):nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 25px; color: #fff; background: var(--forest-deep); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .site-nav .nav-book { margin-top: 15px; padding: 12px 25px; font-family: var(--sans); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
  .language-switcher { gap: 16px; margin-top: 12px; padding-left: 0; }
  .site-nav .language-switcher a { font-family: var(--sans); font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
  .menu-open .site-nav { opacity: 1; visibility: visible; }
}

@media (max-width: 900px) {
  :root { --container: min(89vw, 680px); }
  .section { padding-block: 90px; }
  .hero { min-height: 820px; padding-inline: 5.5vw; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,20,16,.87), rgba(6,20,16,.2)), linear-gradient(0deg, rgba(6,20,16,.58), transparent 55%); }
  .hero-content { padding-top: 20px; }
  .hero-location, .scroll-cue { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .story-grid, .rooms-heading, .experience-grid, .location-grid { grid-template-columns: 1fr; gap: 35px; }
  .story-copy { padding-top: 0; }
  .story-images { grid-template-columns: 1fr .5fr; margin-top: 65px; }
  .image-frame-wide { height: 66vw; }
  .image-frame-small { height: 45vw; }
  .rooms-heading { margin-bottom: 55px; }
  .room-list { grid-template-columns: 1fr; gap: 60px; }
  .room-card-lift { transform: none; }
  .room-image { aspect-ratio: 4 / 4.4; }
  .experience-card-reverse { margin-top: 25px; }
  .experience-card > div { padding-left: 0; }
  .gallery-grid { width: var(--container); grid-template-columns: 1fr; grid-template-areas: "a" "quote" "b" "c"; }
  .gallery-b { aspect-ratio: 4 / 3; }
  .gallery-quote { margin-block: 30px; padding: 0; }
  .location-image { grid-row: 1; height: 72vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal { text-align: left; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(3.6rem, 18vw, 5.3rem); }
  h2 { font-size: clamp(3rem, 14.5vw, 4.6rem); line-height: 1.02; }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 67% center; }
  .hero-logo { width: 84px; }
  .facts { grid-template-columns: 1fr; }
  .facts div { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
  .story-images { display: block; }
  .image-frame-wide { height: 95vw; }
  .image-frame-small { width: 62%; height: 78vw; margin: -45px 0 0 auto; transform: none; border: 10px solid var(--cream); }
  .image-note { position: static; width: 100%; margin-top: 18px; }
  .rooms-heading > p { margin-bottom: 0; }
  .room-meta { grid-template-columns: 25px 1fr; }
  .room-meta p { grid-column: 2; }
  .amenities { grid-template-columns: 1fr; }
  .contact-actions, .contact-details { flex-direction: column; align-items: stretch; }
  .contact-details { gap: 12px; }
  .contact-details > * + * { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

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