:root {
  --night: #17110d;
  --wood: #3c2416;
  --red: #d61f26;
  --red-deep: #9b1218;
  --yellow: #f5c400;
  --yellow-soft: #ffe27a;
  --cream: #fff4e0;
  --foam: #fffaf2;
  --leaf: #1f6b3a;
  --ink: #22160f;
  --line: rgba(23, 17, 13, 0.12);
  --shadow: 0 28px 60px -32px rgba(23, 17, 13, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.55;
  padding-top: 64px;
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

h1, h2, h3, .brand strong, .hero-stamp {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 40;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  background: rgba(23, 17, 13, 0.72);
  color: var(--cream);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--yellow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
}
.brand small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}
.brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--yellow);
}
.nav-links {
  display: none;
  gap: 18px;
  margin-left: auto;
  font-size: 0.92rem;
}
.nav-links a { text-decoration: none; color: var(--cream); }
.lang {
  margin-left: auto;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,244,224,0.35);
  padding: 6px 8px;
  border-radius: 4px;
}
.nav-call {
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
}

.hero {
  position: relative;
  color: var(--cream);
  isolation: isolate;
  background: var(--night);
}
.hero-media {
  position: relative;
  z-index: 0;
  background: #f0b800;
  overflow: hidden;
  line-height: 0;
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
}
.hero-veil {
  display: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 22px 5.5vw 26px;
  max-width: 860px;
}
.hero-stamp {
  display: none;
  z-index: 2;
  position: absolute;
  right: 6vw;
  top: 18vh;
  font-size: clamp(3rem, 12vw, 8rem);
  color: rgba(245,196,0,0.18);
  transform: rotate(8deg);
  pointer-events: none;
  line-height: 0.8;
  text-transform: uppercase;
}
.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--yellow-soft);
  margin-bottom: 12px;
  font-weight: 700;
}
.eyebrow.dark { color: var(--red); }
.hero h1 {
  font-size: clamp(1.7rem, 8.4vw, 5.2rem);
  line-height: 0.95;
  text-wrap: balance;
  text-transform: uppercase;
}
.lede {
  margin: 10px 0 14px;
  font-size: 0.95rem;
  max-width: 38ch;
  color: rgba(255,244,224,0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-red { background: var(--red); color: #fff; }
.btn-wa { background: #128c4a; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,244,224,0.45);
}
.btn-dark { background: var(--night); color: var(--cream); }
.hero-meta {
  margin-top: 12px;
  font-size: 0.82rem;
  opacity: 0.85;
}

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #c9a000;
  color: var(--night);
}
.strip span {
  background: var(--yellow);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}
.strip b {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.about, .offer, .visit {
  padding: 72px 6vw;
}
.about {
  display: grid;
  gap: 36px;
  align-items: center;
}
.about h2, .offer h2, .visit h2, .reviews h2 {
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-copy p { margin-bottom: 12px; max-width: 52ch; }
.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pills li {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-visual {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 12px;
}
.shot {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot-main { min-height: 240px; }
.shot-side { min-height: 240px; }

.section-head { margin-bottom: 28px; max-width: 28ch; }
.menu-lead {
  max-width: 46ch;
  font-family: "DM Sans", system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 8px;
}

.menu {
  padding: 72px 6vw;
  background:
    linear-gradient(180deg, #fff8ea 0%, var(--foam) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu h2 {
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prices {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.price {
  background: var(--night);
  color: var(--cream);
  padding: 20px 18px;
  border-radius: 8px;
  border-bottom: 4px solid var(--yellow);
}
.price-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}
.price-num {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.1;
  margin: 4px 0 8px;
}
.price p:last-child { opacity: 0.82; font-size: 0.92rem; }
.menu-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}
.flyer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flyer img { width: 100%; height: auto; }
.flyer figcaption {
  padding: 12px 14px 16px;
  font-size: 0.88rem;
  color: #5a4636;
}
.menu-side h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dishes {
  list-style: none;
  margin-bottom: 20px;
}
.dishes li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.quotes-two { }
.grid {
  display: grid;
  gap: 16px;
}
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tile div { padding: 18px; }
.tile h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reviews {
  background: var(--night);
  color: var(--cream);
  padding: 72px 6vw;
}
.reviews .eyebrow { color: var(--yellow); }
.quotes {
  display: grid;
  gap: 14px;
}
blockquote {
  background: rgba(255,244,224,0.06);
  border-left: 4px solid var(--yellow);
  padding: 20px 22px;
}
blockquote p { font-size: 1.05rem; }
blockquote footer {
  margin-top: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
}

.visit {
  display: grid;
  gap: 22px;
}
.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.facts { margin: 18px 0 22px; }
.facts div {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.facts dd a { text-decoration: none; }
.map-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  min-height: 240px;
}
.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
.map-link span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--yellow);
  color: var(--night);
  padding: 8px 12px;
  font-weight: 700;
  border-radius: 4px;
}

.foot {
  background: var(--night);
  color: var(--cream);
  padding: 36px 6vw 28px;
  border-top: 3px solid var(--yellow);
  display: grid;
  gap: 18px;
}
.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.foot-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
}
.foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.foot-contact a { text-decoration: none; color: var(--yellow-soft); }
.fine { font-size: 0.78rem; opacity: 0.6; }

.dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dock a {
  text-align: center;
  text-decoration: none;
  background: var(--night);
  color: #fff;
  padding: 13px 10px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.dock .wa { background: #128c4a; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo { animation: none; }
}

@media (min-width: 820px) {
  body { padding-bottom: 0; }
  .dock { display: none; }
  .hero-photo { max-height: none; }
  .hero-copy { padding: 36px 6vw 40px; }
  .hero-stamp { display: none; }
  .lede { margin: 16px 0 22px; font-size: 1.05rem; }
  .strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .strip span {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  .nav-links { display: flex; }
  .lang { margin-left: 0; }
  .about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .tile-wide { grid-row: span 2; }
  .tile-wide img { height: 100%; min-height: 280px; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .quotes-two { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: 1.15fr 0.85fr; }
  .visit { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .map-link, .map-link img { min-height: 100%; }
}

@media (min-width: 1100px) {
  .hero-copy { padding-left: 8vw; }
}
