/* ============================================================
   MIEBACH CATERING – MAIN STYLESHEET
   Vollständig übernommen & erweitert aus dem Website-Mockup
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --orange:       #E8831A;
  --orange-dark:  #C06815;
  --orange-deep:  #7A3E06;
  --orange-light: #F5B05A;
  --cream:        #FFFADC;
  --cream-mid:    #FEF3B4;
  --sand:         #F0E2B0;
  --brown:        #3D1F00;
  --text:         #2A1600;
  --text-muted:   #7A5A38;
  --white:        #FFFFFF;
  --r:            12px;
  --rl:           20px;
}

html { scroll-behavior: smooth; }

/* Anker-Sektionen nicht hinter der sticky Nav verstecken */
section[id], div[id] {
  scroll-margin-top: 76px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1.5px solid var(--sand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-dot {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brown);
  line-height: 1.2;
}

.nav-logo-text small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
}

/* WordPress Nav Menu */
#primary-menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-menu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a {
  color: var(--orange);
  background: rgba(232, 131, 26, .08);
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
  display: inline-block;
}

.nav-cta:hover { background: var(--orange-dark); color: #fff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile menu open state */
.nav-menu-open #primary-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 5vw 20px;
  border-bottom: 1.5px solid var(--sand);
  box-shadow: 0 8px 24px rgba(61,31,0,.08);
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--sand);
  border-radius: 10px;
  padding: 13px 26px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, transform .15s;
}

.btn-outline:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
  color: var(--brown);
}

/* ============================================================
   PAGE BANNER (Unterseiten-Header)
   ============================================================ */

.page-banner {
  background: var(--cream);
  padding: 60px 8vw 50px;
  border-bottom: 1.5px solid var(--sand);
}

.page-banner .breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-banner .breadcrumb span,
.page-banner .breadcrumb a { color: var(--orange); text-decoration: none; }

.page-banner h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-banner h1 em {
  font-style: italic;
  color: var(--orange);
}

.page-banner p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================================
   STARTSEITE – HERO
   ============================================================ */

.hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 28%;
  width: 600px;
  height: 600px;
  background: var(--cream-mid);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  padding: 80px 5vw 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 26px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 36px;
}

.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

.hero-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 4vw 40px 0;
}

.hero-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-circle .placeholder-emoji {
  font-size: 80px;
  color: rgba(255,255,255,.4);
}

.hero-circle small {
  font-size: 13px;
  font-family: 'Outfit';
  font-weight: 500;
  color: rgba(255,255,255,.5);
}

.fc {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(61,31,0,.13);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc.c1 { bottom: 60px; left: -30px; }
.fc.c2 { top: 40px; right: -10px; }

.fc-ico {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fc-lbl { font-size: 11px; color: var(--text-muted); }
.fc-val { font-size: 13px; font-weight: 600; color: var(--brown); margin-top: 1px; }

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */

.highlights {
  padding: 60px 8vw;
  background: var(--white);
}

.hl-header {
  text-align: center;
  margin-bottom: 48px;
}

.hl-header .section-desc { margin: 0 auto; }

.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.hl-card {
  background: var(--cream);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.hl-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(61,31,0,.09);
}

.hl-card:hover::after { transform: scaleX(1); }

.hl-card .ico { font-size: 34px; margin-bottom: 14px; display: block; }
.hl-card h3 { font-family: 'Fraunces', serif; font-size: 19px; color: var(--brown); margin-bottom: 8px; font-weight: 600; }
.hl-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 80px 8vw;
  background: var(--brown);
}

.testimonials .section-tag { color: var(--orange-light); }
.testimonials .section-title { color: var(--cream); }
.testimonials .section-title em { color: var(--orange-light); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.t-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--rl);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.1);
}

.t-stars { color: var(--orange-light); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 15px; color: rgba(255,250,220,.8); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-author { font-size: 13px; font-weight: 600; color: var(--orange-light); }
.t-occasion { font-size: 12px; color: rgba(255,250,220,.4); margin-top: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--orange);
  padding: 70px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  font-weight: 700;
  max-width: 480px;
  line-height: 1.2;
}

.cta-banner h2 em { font-style: italic; opacity: .85; }

.btn-white {
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover { opacity: .9; color: var(--orange); }

/* ============================================================
   SPEISEKARTE
   ============================================================ */

.karte-wrap {
  padding: 60px 8vw;
  background: var(--white);
}

.karte-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

.karte-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.karte-tab {
  background: none;
  border: none;
  text-align: left;
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.karte-tab.active { background: var(--orange); color: #fff; }
.karte-tab:not(.active):hover { background: var(--cream); color: var(--brown); }
.karte-tab .ti { font-size: 16px; }

.karte-panel { display: none; }
.karte-panel.active { display: block; }

.karte-panel h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 28px;
  font-weight: 700;
}

.karte-subcat { margin-bottom: 32px; }

.karte-subcat h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--sand);
}

.karte-item {
  padding: 13px 0;
  border-bottom: 1px solid rgba(240,226,176,.5);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.karte-item:last-child { border-bottom: none; }

.karte-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}

.karte-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  margin-left: 8px;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */

.ueber-content-wrap {
  padding: 60px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ueber-img-main {
  background: var(--sand);
  border-radius: var(--rl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  gap: 10px;
  color: var(--text-muted);
  margin-bottom: 20px;
  overflow: hidden;
}

.ueber-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-img-main p { font-size: 13px; font-family: 'Outfit'; }

.ueber-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ueber-img-sm {
  background: var(--cream-mid);
  border-radius: var(--r);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}

.ueber-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.ueber-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.ueber-text h2 em { font-style: italic; color: var(--orange); }
.ueber-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }

.value-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.value-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.team-strip {
  padding: 0 8vw 80px;
  background: var(--white);
}

.team-strip .section-title { margin-bottom: 36px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--cream);
  border-radius: var(--rl);
  padding: 28px 20px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--brown); font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   GALERIE
   ============================================================ */

.galerie-wrap { padding: 60px 8vw; }

.galerie-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.filter-btn.active,
.filter-btn:hover { background: var(--orange); color: #fff; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gal-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item.tall { grid-row: span 2; }

.gal-img {
  background: var(--sand);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  gap: 6px;
  color: var(--text-muted);
  transition: transform .3s;
  overflow: hidden;
}

.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.gal-item.tall .gal-img { aspect-ratio: auto; height: 100%; }
.gal-img p { font-size: 11px; font-family: 'Outfit'; }

.gal-item:hover .gal-img,
.gal-item:hover .gal-img img { transform: scale(1.04); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,0,.7), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { color: #fff; font-size: 13px; font-weight: 600; }

/* Referenzen */
.refs-wrap { padding: 0 8vw 80px; }
.refs-wrap .section-title { margin-bottom: 32px; }

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.ref-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ref-ico { font-size: 28px; flex-shrink: 0; }
.ref-card h4 { font-size: 14px; font-weight: 600; color: var(--brown); margin-bottom: 2px; }
.ref-card p { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   BLOG
   ============================================================ */

.blog-wrap { padding: 60px 8vw; }

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: center;
}

.blog-featured-img {
  background: var(--sand);
  border-radius: var(--rl);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  gap: 10px;
  color: var(--text-muted);
  overflow: hidden;
}

.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-decoration: none;
}

.blog-featured h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--brown);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-featured h2 em { font-style: italic; color: var(--orange); }
.blog-featured p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--cream);
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(61,31,0,.1);
}

.blog-card-img {
  background: var(--sand);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  gap: 6px;
  color: var(--text-muted);
  overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card-body .blog-tag { margin-bottom: 10px; font-size: 10px; }
.blog-card h3 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--brown); font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  font-family: 'Outfit';
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Single Post */
.post-single-wrap {
  padding: 60px 8vw;
  max-width: 900px;
  margin: 0 auto;
}

.post-single-wrap .post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-top: 32px;
}

.post-single-wrap .post-content h2,
.post-single-wrap .post-content h3 {
  font-family: 'Fraunces', serif;
  color: var(--brown);
  margin: 32px 0 14px;
}

.post-single-wrap .post-content p { margin-bottom: 18px; color: var(--text-muted); }
.post-single-wrap .post-content img { max-width: 100%; border-radius: var(--r); margin: 24px 0; }

/* ============================================================
   KONTAKT
   ============================================================ */

.kontakt-wrap { padding: 60px 8vw; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 8px;
}

.kontakt-info { display: flex; flex-direction: column; gap: 20px; }

.info-row { display: flex; align-items: flex-start; gap: 14px; }

.info-ico {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-lbl { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.info-val { font-size: 15px; color: var(--brown); font-weight: 500; }
.info-val a { color: var(--orange); text-decoration: none; }

.map-placeholder {
  background: var(--sand);
  border-radius: var(--rl);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  gap: 8px;
  color: var(--text-muted);
  margin-top: 24px;
  overflow: hidden;
}

.map-placeholder iframe { width: 100%; height: 100%; border: none; border-radius: var(--rl); }
.map-placeholder p { font-size: 13px; font-family: 'Outfit'; }

.hours-table { width: 100%; margin-top: 24px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--sand); }
.hours-table td:first-child { color: var(--brown); font-weight: 500; }
.hours-table td:last-child { text-align: right; }

/* ============================================================
   FORMS (Kontakt & Buchung)
   ============================================================ */

.kontakt-form,
.buchung-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 13px; font-weight: 500; color: var(--text-muted); }

.fg input,
.fg textarea,
.fg select {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--orange); }

.fg textarea { resize: vertical; min-height: 100px; }

/* Contact Form 7 overrides */
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  transition: border-color .2s;
  outline: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus { border-color: var(--orange); }

.wpcf7 input[type="submit"],
.form-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}

.wpcf7 input[type="submit"]:hover,
.form-submit:hover { background: var(--orange-dark); }

.form-section-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--brown);
  font-weight: 600;
  margin: 8px 0 4px;
  padding-top: 8px;
  border-top: 1.5px solid var(--sand);
}

.form-section-title:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.cb-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.cb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.cb-item input { width: 16px; height: 16px; accent-color: var(--orange); flex-shrink: 0; }

/* ============================================================
   BUCHUNG
   ============================================================ */

.buchung-wrap { padding: 60px 8vw; }

.buchung-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 8px;
}

.buchung-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.info-box {
  background: var(--cream);
  border-radius: var(--rl);
  padding: 24px;
}

.info-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 16px;
}

.info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.info-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.price-hint {
  background: var(--brown);
  border-radius: var(--rl);
  padding: 24px;
  color: rgba(255,250,220,.75);
}

.price-hint h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 10px;
}

.price-hint p { font-size: 14px; line-height: 1.65; }

.price-hint .direct-contact-label {
  font-size: 12px;
  color: rgba(255,250,220,.5);
  margin-bottom: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.price-hint .direct-contact-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange-light);
}

/* ============================================================
   404
   ============================================================ */

.error-404-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 8vw;
  text-align: center;
  background: var(--cream);
}

.error-404-wrap .num-404 {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.error-404-wrap h1 { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 36px); color: var(--brown); margin-bottom: 14px; }
.error-404-wrap p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--brown);
  color: rgba(255,250,220,.65);
  padding: 52px 8vw 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.f-brand h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 8px;
}

.f-brand p { font-size: 14px; line-height: 1.7; max-width: 240px; }

.f-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }

.f-col ul li a {
  color: rgba(255,250,220,.55);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.f-col ul li a:hover { color: var(--orange-light); }

/* Footer nav menu */
#footer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
#footer-menu li a { color: rgba(255,250,220,.55); text-decoration: none; font-size: 14px; transition: color .2s; }
#footer-menu li a:hover { color: var(--orange-light); }

.f-bottom {
  background: rgba(0,0,0,.25);
  padding: 16px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,250,220,.35);
  margin: 40px -8vw 0;
}

.f-bottom a { color: rgba(255,250,220,.45); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  #primary-menu { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 6vw 0; }
  .hero-visual { padding: 32px 6vw; }
  .hero-circle { width: 260px; height: 260px; }

  .ueber-content-wrap,
  .blog-featured,
  .buchung-grid,
  .kontakt-grid { grid-template-columns: 1fr; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .karte-layout { grid-template-columns: 1fr; }
  .karte-nav { flex-direction: row; flex-wrap: wrap; }

  .site-footer { grid-template-columns: 1fr 1fr; }

  .blog-featured { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .hl-grid,
  .t-grid,
  .galerie-grid { grid-template-columns: 1fr; }

  .form-row,
  .cb-group { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; }
  .gal-item.tall { grid-row: span 1; }
  .site-footer { grid-template-columns: 1fr; }

  .fc.c1, .fc.c2 { display: none; }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
}
