:root {
  --ink: #171411;
  --muted: #665f55;
  --paper: #fff8ea;
  --paper-strong: #fff1c7;
  --cream: #fffdf6;
  --gold: #f6c744;
  --gold-deep: #d99818;
  --tomato: #e84c31;
  --herb: #27724c;
  --water: #19798a;
  --line: rgba(23, 20, 17, 0.14);
  --shadow: 0 22px 70px rgba(55, 39, 12, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffbf1 0%, #fff7df 45%, #f7efe1 100%);
  background-size: 42px 42px, auto;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), 1220px);
  height: 74px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  margin-top: 14px;
  color: #fff;
  background: rgba(23, 20, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 246, 0.93);
  box-shadow: 0 16px 42px rgba(51, 38, 12, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-width: 112px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 126px;
  max-width: none;
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.14));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}

.site-nav a,
.header-action,
.btn,
.text-link,
.menu-tab {
  min-height: 42px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 0;
  padding: 0 13px;
  color: currentColor;
  line-height: 1;
  opacity: 0.9;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: #171411;
  background: var(--gold);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(23, 20, 17, 0.07);
}

.site-header.is-scrolled .site-nav a[aria-current="page"] {
  background: var(--gold);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-height: 0;
  padding: 0 14px;
  color: #171411;
  background: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.header-action span {
  font-size: 11px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 128px max(22px, calc((100vw - var(--max)) / 2)) 56px;
  color: #fff;
  overflow: hidden;
  background: #171411;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.92) 0%, rgba(18, 14, 10, 0.74) 40%, rgba(18, 14, 10, 0.2) 70%),
    linear-gradient(0deg, rgba(12, 9, 7, 0.88) 0%, transparent 48%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-img-main {
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img-card {
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 54px;
  z-index: 2;
  width: min(32vw, 360px);
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 248, 234, 0.84);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(710px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #171411;
  background: var(--gold);
}

.btn-secondary {
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn:hover,
.menu-tab:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  min-height: 108px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

.ticker {
  overflow: hidden;
  color: #171411;
  background: var(--gold);
  border-top: 1px solid rgba(23, 20, 17, 0.12);
  border-bottom: 1px solid rgba(23, 20, 17, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 13px 0;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  position: relative;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "/";
  margin-left: 28px;
  color: rgba(23, 20, 17, 0.38);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--ticker-distance, 50%)));
  }
}

.live-strip {
  position: fixed;
  left: 50%;
  top: 96px;
  z-index: 45;
  width: min(calc(100% - 28px), 1220px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 50px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(25, 121, 138, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.live-strip.is-urgent {
  background: rgba(232, 76, 49, 0.97);
}

.live-strip.is-urgent a {
  animation: callPulse 1.35s ease-in-out infinite;
}

.live-strip.is-paused {
  background: rgba(23, 20, 17, 0.96);
}

.live-strip.is-closed {
  background: rgba(23, 20, 17, 0.96);
}

.live-strip strong,
.live-strip span {
  line-height: 1.25;
}

.live-strip strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-strip a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

@keyframes callPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 199, 68, 0.42);
  }

  50% {
    transform: scale(1.045);
    box-shadow: 0 0 0 8px rgba(246, 199, 68, 0);
  }
}

.section,
.builder-section,
.visit,
.site-footer {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.intro-grid,
.section-heading,
.split,
.visit,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 250px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(55, 39, 12, 0.08);
}

.feature-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.feature-item p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.menu-section {
  padding-top: 20px;
}

.section-heading {
  align-items: end;
  margin-bottom: 28px;
}

.text-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--water);
  background: rgba(25, 121, 138, 0.09);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.menu-tab {
  flex: 0 0 auto;
  padding: 0 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-tab.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.menu-panel {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  min-height: 390px;
}

.menu-hero,
.menu-list {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.menu-hero {
  display: grid;
  grid-template-rows: 260px 1fr;
}

.menu-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  background: var(--paper-strong);
}

.menu-hero div {
  padding: 24px;
}

.menu-hero p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-list {
  padding: 16px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row strong,
.menu-row span {
  display: block;
}

.menu-row span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.menu-price {
  font-weight: 950;
  color: var(--tomato);
  white-space: nowrap;
}

.builder-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 72px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 20, 17, 0.92), rgba(42, 29, 18, 0.96)),
    url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2026/03/afbeelding-megaburger-scaled.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.builder-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.burger-builder {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.builder-screen {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 22px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.builder-screen strong {
  align-self: end;
  font-size: 34px;
  color: var(--tomato);
}

.burger-line {
  display: block;
  font-weight: 900;
}

.builder-controls {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.builder-controls label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.builder-controls select {
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 750;
}

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

.topping-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.split {
  width: min(calc(100% - 44px), var(--max));
  padding-top: 96px;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.notice-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.notice-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.notice-list span {
  color: var(--muted);
}

.visit {
  align-items: center;
  padding: 42px;
  margin-top: 96px;
  color: #fff;
  background: var(--herb);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.visit h2 {
  margin-bottom: 10px;
}

.visit-actions {
  justify-content: end;
}

.site-footer {
  align-items: end;
  padding: 56px 0 36px;
  color: var(--muted);
}

.site-footer img {
  width: 128px;
  margin-bottom: 12px;
}

.site-footer div:last-child {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 850;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 148px max(22px, calc((100vw - var(--max)) / 2)) 64px;
  color: #fff;
  overflow: hidden;
  background: #171411;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  filter: saturate(1.05) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.9) 0%, rgba(16, 12, 9, 0.7) 45%, rgba(16, 12, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 12, 9, 0.78), transparent 55%);
}

.page-hero-menu::before {
  background-image: url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2019/12/spare-2.jpg");
}

.page-hero-takeaway::before {
  background-image: url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2026/03/afbeelding-megaburger-scaled.jpg");
}

.page-hero-info::before {
  background-image: url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2020/01/white-mug-on-coffee-maker-3201780-scaled-1-2048x1584.jpg");
}

.page-hero-contact::before {
  background-image: url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2026/03/afbeelding-carpaccio.jpg");
}

.page-hero-admin::before {
  background-image: url("https://usercontent.one/wp/www.evenpause.nl/wp-content/uploads/2020/01/white-mug-on-coffee-maker-3201780-scaled-1-2048x1584.jpg");
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.menu-toolbar {
  position: sticky;
  top: 98px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) 1fr;
  gap: 18px;
  align-items: end;
  padding: 16px;
  margin-bottom: 24px;
  background: rgba(255, 253, 246, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(55, 39, 12, 0.1);
  backdrop-filter: blur(18px);
}

.menu-toolbar label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.menu-toolbar input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

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

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.menu-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.full-menu-grid {
  display: grid;
  gap: 18px;
}

.category-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(55, 39, 12, 0.08);
}

.category-card.is-hidden {
  display: none;
}

.category-card img {
  position: sticky;
  top: 184px;
  width: 220px;
  max-height: 220px;
  object-fit: contain;
  padding: 16px;
  background: var(--paper-strong);
  border-radius: var(--radius);
}

.category-card h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.category-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 22px;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.price-list span {
  color: var(--ink);
  font-weight: 750;
}

.price-list strong {
  color: var(--tomato);
  white-space: nowrap;
}

.step-grid,
.supplier-grid,
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-grid article,
.supplier-grid article,
.activity-grid article,
.takeaway-card,
.contact-panel,
.contact-form,
.story-aside {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(55, 39, 12, 0.08);
}

.step-grid article {
  min-height: 250px;
  padding: 24px;
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 950;
}

.step-grid p,
.takeaway-card p,
.story-content p,
.activity-grid p,
.supplier-grid p,
.contact-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.takeaway-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 18px;
  padding-top: 0;
}

.takeaway-card {
  padding: 28px;
}

.takeaway-card.hot {
  color: #fff;
  background: var(--water);
}

.takeaway-card.hot p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-list div {
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.mini-list strong,
.mini-list span {
  display: block;
}

.mini-list span {
  margin-top: 4px;
  color: var(--muted);
}

.story-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 28px;
  align-items: start;
}

.story-aside,
.contact-panel,
.contact-form {
  padding: 28px;
}

.story-aside {
  position: sticky;
  top: 112px;
}

.story-content {
  color: var(--ink);
  font-size: 19px;
}

.supplier-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.supplier-grid article {
  padding: 22px;
}

.supplier-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--water);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.supplier-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

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

.activity-grid article {
  overflow: hidden;
}

.activity-grid img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 20px;
  background: var(--paper-strong);
}

.activity-grid h3,
.activity-grid p {
  padding: 0 24px;
}

.activity-grid h3 {
  padding-top: 22px;
}

.activity-grid p {
  padding-bottom: 24px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.contact-list a {
  display: grid;
  gap: 5px;
  min-height: 64px;
  padding: 14px;
  color: inherit;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
}

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

.contact-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.file-label input {
  padding: 11px;
}

.file-label span,
.form-note {
  font-size: 14px;
}

.form-status {
  padding: 14px;
  color: #fff;
  background: var(--herb);
  border-radius: var(--radius);
  font-weight: 850;
}

.contact-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.menu-row.is-unavailable,
.price-list div.is-unavailable {
  opacity: 0.48;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  padding: 0 8px;
  color: #fff;
  background: var(--tomato);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.live-status-cta {
  margin-top: 14px;
  color: var(--ink);
}

.live-status-cta.is-urgent {
  animation: callPulse 1.35s ease-in-out infinite;
}

.status-metrics div {
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.94);
  border-radius: var(--radius);
}

.status-metrics strong,
.status-metrics span {
  display: block;
}

.status-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.order-builder,
.admin-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  align-items: start;
}

.order-builder > div > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.order-form,
.admin-panel,
.admin-preview {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(55, 39, 12, 0.08);
}

.order-form label,
.admin-panel label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.order-form input,
.order-form textarea,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.order-form textarea,
.admin-panel textarea {
  padding-top: 12px;
  resize: vertical;
}

.order-options,
.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.order-options label,
.day-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.order-summary {
  min-height: 88px;
  padding: 14px;
  color: var(--muted);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.6;
  white-space: pre-line;
}

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

.admin-block {
  display: grid;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.admin-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-menu-list {
  display: grid;
  gap: 10px;
}

.admin-menu-row {
  display: grid;
  grid-template-columns: 1fr 120px 128px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-menu-row strong,
.admin-menu-row span {
  display: block;
}

.admin-menu-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.admin-menu-row label {
  display: flex;
  align-items: center;
}

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

.admin-actions .btn {
  border: 0;
  cursor: pointer;
}

.admin-actions .btn-secondary {
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.admin-preview {
  position: sticky;
  top: 112px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--gold);
    border: 0;
    border-radius: var(--radius);
  }

  .nav-toggle span:not(.sr-only) {
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    padding: 8px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    min-height: 46px;
  }

  .site-nav.is-open a[aria-current="page"] {
    background: var(--gold);
  }

  .hero {
    min-height: 720px;
  }

  .hero-img-card {
    display: none;
  }

  .hero-facts,
  .intro-grid,
  .section-heading,
  .feature-band,
  .menu-panel,
  .builder-section,
  .split,
  .visit,
  .site-footer,
  .menu-toolbar,
  .category-card,
  .takeaway-layout,
  .story-layout,
  .contact-layout,
  .supplier-grid,
  .order-builder,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
  }

  .text-link,
  .visit-actions,
  .site-footer div:last-child {
    justify-self: start;
  }

  .builder-section {
    padding: 36px;
  }

  .menu-jump {
    justify-content: start;
  }

  .category-card img,
  .story-aside {
    position: static;
  }

  .step-grid,
  .activity-grid,
  .status-metrics {
    grid-template-columns: 1fr;
  }

  .admin-preview {
    position: static;
  }

  .admin-menu-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    margin-top: 9px;
  }

  .brand {
    width: 92px;
    min-width: 92px;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: 46px;
  }

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

  .section {
    padding: 68px 0;
  }

  .page-hero {
    min-height: 520px;
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .live-strip {
    top: 88px;
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100% - 18px);
  }

  .live-strip a {
    justify-self: start;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item img {
    justify-self: start;
  }

  .topping-grid,
  .notice-list div,
  .price-list,
  .form-grid,
  .order-options,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .builder-section,
  .visit {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .menu-toolbar {
    top: 88px;
    width: calc(100% + 16px);
    margin-left: -8px;
    padding: 12px;
  }

  .category-card,
  .contact-panel,
  .contact-form,
  .story-aside,
  .takeaway-card,
  .order-form,
  .admin-panel,
  .admin-preview {
    padding: 20px;
  }

  .category-card img {
    width: 100%;
  }
}
