/* ============================================================
   Gasthaus "Zur frischen Quelle" — Corporate Design
   Palette:  Parchment #F1E7D3 · Oak #4A2E1E · Tanne #3E5641
             Ziegel #A8452F · Messing #C79A3E · Tinte #2B2018
   Type: Fraunces (Display) · Source Serif 4 (Body) · Space Mono (Zahlen)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400&family=Space+Mono:wght@400;700&display=swap');

:root{
  --parchment: #F1E7D3;
  --parchment-deep: #E8D9BC;
  --oak: #4A2E1E;
  --oak-deep: #362114;
  --tanne: #3E5641;
  --tanne-deep: #2C3F30;
  --ziegel: #A8452F;
  --ziegel-deep: #8A3623;
  --messing: #C79A3E;
  --messing-light: #E3C878;
  --tinte: #2B2018;
  --cream-line: rgba(74,46,30,0.18);
  --shadow-soft: 0 8px 24px rgba(43,32,24,0.14);

  --font-display: 'Fraunces', serif;
  --font-body: 'Source Serif 4', serif;
  --font-mono: 'Space Mono', monospace;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background:
    radial-gradient(ellipse at top left, rgba(199,154,62,0.08), transparent 45%),
    var(--parchment);
  color: var(--tinte);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper grain */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.29  0 0 0 0 0.2  0 0 0 0 0.13  0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

a{ color: inherit; }

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

.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--ziegel);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header{
  background: linear-gradient(180deg, var(--oak) 0%, var(--oak-deep) 100%);
  color: var(--parchment);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
  flex-wrap: wrap;
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark{ flex-shrink: 0; }

.brand-text{
  font-family: var(--font-display);
  font-optical-sizing: auto;
  line-height: 1.05;
}
.brand-text .name{
  display:block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--messing-light);
}
.brand-text .place{
  display:block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241,231,211,0.65);
  margin-top: 4px;
}

nav.mainnav{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
nav.mainnav a{
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: rgba(241,231,211,0.88);
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.18s ease, color 0.18s ease;
  border-bottom: 2px solid transparent;
}
nav.mainnav a:hover{ color: var(--messing-light); }
nav.mainnav a[aria-current="page"]{
  color: var(--messing-light);
  border-bottom: 2px solid var(--messing);
}

/* spring-line divider under header, motif = "die Quelle" */
.spring-divider{
  display:block;
  width: 100%;
  height: 14px;
  background: var(--parchment);
}
.spring-divider svg{ width:100%; height:100%; display:block; }

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(180deg, var(--tanne) 0%, var(--tanne-deep) 100%);
  color: var(--parchment);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero .wrap{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero .eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--messing-light);
  margin: 0 0 14px;
}
.hero h1{
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero p.lead{
  font-size: 1.15rem;
  max-width: 46ch;
  color: rgba(241,231,211,0.9);
  margin: 0 0 28px;
}
.hero-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary{
  background: var(--ziegel);
  color: var(--parchment);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.28); }
.btn-secondary{
  background: transparent;
  color: var(--parchment);
  border: 1.5px solid rgba(241,231,211,0.55);
}
.btn-secondary:hover{ border-color: var(--messing-light); color: var(--messing-light); }

.hero-plaque{
  background: var(--oak);
  border: 1px solid rgba(199,154,62,0.4);
  border-radius: 4px;
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}
.hero-plaque h2{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--messing-light);
  margin: 0 0 16px;
  border-bottom: 1px solid rgba(199,154,62,0.35);
  padding-bottom: 12px;
}
.hero-plaque .hours-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.98rem;
  color: rgba(241,231,211,0.92);
  border-bottom: 1px dashed rgba(241,231,211,0.15);
}
.hero-plaque .hours-row:last-of-type{ border-bottom: none; }
.hero-plaque .tel{
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--messing-light);
}

/* ---------- Sections ---------- */
section{ padding: 64px 0; position: relative; z-index: 1; }

.section-head{ max-width: 60ch; margin-bottom: 36px; }
.section-head .kicker{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ziegel);
  margin: 0 0 10px;
}
.section-head h2{
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 12px;
  color: var(--oak);
}
.section-head p{ margin: 0; color: rgba(43,32,24,0.78); }

/* ---------- Notice / Kerwe banner ---------- */
.notice{
  background: var(--parchment-deep);
  border: 1px solid var(--cream-line);
  border-left: 5px solid var(--ziegel);
  border-radius: 3px;
  padding: 22px 26px;
  margin: 0 0 8px;
}
.notice h3{
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--ziegel-deep);
}
.notice p{ margin: 0 0 6px; color: var(--tinte); }
.notice p:last-child{ margin-bottom: 0; }

/* ---------- Feature grid (Über uns / Highlights) ---------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card{
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 4px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.feature-card .icon{ margin-bottom: 14px; color: var(--tanne); }
.feature-card h3{
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--oak);
}
.feature-card p{ margin: 0; font-size: 0.98rem; color: rgba(43,32,24,0.78); }

/* ---------- Menu (Speisekarte) — signature element ---------- */
.menu-group{ margin-bottom: 46px; }
.menu-group:last-child{ margin-bottom: 0; }
.menu-group h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--tanne-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.menu-group h3::after{
  content:"";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--messing) 0 6px, transparent 6px 12px);
}

.menu-item{
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-line);
}
.menu-item:last-child{ border-bottom: none; }

.order-tag{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--messing-light), var(--messing) 70%, var(--messing) 100%);
  color: var(--oak-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(74,46,30,0.25), 0 2px 4px rgba(0,0,0,0.2);
}

.menu-item .desc h4{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--tinte);
}
.menu-item .desc p{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(43,32,24,0.68);
}
.menu-item .price{
  font-family: var(--font-mono);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ziegel-deep);
  white-space: nowrap;
  padding-top: 6px;
}

.menu-note{
  font-size: 0.9rem;
  color: rgba(43,32,24,0.6);
  font-style: italic;
  margin-top: 26px;
}

/* ---------- Kontakt ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card{
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 4px;
  padding: 30px 30px;
  box-shadow: var(--shadow-soft);
}
.contact-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 18px;
  color: var(--oak);
}
.contact-row{
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--cream-line);
  font-size: 0.98rem;
}
.contact-row:last-child{ border-bottom: none; }
.contact-row .label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ziegel);
  width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-row a{ text-decoration: underline; text-decoration-color: var(--cream-line); text-underline-offset: 3px; }
.contact-row a:hover{ text-decoration-color: var(--ziegel); }

.map-embed{
  border: 1px solid var(--cream-line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}
.map-embed iframe{ width: 100%; height: 100%; min-height: 260px; border: 0; display:block; }

/* ---------- Impressum ---------- */
.legal{
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: 4px;
  padding: 8px 36px 20px;
  box-shadow: var(--shadow-soft);
}
.legal h2{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--oak);
  margin-top: 30px;
}
.legal h3{
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--tanne-deep);
  margin-top: 26px;
}
.legal p, .legal li{ color: rgba(43,32,24,0.82); font-size: 0.98rem; }
.legal a{ text-decoration: underline; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--oak-deep);
  color: rgba(241,231,211,0.75);
  padding: 44px 0 30px;
  margin-top: 40px;
}
footer.site-footer .wrap{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}
footer.site-footer h4{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--messing-light);
  margin: 0 0 14px;
}
footer.site-footer p, footer.site-footer a{
  font-size: 0.94rem;
  line-height: 1.7;
  text-decoration: none;
  color: rgba(241,231,211,0.75);
}
footer.site-footer a:hover{ color: var(--messing-light); }
footer.site-footer .fine{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(241,231,211,0.12);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(241,231,211,0.45);
  text-align: center;
}

/* ============================================================
   One-Page Layout Extensions (Malzwerk-inspired structure,
   rustikale Holz-/Kupfer-Palette statt Industrial-Look)
   ============================================================ */

body.onepager{
  background: var(--oak-deep);
}

/* ---- Logo badge ---- */
.logo-badge{ flex-shrink: 0; }
.logo-badge .ring{ fill: none; stroke: var(--messing); stroke-width: 1.2; }
.logo-badge .ring-inner{ fill: none; stroke: rgba(199,154,62,0.45); stroke-width: 0.6; }
.logo-badge .emblem-line{ fill: none; stroke: var(--messing-light); stroke-width: 2; stroke-linecap: round; }
.logo-badge .emblem-fill{ fill: var(--messing-light); }
.logo-badge text{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  fill: var(--parchment);
}
.logo-badge .spring-flow{
  stroke-dasharray: 6 5;
  animation: flow 1.8s linear infinite;
}
.logo-badge .spring-flow:nth-of-type(2){ animation-duration: 1.5s; }
.logo-badge .spring-flow:nth-of-type(3){ animation-duration: 2.1s; }
.logo-badge .droplet{ animation: drip 2.4s ease-in-out infinite; transform-origin: 110px 62px; }
@keyframes flow{ to{ stroke-dashoffset: -33; } }
@keyframes drip{
  0%, 100%{ transform: translateY(0); opacity: 1; }
  50%{ transform: translateY(3px); opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce){
  .logo-badge .spring-flow{ animation: none; }
  .logo-badge .droplet{ animation: none; }
}

/* ---- Sticky one-page nav (dark, uppercase, anchor links) ---- */
.op-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(33,21,16,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(199,154,62,0.22);
}
.op-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.op-brand{ display:flex; align-items:center; gap:14px; text-decoration:none; }
.op-brand .name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--parchment);
  line-height: 1.1;
}
.op-brand .name small{
  display:block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--messing-light);
  margin-top: 3px;
  text-transform: uppercase;
}
.op-nav{ display:flex; gap: 4px; flex-wrap: wrap; align-items:center; }
.op-nav a{
  text-decoration:none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(241,231,211,0.75);
  padding: 9px 13px;
  transition: color 0.18s ease;
}
.op-nav a:hover{ color: var(--messing-light); }
.op-nav a.cta{
  background: var(--ziegel);
  color: var(--parchment);
  border-radius: 2px;
  padding: 9px 18px;
  margin-left: 6px;
}
.op-nav a.cta:hover{ background: var(--ziegel-deep); color: var(--parchment); }

/* ---- Full-bleed hero with photo ---- */
.op-hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--parchment);
  overflow: hidden;
}
.op-hero .bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
  filter: saturate(0.92) brightness(0.6);
}
.op-hero .scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,21,16,0.55) 0%, rgba(33,21,16,0.35) 40%, rgba(33,21,16,0.88) 100%);
}
.op-hero .wrap{ position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.op-hero .eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--messing-light);
  margin: 0 0 20px;
}
.op-hero h1{
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.06;
  margin: 0 0 22px;
  text-wrap: balance;
}
.op-hero p.lead{
  font-size: 1.2rem;
  max-width: 52ch;
  margin: 0 auto 34px;
  color: rgba(241,231,211,0.92);
}
.op-hero .hero-actions{ justify-content: center; }
.op-scroll-cue{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(241,231,211,0.65);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.op-scroll-cue .line{
  width: 1px; height: 34px; margin: 10px auto 0;
  background: linear-gradient(180deg, var(--messing-light), transparent);
}

/* ---- Section shells (alternating dark/parchment like Malzwerk) ---- */
.op-section{ padding: 96px 0; position: relative; }
.op-section.dark{ background: var(--oak-deep); color: var(--parchment); }
.op-section.wood{ background: var(--oak); color: var(--parchment); }
.op-section.parchment{ background: var(--parchment); color: var(--tinte); }

.op-head{ max-width: 62ch; margin: 0 auto 48px; text-align: center; }
.op-head .kicker{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--messing);
  margin: 0 0 14px;
}
.op-section.dark .op-head .kicker, .op-section.wood .op-head .kicker{ color: var(--messing-light); }
.op-head h2{
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 16px;
}
.op-head p{ margin:0; opacity: 0.82; font-size: 1.05rem; }

/* ---- Split media/text block ---- */
.op-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.op-split .framed-photo{
  background: var(--parchment);
  padding: 12px 12px 12px;
  border: 1px solid rgba(199,154,62,0.55);
  border-radius: 3px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.38);
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.3,1), box-shadow 0.4s ease;
}
.op-split .framed-photo:hover{
  transform: rotate(0deg) scale(1.015);
  box-shadow: 0 26px 54px rgba(0,0,0,0.45);
}
.op-split img{
  border-radius: 1px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(43,32,24,0.1);
}
.op-split .body p{ opacity: 0.85; margin: 0 0 16px; }
.op-split .stat-row{ display:flex; gap: 30px; margin-top: 28px; }
.op-split .stat-row div{ }
.op-split .stat-row strong{
  display:block; font-family: var(--font-display); font-size: 1.7rem; color: var(--messing-light);
}
.op-split .stat-row span{ font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }

/* ---- Gallery: rustikale Bilderrahmen an der Wand ---- */
.op-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.op-gallery a{
  display: block;
  position: relative;
  background: var(--parchment);
  padding: 10px 10px 0;
  border: 1px solid rgba(199,154,62,0.45);
  border-radius: 2px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
  text-decoration: none;
  transform: rotate(var(--r, 0deg));
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.3,1), box-shadow 0.35s ease;
}
.op-gallery a:nth-child(4n+1){ --r: -1.6deg; }
.op-gallery a:nth-child(4n+2){ --r: 1.1deg; }
.op-gallery a:nth-child(4n+3){ --r: -0.8deg; }
.op-gallery a:nth-child(4n){ --r: 1.7deg; }
.op-gallery a:hover, .op-gallery a:focus-visible{
  transform: rotate(0deg) translateY(-6px) scale(1.035);
  box-shadow: 0 22px 40px rgba(0,0,0,0.45);
  z-index: 2;
}
.op-gallery a::before{
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  width: 13px; height: 13px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--messing-light), var(--messing) 72%);
  box-shadow: 0 2px 5px rgba(0,0,0,0.45);
}
.op-gallery .frame-inner{
  overflow: hidden;
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(43,32,24,0.08);
}
.op-gallery img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) sepia(0.06);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.op-gallery a.tall img{ aspect-ratio: 3 / 4; }
.op-gallery a:hover img{ transform: scale(1.05); filter: saturate(1.05) sepia(0); }
.op-gallery figcaption{
  padding: 10px 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--oak);
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 640px){
  .op-gallery a{ transform: none !important; }
}

/* ---- Menu on parchment section reuses .menu-* classes from before ---- */
.op-section .menu-group h3{ color: var(--oak); }

/* ---- CTA banner ---- */
.op-cta-banner{
  background: var(--ziegel);
  color: var(--parchment);
  text-align: center;
  padding: 70px 0;
}
.op-cta-banner h2{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin: 0 0 12px;
}
.op-cta-banner p{ margin: 0 0 26px; opacity: 0.9; }
.op-cta-banner .btn-secondary{ border-color: rgba(241,231,211,0.6); }

@media (max-width: 900px){
  .op-split{ grid-template-columns: 1fr; }
  .op-gallery{ grid-template-columns: repeat(2, 1fr); }
  .op-header .wrap{ justify-content: center; text-align: center; }
  .op-nav{ justify-content: center; }
  .op-nav a.cta{ margin-left: 0; }
  section[id], #oeffnungszeiten{ scroll-margin-top: 200px; }
}

@media (max-width: 480px){
  section[id], #oeffnungszeiten{ scroll-margin-top: 260px; }
}

/* ---- Aktuelles: dreispaltiges News-Raster ---- */
.news-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
}
.news-card{
  background: rgba(241,231,211,0.05);
  border: 1px solid rgba(199,154,62,0.28);
  border-left: 3px solid var(--messing);
  border-radius: 3px;
  padding: 26px 28px;
}
.news-card.news-card--social{
  padding: 26px 26px 14px;
  display: flex;
  flex-direction: column;
}
.news-card .news-label{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--messing-light);
  margin: 0 0 10px;
}
.news-card h3{
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--parchment);
}
.news-card p{ margin: 0; font-size: 0.96rem; color: rgba(241,231,211,0.82); }
.news-card--social .fb-embed-frame{
  margin-top: 4px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(241,231,211,0.04);
  width: 100%;
}
.news-card--social .fb-embed-frame iframe{
  width: 100%;
  border: none;
  display: block;
  min-height: 340px;
}

@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr 1fr; }
  .news-card--social{ grid-column: 1 / -1; }
}
@media (max-width: 760px){
  .news-grid{ grid-template-columns: 1fr; }
  .news-card--social{ grid-column: auto; }
}

/* ---- Speisekarte: aufklappbare Kategorien ---- */
.menu-accordion{ max-width: 900px; margin: 0 auto; }
.menu-accordion details{
  border-bottom: 1px solid rgba(43,32,24,0.15);
}
.menu-accordion details:first-of-type{ border-top: 1px solid rgba(43,32,24,0.15); }
.menu-accordion summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--tanne-deep);
  -webkit-tap-highlight-color: transparent;
}
.menu-accordion summary::-webkit-details-marker{ display: none; }
.menu-accordion summary::marker{ content: ""; }
.menu-accordion summary .cat-name{ flex: 1; }
.menu-accordion summary .count{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(43,32,24,0.5);
  font-weight: 400;
  white-space: nowrap;
}
.menu-accordion summary .chevron{
  width: 26px; height: 26px;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
  color: var(--messing);
  filter: drop-shadow(0 0 3px rgba(199,154,62,0.45));
}
.menu-accordion summary:hover .chevron,
.menu-accordion summary:focus-visible .chevron{
  filter: drop-shadow(0 0 6px rgba(199,154,62,0.75));
}
.menu-accordion details[open] summary .chevron{
  transform: rotate(180deg);
  color: var(--messing-light);
  filter: drop-shadow(0 0 7px rgba(227,200,120,0.8));
}
.menu-accordion .menu-body{ padding: 2px 4px 28px; }
.menu-accordion .menu-body .menu-group{ margin-bottom: 30px; }
.menu-accordion .menu-body .menu-group:last-child{ margin-bottom: 0; }
.menu-accordion .menu-body .menu-group h4.sub{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ziegel);
  margin: 0 0 8px;
}


.menu-addnote{
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(43,32,24,0.45);
  vertical-align: super;
  margin-left: 3px;
}
.additive-legend{
  max-width: 900px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(43,32,24,0.15);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(43,32,24,0.55);
  line-height: 1.9;
}
.additive-legend strong{ color: rgba(43,32,24,0.75); }

/* ---- Kartenzahlung Badge ---- */
.card-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  background: rgba(199,154,62,0.12);
  border: 1px solid rgba(199,154,62,0.35);
  border-radius: 4px;
}

/* ---- Hero: Ken-Burns-Zoom + gestaffeltes Einblenden ---- */
.op-hero .bg{
  animation: heroZoom 22s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes heroZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.09); }
}
.op-hero .eyebrow{ animation: heroFadeUp 0.9s ease both; animation-delay: 0.1s; }
.op-hero h1{ animation: heroFadeUp 0.9s ease both; animation-delay: 0.28s; }
.op-hero p.lead{ animation: heroFadeUp 0.9s ease both; animation-delay: 0.46s; }
.op-hero .hero-actions{ animation: heroFadeUp 0.9s ease both; animation-delay: 0.64s; }
.op-scroll-cue{ animation: heroFadeUp 0.9s ease both; animation-delay: 0.9s; }
@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ---- Nav: ausfahrende Unterstreichung ---- */
.op-nav a:not(.cta){ position: relative; }
.op-nav a:not(.cta)::after{
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 6px;
  height: 1px;
  background: var(--messing-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.op-nav a:not(.cta):hover::after,
.op-nav a:not(.cta):focus-visible::after{ transform: scaleX(1); }

/* ---- Logo: fließendes Quellwasser ---- */
.logo-badge .water-flow{
  stroke-dasharray: 5 4;
  animation: waterFlow 1.4s linear infinite;
}
@keyframes waterFlow{ to{ stroke-dashoffset: -18; } }
.logo-badge .droplet{
  animation: droplet 2.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes droplet{
  0%, 100%{ transform: translateY(0); opacity: 1; }
  50%{ transform: translateY(3px); opacity: 0.65; }
}

@media (prefers-reduced-motion: reduce){
  .op-hero .bg{ animation: none; }
  .op-hero .eyebrow, .op-hero h1, .op-hero p.lead, .op-hero .hero-actions, .op-scroll-cue{
    animation: none; opacity: 1; transform: none;
  }
  .logo-badge .water-flow, .logo-badge .droplet{ animation: none; }
}

/* ---- Speisekarte: dezente Herkunfts-Kennzeichnung ---- */
.diet-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid currentColor;
  position: relative;
  top: -1px;
}
.diet-tag.s{ color: #A85A3E; background: rgba(168,90,62,0.09); }
.diet-tag.r{ color: #8A3623; background: rgba(138,54,35,0.09); }
.diet-tag.h{ color: #A9822B; background: rgba(169,130,43,0.1); }
.diet-tag.f{ color: #2E6B63; background: rgba(46,107,99,0.09); }
.diet-tag.v{ color: #3E5641; background: rgba(62,86,65,0.09); }

.diet-legend{
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
  margin: 22px 0 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(43,32,24,0.65);
}
.diet-legend span{ display:inline-flex; align-items:center; gap: 6px; }
.diet-legend .diet-tag{ margin-left: 0; }

section[id], #oeffnungszeiten{ scroll-margin-top: 92px; }

/* ---- Footer: Social-Icon ---- */
.footer-social{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--messing-light);
  border: 1px solid rgba(199,154,62,0.4);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover, .footer-social a:focus-visible{
  background: var(--messing);
  color: var(--oak-deep);
  transform: translateY(-2px);
}

/* ---- Neuigkeit: schlichtes Spotlight-Banner ---- */
.neuigkeit-section{ background: var(--ziegel); }
.neuigkeit-inner{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  gap: 0;
}
.neuigkeit-media{
  overflow: hidden;
}
.neuigkeit-media img{
  width: 100%; height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}
.neuigkeit-text{
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--parchment);
}
.neuigkeit-label{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,231,211,0.75);
  margin: 0 0 6px;
}
.neuigkeit-text h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 4px;
  color: var(--parchment);
}
.neuigkeit-date{
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--messing-light);
  margin: 0 0 8px;
}
.neuigkeit-desc{
  margin: 0;
  font-size: 0.98rem;
  color: rgba(241,231,211,0.92);
  max-width: 56ch;
}

@media (max-width: 700px){
  .neuigkeit-inner{ grid-template-columns: 1fr; }
  .neuigkeit-media img{ min-height: 180px; }
  .neuigkeit-text{ padding: 22px 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  footer.site-footer .wrap{ grid-template-columns: 1fr; }
  nav.mainnav{ gap: 2px; }
  nav.mainnav a{ padding: 7px 10px; font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn-primary:hover{ transform: none; }
}
