@import "../fonts/manrope.css";
@import "../fonts/caprasimo.css";
:root {
  --ink: #17110D;
  --ink-soft: #2A211B;
  --ink-mute: #6B5E54;
  --cream: #FAF4EA;
  --paper: #FFFDF8;
  --bg: #FAF4EA;
  --surface: #FFFDF8;
  --line: #E7DCC9;
  --ember: #C8361A;
  --ember-dark: #9F2710;
  --ember-soft: #F7E2DC;
  --gold: #E0A43B;
  --gold-dark: #A9761E;
  --gold-soft: #FBEFD4;
  --shadow-sm: 0 1px 2px rgba(23,17,13,0.05), 0 1px 3px rgba(23,17,13,0.07);
  --shadow-md: 0 8px 24px rgba(23,17,13,0.10), 0 2px 6px rgba(23,17,13,0.06);
  --shadow-lg: 0 30px 60px rgba(23,17,13,0.18), 0 8px 20px rgba(23,17,13,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --font-display:
    "Caprasimo",
    "Arial Black",
    "Helvetica Neue",
    sans-serif;
  --font-body:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --t-fast: 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ember-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
}
.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-dark);
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.bg-cream {
  background: var(--cream);
}
.bg-surface {
  background: var(--surface);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--t-fast);
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 234, 0.97);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand:hover {
  color: var(--ember);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 5px;
  border-radius: 10px;
  background: var(--ember);
  color: #fff;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-list a {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.4rem 0;
  position: relative;
}
.nav-list a:hover {
  color: var(--ink);
}
.nav-list a[aria-current=page] {
  color: var(--ember-dark);
}
.nav-list a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ember);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  min-height: 44px;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff !important;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 0.5rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform var(--t-base);
    display: grid;
    gap: 0.25rem;
  }
  .nav-wrap[data-open=true] {
    transform: scaleY(1);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list li {
    border-top: 1px solid var(--line);
  }
  .nav-list li:first-child {
    border-top: none;
  }
  .nav-list a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.05rem;
  }
  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  min-height: 52px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
a.btn-primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 54, 26, 0.30);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 17, 13, 0.25);
}
.btn-gold,
a.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(224, 164, 59, 0.30);
}
.btn-gold:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-width: 2px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-light,
a.btn-light {
  background: #fff;
  color: var(--ember-dark);
}
.btn-light:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn-outline-light,
a.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  border-width: 2px;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ember-dark);
  border-color: #fff;
}
.section-head {
  max-width: 720px;
  margin: 0 0 2.5rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head p {
  color: var(--ink-mute);
}
.section-head.center p {
  margin-inline: auto;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  padding-block: 6rem clamp(2.5rem, 6vw, 4.5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(23, 17, 13, 0.55) 0%,
      rgba(23, 17, 13, 0.20) 35%,
      rgba(23, 17, 13, 0.82) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ember);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 9vw, 6rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 .gold {
  color: var(--gold);
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.94);
  max-width: 46ch;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.hero-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-mute);
  flex-shrink: 0;
}
[data-hours-status][data-status=open] .dot {
  background: #43c463;
  box-shadow: 0 0 0 4px rgba(67, 196, 99, 0.25);
}
[data-hours-status][data-status=before] .dot {
  background: var(--gold);
}
[data-hours-status][data-status=closed] .dot {
  background: #e05a4a;
}
.hero-tape {
  position: absolute;
  z-index: 2;
  left: -10%;
  width: 120%;
  top: 16%;
  transform: rotate(var(--tape-rot));
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.hero-tape-track {
  display: flex;
  width: max-content;
  animation: tapeScroll 22s linear infinite;
}
.hero-tape-item {
  display: inline-block;
  flex-shrink: 0;
  padding-block: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes tapeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sticker-board {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.sticker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
  width: clamp(84px, 11vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  transform: scale(0) rotate(var(--rot));
  animation: stickerPop 620ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d, 0ms);
}
.sticker__name {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.3vw, 0.85rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ember-dark);
}
.sticker__price {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-mute);
}
.sticker-1 {
  top: 5%;
  left: 4%;
}
.sticker-2 {
  top: 8%;
  right: 5%;
}
.sticker-3 {
  top: 4%;
  left: 22%;
}
.sticker-4 {
  top: 6%;
  right: 26%;
  background: var(--gold);
}
.sticker-5 {
  top: 13%;
  left: 41%;
}
@media (max-width: 560px) {
  .sticker-3,
  .sticker-4,
  .sticker-5 {
    display: none;
  }
}
@keyframes stickerPop {
  0% {
    transform: scale(0) rotate(var(--rot));
    opacity: 0;
  }
  60% {
    transform: scale(1.08) rotate(var(--rot));
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(var(--rot));
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticker {
    animation: none;
    transform: scale(1) rotate(var(--rot));
    opacity: 1;
  }
  .hero-tape-track {
    animation: none;
    transform: translateX(0);
  }
}
.trustbar {
  background: var(--ink);
  color: #fff;
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  padding-block: 1.1rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item .stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.usp {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.usp:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ember-soft);
  color: var(--ember-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.usp h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.usp p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--ink-mute);
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.dish-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.dish-card picture,
.dish-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}
.dish-card:hover img {
  transform: scale(1.06);
}
.dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(23, 17, 13, 0) 35%,
      rgba(23, 17, 13, 0.85) 100%);
}
.dish-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.4rem;
}
.dish-card__body h3 {
  color: #fff;
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
}
.dish-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.dish-card__price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.offer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.offer.is-ember {
  background: var(--ember);
  color: #fff;
}
.offer.is-ink {
  background: var(--ink);
  color: #fff;
}
.offer.is-gold {
  background: var(--gold-soft);
  color: var(--ink);
  border: 1px solid var(--line);
}
.offer__badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: auto;
}
.offer.is-gold .offer__badge {
  background: var(--ember);
  color: #fff;
}
.offer h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 1.5rem 0 0.4rem;
  color: inherit;
}
.offer.is-gold h3 {
  color: var(--ink);
}
.offer p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 32ch;
}
.offer__price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--ink-mute);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}
.gallery figure:hover img {
  transform: scale(1.07);
}
.gallery .g-wide {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .g-tall {
  grid-row: span 2;
}
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery .g-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery .g-tall {
    grid-row: span 1;
  }
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split.reverse .split-media {
  order: 2;
}
@media (max-width: 880px) {
  .split.reverse .split-media {
    order: 0;
  }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testi .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.testi blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.testi figcaption {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  margin-top: auto;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.card dl {
  margin: 0;
}
.card dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 1.25rem;
  font-weight: 700;
}
.card dt:first-child {
  margin-top: 0;
}
.card dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
}
.opening-table {
  width: 100%;
  border-collapse: collapse;
}
.opening-table caption {
  text-align: left;
  font-weight: 400;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.opening-table th {
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding-bottom: 0.5rem;
}
.opening-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.opening-table tr:last-child td {
  border-bottom: none;
}
.opening-table tr.is-today td {
  font-weight: 800;
  color: var(--ember-dark);
}
.opening-table tr.is-today td:first-child::after {
  content: " · heute";
  font-weight: 600;
  color: var(--ink-mute);
  font-size: 0.82rem;
}
.map-static {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(224, 164, 59, 0.07) 0 14px,
      transparent 14px 28px),
    linear-gradient(
      135deg,
      #efe4cf 0%,
      #e6d8bd 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.map-static__pin {
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.map-static strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  text-transform: uppercase;
}
.map-static span {
  display: block;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.faq-list {
  max-width: 800px;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--ember);
  flex-shrink: 0;
  line-height: 1;
}
.faq[open] summary::after {
  content: "−";
}
.faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.cta-band {
  background: var(--ember);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      at 90% 30%,
      rgba(224, 164, 59, 0.30),
      transparent 55%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.menu-section {
  margin-bottom: 3rem;
}
.menu-section:last-child {
  margin-bottom: 0;
}
.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--ember);
  margin-bottom: 1.5rem;
}
.menu-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.menu-section-head .note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-left: auto;
}
.menu-list {
  display: grid;
  gap: 1.25rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1.5rem;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.menu-item .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
  text-transform: none;
  font-weight: 400;
}
.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ember-dark);
  font-weight: 400;
  white-space: nowrap;
}
.menu-item .desc {
  grid-column: 1 / -1;
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-mute);
  max-width: 70ch;
}
.menu-item .markers {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.marker {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}
.marker.veg {
  background: #1f7a3f;
  color: #fff;
}
.marker.vegan {
  background: #145c2e;
  color: #fff;
}
.marker.scharf {
  background: var(--ember);
  color: #fff;
}
.allergen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  background: var(--gold-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 800;
}
.allergen abbr {
  text-decoration: none;
  border: none;
}
.allergen-legend {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.allergen-legend h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.allergen-legend ol {
  columns: 2;
  column-gap: 2.5rem;
  margin: 0;
  padding-left: 1.25rem;
}
@media (max-width: 560px) {
  .allergen-legend ol {
    columns: 1;
  }
}
.allergen-legend li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  break-inside: avoid;
}
.allergen-legend li strong {
  color: var(--ink);
}
.legend-markers {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.legend-markers span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.field .req {
  color: var(--ember);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 0.85rem 1rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-soft);
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
}
@media (max-width: 600px) {
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}
.field.consent input {
  margin-top: 0.3rem;
}
.field.consent label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field.consent label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note {
  background: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.article-body {
  max-width: 72ch;
}
.article-body h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb {
  font-size: 0.86rem;
  color: var(--ink-mute);
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-mute);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb [aria-current=page] {
  color: var(--ink);
}
.page-head {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.page-head .eyebrow {
  color: var(--gold);
}
.page-head h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
}
.page-head p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  margin: 0;
}
.site-footer {
  background: var(--ink);
  color: rgba(250, 244, 234, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.demo-disclaimer {
  background: rgba(224, 164, 59, 0.14);
  border: 1px solid rgba(224, 164, 59, 0.36);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: rgba(250, 244, 234, 0.9);
  margin-bottom: 2rem;
}
.demo-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}
.demo-disclaimer a:hover {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(250, 244, 234, 0.6);
  font-size: 0.92rem;
  max-width: 34ch;
}
.footer-col h2 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
  font-weight: 800;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(250, 244, 234, 0.72);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col address {
  font-style: normal;
  color: rgba(250, 244, 234, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 244, 234, 0.14);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 244, 234, 0.55);
}
.footer-bottom a {
  color: rgba(250, 244, 234, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: #fff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center {
  text-align: center;
}
.stack > * + * {
  margin-top: 1rem;
}
@media print {
  .site-header,
  .hero,
  .site-footer,
  .cta-band,
  .nav-toggle,
  .trustbar {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
html.js .hero-bg {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html.js .hero-bg {
    transform: none !important;
  }
}
