/* Salt & Pepper – restaurant-salt-and-pepper.de */
:root {
  --bg: #FAF6F0;
  --paper: #FFFFFF;
  --ink: #2C231B;
  --muted: #6F6050;
  --accent: #B4622D;
  --accent-dark: #96501F;
  --dark: #241C14;
  --line: #E7DDD0;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff;
  padding: 10px 18px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */
.site-head {
  background: var(--dark);
  color: #F3EADF;
  border-bottom: 3px solid var(--accent);
}
.head-in {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand img { border-radius: 50%; width: 52px; height: 52px; object-fit: cover; }
.brand-t { display: flex; flex-direction: column; line-height: 1.25; }
.brand-t strong { font-family: var(--serif); font-size: 24px; letter-spacing: .4px; }
.brand-t span:not(strong) { font-size: 14px; color: #C9B8A4; }
.main-nav { display: flex; flex-wrap: wrap; gap: 4px 6px; list-style: none; }
.main-nav a {
  display: block; padding: 8px 13px; border-radius: 8px;
  color: #F3EADF; text-decoration: none; font-size: 17px;
}
.main-nav a:hover { background: rgba(255,255,255,.09); color: #fff; }
.main-nav a.active { background: var(--accent); color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,.30) 0%, rgba(20,14,8,.78) 100%);
}
.hero-in { position: relative; width: 100%; color: #fff; padding-top: 90px; padding-bottom: 56px; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 15px; font-weight: 600;
  color: #EFC9A5; margin-bottom: 10px;
}
.hero h1 { font-family: var(--serif); font-size: clamp(44px, 7vw, 72px); line-height: 1.05; }
.hero-sub { font-size: clamp(19px, 2.4vw, 23px); max-width: 620px; margin-top: 14px; color: #F3E9DC; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 18px;
}
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.75); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-small { padding: 10px 18px; font-size: 16px; }

/* ---------- Info-Band ---------- */
.info-band { background: var(--paper); border-bottom: 1px solid var(--line); }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 40px; padding-bottom: 40px;
}
.info-grid h2, .foot-grid h2 {
  font-family: var(--serif); font-size: 21px; color: var(--accent-dark); margin-bottom: 8px;
}
.info-grid p + p { margin-top: 8px; }
.info-grid a { font-weight: 700; font-size: 22px; text-decoration: none; }

/* ---------- Sektionen ---------- */
.section { padding-top: 56px; padding-bottom: 56px; }
.sec-title {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 38px); margin-bottom: 26px;
}
.sec-title::after {
  content: ""; display: block; width: 64px; height: 3px; background: var(--accent); margin-top: 10px;
}
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }
.two-col p + p { margin-top: 14px; }
.two-col figure img { border-radius: 14px; }
.two-col figcaption { font-size: 15px; color: var(--muted); margin-top: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.card:hover { border-color: var(--accent); color: inherit; }
.card img { height: 190px; width: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 22px; }
.card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.card .more { color: var(--accent-dark); font-weight: 600; display: inline-block; margin-top: 12px; }
.card:hover .more { text-decoration: underline; }

.accent-band { background: var(--dark); color: #F3EADF; text-align: center; }
.accent-band .wrap { padding-top: 52px; padding-bottom: 56px; }
.accent-band h2 { font-family: var(--serif); font-size: 30px; margin-bottom: 10px; }
.accent-band p { max-width: 560px; margin: 0 auto 24px; }

/* ---------- Seitenkopf ---------- */
.page-head { background: var(--dark); color: #fff; border-bottom: 3px solid var(--accent); }
.page-head .wrap { padding-top: 52px; padding-bottom: 46px; }
.page-head h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 52px); }
.page-head .lead { font-size: 20px; color: #E8D9C6; max-width: 700px; margin-top: 10px; }
.vegan-note {
  margin-top: 18px; background: rgba(180, 98, 45, .18); border: 1px solid var(--accent);
  border-radius: 10px; padding: 12px 16px; max-width: 700px; color: #F6EADB;
}

/* ---------- Speisekarte ---------- */
.menu-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.menu-nav ul {
  display: flex; gap: 2px; list-style: none; overflow-x: auto;
  -webkit-overflow-scrolling: touch; padding: 8px 0;
}
.menu-nav a {
  display: block; white-space: nowrap; padding: 7px 12px; border-radius: 8px;
  text-decoration: none; color: var(--ink); font-size: 16px; font-weight: 500;
}
.menu-nav a:hover { background: var(--bg); color: var(--accent-dark); }
.menu-wrap { padding-top: 40px; padding-bottom: 64px; }
.menu-part {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 38px);
  margin: 44px 0 6px; padding-bottom: 10px; border-bottom: 3px solid var(--accent);
}
.menu-part:first-child { margin-top: 0; }
.menu-part-note { color: var(--muted); margin-top: 10px; }
.menu-sec { margin-top: 34px; scroll-margin-top: 70px; }
.menu-sec h3 { font-family: var(--serif); font-size: 26px; color: var(--accent-dark); margin-bottom: 14px; }
.sec-sub { font-size: 17px; color: var(--muted); font-weight: 400; font-style: italic; margin-left: 6px; }
.dish { padding: 12px 0; border-bottom: 1px solid var(--line); }
.dish:last-child { border-bottom: 0; }
.dish-head { display: flex; align-items: baseline; gap: 10px; }
.dish-head h4 { font-size: 19px; font-weight: 700; font-family: var(--serif); letter-spacing: .2px; }
.dish-note { font-size: 16px; color: var(--muted); font-weight: 400; font-family: var(--sans); }
.dots { flex: 1; border-bottom: 2px dotted #CDBFAE; min-width: 24px; transform: translateY(-4px); }
.price { font-weight: 700; color: var(--accent-dark); white-space: nowrap; font-size: 19px; }
.dish-de { margin-top: 3px; }
.dish-en { color: var(--muted); font-style: italic; margin-top: 1px; }
.menu-foot {
  margin-top: 40px; padding: 16px 20px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; text-align: center;
}

/* ---------- Inhaltsseiten ---------- */
.content-page { padding-top: 44px; padding-bottom: 64px; max-width: 860px; }
.content-page p + p { margin-top: 14px; }
.content-page ul { margin: 14px 0 0 24px; }
.lex { margin-top: 36px; scroll-margin-top: 24px; }
.lex h2 {
  font-family: var(--serif); font-size: 28px; margin-bottom: 10px; color: var(--accent-dark);
}
.cta-line { margin-top: 40px; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.gallery img { border-radius: 12px; height: 100%; object-fit: cover; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px;
}
.contact-card h2 { font-family: var(--serif); font-size: 22px; color: var(--accent-dark); margin-bottom: 10px; }
.contact-card p + p { margin-top: 10px; }
.big-tel a { font-size: 26px; font-weight: 700; text-decoration: none; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; padding: 6px 0; vertical-align: top; }
.hours th { font-weight: 600; padding-right: 12px; white-space: nowrap; }
.hours td { white-space: nowrap; }

/* ---------- Legal ---------- */
.legal h2 { font-family: var(--serif); font-size: 24px; margin: 28px 0 8px; }
.legal h2:first-child { margin-top: 0; }

/* ---------- Footer ---------- */
.site-foot { background: var(--dark); color: #D9CCBC; margin-top: 0; }
.foot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 48px; padding-bottom: 34px;
}
.foot-brand { font-family: var(--serif); font-size: 24px; color: #fff; margin-bottom: 8px; }
.foot-grid h2 { color: #EFC9A5; }
.foot-grid p + p { margin-top: 8px; }
.site-foot a { color: #F3EADF; }
.foot-legal {
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px; padding-bottom: 24px; font-size: 16px;
}
.foot-legal ul { display: flex; gap: 22px; list-style: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .info-grid, .cards, .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 420px; }
}
@media (max-width: 520px) {
  body { font-size: 17.5px; }
  .gallery { grid-template-columns: 1fr; }
  .dish-head { flex-wrap: wrap; }
  .dots { display: none; }
  .dish-head h4 { flex: 1 1 auto; }
}

/* ---------- Druck (Speisekarte) ---------- */
@media print {
  .site-head, .site-foot, .menu-nav, .hero, .accent-band, .cta-line, .btn { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .page-head { background: none; color: #000; border-bottom: 2px solid #000; }
  .page-head .lead, .vegan-note { color: #000; }
  .menu-sec { break-inside: avoid; }
  .price { color: #000; }
  a { color: #000; text-decoration: none; }
}
