:root {
  --background: #fffaf2;
  --foreground: #171717;
  --paper: #ffffff;
  --ink-soft: #5c564d;
  --line: #e7dece;
  --red: #d9251d;
  --yellow: #f1c232;
  --blue: #2859d8;
  --green: #11a565;
  --teal: #e0f4ee;
  --peach: #ffe6cf;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  min-width: 0;
}

.brand-mark img {
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.6vw, 24px);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header nav a {
  border-bottom: 2px solid transparent;
  padding-block: 6px;
}

.site-header nav a:hover {
  border-color: var(--red);
}

.contact-link {
  background: var(--foreground);
  border: 2px solid var(--foreground) !important;
  border-radius: 999px;
  color: #ffffff;
  padding: 8px 14px !important;
}

.hero {
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.5) 100%), url("hero-restaurant-bg.png") center / cover no-repeat;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 75px);
  padding: clamp(48px, 8vw, 110px) clamp(18px, 6vw, 86px) clamp(34px, 5vw, 66px);
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(217, 37, 29, 0.18), transparent 44%), linear-gradient(140deg, rgba(17, 165, 101, 0.14), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-copy {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  width: 100%;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 8.6rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  max-width: 860px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 0;
}

h3 {
  font-size: 1.28rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  max-width: 690px;
}

.hero-contact {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  margin-top: 4px;
  min-height: 42px;
  padding: 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 2px solid var(--foreground);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--foreground);
  color: #ffffff;
}

.hero .button.primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--foreground);
}

.button.secondary {
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--yellow);
}

.quick-strip {
  background: var(--foreground);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip p {
  background: linear-gradient(135deg, rgba(241, 194, 50, 0.18), transparent 40%), #171717;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  margin: 0;
  min-height: 90px;
  padding: 30px clamp(18px, 4vw, 42px);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 86px);
}

.intro-section {
  background: var(--paper);
}

.menu-section {
  background: linear-gradient(135deg, var(--teal), transparent 38%), linear-gradient(315deg, var(--peach), transparent 42%), var(--background);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.menu-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.menu-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 23, 23, 0.08);
  overflow: hidden;
  padding: 22px;
}

.menu-card:nth-child(3n + 1) { border-top: 5px solid var(--red); }
.menu-card:nth-child(3n + 2) { border-top: 5px solid var(--blue); }
.menu-card:nth-child(3n + 3) { border-top: 5px solid var(--green); }

.category-image {
  aspect-ratio: 16 / 10;
  background: #f4eee4;
  border-radius: 6px;
  margin: -2px -2px 18px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  height: 200%;
  max-width: none;
  position: absolute;
  width: 400%;
}

.slot-0 img { transform: translate(0, 0); }
.slot-1 img { transform: translate(-25%, 0); }
.slot-2 img { transform: translate(-50%, 0); }
.slot-3 img { transform: translate(-75%, 0); }
.slot-4 img { transform: translate(0, -50%); }
.slot-5 img { transform: translate(-25%, -50%); }
.slot-6 img { transform: translate(-50%, -50%); }
.slot-7 img { transform: translate(-75%, -50%); }

.card-title {
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  padding-bottom: 14px;
}

.card-title p,
li p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  padding: 14px 0;
}

li + li {
  border-top: 1px dashed var(--line);
}

.item-row {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.item-row span {
  font-weight: 800;
}

.item-row strong {
  font-size: 0.92rem;
  white-space: nowrap;
}

.pdf-band {
  align-items: stretch;
  background: var(--foreground);
  color: #ffffff;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  padding: clamp(56px, 8vw, 94px) clamp(18px, 6vw, 86px);
}

.pdf-copy {
  align-self: center;
  max-width: 520px;
}

.pdf-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  margin: 18px 0 28px;
}

.pdf-frame {
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  min-height: 580px;
  width: 100%;
}

.visit {
  align-items: center;
  background: var(--yellow);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 6vw, 86px);
}

.visit h2 {
  max-width: 820px;
}

.visit-contact {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 900;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .pdf-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .menu-grid,
  .menu-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    flex-wrap: wrap;
    width: 100%;
  }

  .site-header nav a {
    flex: 1 1 auto;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.3rem);
  }

  .quick-strip,
  .menu-grid,
  .menu-grid.two {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .visit {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-frame {
    min-height: 440px;
  }
}

@media (max-width: 420px) {
  .brand-mark span {
    font-size: 0.95rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
