/* Zum Dorfkrug — Landing */

:root {
  --cream: #f4ecdd;
  --cream-2: #ede2cc;
  --paper: #fbf6ec;
  --wood: #1e120a;
  --wood-soft: #2a1a10;
  --wood-line: #3a2618;
  --wine: #6b1f1f;
  --wine-deep: #4a1414;
  --gold: #b8871a;
  --gold-soft: #d8a63a;
  --ink: #221610;
  --muted: #6c5844;
  --muted-2: #8a755d;
  --hairline: rgba(30, 18, 10, 0.12);
  --shadow: 0 20px 60px -30px rgba(30, 18, 10, 0.45);
  --radius: 4px;

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 0.9em; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(30, 18, 10, 0.94);
  backdrop-filter: blur(6px);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--wood);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.15);
}
.nav-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: rgba(244, 236, 221, 0.82);
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--cream); border-bottom-color: var(--gold); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(244,236,221,0.28);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.nav-cta:hover { background: rgba(244,236,221,0.08); border-color: var(--gold); }

/* Tablet: kompaktere Nav, Links bleiben sichtbar */
@media (max-width: 900px) {
  .nav-links { gap: 16px; font-size: 13.5px; }
  .nav-cta { padding: 7px 12px; font-size: 12.5px; }
}
/* Klein-Tablet: Telefonnummer verschwindet, Icon bleibt */
@media (max-width: 640px) {
  .nav-links { gap: 12px; font-size: 13px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 8px; }
  .nav-logo-text { font-size: 18px; }
}
/* Handy: Nav-Links weg, Logo + Tel-Icon reichen */
@media (max-width: 480px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 8px; }
  .nav-links { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(184, 135, 26, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 90%, rgba(107, 31, 31, 0.35), transparent 60%),
    linear-gradient(180deg, #1e120a 0%, #2a1a10 60%, #1e120a 100%);
}
.hero-bg::after {
  /* wood-grain texture via layered gradients */
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.10) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: .6;
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 20px 108px;
  min-width: 0;
}
@media (max-width: 900px) {
  .hero-inner { padding: 80px 20px 88px; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 64px 20px 76px; }
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 11vw, 112px);
  line-height: 0.96;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold-soft);
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  max-width: 620px;
  color: rgba(244, 236, 221, 0.82);
  margin: 0 0 30px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(244, 236, 221, 0.7);
  font-size: 13.5px;
}
.hero-meta li {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta svg { color: var(--gold-soft); flex: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold);
  color: var(--wood);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,236,221,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* dark-on-light variant used inside sections */
.section-contact .btn-ghost {
  color: var(--wine);
  border-color: rgba(107, 31, 31, 0.4);
}
.section-contact .btn-ghost:hover { border-color: var(--wine); background: rgba(107, 31, 31, 0.06); }

/* ---- Section base ---- */
.section {
  padding: 80px 0;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 12px;
  font-weight: 700;
}
.section-eyebrow.center { text-align: center; }
.section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.12;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
  color: var(--wood);
}
.section h2.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 20ch; }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
  min-width: 0;
}
.two-col > * { min-width: 0; }
@media (max-width: 900px) {
  .two-col { gap: 40px; }
}
@media (max-width: 780px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Haus ---- */
.section-haus {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.two-col-text p {
  font-size: 17px;
  color: var(--muted);
}
.two-col-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fact {
  padding: 18px 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(30,18,10,0.03);
}
.fact-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 6px;
  font-weight: 600;
}
.fact-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--wood);
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 480px) {
  .two-col-facts { grid-template-columns: 1fr; }
}

/* ---- Öffnungszeiten ---- */
.section-hours {
  background: var(--cream);
}
.hours-grid {
  max-width: 560px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
  gap: 12px;
}
.hours-row:last-child { border-bottom: 0; }
.hours-day {
  font-weight: 600;
  color: var(--wood);
  font-family: var(--serif);
  font-size: 17px;
}
.hours-time {
  color: var(--wine);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  word-break: keep-all;
}
.hours-row.closed .hours-time {
  color: var(--muted-2);
  font-style: italic;
  font-weight: 500;
}
.hours-row.closed {
  background: rgba(30, 18, 10, 0.025);
}
.hours-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 13.5px;
  margin-top: 20px;
  font-style: italic;
}

/* ---- Kontakt ---- */
.section-contact {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list svg { color: var(--wine); margin-top: 2px; flex: none; }
.contact-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 2px;
  font-weight: 600;
}
.contact-list p { margin: 0; color: var(--wood); }
.contact-list a { color: var(--wine); text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.contact-call {
  display: inline-flex;
}

.navi-wrap {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 480px) {
  .navi-wrap { padding: 16px; }
  .navi-btn { padding: 12px 14px; gap: 12px; }
  .navi-sub { font-size: 12.5px; }
}
.navi-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 4px;
  font-weight: 600;
}
.navi-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--wood);
  background: var(--paper);
  transition: border-color .15s, background .15s, transform .15s;
}
.navi-btn:hover {
  border-color: var(--wine);
  background: #fff;
}
.navi-btn:active { transform: translateY(1px); }
.navi-btn > svg:first-child { flex: none; }
.navi-btn > span {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.navi-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--wood);
  line-height: 1.2;
}
.navi-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.navi-chevron {
  color: var(--muted-2);
  flex: none;
  transition: transform .15s, color .15s;
}
.navi-btn:hover .navi-chevron {
  color: var(--wine);
  transform: translateX(3px);
}
.navi-note {
  font-size: 13px;
  color: var(--muted-2);
  margin: 6px 2px 0;
  font-style: italic;
}

/* ---- Footer ---- */
.footer {
  background: var(--wood);
  color: rgba(244, 236, 221, 0.72);
  padding: 40px 0 28px;
  font-size: 13.5px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 6px;
}
.footer-line { margin: 0 0 3px; }
.footer-legal {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-legal a {
  color: rgba(244, 236, 221, 0.72);
  text-decoration: none;
  border-bottom: 1px dotted rgba(244, 236, 221, 0.35);
  padding-bottom: 1px;
}
.footer-legal a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.footer-mockup {
  margin-top: 8px;
  font-size: 11.5px;
  color: rgba(244, 236, 221, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .footer-legal { text-align: left; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 900px) {
  .section { padding: 68px 0; }
}
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-meta { gap: 14px; font-size: 12.5px; }
  .contact-list li { padding: 12px 0; gap: 12px; }
  .fact { padding: 16px; }
  .hours-row { padding: 14px 18px; font-size: 14.5px; }
  .hours-day { font-size: 16px; }
}
/* Landscape-Phone: viewport-hoehe knapp */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-inner { padding: 48px 20px 56px; }
}
