/* Hallmark · macrostructure: Bistro Order Gateway · tone: hot, direct, editorial · anchor hue: lacquer red */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rice: #FFF5E5;
  --rice-2: #F4E0BE;
  --ink: #14100C;
  --muted: #786554;
  --red: #D43322;
  --red-dark: #8F1D16;
  --green: #274B35;
  --line: rgba(20,16,12,.18);
  --white: #FFFDF8;
  --display: 'Archivo Black', Impact, system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--rice);
}
body {
  overflow-x: clip;
  overscroll-behavior-y: none;
  min-width: 0;
  font-family: var(--body);
  background:
    radial-gradient(circle at 12% 10%, rgba(212,51,34,.12), transparent 28%),
    linear-gradient(180deg, var(--rice), #F8E8CC 56%, var(--rice));
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px clamp(16px, 5vw, 78px);
  background: color-mix(in srgb, var(--rice) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -.06em;
  line-height: .9;
}
.brand strong { color: var(--red); }
.nav { display: flex; gap: clamp(14px, 3vw, 32px); color: var(--muted); font-weight: 700; font-size: 14px; }
.nav a { transition: color .18s var(--ease); }
.nav a:hover { color: var(--red); }

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(48px, 7vw, 108px) clamp(16px, 5vw, 88px) clamp(58px, 8vw, 120px);
}
.kicker { color: var(--red-dark); font-size: 13px; font-weight: 800; line-height: 1.35; }
h1,h2,h3 { font-family: var(--display); font-weight: 900; letter-spacing: -.055em; line-height: .92; text-wrap: balance; overflow-wrap: anywhere; }
h1 { margin-top: 18px; max-width: 820px; font-size: clamp(48px, 8.2vw, 116px); }
.hero-copy > p:not(.kicker) { margin-top: 24px; max-width: 620px; color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.primary { background: var(--red); color: var(--white); }
.secondary { background: var(--white); color: var(--ink); }

.hero-media {
  position: relative;
  min-height: 610px;
}
.tile {
  position: absolute;
  overflow: hidden;
  background: var(--rice-2);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile-large { inset: 3% 8% 12% 8%; border-radius: 28px; transform: rotate(-1.5deg); }
.tile-small { width: 34%; aspect-ratio: 4 / 5; border-radius: 22px; }
.tile-small.top { top: 0; right: 0; transform: rotate(4deg); }
.tile-small.bottom { left: 0; bottom: 0; transform: rotate(-5deg); }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--ink);
  background: var(--red);
  color: var(--white);
}
.quick-strip div { padding: 28px clamp(16px, 4vw, 56px); border-right: 2px solid rgba(20,16,12,.55); }
.quick-strip div:last-child { border-right: 0; }
.quick-strip strong { display: block; font-family: var(--display); font-size: clamp(26px, 4vw, 52px); letter-spacing: -.055em; line-height: .92; }
.quick-strip span { display: block; margin-top: 9px; color: rgba(255,255,255,.82); font-size: 14px; }

.menu,
.visual-section,
.order,
.contact { padding: clamp(56px, 7vw, 112px) clamp(16px, 5vw, 88px); }
.section-head { display: grid; grid-template-columns: .34fr minmax(0, 1fr); gap: 30px; align-items: start; }
.section-head h2,
.visual-section h2,
.order h2,
.contact h2 { font-size: clamp(38px, 6.2vw, 86px); max-width: 1000px; }
.menu-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-grid article {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}
.menu-grid span { color: var(--red); font-weight: 900; }
.menu-grid h3 { margin-top: auto; font-size: clamp(30px, 3vw, 46px); }
.menu-grid p { margin-top: 14px; color: var(--muted); }

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  background: var(--green);
  color: var(--white);
}
.visual-section .kicker { color: #FFB397; }
.visual-section p:not(.kicker) { margin-top: 24px; color: rgba(255,255,255,.76); max-width: 650px; font-size: 17px; }
.visual-section figure { aspect-ratio: 4 / 5; border-radius: 30px; overflow: hidden; border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); background: var(--rice-2); }
.visual-section img { width: 100%; height: 100%; object-fit: cover; }

.order { background: var(--rice-2); border-block: 2px solid var(--ink); }
.order h2 { margin-top: 14px; }
.order-cards { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.order-cards a {
  padding: 24px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.order-cards a:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.order-cards span { color: var(--red); font-weight: 900; }
.order-cards strong { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.05; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 24px;
}
.contact-card,
.map-wrap { border: 2px solid var(--ink); border-radius: 26px; background: var(--white); box-shadow: 7px 7px 0 var(--ink); }
.contact-card { padding: clamp(24px, 4vw, 48px); }
dl { margin-top: 28px; display: grid; gap: 22px; }
dt { font-weight: 900; margin-bottom: 5px; }
dd { color: var(--muted); }
dd a { color: var(--red-dark); border-bottom: 1px solid rgba(143,29,22,.35); }
.map-wrap { overflow: hidden; min-height: 430px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(1.04) contrast(.96); }
.footer { padding: 24px clamp(16px, 5vw, 88px); background: var(--ink); color: rgba(255,245,229,.76); font-size: 14px; }
.footer a { color: var(--rice); border-bottom: 1px solid rgba(255,245,229,.36); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: 120ms !important; animation-duration: 120ms !important; }
}
@media (max-width: 980px) {
  .hero,.visual-section,.contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 520px; }
  .quick-strip,.menu-grid,.order-cards { grid-template-columns: 1fr; }
  .quick-strip div { border-right: 0; border-bottom: 2px solid rgba(20,16,12,.55); }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 620px) {
  .topbar { position: static; align-items: flex-start; flex-direction: column; padding: 16px; }
  .nav { width: 100%; justify-content: space-between; font-size: 13px; }
  .hero,.menu,.visual-section,.order,.contact { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(44px, 15vw, 68px); }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-media { min-height: 390px; }
  .tile { box-shadow: 5px 5px 0 var(--ink); }
  .tile-large { inset: 4% 0 15% 8%; border-radius: 22px; }
  .tile-small { width: 40%; }
  .menu-grid article { min-height: 230px; }
  .visual-section figure { aspect-ratio: 5 / 4; box-shadow: 5px 5px 0 var(--ink); }
  .order-cards a,.contact-card,.map-wrap { box-shadow: 4px 4px 0 var(--ink); }
  .map-wrap,.map-wrap iframe { min-height: 340px; }
  .footer { font-size: 13px; }
}
