/* ==========================================================================
   Egidiwirt Murau — Design System
   Farben laut Brand Kit: Olivgrün #5F7A52 · Creme #EDE6D6 · Steingrau #B5AFA3
   ========================================================================== */

:root {
  /* Marke */
  --oliv:        #5F7A52;
  --oliv-dark:   #475C3D;
  --oliv-deep:   #2F3D28;
  --creme:       #EDE6D6;
  --creme-light: #F7F3EA;
  --stein:       #B5AFA3;
  --stein-light: #D7D2C7;

  /* Neutral / Text */
  --ink:         #23261F;
  --ink-soft:    #4A4E43;
  --ink-mute:    #7C8073;
  --white:       #FFFFFF;

  /* Akzent (Kupfer, für Preise & feine Details) */
  --kupfer:      #A9673A;

  /* Maße */
  --wrap:        1180px;
  --wrap-header: 1400px;
  --wrap-narrow: 760px;
  --r-sm:        4px;
  --r-md:        10px;
  --r-lg:        20px;
  --header-h:    88px;

  --shadow-sm:   0 1px 3px rgba(35,38,31,.08), 0 4px 14px rgba(35,38,31,.05);
  --shadow-md:   0 4px 12px rgba(35,38,31,.09), 0 18px 42px rgba(35,38,31,.09);
  --shadow-lg:   0 10px 26px rgba(35,38,31,.12), 0 34px 70px rgba(35,38,31,.14);

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--creme-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--oliv-deep);
  font-variation-settings: 'SOFT' 20, 'WONK' 1;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { max-width: 68ch; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oliv);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--oliv);
  opacity: .55;
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 34px; height: 1px;
  background: var(--oliv);
  opacity: .55;
}

.lead { font-size: 1.16rem; color: var(--ink-soft); }
.muted { color: var(--ink-mute); }
.script {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1.75rem;
  color: var(--oliv);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

section { position: relative; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.bg-creme  { background: var(--creme); }
.bg-light  { background: var(--creme-light); }
.bg-white  { background: var(--white); }
.bg-oliv   { background: var(--oliv-deep); color: var(--creme); }
.bg-oliv h1, .bg-oliv h2, .bg-oliv h3, .bg-oliv h4 { color: var(--creme-light); }
.bg-oliv .eyebrow { color: var(--stein-light); }
.bg-oliv .eyebrow::before, .bg-oliv .eyebrow::after { background: var(--stein-light); }
.bg-oliv p { color: rgba(237,230,214,.82); }

/* Feine Textur für Story-Sektionen (subtil, nach Design-Prinzip) */
.textured::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}
.textured > * { position: relative; z-index: 1; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split.wide-text { grid-template-columns: 1.05fr .95fr; }
.split.reverse > *:first-child { order: 2; }

.center { text-align: center; }
.center p { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content:''; width:34px; height:1px; background: var(--oliv); opacity:.55; }

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.9rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .28s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 1em; height: 1em; flex: none; }

.btn-primary { background: var(--oliv); color: var(--creme-light); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--oliv-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--oliv-deep); color: var(--creme-light); }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--oliv); color: var(--oliv); background: transparent; }
.btn-outline:hover { background: var(--oliv); color: var(--creme-light); transform: translateY(-2px); }

.btn-light { background: var(--creme-light); color: var(--oliv-deep); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-light { border-color: rgba(237,230,214,.45); color: var(--creme-light); }
.btn-ghost-light:hover { background: rgba(237,230,214,.14); border-color: var(--creme-light); }

.btn-sm { padding: .62rem 1.15rem; font-size: .82rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; color: var(--oliv);
  border-bottom: 1px solid rgba(95,122,82,.35);
  padding-bottom: 2px;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { gap: .85rem; border-color: var(--oliv); }

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--oliv-deep);
  color: rgba(237,230,214,.9);
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 40px; padding-block: .4rem;
}
.topbar-left { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: .75; }
.topbar a:hover { color: var(--white); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #7FB069; flex: none; box-shadow: 0 0 0 3px rgba(127,176,105,.22); }
.status-dot.closed { background: var(--stein); box-shadow: 0 0 0 3px rgba(181,175,163,.22); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247,243,234,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(181,175,163,.34);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(247,243,234,.97); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand img { height: 52px; width: auto; }
.brand-fallback { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--oliv-deep); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  position: relative;
  padding: .55rem .85rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color .22s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px; background: var(--oliv);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--oliv-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--oliv-deep); }

.header-cta { display: flex; align-items: center; gap: .6rem; flex: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(181,175,163,.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 19px; height: 1.7px; background: var(--oliv-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.7px) rotate(-45deg); }

/* Mobile Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--creme-light);
  padding: 1.5rem 0 3rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateY(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.drawer-close { width: 46px; height: 46px; border: 1px solid rgba(181,175,163,.6); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--oliv-deep); }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  color: var(--oliv-deep);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(181,175,163,.3);
}
.drawer .btn-row { margin-top: 2rem; flex-direction: column; }
.drawer .btn { width: 100%; }
.drawer-contact { margin-top: 2.5rem; font-size: .95rem; color: var(--ink-soft); }
.drawer-contact a { display: block; padding: .2rem 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 800px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--oliv-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { filter: brightness(.9) saturate(.9); }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* von unten: traegt Text, Knoepfe und Kennzahlen */
    linear-gradient(to top, rgba(28,31,25,.93) 0%, rgba(28,31,25,.78) 26%, rgba(28,31,25,.55) 55%, rgba(28,31,25,.4) 78%, rgba(28,31,25,.55) 100%),
    /* von links: dunkelt die Textseite ab, laesst das Bild rechts stehen */
    linear-gradient(to right, rgba(28,31,25,.62) 0%, rgba(28,31,25,.42) 40%, rgba(28,31,25,.08) 72%, rgba(28,31,25,0) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--creme-light); max-width: 15ch; text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4); }
.hero .eyebrow { color: var(--stein-light); }
.hero .eyebrow::before { background: var(--stein-light); }
.hero p { color: rgba(247,243,234,.96); font-size: 1.15rem; max-width: 48ch; text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.hero .script { color: var(--stein-light); text-shadow: 0 1px 12px rgba(0,0,0,.5); }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(237,230,214,.22);
}
.hero-fact { color: rgba(247,243,234,.94); font-size: .88rem; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero-fact strong { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--creme-light); font-weight: 600; margin-bottom: .1rem; }

.page-hero {
  position: relative;
  min-height: clamp(360px, 52vh, 520px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--oliv-deep);
}
.page-hero .hero-media::after {
  background: linear-gradient(to top, rgba(35,38,31,.9) 0%, rgba(35,38,31,.48) 55%, rgba(35,38,31,.35) 100%);
}
.page-hero .hero-inner { padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { color: var(--creme-light); max-width: 18ch; }
.page-hero p { color: rgba(237,230,214,.9); max-width: 54ch; margin-top: 1rem; }
.page-hero .eyebrow { color: var(--stein-light); }
.page-hero .eyebrow::before { background: var(--stein-light); }

.breadcrumb { font-size: .8rem; color: rgba(237,230,214,.7); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--creme-light); }

/* --------------------------------------------------------------------------
   Karten & Medien
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--stein-light); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-body h3 { color: var(--oliv-deep); }
.card-body p { font-size: .96rem; color: var(--ink-soft); }
.card-body .link-arrow { margin-top: auto; padding-top: .5rem; align-self: flex-start; }

.figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure-tall { aspect-ratio: 4/5; }
.figure-wide { aspect-ratio: 3/2; }
.figure-square { aspect-ratio: 1; }

.figure-stack { position: relative; }
.figure-stack .figure-front {
  position: absolute; right: -12%; bottom: -10%;
  width: 46%;
  border: 8px solid var(--creme-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.figure-stack .figure-front img { width: 100%; height: 100%; object-fit: cover; }

/* Nummerierte Leistungen */
.numbered { display: grid; gap: 1.5rem; }
.num-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--oliv);
  box-shadow: var(--shadow-sm);
}
.num-item .num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--stein); font-weight: 600; line-height: 1.1; }
.num-item h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.num-item p { font-size: .95rem; color: var(--ink-soft); }

/* Feature-Liste mit Häkchen */
.checklist { display: grid; gap: .8rem; }
.checklist li {
  display: block;                 /* kein Flex: sonst werden <strong> und Text zu eigenen Spalten */
  position: relative;
  padding-left: 2rem;
  font-size: .97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: .22em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(95,122,82,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F7A52' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.bg-oliv .checklist li { color: rgba(237,230,214,.85); }
.bg-oliv .checklist li::before {
  background-color: rgba(237,230,214,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EDE6D6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Icon-Kacheln */
.tile {
  padding: 1.9rem 1.7rem;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(95,122,82,.12);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.tile .ico svg { width: 22px; height: 22px; stroke: var(--oliv); fill: none; stroke-width: 1.7; }
.tile h4 { margin-bottom: .45rem; font-size: 1.12rem; }
.tile p { font-size: .93rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Speisekarte
   -------------------------------------------------------------------------- */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(237,230,214,.95);
  backdrop-filter: blur(10px);
  border-block: 1px solid rgba(181,175,163,.4);
  padding: .7rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav ul { display: flex; gap: .4rem; white-space: nowrap; }
.menu-nav a {
  display: inline-block;
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft);
  transition: all .22s var(--ease);
}
.menu-nav a:hover, .menu-nav a.active { background: var(--oliv); color: var(--creme-light); }

.menu-group { margin-bottom: 3.5rem; }
.menu-group > h2 { margin-bottom: .4rem; }
.menu-group > .group-note { color: var(--ink-mute); font-size: .93rem; margin-bottom: 2rem; font-style: italic; }

.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(181,175,163,.35);
  align-items: baseline;
}
.dish:last-child { border-bottom: none; }
.dish-name { font-family: 'Fraunces', serif; font-size: 1.14rem; font-weight: 600; color: var(--oliv-deep); }
.dish-price { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--kupfer); white-space: nowrap; }
.dish-desc { grid-column: 1 / -1; font-size: .94rem; color: var(--ink-soft); max-width: 62ch; margin-top: -.15rem; }
.dish-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .35rem; }
.tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 100px;
  background: rgba(95,122,82,.11); color: var(--oliv-dark);
}
.tag.veg  { background: rgba(127,176,105,.18); color: #3F6B2E; }
.tag.reg  { background: rgba(169,103,58,.14); color: var(--kupfer); }

.menu-note {
  padding: 1.5rem 1.8rem;
  background: rgba(95,122,82,.07);
  border-left: 3px solid var(--oliv);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .93rem; color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Zimmer
   -------------------------------------------------------------------------- */
.room {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.room:nth-child(even) .room-media { order: 2; }
.room-media { min-height: 340px; background: var(--stein-light); }
.room-media img { width: 100%; height: 100%; object-fit: cover; }
.room-body { padding: clamp(1.8rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.room-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; font-size: .85rem; color: var(--ink-mute); }
.room-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.room-price { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--kupfer); font-weight: 600; }
.room-price small { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 400; color: var(--ink-mute); display: block; letter-spacing: .01em; }

.badge-direkt {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .9rem;
  background: rgba(169,103,58,.12);
  color: var(--kupfer);
  border-radius: 100px;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Region
   -------------------------------------------------------------------------- */
.region-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(181,175,163,.35);
}
.region-item:last-child { border-bottom: none; }
.region-item .ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(95,122,82,.12); display: grid; place-items: center; flex: none; }
.region-item .ico svg { width: 19px; height: 19px; stroke: var(--oliv); fill: none; stroke-width: 1.7; }
.region-item h4 { font-size: 1.05rem; margin-bottom: .15rem; }
.region-item p { font-size: .9rem; color: var(--ink-soft); }
.region-dist { font-size: .82rem; font-weight: 600; color: var(--oliv); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery a {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 1; background: var(--stein-light); display: block;
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a.span-2 { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(23,26,20,.94);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(237,230,214,.4); background: transparent;
  color: var(--creme-light); font-size: 1.4rem; cursor: pointer;
}

/* --------------------------------------------------------------------------
   Zitat / Testimonial
   -------------------------------------------------------------------------- */
.quote { text-align: center; max-width: 26ch; margin-inline: auto; }
.quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35;
  color: var(--oliv-deep);
  max-width: 22ch;
  margin-inline: auto;
}
.bg-oliv .quote blockquote { color: var(--creme-light); }
.quote cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: .85rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); }
.bg-oliv .quote cite { color: var(--stein-light); }

/* --------------------------------------------------------------------------
   Kontakt / Formular
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: .85rem 1rem;
  border: 1px solid rgba(181,175,163,.65);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: .97rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--oliv);
  box-shadow: 0 0 0 3px rgba(95,122,82,.16);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--ink-mute); }

.contact-block { display: grid; gap: 1.5rem; }
.contact-line { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact-line .ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(95,122,82,.12); display: grid; place-items: center; flex: none; }
.contact-line .ico svg { width: 18px; height: 18px; stroke: var(--oliv); fill: none; stroke-width: 1.7; }
.contact-line .k { font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .15rem; }
.contact-line .v { font-size: 1.02rem; color: var(--ink); line-height: 1.5; }
.contact-line .v a:hover { color: var(--oliv); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.hours-table td { padding: .58rem 0; border-bottom: 1px solid rgba(181,175,163,.35); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--oliv-deep); }
.hours-table tr.rest td:last-child { color: var(--ink-mute); font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; min-height: 340px; background: var(--stein-light); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq details {
  border-bottom: 1px solid rgba(181,175,163,.4);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: 'Fraunces', serif; font-size: 1.13rem; font-weight: 600; color: var(--oliv-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 300;
  color: var(--oliv); flex: none; transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .85rem; font-size: .96rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   CTA-Band
   -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--oliv-deep); color: var(--creme-light); }
.cta-band .bgimg { position: absolute; inset: 0; opacity: .2; }
.cta-band .bgimg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .wrap { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(237,230,214,.72); padding: 4.5rem 0 0; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.site-footer h4 { color: var(--creme-light); font-size: .8rem; letter-spacing: .17em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1.2rem; }
.site-footer a:hover { color: var(--creme-light); }
.site-footer ul li { padding: .28rem 0; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .93rem; max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(237,230,214,.25); border-radius: 50%; display: grid; place-items: center; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--oliv); border-color: var(--oliv); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(237,230,214,.14);
  padding: 1.5rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .84rem; color: rgba(237,230,214,.5);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.sister-link { display: inline-flex; align-items: center; gap: .5rem; }

/* --------------------------------------------------------------------------
   Sticky Mobile CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none;
  background: rgba(247,243,234,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(181,175,163,.45);
  padding: .65rem .9rem calc(.65rem + env(safe-area-inset-bottom));
  gap: .5rem;
  box-shadow: 0 -4px 20px rgba(35,38,31,.09);
}
.sticky-cta .btn { flex: 1; padding: .8rem .5rem; font-size: .84rem; }

/* --------------------------------------------------------------------------
   Animation beim Scrollen
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1060px) {
  .header-cta .btn-desktop-only { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  :root { --header-h: 74px; }
  body { font-size: 16px; }
  .brand img { height: 42px; }
  .split, .split.wide-text { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > *:first-child { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .room, .room:nth-child(even) .room-media { grid-template-columns: 1fr; order: 0; }
  .room-media { min-height: 250px; aspect-ratio: 3/2; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a.span-2 { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .figure-stack .figure-front { width: 40%; right: -4%; bottom: -8%; }
  .hero-facts { gap: 1.2rem 2rem; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .topbar-left .hide-sm { display: none; }
}

@media (max-width: 560px) {
  .wrap, .wrap-narrow { width: calc(100% - 2rem); }
  .form-row { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .num-item { grid-template-columns: 1fr; gap: .6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .region-item { grid-template-columns: auto 1fr; }
  .region-dist { grid-column: 2; }
  .header-cta .btn { padding: .6rem 1rem; font-size: .8rem; }
  .figure-stack .figure-front { display: none; }
}

/* Print */
@media print {
  .site-header, .topbar, .sticky-cta, .site-footer, .menu-nav, .cta-band { display: none !important; }
  body { background: #fff; }
}

/* --------------------------------------------------------------------------
   Sprachumschalter in der Topbar
   -------------------------------------------------------------------------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: .1rem;
  border: 1px solid rgba(237,230,214,.35);
  border-radius: 100px; overflow: hidden;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  margin-left: .3rem;
}
.lang-switch a { padding: .18rem .6rem; color: rgba(237,230,214,.75); line-height: 1.5; }
.lang-switch a[aria-current] { background: rgba(237,230,214,.92); color: var(--oliv-deep); }
.lang-switch a:hover:not([aria-current]) { background: rgba(237,230,214,.18); color: #fff; }
.lang-globe { width: 13px; height: 13px; opacity: .7; margin-right: .1rem; flex: none; }

/* Kopfzeile darf auf mittleren Breiten nicht überlaufen */
.header-inner { flex-wrap: nowrap; }
.nav { flex-shrink: 1; min-width: 0; }


/* --------------------------------------------------------------------------
   Kopfzeile: darf nie überlappen oder umbrechen
   -------------------------------------------------------------------------- */
.site-header .wrap { width: min(100% - 2.5rem, var(--wrap-header)); }
.header-inner { gap: clamp(.6rem, 1.6vw, 1.4rem); flex-wrap: nowrap; }
.nav { flex: 0 1 auto; min-width: 0; }
.nav a { white-space: nowrap; }
.header-cta { flex: 0 0 auto; }

@media (max-width: 1520px) { .nav a { padding: .55rem .62rem; letter-spacing: .07em; font-size: .8rem; } }
@media (max-width: 1360px) {
  .nav { display: none; }
  .burger { display: flex; }
}
@media (min-width: 1361px) { .burger { display: none; } }


/* Business Lunch: Anmeldung */
.visually-hidden { position:absolute; width:1px; height:1px; margin:-1px; padding:0;
                   overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.lunch-form { display:flex; gap:.6rem; flex-wrap:wrap; }
.lunch-form input[type="email"] {
  flex:1 1 12rem; min-width:0; padding:.7rem .95rem; font:inherit; font-size:.95rem;
  border:1px solid rgba(181,175,163,.8); border-radius:10px; background:#fff; color:var(--ink);
}
.lunch-form input[type="email"]:focus {
  outline:none; border-color:var(--oliv); box-shadow:0 0 0 3px rgba(95,122,82,.15);
}
.lunch-form button { flex:0 0 auto; }
@media (max-width: 620px) {
  .lunch-form { flex-direction:column; }
  /* in Spaltenrichtung wirkt flex-basis auf die Hoehe - sonst wird das Feld riesig */
  .lunch-form input[type="email"] { flex:0 0 auto; width:100%; }
  .lunch-form button { width:100%; }
}


/* --------------------------------------------------------------------------
   Signatur Ersteller (SSP)
   -------------------------------------------------------------------------- */
.ssp-signatur {
  border-top: 1px solid rgba(237,230,214,.12);
  margin: 0;
  padding: 1.1rem 0 1.8rem;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(237,230,214,.42);
}
.ssp-signatur svg {
  display: inline-block; vertical-align: -2px;
  width: 13px; height: 13px; margin-right: .42rem;
  fill: #5aa845;
}
.ssp-signatur a {
  color: rgba(237,230,214,.6);
  border-bottom: 1px solid rgba(237,230,214,.22);
  white-space: nowrap;
}
.ssp-signatur a:hover { color: var(--creme-light); border-bottom-color: rgba(237,230,214,.5); }

/* Falls die Signatur einmal auf hellem Grund steht */
.ssp-signatur.auf-hell { color: var(--ink-mute); border-top-color: rgba(35,38,31,.12); }
.ssp-signatur.auf-hell svg { fill: #4e9440; }
.ssp-signatur.auf-hell a { color: var(--ink-soft); border-bottom-color: rgba(35,38,31,.22); }


/* --------------------------------------------------------------------------
   Bewegung
   -------------------------------------------------------------------------- */

/* Hero: Inhalte kommen nacheinander herein */
@keyframes eg-herein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-inner .script,
.hero-inner h1,
.hero-inner .wrap > p,
.hero-inner .btn-row,
.hero-inner .hero-facts {
  animation: eg-herein .85s var(--ease) both;
}
.hero-inner .script     { animation-delay: .10s; }
.hero-inner h1          { animation-delay: .22s; }
.hero-inner .wrap > p   { animation-delay: .38s; }
.hero-inner .btn-row    { animation-delay: .52s; }
.hero-inner .hero-facts { animation-delay: .66s; }

/* Hero-Bild: sehr langsames Heranfahren, kaum merklich */
@keyframes eg-naeher { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-media img { animation: eg-naeher 26s ease-out both; will-change: transform; }

/* Kacheln: Bild hebt sich beim Darueberfahren */
.tile { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tile:hover { transform: translateY(-4px); }

/* Galerie und Karten: Bild zoomt sanft im Rahmen */
.gallery a, .card-media { overflow: hidden; }
.gallery a img, .card-media img { transition: transform .6s var(--ease); }
.gallery a:hover img, .card-media:hover img { transform: scale(1.05); }

/* Knoepfe: leichtes Anheben */
.btn { transition: transform .22s var(--ease), background-color .22s var(--ease),
                   border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease); }
.btn:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .hero-inner .script, .hero-inner h1, .hero-inner .wrap > p,
  .hero-inner .btn-row, .hero-inner .hero-facts,
  .hero-media img { animation: none; }
  .tile:hover, .btn:hover { transform: none; }
  .gallery a:hover img, .card-media:hover img { transform: none; }
}


/* Fallblatt-Anzeige der Kennzahlen */
.hero-fact strong.fallblatt { display: flex; gap: 0; white-space: pre; }
.fb-zelle {
  display: inline-block; text-align: center;
  transition: color .18s linear, opacity .18s linear;
}
.fb-luecke { min-width: .28em; }
.fb-laeuft { color: rgba(247,243,234,.5); }
.fb-klick { animation: fb-umschlag .22s var(--ease) both; }
@keyframes fb-umschlag {
  0%   { transform: translateY(-.14em) scaleY(.72); opacity: .55; }
  60%  { transform: translateY(.02em)  scaleY(1.04); opacity: 1; }
  100% { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .fb-klick { animation: none; }
  .fb-laeuft { color: inherit; }
}
