/* Stadtflair Koblenz — Variante C (zentrierter Aufbau, numerierte Abschnitte) */

:root {
  --bg: #f4efe4;
  --bg-alt: #eae3d4;
  --paper: #f8f4ea;
  --ink: #24352c;
  --ink-soft: rgba(36, 53, 44, 0.88);
  --ink-muted: rgba(36, 53, 44, 0.75);
  --rule: rgba(36, 53, 44, 0.22);
  --accent: #b5623c;
  --accent-light: #c98a63;
  --cream: #f4efe4;
  --dark: #24352c;
  --darker: #1c2a23;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Jost, system-ui, -apple-system, sans-serif;
  --script: Parisienne, cursive;
  --wrap: 1120px;
  --pad-x: clamp(20px, 3vw, 40px);
  --section-y: clamp(48px, 6vw, 96px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
p { text-wrap: pretty; }
img { display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(36, 53, 44, 0.12);
  border-bottom: 1px solid rgba(36, 53, 44, 0.12);
}
.section--dark { background: var(--dark); color: var(--cream); }
.center { text-align: center; }

/* Kopfleiste */
.header { position: sticky; top: 0; z-index: 40; background: var(--dark); color: var(--cream); }
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 11px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}
.nav a { color: rgba(244, 239, 228, 0.85); white-space: nowrap; }
.nav a:hover { color: var(--accent-light); }

/* Hero */
.hero { position: relative; background: var(--dark); color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; opacity: 0.42; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,53,44,0.7) 0%, rgba(36,53,44,0.8) 55%, rgba(36,53,44,0.93) 100%);
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 10vw, 132px) var(--pad-x);
  text-align: center;
}
.hero__kicker {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.75);
  white-space: nowrap;
}
.hero__word { font-family: var(--script); font-size: clamp(58px, 10vw, 124px); line-height: 0.95; margin: 12px 0 4px; }
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.3;
  margin: 14px auto 32px;
  max-width: 700px;
  color: #f7f3ea;
}

/* Abschnittsmarke */
.tag { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.tag__no { font-family: var(--serif); font-size: 15px; color: var(--accent); }
.tag__name { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.tag__rule { flex: 1 1 0; height: 1px; background: var(--rule); }
.section--dark .tag__no, .section--dark .tag__name { color: var(--accent-light); }
.section--dark .tag__rule { background: rgba(244, 239, 228, 0.28); }

/* Typo */
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.h2--dark { font-size: clamp(30px, 4.4vw, 54px); }
.h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.1; margin: 0 0 18px; }
.body { font-size: 16.5px; line-height: 1.75; margin: 0 0 16px; color: var(--ink-soft); }
.textcols { max-width: 900px; margin: 0 auto; columns: 2 320px; column-gap: clamp(22px, 3vw, 44px); }
.textcols p:last-child { margin-bottom: 0; }
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.5;
  margin: clamp(26px, 3.4vw, 44px) auto 0;
  max-width: 760px;
  text-align: center;
}
.lead-dark { font-size: 17px; line-height: 1.7; margin: 0 auto 30px; max-width: 560px; color: rgba(244, 239, 228, 0.75); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn--solid { background: var(--dark); color: var(--cream); }
.btn--solid:hover { background: var(--accent); color: #fff; }
.btn--outline { border-color: var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--cream); }
.btn--light { border-color: rgba(244, 239, 228, 0.5); color: var(--cream); }
.btn--light:hover { background: rgba(244, 239, 228, 0.14); }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--lg { padding: 17px 32px; font-size: 13.5px; letter-spacing: 0.14em; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.actions--center { justify-content: center; }
.link-underline {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* Logo-Badge */
.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.2px solid currentColor;
  position: relative;
  flex: 0 0 auto;
}
.mark__ring { position: absolute; inset: 4px; border-radius: 50%; border: 0.8px solid currentColor; opacity: 0.4; }
.mark__word { font-family: var(--script); line-height: 1; padding-top: 2px; white-space: nowrap; }
.mark--header { width: 46px; height: 46px; color: var(--cream); }
.mark--header .mark__ring { inset: 3px; }
.mark--header .mark__word { font-size: 9.5px; padding-top: 1px; }
.mark--voucher { width: 124px; height: 124px; color: var(--ink); border-width: 1.4px; }
.mark--voucher .mark__ring { inset: 7px; }
.mark--voucher .mark__word { font-size: 25px; padding-top: 3px; }
.mark--footer { width: 74px; height: 74px; color: var(--cream); }
.mark--footer .mark__ring { inset: 5px; opacity: 0.35; }
.mark--footer .mark__word { font-size: 14px; }

/* Bildraster — Schwellen so gesetzt, dass keine Waisenzeile entsteht */
.trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 14px;
  margin-top: clamp(26px, 3.4vw, 44px);
}
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 12px; }
.frame { overflow: hidden; border-radius: 3px; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--trio { height: clamp(180px, 20vw, 260px); }
.frame--gal { height: clamp(200px, 23vw, 290px); }
.gallery__foot {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.gallery__note { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: rgba(36, 53, 44, 0.8); }

/* Speisekarte */
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 16px; }
.card {
  background: var(--bg);
  border: 1px solid rgba(36, 53, 44, 0.16);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 230px;
}
.card__no { font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--accent); }
.card__title { font-family: var(--serif); font-weight: 500; font-size: 25px; line-height: 1.15; margin: 0; }
.card__text { font-size: 15.5px; line-height: 1.6; margin: 0; color: var(--ink-muted); }

/* Zweispaltige Blöcke */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 3.4vw, 52px); align-items: start; }
.split--center { align-items: center; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Öffnungszeiten */
.daygrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 10px; }
.day { border: 1px solid rgba(36, 53, 44, 0.18); padding: 13px 15px; display: flex; flex-direction: column; gap: 3px; }
.day__name { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.day__time { font-family: var(--serif); font-size: 20px; color: var(--ink-soft); }
.day.is-today { background: var(--paper); }
.day.is-today .day__name, .day.is-today .day__time { color: var(--accent); font-weight: 600; }

/* Gutscheine */
.voucher__card {
  border: 1.4px solid rgba(36, 53, 44, 0.32);
  background: var(--paper);
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.voucher__label {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.ticks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: baseline; font-size: 17px; line-height: 1.6; }
.ticks li span:first-child { color: var(--accent); }

/* Services */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 16px; border: 1px solid rgba(36, 53, 44, 0.28); border-radius: 999px; font-size: 14.5px; }

/* Kontakt */
.contact__meta { display: grid; gap: 20px; font-size: 16.5px; line-height: 1.6; }
.contact__label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  margin-bottom: 6px;
}
.contact__meta a { color: var(--cream); border-bottom: 1px solid rgba(201, 138, 99, 0.7); }
.contact__meta a:hover { color: var(--accent-light); }
.contact__meta .btn { border-bottom: none; width: max-content; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(28px, 4vw, 64px); align-items: start; }
.form { display: grid; gap: 14px; grid-column: span 2; min-width: 0; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.field {
  display: grid;
  gap: 7px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.6);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 239, 228, 0.35);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16.5px;
  padding: 9px 0;
  outline: none;
}
.field textarea { border: 1px solid rgba(244, 239, 228, 0.35); padding: 12px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent-light); }
.form button { justify-self: start; }
.form__ok { margin: 0; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--accent-light); }

/* Footer */
.footer { background: var(--darker); color: rgba(244, 239, 228, 0.72); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(36px, 4.6vw, 64px) var(--pad-x); }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; align-items: start; }
.footer__address { margin: 16px 0 0; font-size: 14.5px; line-height: 1.6; }
.footer__nav { display: grid; gap: 10px; font-size: 14.5px; }
.footer a { color: rgba(244, 239, 228, 0.72); }
.footer a:hover { color: var(--accent-light); }
.footer__linkbtn {
  justify-self: start;
  background: none;
  border: none;
  padding: 0;
  color: rgba(244, 239, 228, 0.72);
  font-family: var(--sans);
  font-size: 14.5px;
  cursor: pointer;
  text-align: left;
}
.footer__linkbtn:hover { color: var(--accent-light); }
.imprint { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(244, 239, 228, 0.15); }
.imprint[hidden] { display: none; }
.imprint__title { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 18px; color: var(--cream); }
.imprint__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px 30px; font-size: 15px; }
.imprint__label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.45);
  margin-bottom: 5px;
}
.imprint__value { color: var(--cream); }
.copyright { margin: 32px 0 0; font-size: 12.5px; color: rgba(244, 239, 228, 0.4); }
