/* Zum Dorfkrug — Papa-Joe's-inspiriertes Warm-Dark-Gold-Design.
   Palette bewusst nah am Referenz-Site: bg #1a0f08, gold #c9a84e / #d4af37, ivory #f3e9d5. */

/* Self-hosted fonts (DSGVO-freundlich, kein Google-CDN-Call). Variable-Font: 1 Datei je Familie. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #1a0f08;
  --bg-2: #140b06;
  --bg-3: #26160f;
  --ivory: #f3e9d5;
  --ivory-2: #fbf1dc;
  --cream: #fef8ea;
  --gold: #c9a84e;
  --gold-2: #d4af37;
  --gold-3: #edd28a;
  --wine: #7d1f2b;
  --line: rgba(201, 168, 78, 0.3);
  --line-strong: rgba(201, 168, 78, 0.6);
  --line-dark: rgba(26, 15, 8, 0.28);
  --shadow-text: 0 4px 18px rgba(0, 0, 0, 0.85);
  --shadow-text-sm: 0 2px 10px rgba(0, 0, 0, 0.7);
  --track-eyebrow: 0.3em;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* --- Eyebrow + hairline (Papa-Joe's-Signature) --- */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.eyebrow-dark { color: var(--wine); }
.hairline {
  width: 96px;
  height: 1px;
  background: var(--line-strong);
  margin: 18px auto;
}
.hairline-dark { background: rgba(26, 15, 8, 0.35); }
.hairline-top { margin-top: 26px; }

/* --- Header / Nav --- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(20, 11, 6, 0.85), rgba(20, 11, 6, 0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(26, 15, 8, 0.6);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 78, 0.15);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.nav-brand-name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: 18px;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-2);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 20px 120px;
  overflow: hidden;
  isolation: isolate;
}
/* Statt Foto: dunkles warmes Radial-Gradient + Papier-Grain overlay */
.hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, #3d2c23 0%, #26160f 40%, #140b06 80%, #0e0703 100%);
  filter: saturate(1.05);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 11, 6, 0.55) 0%, rgba(20, 11, 6, 0) 40%, rgba(20, 11, 6, 0.75) 100%);
}
/* Papier-Grain via SVG data-URL — dezent, keine Bild-Dependency */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.72  0 0 0 0 0.56  0 0 0 0 0.25  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 6px 0 0;
  text-shadow: var(--shadow-text);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-3);
}
.hero-sub {
  margin: 18px auto 0;
  max-width: 560px;
  color: rgba(243, 233, 213, 0.9);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  text-shadow: var(--shadow-text-sm);
}
.hero-cta {
  margin-top: 30px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(243, 233, 213, 0.7);
  font-size: 12.5px;
  letter-spacing: 0.05em;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta li svg { opacity: 0.75; }
.hero-meta-dot { opacity: 0.5; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201, 168, 78, 0.85);
  text-shadow: var(--shadow-text-sm);
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--gold-2); }
.hero-scroll-label {
  font-size: 11px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-scroll-line {
  width: 1px;
  height: 22px;
  background: currentColor;
  opacity: 0.7;
}
.hero-scroll-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 6px 24px rgba(201, 168, 78, 0.22);
}
.btn-gold:hover { background: var(--gold-2); }
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* --- Sections --- */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.section-dark {
  background: var(--bg);
  color: var(--ivory);
  border-top: 1px solid var(--line);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.55  0 0 0 0 0.25  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.section-cream {
  background: var(--cream);
  color: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-cream::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.4  0 0 0 0 0.15  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: multiply;
}
.section > .container { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow,
.section-head .hairline { }
.section h2 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.005em;
}
.section h2.h-dark, .section-cream h2 { color: var(--wine); }

/* --- Two-col layouts --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
}

/* Prose */
.prose p {
  font-size: 16.5px;
  color: rgba(243, 233, 213, 0.85);
  line-height: 1.7;
  margin: 0 0 16px;
}
.prose p + p { margin-top: 4px; }

/* Facts card */
.facts {
  list-style: none;
  padding: 32px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 22, 15, 0.55);
  display: grid;
  gap: 22px;
}
.facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.fact-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
}

/* --- Hours (Cream section) --- */
.hours {
  max-width: 560px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}
.hours-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--bg);
}
.hours-day {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
}
.hours-time {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--bg);
  font-variant-numeric: tabular-nums;
}
.hours-dots {
  border-bottom: 1px dotted rgba(26, 15, 8, 0.35);
  align-self: end;
  height: 1px;
  transform: translateY(-6px);
}
.hours-row.is-closed .hours-day,
.hours-row.is-closed .hours-time {
  color: rgba(26, 15, 8, 0.5);
  font-style: italic;
  font-weight: 500;
}
.hours-note {
  text-align: center;
  margin: 30px 0 0;
  color: rgba(26, 15, 8, 0.6);
  font-size: 13.5px;
  font-style: italic;
}

/* --- Contact & Navi --- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-ico {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(38, 22, 15, 0.5);
}
.contact-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.contact-list p {
  margin: 0;
  color: rgba(243, 233, 213, 0.85);
  font-size: 15px;
  line-height: 1.55;
}
.contact-list a { color: var(--ivory); border-bottom: 1px solid var(--line); transition: color 0.2s, border-color 0.2s; }
.contact-list a:hover { color: var(--gold); border-color: var(--gold); }

.navi { display: grid; gap: 14px; align-content: start; }
.navi-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.navi-btn {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(38, 22, 15, 0.55);
  color: var(--ivory);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.navi-btn:hover {
  border-color: var(--gold);
  background: rgba(38, 22, 15, 0.8);
}
.navi-btn:active { transform: translateY(1px); }
.navi-txt { display: flex; flex-direction: column; line-height: 1.2; }
.navi-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
}
.navi-sub {
  font-size: 12px;
  color: rgba(243, 233, 213, 0.65);
  margin-top: 2px;
}
.navi-chevron {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.2s;
}
.navi-btn:hover .navi-chevron { transform: translateX(3px); }
.navi-note {
  font-size: 12px;
  color: rgba(243, 233, 213, 0.55);
  margin: 4px 0 0;
  font-style: italic;
}

/* --- Footer --- */
.footer {
  background: var(--bg-2);
  color: rgba(243, 233, 213, 0.7);
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand .nav-mark { width: 44px; height: 44px; font-size: 22px; }
.footer-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 4px;
}
.footer-line { margin: 0; font-size: 13.5px; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}
.footer-legal a {
  color: rgba(243, 233, 213, 0.7);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-mockup {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 233, 213, 0.4);
}

/* --- Responsive nav --- */
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-brand-eyebrow { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; }
}
@media (max-width: 480px) {
  .hero { padding-top: 110px; padding-bottom: 100px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-cta .btn { justify-content: center; }
  .facts { padding: 24px; }
  .footer-inner { flex-direction: column; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
