@font-face {
  font-family: "Vollkorn";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/Vollkorn-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Vollkorn";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/Vollkorn-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/Mulish-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/Mulish-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/Mulish-Bold.woff2) format("woff2");
}
:root {
  --ink: #35271C;
  --ink-soft: #5C4A3B;
  --ink-mute: #6A5340;
  --bg: #F5EFE4;
  --bg-alt: #ECE3D2;
  --surface: #FBF8F0;
  --line: rgba(53, 39, 28, 0.14);
  --accent: #3A5A40;
  --accent-dark: #2A4230;
  --accent-soft: #E1E8DD;
  --accent-fg: #FBF8F0;
  --state-frei: var(--accent);
  --state-frei-bg: var(--accent-soft);
  --state-belegt: var(--ink-mute);
  --state-belegt-bg: rgba(53, 39, 28, 0.08);
  --shadow-sm: 0 1px 2px rgba(53,39,28,0.06), 0 1px 3px rgba(53,39,28,0.06);
  --shadow-md: 0 10px 26px rgba(53,39,28,0.10), 0 2px 6px rgba(53,39,28,0.05);
  --shadow-lg: 0 30px 60px rgba(53,39,28,0.16), 0 8px 20px rgba(53,39,28,0.08);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --font-display:
    "Vollkorn",
    Georgia,
    "Times New Roman",
    serif;
  --font-body:
    "Mulish",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --t-fast: 220ms cubic-bezier(.16,1,.3,1);
  --t-base: 420ms cubic-bezier(.16,1,.3,1);
  --t-slow: 550ms cubic-bezier(.16,1,.3,1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
p a,
li a,
.gh-room-note a,
.form-note a,
.field label a,
.faq-body a,
.article-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.25rem);
  line-height: 1.06;
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.625rem);
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
  color: var(--ink-soft);
}
.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}
section.alt {
  background: var(--bg-alt);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 1rem;
  color: var(--bg);
}
.gh-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1200;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .gh-progress {
    display: none;
  }
}
body.gh-subpage {
  padding-top: 76px;
}
.gh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 0.4rem;
  transition:
    background var(--t-base),
    box-shadow var(--t-base),
    padding var(--t-base);
}
.gh-header[data-mode=transparent] {
  background:
    linear-gradient(
      to bottom,
      rgba(53, 39, 28, 0.42),
      transparent);
  box-shadow: none;
}
.gh-header[data-mode=solid] {
  background: rgba(245, 239, 228, 0.97);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.2rem;
}
.gh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1.5rem;
}
.gh-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.gh-header[data-mode=solid] .gh-brand {
  color: var(--ink);
}
.gh-brand:hover {
  color: var(--accent-soft);
}
.gh-header[data-mode=solid] .gh-brand:hover {
  color: var(--accent-dark);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: currentColor;
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-mark .leaf-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: gh-leaf-draw 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
}
.brand-mark .leaf-fill {
  fill: currentColor;
  opacity: 0;
  animation: gh-leaf-fill 0.5s ease-out 0.75s forwards;
}
.brand-mark .leaf-vein {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: gh-leaf-draw 0.6s cubic-bezier(.16, 1, .3, 1) 0.5s forwards;
}
@keyframes gh-leaf-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes gh-leaf-fill {
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark .leaf-outline,
  .brand-mark .leaf-vein {
    animation: none;
    stroke-dashoffset: 0;
  }
  .brand-mark .leaf-fill {
    animation: none;
    opacity: 1;
  }
}
.gh-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.gh-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.7rem;
  align-items: center;
}
.gh-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--t-fast);
}
.gh-header[data-mode=solid] .gh-nav a {
  color: var(--ink-soft);
}
.gh-nav a:hover {
  color: #fff;
}
.gh-header[data-mode=solid] .gh-nav a:hover {
  color: var(--ink);
}
.gh-nav a[aria-current=page] {
  color: #fff;
}
.gh-header[data-mode=solid] .gh-nav a[aria-current=page] {
  color: var(--ink);
}
.gh-nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.gh-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-fg) !important;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.gh-reserve:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  color: var(--accent-fg) !important;
}
.gh-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  color: #fff;
}
.gh-header[data-mode=solid] .gh-nav-toggle {
  color: var(--ink);
  border-color: var(--line);
}
@media (max-width: 880px) {
  .gh-nav-toggle {
    display: inline-flex;
  }
  .gh-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform var(--t-base), opacity var(--t-base);
  }
  .gh-nav[data-open=true] {
    transform: scaleY(1);
    opacity: 1;
  }
  .gh-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .gh-nav li {
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .gh-nav li:first-child {
    border-top: none;
  }
  .gh-nav a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.02rem;
    color: var(--ink-soft) !important;
  }
  .gh-nav a[aria-current=page] {
    color: var(--ink) !important;
  }
  .gh-reserve {
    margin-top: 0.9rem;
    width: 100%;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
a.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 8px 20px rgba(58, 90, 64, 0.24);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(58, 90, 64, 0.28);
}
.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-width: 1.5px;
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-ghost-light,
a.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  border-width: 1.5px;
  font-weight: 600;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-sm,
a.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  min-height: 0;
  font-weight: 600;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.section-head p {
  margin-inline: auto;
}
.section-head.left p {
  margin-inline: 0;
}
.gh-split {
  overflow: hidden;
  display: block;
}
.gh-split .line-wrap {
  overflow: hidden;
  display: block;
}
.gh-split .line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform var(--t-slow);
  transition-delay: var(--line-delay, 0ms);
}
.gh-split.is-revealed .line-inner {
  transform: translateY(0);
}
.gh-split.is-eager .line-inner {
  transform: translateY(0);
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .gh-split .line-inner {
    transform: none !important;
    transition: none !important;
  }
}
.gh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.gh-hero-facade {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(2px, 0.6vw, 8px);
  padding: 0;
}
.gh-window {
  position: relative;
  overflow: hidden;
  border-radius: 42% 42% 6px 6px / 24% 24% 6px 6px;
  opacity: 0;
  transform: scale(0.94);
  animation: gh-window-glow 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--d, 0) * 130ms + 260ms);
  background: var(--ink);
}
.gh-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.86);
}
.gh-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(53, 39, 28, 0.05),
      rgba(53, 39, 28, 0.55));
  mix-blend-mode: multiply;
}
.gh-window.gh-door {
  grid-column: span 2;
  grid-row: span 2;
  order: -1;
}
@keyframes gh-window-glow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gh-window {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 720px) {
  .gh-hero-facade {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .gh-window.gh-door {
    grid-column: span 3;
    grid-row: span 1;
    order: 99;
  }
}
.gh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(53, 39, 28, 0.15) 0%,
      rgba(53, 39, 28, 0.35) 55%,
      rgba(31, 22, 15, 0.86) 100%);
  z-index: 1;
}
.gh-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 8vw, 4.5rem);
}
.gh-hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
}
.gh-hero-title {
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: 16ch;
}
.gh-hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.gh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.gh-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.gh-hero-meta a {
  color: #fff;
  font-weight: 600;
}
.gh-hero-meta a:hover {
  color: var(--accent-soft);
}
.gh-hero-meta .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}
.gh-hero-meta em {
  font-style: italic;
  color: var(--accent-soft);
}
@media (min-width: 961px) {
  .gh-hero-facade {
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gh-hero-facade {
    transform: none !important;
  }
}
.gh-editorial {
  position: relative;
}
.gh-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.gh-editorial-row.is-reverse {
  direction: rtl;
}
.gh-editorial-row.is-reverse > * {
  direction: ltr;
}
.gh-editorial-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.gh-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gh-editorial-text {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--bg);
  border-radius: var(--radius-lg);
}
.gh-editorial-row:not(.is-reverse) .gh-editorial-text {
  margin-left: clamp(-3rem, -4vw, -1.5rem);
}
.gh-editorial-row.is-reverse .gh-editorial-text {
  margin-right: clamp(-3rem, -4vw, -1.5rem);
}
@media (max-width: 880px) {
  .gh-editorial-row,
  .gh-editorial-row.is-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .gh-editorial-text {
    margin: -2rem 1rem 0 !important;
  }
}
.gh-editorial-list {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.gh-editorial-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}
.gh-editorial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.gh-full-bleed {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.gh-full-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gh-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(53, 39, 28, 0.82) 0%,
      rgba(53, 39, 28, 0.4) 60%,
      rgba(53, 39, 28, 0.15) 100%);
  z-index: 1;
}
.gh-full-bleed .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}
.gh-full-bleed h2 {
  color: #fff;
}
.gh-full-bleed p {
  color: rgba(255, 255, 255, 0.86);
}
.gh-parallax-bg {
  position: relative;
  overflow: hidden;
}
.gh-parallax-bg::before {
  content: "";
  position: absolute;
  inset: -24px 0;
  z-index: 0;
  background: inherit;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.usps {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.usp {
  padding: 1.5rem;
}
.usp-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-soft);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.usp-icon svg path,
.usp-icon svg circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.usp.is-visible .usp-icon svg path,
.usp.is-visible .usp-icon svg circle {
  animation: gh-leaf-draw 0.7s cubic-bezier(.16, 1, .3, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .usp-icon svg path,
  .usp-icon svg circle {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
}
.usp h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.usp p {
  font-size: 0.95rem;
  margin: 0;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
.stats {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.stats .container {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      at 80% 30%,
      rgba(58, 90, 64, 0.28) 0%,
      transparent 55%);
  pointer-events: none;
}
.stat {
  position: relative;
  padding-inline: 0.5rem;
  padding-top: 1rem;
}
.stat::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-soft);
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 720px) {
  .stat + .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.5rem;
  }
}
.stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  display: block;
  max-width: 22ch;
  margin-inline: auto;
}
.pullquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1rem;
  position: relative;
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent);
}
.gh-bio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.gh-bio-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.gh-bio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 880px) {
  .gh-bio {
    grid-template-columns: 1fr;
  }
}
.gh-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gh-testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.gh-testimonial:hover {
  box-shadow: var(--shadow-md);
}
.gh-testimonial .stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.gh-testimonial p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  flex: 1;
}
.gh-testimonial .who {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}
.gh-testimonial .meta {
  font-size: 0.82rem;
  color: var(--ink-mute);
}
@media (min-width: 961px) {
  .gh-tilt {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
    transition: transform var(--t-fast);
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gh-tilt {
    transform: none !important;
  }
}
.gh-room-note {
  background: var(--accent-soft);
  border: 1px solid rgba(58, 90, 64, 0.22);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.gh-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.gh-room-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gh-room-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.gh-room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(26% 8% 26% 8% round 4px);
  animation: gh-room-open linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
@keyframes gh-room-open {
  from {
    clip-path: inset(26% 8% 26% 8% round 4px);
  }
  to {
    clip-path: inset(0% 0% 0% 0% round 4px);
  }
}
@supports not (animation-timeline: view()) {
  .gh-room-photo img {
    clip-path: none;
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gh-room-photo img {
    clip-path: none !important;
    animation: none !important;
  }
}
.gh-room-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--state-frei-bg);
  color: var(--state-frei);
}
.gh-room-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.gh-room-badge.is-belegt {
  background: var(--state-belegt-bg);
  color: var(--state-belegt);
}
.gh-room-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gh-room-card-body .kind {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}
.gh-room-card-body h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  margin-bottom: 0.5rem;
}
.gh-room-card-body ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}
.gh-room-card-body ul li {
  font-size: 0.84rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.gh-room-card-body ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.gh-room-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.gh-room-price .amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.gh-room-price .amount span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.gh-menu-section {
  margin-bottom: 3rem;
}
.gh-menu-section:last-child {
  margin-bottom: 0;
}
.gh-menu-section h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1.2rem;
  display: inline-block;
}
.gh-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.5rem;
  align-items: baseline;
  padding-block: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.gh-menu-item:last-child {
  border-bottom: none;
}
.gh-menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.gh-menu-item p {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.gh-menu-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.gh-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gh-gallery-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .gh-gallery-row {
    grid-template-columns: 1fr 1fr;
  }
  .gh-gallery-row img:first-child {
    grid-column: span 2;
  }
}
.gh-tafel {
  background: var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gh-tafel-board {
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(
      at 12% 8%,
      rgba(255, 255, 255, 0.05),
      transparent 40%),
    radial-gradient(
      at 90% 90%,
      rgba(58, 90, 64, 0.28),
      transparent 50%);
  text-align: center;
}
.gh-tafel-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}
.gh-tafel-title {
  color: #fff;
  margin-bottom: 2rem;
}
.gh-tafel-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  text-align: left;
  display: grid;
  gap: 0.9rem;
}
.gh-tafel-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1.02rem;
}
.gh-tafel-list .dotline {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  margin-bottom: 0.3em;
}
.gh-tafel-list li > span:last-child {
  font-family: var(--font-display);
  color: var(--accent-soft);
  white-space: nowrap;
}
.gh-tafel-foot {
  margin-top: 2rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.location-card dl {
  margin: 0;
}
.location-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 1.25rem;
}
.location-card dt:first-child {
  margin-top: 0;
}
.location-card dd {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ink);
}
.opening-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.opening-row:last-child {
  border-bottom: none;
}
.opening-row.is-today {
  font-weight: 700;
  color: var(--accent-dark);
}
.opening-row.closed {
  color: var(--ink-mute);
  font-style: italic;
}
.map-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed .map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(251, 248, 240, 0.96);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  line-height: 1.5;
}
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.field .req {
  color: var(--accent-dark);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
}
@media (max-width: 600px) {
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}
.field.consent input {
  margin-top: 0.25rem;
}
.field.consent label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field.consent label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-top: -0.3rem;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq[open] summary::after {
  content: "−";
}
.faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      at 85% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 55%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
  }
}
.article-body {
  max-width: 70ch;
}
.article-body h2 {
  margin-top: 2.5rem;
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}
.article-aside h2 {
  font-size: 1.02rem;
  margin-bottom: 0.8rem;
}
.article-aside p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.article-aside .btn {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
}
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-mute);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb [aria-current=page] {
  color: var(--ink);
}
.site-footer {
  background: var(--ink);
  color: rgba(245, 239, 228, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(245, 239, 228, 0.6);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  color: var(--bg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--bg);
}
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 228, 0.14);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 239, 228, 0.55);
}
.footer-bottom a {
  color: rgba(245, 239, 228, 0.68);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: var(--bg);
}
.demo-disclaimer {
  background: rgba(58, 90, 64, 0.18);
  border: 1px solid rgba(58, 90, 64, 0.36);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: rgba(245, 239, 228, 0.9);
  margin-bottom: 1.5rem;
}
.demo-disclaimer a {
  color: var(--accent-soft);
  text-decoration: underline;
}
.demo-disclaimer a:hover {
  color: var(--bg);
}
.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;
}
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
@media print {
  .gh-header,
  .gh-progress,
  .gh-hero-facade,
  .site-footer nav,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    padding-top: 0 !important;
  }
}
