:root {
  --red: #b32720;
  --red-dark: #741711;
  --yellow: #f5c84b;
  --cream: #fff7e8;
  --paper: #fffdf8;
  --ink: #201716;
  --muted: #685b55;
  --line: #ead9c1;
  --shadow: 0 16px 40px rgba(71, 28, 17, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.6rem, 8vw, 5.8rem); line-height: .95; margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin-bottom: .75rem; }
h3 { line-height: 1.2; margin-bottom: .45rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem max(1rem, calc((100vw - 1180px) / 2));
  background: rgba(255, 247, 232, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 210px; }
.brand img { width: 54px; height: 54px; object-fit: contain; background: #fff; border-radius: 8px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.1rem; line-height: 1.05; }
.brand small { color: var(--muted); font-size: .76rem; }
.nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; font-size: .94rem; font-weight: 700; }
.nav a, .text-link { color: var(--red-dark); text-decoration: none; }
.phone-link { color: #fff; background: var(--red); border-radius: 999px; padding: .65rem .9rem; font-weight: 800; text-decoration: none; white-space: nowrap; }

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1.5rem;
  align-items: stretch;
  margin: 1.2rem 0 0;
  color: #fffaf0;
  background: linear-gradient(135deg, #241412, var(--red-dark));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-copy { padding: clamp(1.4rem, 4vw, 3.5rem); }
.hero p { max-width: 720px; }
.hero img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.eyebrow, .section-label { color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.section-label { color: var(--red-dark); }
.lead { font-size: 1.25rem; font-weight: 800; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.button.primary { color: #fff; background: var(--red); border-color: var(--red); }

.section { padding: 3rem 0 0; }
main > .section:last-child { padding-bottom: 3rem; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 1rem; align-items: start; }
.notice, .menu-card, .info-card, .map-card, .link-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.notice { padding: 1rem; color: var(--red-dark); }
.notice strong, .notice span { display: block; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; }
.menu-card { padding: 1rem; display: flex; flex-direction: column; min-height: 100%; }
.menu-card p { color: var(--muted); }
.price { color: var(--red-dark) !important; font-weight: 900; margin-top: auto; }
.menu-section { scroll-margin-top: 110px; }
.menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.simple-list { display: grid; gap: .65rem; padding: 0; list-style: none; }
.simple-list li { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: .8rem 1rem; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; padding-bottom: 3rem; }
.link-grid a { padding: 1rem; text-decoration: none; }
.link-grid strong, .link-grid span { display: block; }
.link-grid span { color: var(--muted); font-size: .94rem; }
.faq-grid { display: grid; gap: .75rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: .85rem 1rem;
  color: var(--red-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.page-hero { padding: 3rem 0 1rem; border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 780px; font-size: 1.08rem; }
.jump-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.jump-links a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem .75rem; color: var(--red-dark); font-weight: 800; text-decoration: none; }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: 1rem; padding-bottom: 3rem; }
.info-card, .map-card { padding: 1rem; }
.info-card dl { margin: 0; display: grid; gap: .9rem; }
.info-card dt { color: var(--red-dark); font-weight: 900; }
.info-card dd { margin: 0; }
.map-card iframe { width: 100%; min-height: 360px; border: 0; border-radius: 6px; }

.site-footer {
  display: grid;
  gap: .2rem;
  padding: 2rem 1rem 5rem;
  color: #fff8ec;
  background: #201312;
  text-align: center;
}
.site-footer a { color: var(--yellow); }
.site-footer p { color: #ead9c1; max-width: 760px; margin: .7rem auto 0; }
.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
}
.mobile-actions a { padding: .85rem .5rem; text-align: center; color: #fff; background: var(--red); font-weight: 900; text-decoration: none; }
.mobile-actions a + a { color: var(--ink); background: var(--yellow); }

@media (max-width: 900px) {
  .site-header { align-items: start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; padding-bottom: .2rem; }
  .hero, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero img { min-height: 280px; }
  .card-grid, .menu-list, .photo-strip { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-actions { display: grid; }
}

@media (max-width: 560px) {
  main { width: min(100% - 22px, 1180px); }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .phone-link { width: 100%; text-align: center; }
  .section-head { display: block; }
  .link-grid { grid-template-columns: 1fr; }
}
