/* ============================================================
   label coffee – Lifestyle Café · Paderborn
   Farbwelt: Creme & Tinte (zurückhaltend, markengetreu)
   ============================================================ */

:root {
  --paper: #F6F0E4;        /* Seitenhintergrund */
  --cream: #EFE4CF;        /* Marken-Creme (Schild) */
  --cream-soft: #FBF7EE;   /* Karten */
  --ink: #26211B;          /* Tinte / Schwarzbraun */
  --ink-soft: #6C6357;     /* Fließtext gedämpft */
  --caramel: #A97B50;
  --caramel-deep: #8C5A3A;
  --caramel-light: #C9A97E;
  --sage: #9DB4A0;         /* Terrassen-Grün, sparsam */
  --chalk: #1C1813;        /* Kreidetafel */
  --chalk-text: #F2E9D8;
  --line: rgba(38, 33, 27, .12);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(38, 33, 27, .08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-script: "Great Vibes", "Snell Roundhand", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
ul { list-style: none; }
a { color: inherit; }

::selection { background: var(--caramel-deep); color: var(--cream-soft); }

:focus-visible {
  outline: 2.5px solid var(--caramel-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] { scroll-margin-top: 88px; }

.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.script { font-family: var(--font-script); font-weight: 400; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip {
  position: absolute; top: -48px; left: 14px; z-index: 200;
  background: var(--ink); color: var(--cream-soft);
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  margin-bottom: 16px;
}

/* ---------- Buttons & Chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 27px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight: 700; font-size: 14px; line-height: 1;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ink { background: var(--ink); color: var(--cream-soft); }
.btn-ink:hover { background: #3A3226; }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream-soft); }

.chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 240, 228, .97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-head.scrolled { box-shadow: 0 6px 24px rgba(38, 33, 27, .07); }

.head-in {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  min-height: 74px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-badge {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
}
.brand-badge .script { font-size: 26px; line-height: 1; transform: translateY(-2px); }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500; line-height: 1.1;
  letter-spacing: .01em;
}
.brand-text small {
  display: block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav ul { display: flex; gap: 28px; }
.site-nav ul a {
  position: relative;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
}
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--caramel-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav ul a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 11px 20px; font-size: 13px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vh, 100px) 0 clamp(48px, 7vh, 84px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 85% -10%, rgba(169, 123, 80, .10), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

h1 { font-weight: 400; }
.h1-script {
  display: block;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  color: var(--caramel-deep);
  margin-bottom: 12px;
}
.h1-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 480;
  line-height: 1.14;
  letter-spacing: -.01em;
}

.lead {
  margin-top: 22px;
  font-size: 16.5px; line-height: 1.75;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 30px;
}
.rating-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px; color: var(--ink);
}
.rating-pill strong { font-size: 14px; }
.stars { width: 92px; height: 17px; flex: none; }
.stars-big { width: 152px; height: 27px; }

.hero-art { position: relative; display: flex; justify-content: center; }
.arch-card {
  width: min(400px, 100%);
  background: linear-gradient(180deg, #F3E9D6, #EADEC4);
  border: 1.5px solid rgba(38, 33, 27, .18);
  border-radius: 210px 210px 26px 26px;
  padding: clamp(26px, 4vw, 44px) clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  box-shadow: var(--shadow);
}
.arch-card svg { display: block; width: 100%; }
.arch-card-soft { background: var(--cream-soft); }
.arch-note {
  position: absolute; right: 4%; bottom: -14px;
  font-size: 36px; color: var(--caramel-deep);
  transform: rotate(-7deg);
}

/* ---------- Highlights ---------- */
.highlights { padding: clamp(24px, 4vh, 44px) 0 clamp(72px, 9vh, 104px); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hl-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hl-icon { width: 62px; height: 62px; margin-bottom: 18px; }
.hl-icon svg { width: 100%; height: 100%; }
.hl-card h2 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 550;
  margin-bottom: 10px;
}
.hl-card p { font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); }

/* ---------- Abschnitts-Header ---------- */
.sec-head { text-align: center; max-width: 660px; margin: 0 auto clamp(44px, 6vh, 64px); }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 480;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.sec-sub { margin-top: 14px; font-size: 15px; color: var(--ink-soft); }

/* ---------- Menü (Kreidetafel) ---------- */
.menu {
  background:
    radial-gradient(1100px 480px at 15% 0%, rgba(242, 233, 216, .05), transparent 65%),
    var(--chalk);
  color: var(--chalk-text);
  padding: clamp(80px, 11vh, 120px) 0;
}
.menu .sec-head h2 { color: var(--chalk-text); }
.menu .eyebrow { color: var(--caramel-light); }
.menu .sec-sub { color: rgba(242, 233, 216, .62); }
.menu-script {
  font-size: 1.4em;
  color: var(--caramel-light);
  line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 72px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-block h3 {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  border-bottom: 1px dashed rgba(242, 233, 216, .28);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-weight: 400;
}
.menu-block h3 .script { font-size: 36px; line-height: 1; }
.size-tag {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--caramel-light);
  white-space: nowrap;
}

.menu-block ul { display: grid; gap: 17px; }
.menu-block li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 10px;
}
.mi-name { font-size: 15.5px; font-weight: 600; }
.mi-dots { border-bottom: 2px dotted rgba(242, 233, 216, .3); transform: translateY(-4px); }
.mi-price {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--caramel-light);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.mi-desc {
  grid-column: 1 / -1;
  font-size: 13px; line-height: 1.55;
  color: rgba(242, 233, 216, .6);
  margin-top: 3px;
  max-width: 46ch;
}

.menu-note {
  text-align: center;
  margin-top: clamp(40px, 6vh, 56px);
  font-size: 12.5px;
  color: rgba(242, 233, 216, .55);
}

/* ---------- Über uns ---------- */
.about { padding: clamp(84px, 12vh, 128px) 0; }
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 480; line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.about-copy p {
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 56ch;
}
.ticks { margin: 24px 0 32px; display: grid; gap: 13px; }
.ticks li {
  position: relative;
  padding-left: 31px;
  font-size: 14.5px; font-weight: 600;
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--sage);
  color: #FFFDF6;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
}

/* ---------- Galerie ---------- */
.gallery { padding: 0 0 clamp(84px, 12vh, 128px); }
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 18px 20px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tile:nth-child(even) { border-radius: 130px 130px 18px 18px; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile svg { width: 112px; height: 112px; margin: 0 auto 10px; display: inline-block; }
.tile figcaption {
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-soft);
}

/* ---------- Bewertungen ---------- */
.reviews {
  background: var(--cream);
  border-block: 1px solid var(--line);
  padding: clamp(64px, 9vh, 92px) 0;
  text-align: center;
}
.reviews-score {
  font-size: clamp(46px, 6vw, 66px);
  line-height: 1;
  color: var(--caramel-deep);
}
.reviews .stars-big { display: block; margin: 20px auto 10px; }
.reviews-count { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.reviews-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 28px;
}

/* ---------- Besuch ---------- */
.visit { padding: clamp(84px, 12vh, 120px) 0 clamp(72px, 10vh, 108px); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.visit-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
}
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 550;
  margin-bottom: 18px;
}
.visit-card address {
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.visit-tel a {
  font-size: 17px; font-weight: 700;
  text-decoration: none;
}
.visit-tel a:hover { text-decoration: underline; text-underline-offset: 4px; }
.visit-services { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.hours th { font-weight: 700; }
.hours td {
  text-align: right;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.note {
  margin-top: 18px;
  font-size: 12px; line-height: 1.55;
  color: var(--ink-soft);
  opacity: .85;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: var(--chalk-text);
}
.foot-in {
  padding: 46px 0 40px;
  display: grid; gap: 24px;
  justify-items: center;
  text-align: center;
}
.foot-brand { display: flex; align-items: center; gap: 13px; text-align: left; }
.brand-badge-dark { background: var(--cream); border-color: transparent; color: var(--ink); }
.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500; line-height: 1.15;
}
.foot-brand small {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(242, 233, 216, .55);
  margin-top: 3px;
}
.site-foot nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.site-foot nav a {
  color: rgba(242, 233, 216, .85);
  font-size: 13.5px; font-weight: 600;
  text-decoration: none;
}
.site-foot nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.foot-note { font-size: 12px; color: rgba(242, 233, 216, .5); }

/* ---------- Legal-Seiten ---------- */
.legal { padding: clamp(56px, 9vh, 90px) 0 clamp(72px, 11vh, 110px); }
.legal .container { max-width: 760px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 480;
  margin-bottom: 28px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 550;
  margin: 36px 0 12px;
}
.legal p, .legal li { color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--caramel-deep);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  margin: 24px 0;
}

/* ---------- Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .hl-card, .tile { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: 2; }
  .arch-card { width: min(340px, 88%); }
  .cards-3 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; max-width: 620px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-art { order: 2; display: flex; justify-content: center; }
  .about-art .arch-card { width: min(340px, 88%); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
  }
  .bar {
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column; align-items: flex-start;
    gap: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 22px clamp(20px, 4vw, 32px) 28px;
    box-shadow: 0 18px 30px rgba(38, 33, 27, .08);
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 4px; width: 100%; }
  .site-nav ul a { display: block; padding: 10px 0; font-size: 16px; }
  .site-nav ul a::after { display: none; }
  .nav-cta { width: 100%; }
}

@media (max-width: 560px) {
  .brand-text strong { font-size: 18px; }
  .brand-text small { letter-spacing: .26em; }
  .hero-cta .btn { flex: 1 1 auto; }
  .tiles { gap: 14px; }
  .tile svg { width: 88px; height: 88px; }
  .tile:nth-child(even) { border-radius: 90px 90px 16px 16px; }
  .visit-card { padding: 28px 24px; }
  .arch-note { font-size: 30px; right: 0; }
}
