:root {
  --ink: #1a1814;
  --ink-soft: #2a2721;
  --paper: #fffaf2;
  --cream: #f4eddf;
  --surface: #eadfce;
  --line: #d5c7b5;
  --muted: #6c655d;
  --terracotta: #b9412b;
  --terracotta-dark: #8f2f21;
  --gold: #d2a842;
  --green: #2e674d;
  --white: #ffffff;
  --font-display: "Bookman Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --header-height: 78px;
  --content-width: 1180px;
  --shadow: 0 18px 50px rgba(35, 26, 17, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
}

h2 {
  margin-bottom: 22px;
  font-size: 44px;
}

h3 {
  font-size: 22px;
}

address {
  font-style: normal;
}

section[id] {
  scroll-margin-top: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.section {
  padding: 104px 24px;
}

.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 52px;
  margin-bottom: 58px;
}

.section-heading > div {
  max-width: 700px;
}

.section-heading > p,
.section-heading > address {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  background: var(--surface);
  border-color: var(--surface);
}

.button-quiet {
  color: var(--white);
  background: rgba(26, 24, 20, 0.5);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  background: rgba(26, 24, 20, 0.8);
}

.button-outline {
  color: var(--terracotta-dark);
  background: transparent;
  border-color: var(--terracotta);
}

.button-outline:hover {
  color: var(--white);
  background: var(--terracotta);
}

.icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.97);
  border-color: rgba(108, 101, 93, 0.18);
  box-shadow: 0 8px 30px rgba(26, 24, 20, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(100% - 48px, var(--content-width));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto;
}

.brand {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.brand-sub {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.header-phone) {
  position: relative;
  padding: 28px 0;
}

.site-nav > a:not(.header-phone)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 4px;
}

.header-phone:hover {
  background: var(--terracotta-dark);
}

.nav-toggle {
  display: none;
}

.nav-icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-close {
  display: block;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 104px);
  min-height: 620px;
  max-height: 780px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(17, 15, 13, 0.95) 0%,
    rgba(17, 15, 13, 0.73) 45%,
    rgba(17, 15, 13, 0.08) 82%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--content-width));
  margin: var(--header-height) auto 0;
}

.hero-inner > * {
  max-width: 720px;
}

.hero .eyebrow {
  color: #f0c35e;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.5;
}

.hero-status {
  display: inline-flex;
  width: auto;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 6px 11px;
  color: var(--white);
  background: rgba(26, 24, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #e2a94b;
  border-radius: 50%;
}

[data-open-box].is-open .status-dot {
  background: #72c895;
}

[data-open-box].is-closing .status-dot {
  background: #e2a94b;
}

[data-open-box].is-closed .status-dot {
  background: #d86c5b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
}

.trust-list li + li::before {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.category-band {
  padding: 34px 24px 38px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.category-band .section-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: end;
  gap: 48px;
}

.category-heading .eyebrow {
  margin-bottom: 8px;
}

.category-heading h2 {
  margin: 0;
  font-size: 29px;
}

.category-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.category-links a {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 16px;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.category-links a:hover {
  color: var(--terracotta-dark);
  background: var(--cream);
}

.category-links span {
  color: var(--terracotta);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
}

.favorites {
  background: var(--cream);
}

.favorites-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.favorites-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1200 / 890;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.favorites-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.favorites-content {
  align-self: center;
}

.favorites-content h2 {
  margin-bottom: 38px;
}

.favorite-list {
  border-top: 1px solid var(--line);
}

.favorite-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.favorite-list article > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.favorite-list article > div span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
}

.favorite-list h3,
.favorite-list p {
  margin: 0;
}

.favorite-list h3 {
  font-size: 20px;
}

.favorite-list p {
  color: var(--muted);
  font-size: 14px;
}

.favorite-list strong {
  white-space: nowrap;
  color: var(--terracotta-dark);
  font-size: 15px;
}

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

.menu-heading h2 {
  margin: 0;
}

.menu-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.menu-sidebar > span {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-sidebar nav {
  display: flex;
  flex-direction: column;
}

.menu-sidebar nav a {
  padding: 10px 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.menu-sidebar nav a:hover,
.menu-sidebar nav a.is-active {
  padding-left: 8px;
  color: var(--terracotta-dark);
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding-top: 20px;
  color: var(--terracotta-dark);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.menu-content {
  min-width: 0;
}

.menu-group {
  border-top: 2px solid var(--ink);
}

.menu-group + .menu-group {
  margin-top: 64px;
}

.menu-group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 19px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: default;
}

.menu-group-toggle > span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.menu-group-toggle small {
  order: 2;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
}

.menu-group-toggle svg {
  display: none;
}

.menu-group-content[hidden] {
  display: none;
}

.menu-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.item-number {
  align-self: start;
  padding-top: 6px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 850;
}

.menu-item h3,
.menu-item p {
  margin: 0;
}

.menu-item h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.menu-item > strong {
  padding-left: 14px;
  white-space: nowrap;
  font-size: 14px;
}

.pizza-price-head,
.pizza-item {
  grid-template-columns: 42px minmax(0, 1fr) 266px;
}

.pizza-price-head {
  display: grid;
  gap: 18px;
  padding: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pizza-price-head small {
  display: inline-block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.pizza-price-head span:first-child {
  grid-column: 3;
}

.pizza-price-head span {
  text-align: right;
}

.pizza-price-head {
  grid-template-columns: 42px minmax(0, 1fr) repeat(3, 76px);
}

.pizza-price-head span:nth-child(1) {
  grid-column: 3;
}

.pizza-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pizza-prices span {
  white-space: nowrap;
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.menu-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.menu-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.menu-footer-actions p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.menu-footer-actions .button {
  display: none;
}

.review-section {
  color: var(--white);
  background: var(--ink-soft);
}

.review-section .eyebrow {
  color: #e6bb59;
}

.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.review-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.review-heading > div:first-child > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.review-score {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.review-score strong {
  display: block;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.review-score span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #f1c761;
  font-size: 13px;
  font-weight: 800;
}

.review-score svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.review-score a {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.review-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 16px;
}

.review-card {
  width: calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
  min-height: 230px;
  padding: 30px;
  background: #343027;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  scroll-snap-align: start;
}

.review-card span {
  color: #e6bb59;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card p {
  margin: 34px 0 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.45;
}

.review-controls {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dot {
  width: 28px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.review-dot.is-active {
  background: var(--gold);
}

.review-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-buttons .icon-button {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.28);
}

.review-buttons .icon-button:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.review-buttons span {
  min-width: 68px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.about-section {
  background: var(--green);
  color: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 84px;
}

.about-section .eyebrow {
  color: #efd078;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.about-copy .about-lead {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 4px;
  color: #efd078;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.about-media {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 846;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(9, 28, 19, 0.26);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section {
  background: var(--cream);
}

.contact-heading {
  align-items: end;
}

.contact-heading h2 {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 76px;
}

.contact-primary {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-primary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.contact-primary a {
  display: inline-block;
  margin-top: 6px;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.hours-live {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  padding: 18px;
  color: var(--paper);
  background: var(--ink-soft);
  border-left: 4px solid var(--gold);
}

.hours-live.is-open {
  border-color: #73b891;
}

.hours-live.is-closing {
  border-color: var(--gold);
}

.hours-live.is-closed {
  border-color: #d86c5b;
}

.hours-live > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hours-live strong {
  margin-top: 5px;
  line-height: 1.35;
}

.hours-live small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.hours-list {
  margin: 26px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.hours-list dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.social-links {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 800;
}

.social-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--terracotta);
}

.contact-form {
  padding-left: 60px;
  border-left: 1px solid var(--line);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading > span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.form-heading p {
  max-width: 580px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form > label,
.form-grid label {
  display: block;
  margin-bottom: 17px;
}

.contact-form label > span:not(.sr-only) {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 750;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
  outline: 2px solid rgba(185, 65, 43, 0.16);
  outline-offset: 0;
}

.contact-form .is-invalid {
  border-color: #a32121;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--terracotta);
}

.consent-row span {
  margin: 0 !important;
  color: var(--muted);
  font-size: 12px !important;
  font-weight: 500 !important;
}

.consent-row a {
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-error {
  color: #8b2222;
}

.form-status.is-success {
  color: var(--green);
}

.map-section {
  min-height: 570px;
  background: var(--ink);
}

.map-gate {
  display: flex;
  min-height: 570px;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(26, 24, 20, 0.82), rgba(26, 24, 20, 0.82)),
    url("assets/chalk-hero.jpg") center / cover no-repeat;
}

.map-gate > div {
  max-width: 650px;
}

.map-gate .eyebrow {
  color: #efc766;
}

.map-gate h2 {
  margin-bottom: 16px;
}

.map-gate p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.map-frame {
  display: block;
  width: 100%;
  height: 522px;
  border: 0;
}

.map-embed {
  min-height: 570px;
  background: var(--paper);
}

.map-credit {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 18px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.map-credit a {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.meryli-band {
  padding: 26px 24px;
  color: var(--ink);
  background: var(--gold);
}

.meryli-band .section-inner,
.meryli-band .section-inner > div,
.meryli-band a {
  display: flex;
  align-items: center;
}

.meryli-band .section-inner {
  justify-content: space-between;
  gap: 30px;
}

.meryli-band .section-inner > div {
  gap: 14px;
}

.meryli-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--ink);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}

.meryli-band p {
  margin: 0;
  font-size: 13px;
}

.meryli-band a {
  gap: 9px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  padding: 58px max(24px, calc((100% - var(--content-width)) / 2));
  color: rgba(255, 255, 255, 0.75);
  background: #151411;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr) auto;
  gap: 58px;
  padding-bottom: 46px;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
}

.footer-brand p,
.footer-bottom p {
  margin: 8px 0 0;
}

.footer-contact,
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.legal-main {
  min-height: calc(100vh - 250px);
  padding-top: calc(var(--header-height) + 72px);
  background: var(--cream);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow-wrap: anywhere;
}

.legal-card h1 {
  margin-bottom: 18px;
  font-size: 48px;
}

.legal-card h2 {
  margin: 44px 0 14px;
  font-size: 25px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--terracotta-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer > div:not(.footer-main):not(.footer-bottom) {
  margin-bottom: 18px;
}

.site-footer > nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 20px;
}

.site-footer > p {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:nth-child(3) {
    display: none;
  }

  .favorites-layout {
    gap: 48px;
  }

  .favorite-list article {
    grid-template-columns: minmax(160px, 1fr) auto;
  }

  .favorite-list article > p {
    grid-column: 1 / -1;
    margin-top: -12px;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-form {
    padding-left: 42px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 66px;
  }

  body.legal-page {
    padding-bottom: 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 37px;
  }

  .section {
    padding: 78px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading > p,
  .section-heading > address {
    margin-top: 18px;
  }

  .site-header,
  .site-header:not(.is-scrolled) {
    color: var(--ink);
    background: rgba(255, 250, 242, 0.98);
    border-color: rgba(108, 101, 93, 0.18);
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - var(--header-height) - 66px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 18px 20px 24px;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(26, 24, 20, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.header-phone) {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.header-phone)::after {
    display: none;
  }

  .header-phone {
    justify-content: center;
    margin-top: 18px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 120px);
    max-height: none;
    padding: 116px 0 56px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(17, 15, 13, 0.95),
      rgba(17, 15, 13, 0.68)
    );
  }

  .hero-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 620px;
  }

  .category-band {
    padding: 32px 20px;
  }

  .category-band .section-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-links {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: thin;
  }

  .category-links a {
    min-height: 62px;
  }

  .favorites-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .favorites-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .favorite-list article {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-layout {
    display: block;
  }

  .menu-sidebar {
    display: none;
  }

  .menu-group,
  .menu-group + .menu-group {
    margin-top: 0;
    border-top-width: 1px;
  }

  .menu-group:last-child {
    border-bottom: 1px solid var(--ink);
  }

  .menu-group-toggle {
    cursor: pointer;
  }

  .menu-group-toggle > span {
    font-size: 29px;
  }

  .menu-group-toggle svg {
    display: block;
    flex: 0 0 24px;
    transition: transform 160ms ease;
  }

  .menu-group-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .menu-group-content {
    padding-bottom: 26px;
  }

  .pizza-price-head {
    display: none;
  }

  .pizza-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .pizza-prices {
    grid-column: 2;
    margin-top: 4px;
  }

  .pizza-prices span {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .pizza-prices span::before {
    margin-bottom: 2px;
    color: var(--muted);
    content: attr(data-size);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .menu-footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-footer-actions .button {
    display: inline-flex;
  }

  .review-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-score {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 0 18px;
    max-width: 330px;
    padding: 0;
    border: 0;
  }

  .review-score strong {
    grid-row: 1 / 3;
  }

  .review-score a {
    width: max-content;
    margin-top: 4px;
  }

  .review-card {
    width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }

  .about-layout {
    gap: 52px;
  }

  .about-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 42px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .meryli-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: repeat(3, 1fr);
    color: var(--white);
    background: #171613;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-action-bar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-action-bar a:first-child {
    background: var(--terracotta);
  }

  .mobile-action-bar svg {
    width: 18px;
    height: 18px;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 44px);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 66px 18px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-sub {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - 120px);
    padding-top: 104px;
  }

  .hero-inner {
    width: calc(100% - 36px);
  }

  .hero-status {
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 11px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .trust-list {
    gap: 7px 16px;
  }

  .trust-list li + li::before {
    display: none;
  }

  .category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    border-bottom: 1px solid var(--line);
  }

  .category-links a:nth-child(5) {
    grid-column: 1 / -1;
  }

  .favorites-layout {
    gap: 42px;
  }

  .favorite-list article {
    gap: 12px;
  }

  .favorite-list h3 {
    font-size: 17px;
  }

  .favorite-list article > div {
    gap: 8px;
  }

  .menu-group-toggle > span {
    font-size: 26px;
  }

  .menu-item {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .pizza-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .pizza-prices {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pizza-prices span {
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
  }

  .review-card {
    width: 100%;
    min-width: 100%;
    min-height: 250px;
    padding: 26px;
  }

  .review-card p {
    font-size: 20px;
  }

  .review-controls {
    align-items: flex-end;
  }

  .review-dots {
    max-width: 160px;
    flex-wrap: wrap;
  }

  .review-dot {
    width: 16px;
  }

  .contact-primary a {
    font-size: 29px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-section,
  .map-gate,
  .map-embed {
    min-height: 500px;
    height: 500px;
  }

  .map-frame {
    min-height: 0;
    height: 452px;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .meryli-band .section-inner > div {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main nav {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .legal-card {
    padding: 32px 22px;
  }

  .legal-card h1 {
    font-size: 37px;
  }

  .site-footer > nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) and (max-height: 760px) {
  .hero {
    min-height: calc(100svh - 120px);
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero-status {
    margin-bottom: 14px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero .button {
    min-height: 44px;
  }

  .trust-list {
    margin-top: 14px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
