/* =====================================================================
   RHEINWERK KÖLN — Bold Design Hotel Template
   Design language: Bold Swiss / Editorial — concrete white, ink black,
   Cologne red. Archivo (heavy, expanded) + Space Mono. Big numbers, grids.
   ===================================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- TOKENS ---------- */
:root {
  --paper:      #EDEBE3;
  --paper-2:    #E3E0D5;
  --concrete:   #CFCBBE;
  --ink:        #141311;
  --ink-2:      #0B0B09;
  --red:        #E5341F;
  --red-deep:   #BE2A14;
  --on-dark:    #F1EFE7;
  --on-dark-mut:rgba(241,239,231,0.66);
  --muted:      rgba(20,19,17,0.64);
  --muted-2:    rgba(20,19,17,0.45);
  --line:       rgba(20,19,17,0.16);
  --line-2:     rgba(20,19,17,0.30);
  --line-bold:  rgba(20,19,17,0.92);
  --line-light: rgba(241,239,231,0.18);

  --f-display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, 'Courier New', monospace;

  --ease: cubic-bezier(0.5, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);

  --gutter: clamp(1.1rem, 4.5vw, 5rem);
  --maxw: 1560px;
  --nav-h: 78px;
}

/* ---------- BASE ---------- */
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 420;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; height: 100vh; }

/* Display type = heavy + expanded Archivo, uppercase, tight */
.display, .hero__title, .signature__title, .kulinarik__title,
.reservierung__title, .footer__wordmark, .suite__name {
  font-family: var(--f-display);
  font-variation-settings: "wght" 840, "wdth" 118;
  font-weight: 840;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.display {
  font-size: clamp(2.3rem, 1rem + 6vw, 6.4rem);
}
.display em, .hero__title em, .signature__title em, .kulinarik__title em,
.reservierung__title em { font-style: normal; color: var(--red); }

/* ---------- SHARED ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.eyebrow--light { color: var(--red); }

.section-head { padding: clamp(3.5rem,9vw,8rem) var(--gutter) clamp(1.8rem,4vw,3rem); max-width: var(--maxw); margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- BUTTONS (bold, blocky) ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--f-mono);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95rem 0.95rem 0.95rem 1.4rem;
  border-radius: 4px;
  transition: transform .45s var(--ease), background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn:active { transform: translateY(2px); }
.btn__icon {
  width: 30px; height: 30px; border-radius: 3px;
  display: inline-grid; place-items: center;
  background: rgba(20,19,17,0.1);
  transition: transform .45s var(--ease), background-color .45s var(--ease);
}
.btn__icon svg { width: 15px; height: 15px; }
.btn:hover .btn__icon { transform: translate(3px, 0); }

.btn--solid { background: var(--ink); color: var(--on-dark); }
.btn--solid .btn__icon { background: rgba(241,239,231,0.16); }
.btn--solid:hover { background: var(--red); color: #fff; }
.btn--solid:hover .btn__icon { background: rgba(0,0,0,0.2); }

.btn--pill { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--pill:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn--pill:hover .btn__icon { background: rgba(0,0,0,0.2); }

.btn--ghost { border: 2px solid var(--line-2); color: var(--ink); }
.btn--ghost .btn__icon { background: rgba(20,19,17,0.08); }
.btn--ghost:hover { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.btn--ghost:hover .btn__icon { background: rgba(241,239,231,0.16); }
.btn--ghost-light { border-color: var(--line-light); color: var(--on-dark); }
.btn--ghost-light .btn__icon { background: rgba(241,239,231,0.12); }
.btn--ghost-light:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--ghost-light:hover .btn__icon { background: rgba(20,19,17,0.14); }

.btn--mini {
  padding: 0.6rem 1.1rem; border-radius: 3px;
  border: 2px solid var(--ink); font-size: 0.68rem;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.btn--mini:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn--block { width: 100%; justify-content: space-between; margin-top: 1.4rem; }

/* ---------- GRAIN + PROGRESS ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045; mix-blend-mode: multiply;
  animation: grainShift 7s steps(6) infinite;
}
@keyframes grainShift {
  0%{transform:translate(0,0)} 20%{transform:translate(-6%,4%)} 40%{transform:translate(4%,-5%)}
  60%{transform:translate(-3%,3%)} 80%{transform:translate(5%,2%)} 100%{transform:translate(0,0)}
}
@media (hover: none), (pointer: coarse) { .grain { display: none; } }
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 190; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; }

/* ---------- CURSOR ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; mix-blend-mode: difference; }
.cursor__ring {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 2px solid rgba(255,255,255,0.75); border-radius: 2px;
  transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), opacity .3s, border-radius .35s var(--ease);
}
.cursor__dot { position: fixed; top: 0; left: 0; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: #fff; transition: opacity .3s; }
.cursor__label {
  position: fixed; top: 0; left: 0; transform: translate(-50%,-50%);
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  opacity: 0; transition: opacity .3s; white-space: nowrap; font-weight: 700;
}
.cursor.is-hover .cursor__ring { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
.cursor.is-label .cursor__ring { width: 82px; height: 82px; margin: -41px 0 0 -41px; background: rgba(255,255,255,0.1); }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-down .cursor__ring { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 250; background: var(--ink-2);
  display: flex; flex-direction: column; justify-content: flex-end; padding: var(--gutter);
  animation: preFailsafe 0s linear 7s forwards;
}
@keyframes preFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader.is-done { pointer-events: none; }
.preloader__inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; width: 100%; }
.preloader__brand {
  font-family: var(--f-display); font-variation-settings: "wght" 880, "wdth" 120; font-weight: 880;
  text-transform: uppercase; color: var(--on-dark); font-size: clamp(2.6rem, 11vw, 11rem);
  line-height: 0.82; letter-spacing: -0.03em; display: flex; overflow: hidden;
}
.preloader__word { display: inline-block; transform: translateY(110%); }
.preloader__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; color: var(--on-dark-mut); padding-bottom: 0.5rem; font-family: var(--f-mono); }
.preloader__tag { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.preloader__count { font-family: var(--f-mono); font-size: 1.3rem; color: var(--on-dark); }
.preloader__count i { color: var(--red); margin: 0 0.25rem; font-style: normal; }
.preloader__count em { font-style: normal; }
.preloader__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: rgba(241,239,231,0.12); }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--red); }

/* ============================================================ NAV */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 180; padding: 1.1rem var(--gutter); transition: padding .5s var(--ease); }
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 0.5rem 0.5rem 0.5rem 1.3rem; border-radius: 6px;
  border: 2px solid transparent;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
}
.nav.is-scrolled .nav__inner {
  background: rgba(237,235,227,0.82);
  border-color: var(--line-2);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--f-display); font-variation-settings: "wght" 850, "wdth" 115; font-weight: 850; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--on-dark); transition: color .5s var(--ease); }
.nav__mark { width: 24px; height: 24px; color: var(--red); }
.nav.is-scrolled .nav__brand { color: var(--ink); }

.nav__links { display: flex; gap: 1.8rem; }
.nav__links a { position: relative; font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--on-dark); opacity: 0.85; transition: color .4s var(--ease); padding: 0.3rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__right { display: flex; align-items: center; gap: 0.7rem; }
.nav__cta { color: var(--on-dark); border-color: var(--line-light); }
.nav__cta .btn__icon { background: rgba(241,239,231,0.14); }
.nav__cta:hover { background: var(--red); color: #fff; border-color: var(--red); }
.nav.is-scrolled .nav__cta { color: var(--ink); border-color: var(--ink); }
.nav.is-scrolled .nav__cta:hover { background: var(--red); color: #fff; border-color: var(--red); }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 4px; border: 2px solid var(--line-light); position: relative; }
.nav.is-scrolled .nav__burger { border-color: var(--ink); }
.nav__burger span { position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--on-dark); transition: transform .5s var(--ease), background-color .5s; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger span:nth-child(1) { transform: translate(-50%, -4px); }
.nav__burger span:nth-child(2) { transform: translate(-50%, 4px); }
body.menu-open .nav__burger span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); background: var(--on-dark); }
body.menu-open .nav__burger span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); background: var(--on-dark); }

/* ============================================================ MENU */
.menu { position: fixed; inset: 0; z-index: 175; visibility: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.menu__bg { position: absolute; inset: 0; background: var(--ink-2); clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease); }
body.menu-open .menu { visibility: visible; }
body.menu-open .menu__bg { clip-path: inset(0 0 0% 0); }
.menu__inner {
  position: relative; z-index: 2; min-height: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) var(--gutter);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-content: safe center;
}
.menu__list { margin-top: 1.2rem; }
.menu__list li { overflow: hidden; }
.menu__list a { display: flex; align-items: baseline; gap: 1.2rem; padding: 0.25rem 0; color: var(--on-dark); font-family: var(--f-display); font-variation-settings: "wght" 820, "wdth" 115; font-weight: 820; text-transform: uppercase; font-size: clamp(1.9rem, 5.5vw, 4.4rem); letter-spacing: -0.02em; transform: translateY(110%); transition: color .4s var(--ease); }
.menu__list a:hover { color: var(--red); }
.menu__list a:hover .menu__text { transform: translateX(0.5rem); }
.menu__idx { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--red); opacity: 0.9; }
.menu__text { display: inline-block; transition: transform .4s var(--ease); }
.menu__col--info { display: flex; flex-direction: column; justify-content: center; gap: 2.2rem; color: var(--on-dark-mut); font-family: var(--f-mono); font-size: 0.85rem; }
.menu__info-block .eyebrow { margin-bottom: 0.8rem; }
.menu__info-block p { line-height: 1.9; }
.menu__phone, .menu__mail { display: block; color: var(--on-dark); font-family: var(--f-display); font-variation-settings:"wght" 780,"wdth" 110; text-transform: uppercase; font-size: 1.3rem; margin-top: 0.2rem; transition: color .4s; }
.menu__phone:hover, .menu__mail:hover { color: var(--red); }
.menu__mail { font-size: 0.95rem; }
.menu__socials { display: flex; gap: 1.4rem; }
.menu__socials a { font-family: var(--f-mono); font-size: 0.78rem; text-transform: uppercase; color: var(--on-dark); position: relative; }
.menu__socials a::after { content:""; position:absolute; left:0; bottom:-3px; width:100%; height:2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.menu__socials a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- NAV / MENU active (scrollspy) ---------- */
.nav__links a.is-active { color: var(--red); opacity: 1; }
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav.is-scrolled .nav__links a.is-active { color: var(--red); }
.menu__list a.is-active { color: var(--red); }

/* ---------- SECTION RAIL (wayfinding) ---------- */
.railnav { position: fixed; right: clamp(0.75rem, 1.4vw, 1.6rem); top: 50%; transform: translateY(-50%); z-index: 160; display: flex; flex-direction: column; gap: 0.1rem; color: var(--ink); transition: opacity .4s var(--ease); }
.railnav.on-dark { color: var(--on-dark); }
.railnav--dim { opacity: 0; pointer-events: none; }
.railnav__item { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: 0.55rem; padding: 0.26rem 0; }
.railnav__dot { width: 20px; height: 2px; background: currentColor; opacity: 0.4; flex: 0 0 auto; transition: width .3s var(--ease), opacity .3s, background-color .3s; }
.railnav__label { font-family: var(--f-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; color: var(--on-dark); background: var(--ink); padding: 0.2rem 0.5rem; border-radius: 3px; opacity: 0; transform: translateX(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none; }
.railnav:hover .railnav__label { opacity: 1; transform: translateX(0); }
.railnav__item:hover .railnav__dot { opacity: 0.9; width: 28px; }
.railnav__item.is-active .railnav__dot { width: 34px; opacity: 1; background: var(--red); }
.railnav__item.is-active .railnav__label { opacity: 1; transform: translateX(0); background: var(--red); color: #fff; }
@media (max-width: 1200px) { .railnav { display: none; } }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: var(--gutter); }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img { position: absolute; top: -9%; left: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; transform: scale(1.06); }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(11,11,9,0.9) 0%, rgba(11,11,9,0.28) 45%, rgba(11,11,9,0.34) 72%, rgba(11,11,9,0.6) 100%); }

.hero__content { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; width: 100%; color: var(--on-dark); padding-bottom: clamp(1.2rem,3vw,2.4rem); }
.hero__top { margin-bottom: 1.4rem; }
.hero__title { font-size: clamp(3.2rem, 1rem + 12vw, 12rem); line-height: 0.86; color: var(--on-dark); font-variation-settings: "wght" 860, "wdth" 120; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .split { display: inline-block; }
.hero__title em { color: var(--red); }
.hero__lead { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero__lead p { max-width: 42ch; color: rgba(241,239,231,0.88); font-family: var(--f-body); font-weight: 460; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem); line-height: 1.55; }
.hero__scroll { display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark); }
.hero__scroll i { width: 40px; height: 40px; border: 2px solid var(--line-light); border-radius: 3px; position: relative; }
.hero__scroll i::before { content:""; position:absolute; left:50%; top:11px; width:2px; height:10px; background: var(--red); transform: translateX(-50%); animation: scrollHint 1.7s var(--ease) infinite; }
@keyframes scrollHint { 0%{opacity:0; transform: translate(-50%,-6px)} 40%{opacity:1} 100%{opacity:0; transform: translate(-50%,10px)} }

/* Booking bar */
.bookbar {
  position: relative; z-index: 3; max-width: var(--maxw); margin: clamp(1.4rem,3vw,2.2rem) auto 0; width: 100%;
  display: flex; align-items: stretch; gap: 2px;
  background: var(--ink); border: 2px solid var(--ink); border-radius: 6px; padding: 2px;
}
.bookbar__field { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; padding: 0.75rem 1.1rem; background: var(--paper); transition: background-color .35s var(--ease); min-width: 0; }
.bookbar__field:first-of-type { border-radius: 4px 0 0 4px; }
.bookbar__field:hover { background: var(--paper-2); }
.bookbar__field label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-deep); }
.bookbar__field input, .bookbar__field select { font-family: var(--f-display); font-variation-settings:"wght" 680,"wdth" 105; text-transform: uppercase; font-size: 0.95rem; color: var(--ink); width: 100%; cursor: pointer; }
.bookbar__field input::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.bookbar__sep { display: none; }
.bookbar__submit { flex: 0 0 auto; border-radius: 0 4px 4px 0; }

/* Hero marquee */
.hero__marquee { position: relative; z-index: 2; max-width: var(--maxw); margin: clamp(1.2rem,2.5vw,1.8rem) auto 0; width: 100%; overflow: hidden; border-top: 2px solid var(--line-light); border-bottom: 2px solid var(--line-light); padding: 0.7rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,239,231,0.72); white-space: nowrap; }
.marquee__star { color: var(--red) !important; }

/* ============================================================ ANKUNFT */
.ankunft { max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem,11vw,10rem) var(--gutter); }
.ankunft__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem,6vw,6rem); align-items: start; }
.ankunft__intro .eyebrow { margin-bottom: 1.6rem; }
.ankunft__intro h2 { font-family: var(--f-display); font-variation-settings:"wght" 820,"wdth" 116; text-transform: uppercase; font-size: clamp(1.9rem, 1rem + 3.2vw, 3.8rem); line-height: 0.98; letter-spacing: -0.02em; }
.ankunft__intro h2 em { font-style: normal; color: var(--red); }
.ankunft__body p { color: var(--muted); font-size: clamp(1rem,0.95rem + 0.3vw,1.14rem); line-height: 1.7; margin-bottom: 1.3rem; max-width: 48ch; }
.ankunft__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 2.6rem; border-top: 2px solid var(--line-bold); }
.stat { padding: 1.6rem 0; border-bottom: 2px solid var(--line); }
.stat:nth-child(odd) { padding-right: 1.5rem; }
.stat:nth-child(even) { padding-left: 1.5rem; border-left: 2px solid var(--line); }
.stat__num { display: block; font-family: var(--f-display); font-variation-settings:"wght" 840,"wdth" 118; font-size: clamp(2.4rem,1.5rem + 3vw,3.8rem); line-height: 0.9; letter-spacing: -0.03em; color: var(--ink); }
.stat__num i { color: var(--red); font-style: normal; font-size: 0.5em; vertical-align: 0.4em; margin-right: 0.05em; }
.stat__label { display: block; margin-top: 0.5rem; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- STATEMENT (Haltung) — the deeper "read" moment ---------- */
.statement { background: var(--paper); padding: clamp(4.5rem,12vw,10rem) var(--gutter); border-top: 2px solid var(--line-bold); }
.statement__inner { max-width: 1120px; margin-inline: auto; }
.statement .eyebrow { margin-bottom: 1.6rem; }
.statement__title { font-family: var(--f-display); font-variation-settings: "wght" 840, "wdth" 118; text-transform: uppercase; font-size: clamp(2.4rem, 1.2rem + 5vw, 6rem); line-height: 0.88; letter-spacing: -0.02em; margin-bottom: 1.8rem; }
.statement__title em { font-style: normal; color: var(--red); }
.statement p { color: var(--ink); font-family: var(--f-body); font-weight: 480; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.5rem); line-height: 1.45; max-width: 46ch; }

/* ============================================================ SIGNATURE / 3D */
.signature { position: relative; min-height: 100svh; background: var(--ink-2); color: var(--on-dark); display: grid; place-items: center; overflow: hidden; padding: clamp(4.5rem,10vw,9rem) var(--gutter); }
.signature__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.signature::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 58% 54% at 50% 50%, rgba(11,11,9,0.5) 0%, rgba(11,11,9,0.14) 46%, transparent 72%); }
.signature__content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.signature__content .eyebrow { justify-content: center; margin-bottom: 1.8rem; }
.signature__title { font-size: clamp(2.6rem, 1rem + 8vw, 8rem); line-height: 0.88; font-variation-settings:"wght" 860,"wdth" 120; margin-bottom: 1.8rem; }
.signature__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.signature__title .split { display: inline-block; }
.signature__title em { color: var(--red); }
.signature__lead { color: var(--on-dark-mut); font-family: var(--f-body); font-weight: 460; font-size: clamp(1rem,0.95rem + 0.3vw,1.2rem); line-height: 1.6; max-width: 54ch; margin: 0 auto 2.4rem; }
.signature__hint { position: absolute; bottom: clamp(1.3rem,4vw,2.6rem); left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mut); }

/* ============================================================ SUITEN / ZIMMER */
.suiten { background: var(--paper-2); }
.suiten__head { max-width: var(--maxw); margin-inline: auto; padding: clamp(3.5rem,9vw,7rem) var(--gutter) clamp(1.8rem,4vw,3rem); display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: end; }
.suiten__head .eyebrow { margin-bottom: 1.2rem; }
.suiten__desc { color: var(--muted); max-width: 42ch; line-height: 1.65; }

/* default (mobile / no-js) : vertical stack */
.suiten__viewport { padding: 0 var(--gutter) clamp(3rem,6vw,5rem); }
.suiten__track { display: flex; flex-direction: column; gap: 2.5rem; max-width: var(--maxw); margin-inline: auto; }
.suite { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.suite__media { overflow: hidden; aspect-ratio: 16/10; border-radius: 5px; background: var(--concrete); }
.suite__media img { width: 100%; height: 112%; object-fit: cover; }
.suite__info { display: flex; flex-direction: column; gap: 0.8rem; }
.suite__row { display: flex; justify-content: space-between; align-items: center; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.suite__idx { color: var(--red-deep); }
.suite__name { font-size: clamp(1.8rem,1.2rem + 2vw,3rem); }
.suite__text { color: var(--muted); line-height: 1.6; max-width: 44ch; }
.suite__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.3rem; padding-top: 1rem; border-top: 2px solid var(--line); }
.suite__price { font-family: var(--f-mono); font-size: 0.78rem; color: var(--muted); text-transform: uppercase; }
.suite__price em { font-family: var(--f-display); font-variation-settings:"wght" 820,"wdth" 112; font-size: 1.5rem; font-style: normal; color: var(--ink); }
.suiten__end { display: flex; flex-direction: column; gap: 1.4rem; justify-content: center; padding: 2rem 0; }
.suiten__end .btn--solid { align-self: flex-start; }
.suiten__progress { display: none; }

/* Desktop horizontal */
.suiten--h .suiten__viewport { height: 100svh; overflow: hidden; padding: 0; display: flex; align-items: center; }
.suiten--h .suiten__track { flex-direction: row; flex-wrap: nowrap; gap: clamp(1.5rem,3vw,3.5rem); padding: 0 var(--gutter); max-width: none; margin: 0; will-change: transform; align-items: center; height: auto; }
.suiten--h .suite { grid-template-columns: 1fr; width: clamp(320px, 33vw, 460px); flex: 0 0 auto; gap: 1.25rem; }
.suiten--h .suite__media { aspect-ratio: 5/6; }
.suiten--h .suite__name { font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem); }
.suiten--h .suite__text { font-size: 0.9rem; }
.suiten--h .suiten__end { width: clamp(320px, 30vw, 440px); flex: 0 0 auto; }
.suiten--h .suiten__progress { display: block; height: 3px; background: var(--line); max-width: var(--maxw); margin: 0 auto; }
.suiten--h .suiten__progress span { display: block; height: 100%; width: 0%; background: var(--red); transform-origin: left; }
@media (min-width: 1025px) and (max-height: 860px) {
  .suiten--h .suite__media { aspect-ratio: auto; height: min(50svh, 500px); }
  .suiten--h .suite { gap: 1rem; }
}

/* ============================================================ ERLEBNISSE (bento) */
.erlebnisse { max-width: var(--maxw); margin-inline: auto; padding-bottom: clamp(3.5rem,9vw,7rem); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(210px, 25vh); gap: 6px; padding: 0 var(--gutter); }
.bento__card { grid-column: span 2; grid-row: span 1; }
.bento__card--tall { grid-column: span 2; grid-row: span 2; }
.bento__card--wide { grid-column: span 2; grid-row: span 1; }

.shell { display: block; background: var(--ink); border: 2px solid var(--ink); border-radius: 6px; padding: 0; }
.shell__core { position: relative; height: 100%; border-radius: 4px; overflow: hidden; }
.bento__card .shell__core { min-height: 100%; }
.bento__media { position: absolute; inset: 0; }
.bento__media img { width: 100%; height: 118%; object-fit: cover; transition: transform .9s var(--ease); }
.bento__card:hover .bento__media img { transform: scale(1.06); }
.bento__card .shell__core::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,11,9,0.85), rgba(11,11,9,0.05) 55%); }
.bento__label { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(1.1rem,2vw,1.8rem); color: var(--on-dark); }
.bento__idx { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--red); }
.bento__label h3 { font-family: var(--f-display); font-variation-settings:"wght" 820,"wdth" 116; text-transform: uppercase; font-size: clamp(1.3rem,1rem + 1.3vw,2.1rem); margin: 0.35rem 0 0.3rem; letter-spacing: -0.01em; line-height: 0.95; }
.bento__label p { font-family: var(--f-body); font-weight: 460; font-size: 0.85rem; color: var(--on-dark-mut); max-width: 34ch; }
.bento__card { transition: transform .5s var(--ease); }
.bento__card:hover { transform: translateY(-4px); }

/* ============================================================ KULINARIK */
.kulinarik { position: relative; background: var(--ink); color: var(--on-dark); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.kulinarik__sticky { position: sticky; top: 0; align-self: start; height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: var(--gutter); gap: 1.3rem; }
.kulinarik__sticky .eyebrow { color: var(--red); margin-bottom: 0.4rem; }
.kulinarik__title { font-size: clamp(2.4rem,1.2rem + 5vw,5.6rem); line-height: 0.88; font-variation-settings:"wght" 850,"wdth" 118; }
.kulinarik__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.kulinarik__title .split { display: inline-block; }
.kulinarik__title em { color: var(--red); }
.kulinarik__sticky p { color: var(--on-dark-mut); font-family: var(--f-body); font-weight: 460; line-height: 1.65; max-width: 46ch; margin-top: 0.4rem; }
.kulinarik__list { margin-top: 1rem; border-top: 2px solid var(--line-light); }
.kulinarik__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 2px solid var(--line-light); }
.kulinarik__list span { font-family: var(--f-display); font-variation-settings:"wght" 800,"wdth" 112; text-transform: uppercase; font-size: 1.4rem; }
.kulinarik__list i { font-family: var(--f-mono); font-style: normal; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--on-dark-mut); text-align: right; }
.kulinarik__media { display: flex; flex-direction: column; gap: clamp(1rem,3vw,2rem); padding: clamp(3.5rem,10vw,9rem) var(--gutter) clamp(3.5rem,10vw,9rem) 0; }
.kulinarik__fig { overflow: hidden; border-radius: 5px; background: var(--ink-2); }
.kulinarik__fig:nth-child(1) { aspect-ratio: 4/3; }
.kulinarik__fig:nth-child(2) { aspect-ratio: 3/4; width: 80%; align-self: flex-end; margin-top: -8%; }
.kulinarik__fig:nth-child(3) { aspect-ratio: 5/4; width: 64%; margin-top: -4%; }
.kulinarik__fig img { width: 100%; height: 118%; object-fit: cover; }

/* ============================================================ WELLNESS / GYM */
.wellness { max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem,11vw,10rem) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.wellness__media { position: relative; }
.wellness__frame { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/5; background: var(--concrete); }
.wellness__img { position: absolute; top: -9%; left: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.wellness__badge { position: absolute; right: -5%; bottom: 8%; z-index: 3; width: clamp(180px, 24vw, 250px); background: var(--red); border-color: var(--red); }
.wellness__badge .shell__core { padding: 1.3rem; overflow: visible; border-radius: 3px; }
.wellness__badge-num { display: block; font-family: var(--f-display); font-variation-settings:"wght" 840,"wdth" 116; text-transform: uppercase; font-size: 1.9rem; color: #fff; line-height: 0.9; }
.wellness__badge-txt { display: block; margin-top: 0.4rem; font-family: var(--f-mono); font-size: 0.72rem; line-height: 1.5; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.wellness__body .eyebrow { margin-bottom: 1.4rem; }
.wellness__body > p { color: var(--muted); font-family: var(--f-body); font-weight: 460; line-height: 1.7; margin: 1.4rem 0 2rem; max-width: 46ch; }
.wellness__treatments { border-top: 2px solid var(--line-bold); margin-bottom: 2.2rem; }
.treatment { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.95rem 0; border-bottom: 2px solid var(--line); }
.treatment span { font-family: var(--f-display); font-variation-settings:"wght" 760,"wdth" 110; text-transform: uppercase; font-size: 1.1rem; }
.treatment i { font-family: var(--f-mono); font-style: normal; font-size: 0.76rem; color: var(--muted); white-space: nowrap; text-transform: uppercase; }

/* ============================================================ GALERIE */
.galerie { padding-bottom: clamp(3.5rem,9vw,7rem); overflow: hidden; }
.gallery-marquee { display: flex; flex-direction: column; gap: 6px; }
.gallery-marquee__track { display: flex; gap: 6px; width: max-content; will-change: transform; }
.gcell { flex: 0 0 auto; width: clamp(260px, 30vw, 440px); aspect-ratio: 4/3; overflow: hidden; border-radius: 5px; background: var(--concrete); }
.gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gcell:hover img { transform: scale(1.05); }

/* ============================================================ STIMMEN (bold red section) */
.stimmen { background: var(--red); color: #fff; padding: clamp(4.5rem,11vw,9rem) var(--gutter); }
.stimmen__head { max-width: var(--maxw); margin: 0 auto 1.6rem; text-align: center; }
.stimmen__head .eyebrow { color: #fff; justify-content: center; }
.stimmen__slider { max-width: 1050px; margin-inline: auto; }
.stimmen__viewport { overflow: hidden; }
.stimmen__track { display: flex; will-change: transform; }
.quote { flex: 0 0 100%; text-align: center; padding: 0 clamp(0.5rem,3vw,2rem); }
.quote p { font-family: var(--f-display); font-variation-settings:"wght" 760,"wdth" 110; text-transform: uppercase; font-size: clamp(1.5rem,1rem + 2.4vw,3rem); line-height: 1.02; letter-spacing: -0.015em; color: #fff; }
.quote footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.3rem; font-family: var(--f-mono); }
.quote footer span { font-size: 0.9rem; letter-spacing: 0.02em; color: #fff; }
.quote footer i { font-style: normal; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.stimmen__nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.6rem; }
.stimmen__btn { width: 50px; height: 50px; border: 2px solid rgba(255,255,255,0.6); border-radius: 4px; display: grid; place-items: center; color: #fff; transition: background-color .4s var(--ease), color .4s var(--ease); }
.stimmen__btn svg { width: 18px; height: 18px; }
.stimmen__btn:hover { background: #fff; color: var(--red); border-color: #fff; }
.stimmen__count { font-family: var(--f-mono); font-size: 1rem; color: rgba(255,255,255,0.8); min-width: 3.5rem; text-align: center; }
.stimmen__count em { font-style: normal; color: #fff; }
.stimmen__press { max-width: var(--maxw); margin: clamp(3.5rem,7vw,5rem) auto 0; display: flex; flex-wrap: wrap; gap: 1.2rem clamp(1.8rem,5vw,3.5rem); justify-content: center; align-items: center; padding-top: 2.6rem; border-top: 2px solid rgba(255,255,255,0.3); }
.stimmen__press span { font-family: var(--f-display); font-variation-settings:"wght" 740,"wdth" 108; text-transform: uppercase; font-size: clamp(0.95rem,0.9rem + 0.5vw,1.3rem); color: rgba(255,255,255,0.8); transition: color .3s; }
.stimmen__press span:hover { color: #fff; }

/* ============================================================ LAGE */
.lage { max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem,11vw,10rem) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.lage__media { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 5/6; background: var(--concrete); }
.lage__img { position: absolute; top: -9%; left: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.lage__coords { position: absolute; left: 6%; top: 7%; width: auto; background: var(--ink); border-color: var(--ink); }
.lage__coords .shell__core { padding: 0.8rem 1.3rem; display: flex; gap: 1.1rem; overflow: visible; border-radius: 3px; }
.lage__coords span { font-family: var(--f-mono); font-size: 0.95rem; color: var(--on-dark); }
.lage__body .eyebrow { margin-bottom: 1.4rem; }
.lage__body > p { color: var(--muted); font-family: var(--f-body); font-weight: 460; line-height: 1.7; margin: 1.4rem 0 2rem; max-width: 48ch; }
.lage__arrival { border-top: 2px solid var(--line-bold); margin-bottom: 2.2rem; }
.arrival { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.95rem 0; border-bottom: 2px solid var(--line); }
.arrival__t { font-family: var(--f-display); font-variation-settings:"wght" 760,"wdth" 110; text-transform: uppercase; font-size: 1.1rem; }
.arrival__d { font-family: var(--f-mono); font-size: 0.76rem; color: var(--muted); text-align: right; text-transform: uppercase; }

/* ============================================================ RESERVIERUNG */
.reservierung { position: relative; background: var(--ink-2); color: var(--on-dark); overflow: hidden; padding: clamp(4.5rem,11vw,9rem) var(--gutter); }
.reservierung__bg { position: absolute; inset: 0; z-index: 0; }
.reservierung__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: grayscale(0.4); }
.reservierung__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to right, var(--ink-2) 20%, rgba(11,11,9,0.6)); }
.reservierung__inner { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.reservierung__head { position: sticky; top: 8vh; }
.reservierung__head .eyebrow { color: var(--red); margin-bottom: 1.6rem; }
.reservierung__title { font-size: clamp(2.4rem,1.2rem + 4.5vw,5rem); line-height: 0.9; font-variation-settings:"wght" 850,"wdth" 118; color: var(--on-dark); }
.reservierung__head > p { color: var(--on-dark-mut); font-family: var(--f-body); font-weight: 460; line-height: 1.65; margin: 1.4rem 0 2.2rem; max-width: 42ch; }
.reservierung__assist { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 1.8rem; border-top: 2px solid var(--line-light); }
.reservierung__assist .eyebrow { margin-bottom: 0.6rem; }
.reservierung__assist a { font-family: var(--f-display); font-variation-settings:"wght" 760,"wdth" 110; text-transform: uppercase; font-size: 1.25rem; color: var(--on-dark); transition: color .3s; }
.reservierung__assist a:hover { color: var(--red); }

.resform { background: transparent; border: 2px solid var(--line-light); border-radius: 6px; }
.resform__core { position: relative; padding: clamp(1.3rem,3vw,2.4rem); border-radius: 4px; }
.resform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.field label i { font-style: normal; text-transform: none; letter-spacing: 0; opacity: 0.7; color: var(--on-dark-mut); }
.field input, .field select, .field textarea {
  background: rgba(241,239,231,0.05); border: 2px solid var(--line-light); border-radius: 4px;
  padding: 0.8rem 0.95rem; color: var(--on-dark); font-family: var(--f-body); font-size: 0.95rem;
  transition: border-color .35s var(--ease), background-color .35s var(--ease); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(241,239,231,0.35); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); background: rgba(241,239,231,0.09); }
.field input.touched[aria-invalid="true"] { border-color: var(--red); }
.field select option { background: var(--ink-2); color: var(--on-dark); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.85); cursor: pointer; }
.field textarea { resize: vertical; min-height: 3rem; }

.field--stepper { gap: 0.55rem; }
.stepper { display: flex; align-items: center; justify-content: space-between; background: rgba(241,239,231,0.05); border: 2px solid var(--line-light); border-radius: 4px; padding: 0.35rem 0.4rem; }
.stepper button { width: 38px; height: 38px; border-radius: 3px; display: grid; place-items: center; color: var(--on-dark); transition: background-color .3s var(--ease); }
.stepper button svg { width: 16px; height: 16px; }
.stepper button:hover { background: var(--red); color: #fff; }
.stepper__val { font-family: var(--f-display); font-variation-settings:"wght" 800,"wdth" 112; font-size: 1.3rem; }

.resform__summary { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 2px solid var(--line-light); }
.summary__line { display: flex; justify-content: space-between; align-items: baseline; padding: 0.45rem 0; font-family: var(--f-mono); font-size: 0.82rem; text-transform: uppercase; color: var(--on-dark-mut); }
.summary__line em { font-style: normal; font-family: var(--f-display); font-variation-settings:"wght" 740,"wdth" 108; font-size: 1.05rem; color: var(--on-dark); }
.summary__line--total { margin-top: 0.4rem; padding-top: 0.9rem; border-top: 2px solid var(--line-light); }
.summary__line--total span { color: var(--on-dark); }
.summary__line--total em { font-size: 1.9rem; color: var(--red); }
.resform__fine { margin-top: 1rem; font-family: var(--f-mono); font-size: 0.68rem; line-height: 1.6; color: var(--on-dark-mut); text-transform: uppercase; }

.resform__done { position: absolute; inset: 2px; z-index: 5; background: var(--ink-2); border-radius: 4px; display: grid; place-items: center; text-align: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.resform__done.is-visible { opacity: 1; visibility: visible; }
.resform__done-inner { display: flex; flex-direction: column; align-items: center; }
.resform__check { color: var(--red); width: 62px; height: 62px; margin: 0 auto 1.4rem; }
.resform__check svg { width: 100%; height: 100%; }
.resform__done h3 { font-family: var(--f-display); font-variation-settings:"wght" 820,"wdth" 116; text-transform: uppercase; font-size: clamp(1.6rem,1.2rem + 1.5vw,2.6rem); margin-bottom: 0.7rem; line-height: 0.95; }
.resform__done p { color: var(--on-dark-mut); font-family: var(--f-body); font-weight: 460; max-width: 40ch; margin: 0 auto 1.5rem; line-height: 1.55; }
.resform__ref { display: inline-flex; flex-direction: column; gap: 0.25rem; padding: 0.9rem 1.9rem; border: 2px solid var(--line-light); border-radius: 4px; margin-bottom: 1.6rem; }
.resform__ref span { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-mut); }
.resform__ref em { font-style: normal; font-family: var(--f-display); font-variation-settings:"wght" 800,"wdth" 114; font-size: 1.5rem; color: var(--red); letter-spacing: 0.04em; }

/* ============================================================ FOOTER */
.footer { background: var(--ink); color: var(--on-dark); padding: clamp(3.5rem,8vw,6rem) var(--gutter) 2rem; }
.footer__top { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2.5rem,6vw,5rem); padding-bottom: clamp(2.5rem,5vw,4rem); border-bottom: 2px solid var(--line-light); }
.footer__wordmark { font-size: clamp(3.5rem, 2rem + 9vw, 11rem); line-height: 0.8; letter-spacing: -0.03em; color: var(--on-dark); font-variation-settings:"wght" 880,"wdth" 122; }
.footer__brandblock p { color: var(--on-dark-mut); font-family: var(--f-body); font-weight: 460; margin-top: 1.3rem; max-width: 36ch; line-height: 1.6; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col .eyebrow { margin-bottom: 0.6rem; }
.footer__col a { font-family: var(--f-mono); font-size: 0.82rem; text-transform: uppercase; color: var(--on-dark-mut); transition: color .3s, transform .3s var(--ease); width: fit-content; }
.footer__col a:hover { color: var(--red); transform: translateX(3px); }
.footer__addr { font-family: var(--f-mono); font-size: 0.8rem; color: var(--on-dark-mut); line-height: 1.7; text-transform: uppercase; }
.footer__col--news p { font-family: var(--f-body); font-weight: 460; font-size: 0.85rem; color: var(--on-dark-mut); line-height: 1.55; }
.footer__news { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.3rem; border: 2px solid var(--line-light); border-radius: 4px; padding: 0.3rem 0.3rem 0.3rem 1rem; transition: border-color .3s; }
.footer__news:focus-within { border-color: var(--red); }
.footer__news input { flex: 1; font-family: var(--f-mono); font-size: 0.82rem; color: var(--on-dark); min-width: 0; }
.footer__news input::placeholder { color: rgba(241,239,231,0.4); }
.footer__news button { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 3px; background: var(--red); color: #fff; display: grid; place-items: center; transition: transform .35s var(--ease); }
.footer__news button svg { width: 16px; height: 16px; }
.footer__news button:hover { transform: translateX(2px); }
.footer__news-done { display: inline-block; margin-top: 0.6rem; font-family: var(--f-mono); font-size: 0.8rem; text-transform: uppercase; color: var(--red); }
.footer__news-done[hidden] { display: none; }
.footer__bottom { max-width: var(--maxw); margin: 1.6rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; font-family: var(--f-mono); font-size: 0.74rem; text-transform: uppercase; color: var(--on-dark-mut); }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--red); }
.footer__totop { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark); }
.footer__totop i { width: 38px; height: 38px; border: 2px solid var(--line-light); border-radius: 3px; display: grid; place-items: center; transition: background-color .3s, transform .3s var(--ease); }
.footer__totop i svg { width: 15px; height: 15px; }
.footer__totop:hover i { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer__note { max-width: var(--maxw); margin: 2.2rem auto 0; font-family: var(--f-mono); font-size: 0.68rem; color: rgba(241,239,231,0.4); letter-spacing: 0.02em; text-transform: uppercase; }

/* ============================================================ REVEAL STATES */
.js-ready [data-reveal] { opacity: 0; transform: translateY(26px); }
.js-ready .split { transform: translateY(110%); }
.js-ready .hero__title .split, .js-ready .signature__title .split, .js-ready .kulinarik__title .split { will-change: transform; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1180px) {
  .reservierung__inner { grid-template-columns: 1fr; }
  .reservierung__head { position: static; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .ankunft__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kulinarik { grid-template-columns: 1fr; }
  .kulinarik__sticky { position: static; height: auto; padding-top: clamp(3.5rem,10vw,6rem); }
  .kulinarik__media { padding: 2rem var(--gutter) clamp(3.5rem,10vw,6rem); }
  .kulinarik__fig:nth-child(2), .kulinarik__fig:nth-child(3) { width: 100%; align-self: stretch; margin-top: 0; }
  .wellness, .lage { grid-template-columns: 1fr; }
  .lage__media { order: -1; }
  .wellness__badge { right: 5%; }
  .menu__inner { grid-template-columns: 1fr; gap: 2rem; align-content: start; }
  .menu__col--info { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
}
@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(190px, 30vh); }
  .bento__card, .bento__card--tall, .bento__card--wide { grid-column: span 2; grid-row: span 1; }
  .bento__card--tall .shell__core { min-height: 300px; }
  .suiten__head { grid-template-columns: 1fr; gap: 1.3rem; }
  .bookbar { flex-wrap: wrap; }
  .bookbar__field { flex: 1 1 42%; border-radius: 4px !important; }
  .bookbar__submit { flex: 1 1 100%; justify-content: center; margin: 0; }
}
@media (max-width: 640px) {
  .hero { justify-content: flex-start; padding-top: calc(var(--nav-h) + 0.75rem); }
  .hero__title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero__lead { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-top: 1.4rem; }
  .hero__lead p { font-size: 1rem; }
  .hero__marquee { display: none; }
  .bookbar { margin-top: auto; }
  .ankunft__stats { grid-template-columns: 1fr; }
  .stat:nth-child(even) { padding-left: 0; border-left: none; }
  .stat:nth-child(odd) { padding-right: 0; }
  .resform__grid { grid-template-columns: 1fr; }
  .field--stepper { flex-direction: column; }
  .bento { grid-template-columns: 1fr; }
  .bento__card, .bento__card--tall, .bento__card--wide { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .preloader__meta { display: none; }
}
@media (max-width: 420px) {
  .footer__cols { grid-template-columns: 1fr; }
  .bookbar__field { flex: 1 1 100%; }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
  .hero__scroll i::before { animation: none; }
  * { scroll-behavior: auto !important; }
}
