/* ============================================================
   Tor zum Steigerwald – Website-Vorschau
   Farbwelt: Creme · Holzbraun · Bordeaux · Tannengrün · Gold
   ============================================================ */

:root {
  --creme:        #FAF6EE;
  --paper:        #F3EBDC;
  --paper-dark:   #EADFC9;
  --brown:        #3A2A20;
  --brown-soft:   #5C4636;
  --bordeaux:     #7C2433;
  --bordeaux-dk:  #611B27;
  --green:        #2F4A3C;
  --gold:         #B89B6E;
  --text:         #33271F;
  --muted:        #6E5E50;
  --line:         #E2D6C0;

  --shadow-sm: 0 2px 10px rgba(58,42,32,.06);
  --shadow-md: 0 10px 30px rgba(58,42,32,.10);
  --shadow-lg: 0 24px 60px rgba(58,42,32,.16);

  --radius: 14px;
  --radius-lg: 20px;
  --max: 1180px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--brown); line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }

a { color: var(--bordeaux); text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: .9rem;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--bordeaux); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bordeaux-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--creme); border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--bordeaux); border-color: var(--bordeaux); }
.btn--outline:hover { background: var(--bordeaux); color: #fff; transform: translateY(-2px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.nav.scrolled { background: rgba(250,246,238,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1.05; color: var(--creme); transition: color .35s; }
.nav.scrolled .brand { color: var(--brown); }
.brand__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.brand__sub  { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; opacity: .85; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--creme); font-weight: 500; font-size: .95rem; position: relative; transition: color .3s; }
.nav.scrolled .nav__links a { color: var(--brown-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a:hover { color: var(--bordeaux); }
/* Reservieren-Button: in jedem Zustand sauber lesbar, auch sticky/transparent */
.nav__cta {
  margin-left: .6rem;
  color: #fff !important;
  background: var(--bordeaux);
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: 0 4px 14px rgba(58,42,32,.28), inset 0 0 0 1px rgba(123,36,51,.4);
  padding: .7rem 1.5rem;
}
.nav__cta::after { display: none; }              /* kein Underline-Strich am Button */
.nav__cta:hover { background: var(--bordeaux-dk); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(58,42,32,.34); }
.nav.scrolled .nav__cta { border-color: var(--bordeaux-dk); box-shadow: 0 4px 14px rgba(58,42,32,.18); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 32px; height: 26px; position: relative; }
.nav__toggle span { position: absolute; left: 0; height: 2.5px; width: 100%; background: var(--creme); border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--brown); }
.nav__toggle span:nth-child(1){ top: 2px; } .nav__toggle span:nth-child(2){ top: 11px; } .nav__toggle span:nth-child(3){ top: 20px; }
body.menu-open .nav__toggle span:nth-child(1){ top: 11px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3){ top: 11px; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--creme); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../../assets/images/optimized/team-optimized.jpg") center/cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
  animation: kenburns 24s ease-out both;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(33,22,16,.55) 0%, rgba(33,22,16,.35) 40%, rgba(33,22,16,.78) 100%);
}
.hero__inner { max-width: 760px; padding-top: 80px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: .35em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 600px; margin-bottom: 2rem; color: #f4ece0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center;
  font-size: .92rem; letter-spacing: .04em; color: #ecdfca;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust span::before { content: "·"; color: var(--gold); font-weight: 700; }
.hero__trust span:first-child::before { content: ""; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: rgba(255,255,255,.5); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{ opacity:1; transform: scaleY(1);} }

/* ============================================================
   Willkommen
   ============================================================ */
.welcome__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.welcome__text .signature { font-family: var(--serif); font-style: italic; color: var(--brown-soft); font-size: 1.15rem; margin-top: 1.5rem; }
.welcome__media { position: relative; }
.welcome__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; max-height: 520px; object-fit: cover; }
.badge-1878 {
  position: absolute; bottom: -26px; left: -26px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--bordeaux); color: var(--creme);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-md); border: 3px solid var(--gold);
}
.badge-1878 b { font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.badge-1878 small { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; margin-top: .35rem; }

/* ============================================================
   Schnellzugriff-Karten
   ============================================================ */
.quick-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.qcard {
  background: var(--creme); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.4rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.qcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.qcard__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--paper-dark); color: var(--bordeaux);
}
.qcard__icon svg { width: 26px; height: 26px; }
.qcard h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.qcard p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ============================================================
   Restaurant
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; max-height: 540px; object-fit: cover; }
.split__media.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split__media.stack img:first-child { grid-column: 1 / -1; max-height: 300px; }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 3px; }
.note {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--paper); border-left: 4px solid var(--gold);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: .92rem; color: var(--brown-soft);
  margin: 1.4rem 0;
}
.note svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }

/* ============================================================
   Öffnungszeiten
   ============================================================ */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 860px; margin: 0 auto; }
.hours-card {
  background: var(--creme); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--shadow-sm);
}
.hours-card__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem; }
.hours-card__head svg { width: 26px; height: 26px; color: var(--bordeaux); }
.hours-card__head h3 { margin: 0; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-weight: 600; color: var(--brown); }
.hours-row .time { color: var(--muted); text-align: right; }
.hours-note {
  max-width: 860px; margin: 1.6rem auto 0;
  display: flex; gap: .8rem; align-items: flex-start;
  background: #fff7e8; border: 1px solid var(--gold); border-radius: var(--radius); padding: 1rem 1.3rem; font-size: .92rem; color: var(--brown-soft);
}
.hours-note svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }

/* ============================================================
   Steigerwald / Freizeit
   ============================================================ */
.region { position: relative; color: var(--creme); overflow: hidden; }
.region__bg { position: absolute; inset: 0; z-index: -2; background: url("../../assets/images/optimized/kueche-regional-optimized.jpg") center/cover no-repeat; }
.region::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg, rgba(47,74,60,.88) 0%, rgba(33,22,16,.78) 100%); }
.region h2 { color: #fff; }
.region .section-head p { color: #e7ddcb; }
.region__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* Liquid-Glass-Boxen: hochwertig, lesbar, Hintergrund leicht sichtbar */
.rcard {
  background: rgba(255,250,240,.80);
  -webkit-backdrop-filter: blur(13px) saturate(135%);
  backdrop-filter: blur(13px) saturate(135%);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center;
  box-shadow: 0 10px 30px rgba(33,22,16,.20), inset 0 1px 0 rgba(255,255,255,.55);
  transition: background .35s var(--ease), transform .45s var(--ease), box-shadow .35s;
}
.rcard:hover { background: rgba(255,250,240,.88); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(33,22,16,.26), inset 0 1px 0 rgba(255,255,255,.6); }
.rcard svg { width: 34px; height: 34px; color: var(--bordeaux); margin: 0 auto .9rem; }
.rcard h3 { color: var(--brown); font-size: 1.1rem; }
.rcard p { color: var(--brown-soft); font-size: .9rem; margin: 0; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: stretch; }
.contact-card { background: var(--creme); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem); box-shadow: var(--shadow-sm); }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--paper-dark); color: var(--bordeaux); display: grid; place-items: center; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list .val { font-size: 1.08rem; font-weight: 600; color: var(--brown); }
.contact-list a.val:hover { color: var(--bordeaux); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.92); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--brown); color: #e8ddcd; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer h4 { font-family: var(--serif); color: #fff; font-size: 1.15rem; margin: 0 0 1rem; }
.footer a { color: #d9ccb8; }
.footer a:hover { color: var(--gold); }
.footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__brand .brand__name { color: #fff; font-size: 1.4rem; }
.footer__brand p { color: #c2b39e; font-size: .92rem; max-width: 320px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #b7a892; }
.footer__bottom a { margin-left: 1.2rem; }

/* ============================================================
   Reveal-Animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__bg { transform: none; animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .region__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--creme); padding: 3rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99;
  }
  body.menu-open .nav__links { transform: none; }
  .nav__links a { color: var(--brown) !important; font-size: 1.15rem; }
  .nav__links .nav__cta { display: inline-flex; }

  .welcome__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .hours-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .badge-1878 { left: auto; right: 16px; bottom: -20px; width: 104px; height: 104px; }
  .welcome__media { margin-bottom: 2rem; }
}
@media (max-width: 460px) {
  .quick-grid, .region__cards { grid-template-columns: 1fr; }
}

/* ============================================================
   NEU: Logo, Unterseiten, Galerie, Preise, Formular, Jobs
   (gleicher Designstil – nur Ergänzungen)
   ============================================================ */

/* ---- Logo in Navigation & Footer ---- */
.brand { flex-direction: row; align-items: center; gap: .7rem; }
/* Transparentes Logo – präsent, kein weißer Kasten. Heller Schein macht es auf
   dunklem Hero & dunklem Footer lesbar, auf hellem (gescrolltem) Nav unsichtbar. */
.brand__logo {
  height: 74px; width: auto; display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.8)) drop-shadow(0 2px 6px rgba(0,0,0,.25));
  transition: height .35s var(--ease), filter .35s var(--ease);
}
.nav.scrolled .brand__logo { height: 52px; filter: drop-shadow(0 1px 3px rgba(58,42,32,.18)); }
.footer__brand .brand__logo { height: 84px; filter: drop-shadow(0 0 7px rgba(255,255,255,.55)) drop-shadow(0 2px 6px rgba(0,0,0,.3)); }

/* aktiver Navigationspunkt */
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav.scrolled .nav__links a[aria-current="page"] { color: var(--bordeaux); }

/* ---- dezenter Glanz auf Buttons (Micro-Animation) ---- */
.btn { position: relative; overflow: hidden; }
.btn--primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--primary:hover::before { left: 130%; }

/* ============================================================
   Page-Hero (kleiner Kopfbereich der Unterseiten)
   ============================================================ */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  color: var(--creme); overflow: hidden; padding: 0 0 clamp(2.4rem, 5vw, 4rem);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-position: center; background-size: cover; transform: scale(1.04); animation: kenburns 22s ease-out both; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(33,22,16,.45) 0%, rgba(33,22,16,.40) 45%, rgba(33,22,16,.78) 100%); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: .25em; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.page-hero p { color: #f1e7d8; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 620px; margin: 0; }
.breadcrumb { font-size: .82rem; letter-spacing: .04em; color: #e8dcc8; margin-bottom: 1rem; }
.breadcrumb a { color: #f3e9d9; } .breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: .7; margin: 0 .4rem; }

/* ---- Prosa / Textblöcke ---- */
.prose { max-width: 760px; }
.prose.center { margin: 0 auto; text-align: center; }
.lead { font-size: 1.18rem; color: var(--brown-soft); }
.prose blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--brown);
  border-left: 4px solid var(--gold); margin: 1.6rem 0; padding: .4rem 0 .4rem 1.4rem;
}

/* ============================================================
   Galerie
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery--2 { grid-template-columns: repeat(2, 1fr); }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(33,22,16,.72));
  color: #fff; font-size: .9rem; font-weight: 500;
}

/* ============================================================
   Info-Karten (gleiche Kartenoptik, flexibel)
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.info-grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-card {
  background: var(--creme); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .35s, border-color .35s;
}
.section--paper .info-card { background: #fff; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.info-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--paper-dark); color: var(--bordeaux); display: grid; place-items: center; margin-bottom: 1.1rem; }
.info-card__icon svg { width: 25px; height: 25px; }
.info-card h3 { font-size: 1.18rem; }
.info-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.info-card ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: .95rem; }
.info-card ul li { margin-bottom: .35rem; }

/* ============================================================
   Preis-Karten (Zimmer)
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .35s, border-color .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.price-card h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.price-card .price { font-family: var(--serif); font-size: 2.1rem; color: var(--bordeaux); line-height: 1; margin: .6rem 0 .2rem; }
.price-card .price small { font-size: .9rem; color: var(--muted); font-family: var(--sans); }
.price-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; display: grid; gap: .55rem; }
.price-card ul li { display: flex; gap: .5rem; align-items: flex-start; font-size: .94rem; color: var(--brown-soft); }
.price-card ul svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ============================================================
   Formular (Buchungsanfrage)
   ============================================================ */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md); max-width: 880px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--brown); text-transform: uppercase; }
.field label .req { color: var(--bordeaux); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--creme); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .8rem .95rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bordeaux); background: #fff;
  box-shadow: 0 0 0 3px rgba(124,36,51,.12);
}
.form-consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: 1.4rem 0; }
.form-consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--bordeaux); flex: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form-note { font-size: .86rem; color: var(--muted); }
.form-success {
  display: none; align-items: flex-start; gap: .8rem; margin-top: 1.2rem;
  background: #eef5ef; border: 1px solid var(--green); border-radius: var(--radius);
  padding: 1rem 1.2rem; color: var(--green); font-size: .95rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }

/* ============================================================
   Jobs
   ============================================================ */
.job-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--bordeaux);
  border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .35s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.job-card h3 { margin-bottom: .4rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.job-tag { font-size: .8rem; font-weight: 600; color: var(--brown-soft); background: var(--paper-dark); padding: .3rem .8rem; border-radius: 999px; }

/* CTA-Band */
.cta-band { background: var(--bordeaux); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #f3dfe2; max-width: 600px; margin: 0 auto 1.8rem; }
.cta-band .btn--outline { color: #fff; border-color: rgba(255,255,255,.7); }
.cta-band .btn--outline:hover { background: #fff; color: var(--bordeaux); }
.cta-band .btn--primary { background: #fff; color: var(--bordeaux); }
.cta-band .btn--primary:hover { background: var(--paper); color: var(--bordeaux-dk); }

/* ============================================================
   Responsive Ergänzungen
   ============================================================ */
@media (max-width: 980px) {
  .gallery, .info-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }
  .gallery, .gallery--2, .info-grid, .info-grid--2, .price-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 46vh; }
  .brand__logo { height: 54px; }                 /* mobil sauber skaliert, nicht gequetscht */
  .nav.scrolled .brand__logo { height: 46px; }
  .footer__brand .brand__logo { height: 70px; }
  .page-hero__bg { animation: none; }   /* mobil ruhiger */
}
