:root {
  --paper: #efe6d8;
  --paper-soft: #f6f0e7;
  --ink: #1e1712;
  --ink-soft: #5f4d40;
  --line: rgba(30, 23, 18, 0.14);
  --tea: #7a4725;
  --spice: #97482e;
  --leaf: #4b5b42;
  --gold: #ba8a4f;
  --white: #fffdf9;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Bricolage Grotesque", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

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

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

button,
input,
textarea {
  font: inherit;
}

section {
  scroll-margin-top: 88px;
}

.site-header,
.hero,
.chef-section,
.restaurant-section,
.atlas-section,
.ritual-section,
.chef-partnership-section,
.chef-order-section,
.route-section,
.join-section,
footer,
.thanks-page {
  padding-inline: clamp(20px, 5vw, 76px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(239, 230, 216, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(30, 23, 18, 0.2);
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  color: var(--ink-soft);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu {
  position: relative;
  margin-left: auto;
}

.site-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: min(300px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 20px 50px rgba(30, 23, 18, 0.16);
}

.site-menu-panel a {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.site-menu-panel a:last-child {
  border-bottom: 0;
}

.site-menu-panel a:hover {
  background: var(--paper-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  font-size: clamp(68px, 10vw, 138px);
  letter-spacing: 0;
}

h2 {
  max-width: 11ch;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
}

.lead,
.section-heading p,
.route-copy p,
.join-copy p,
.ritual-copy p,
.atlas-fact,
.atlas-notes strong,
.route-board p,
form,
footer {
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.45;
}

.lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  max-width: 29rem;
}

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

.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button-primary,
form button {
  background: var(--ink);
  color: var(--paper);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-main,
.hero-inset,
.atlas-image,
.ritual-card img,
.join-image,
.chef-media-large,
.chef-media-small,
.chef-copy-card,
.menu-panel,
.order-request-form,
.thanks-card {
  overflow: hidden;
  border: 1px solid rgba(30, 23, 18, 0.16);
  border-radius: 30px;
  background: #ddd3c5;
}

.hero-main {
  height: 100%;
}

.hero-main img,
.hero-inset img,
.atlas-image img,
.ritual-card img,
.join-image img,
.chef-media-large img,
.chef-media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main figcaption,
.hero-inset figcaption,
.chef-media-large figcaption,
.chef-media-small figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main {
  position: absolute;
  inset: 0 0 0 14%;
}

.hero-inset {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(42%, 280px);
  aspect-ratio: 0.86;
}

.message-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-inline: clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.message-strip p {
  margin: 0;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.message-strip p:last-child {
  border-right: 0;
}

.atlas-section,
.ritual-section,
.chef-section,
.chef-partnership-section,
.chef-order-section,
.route-section,
.join-section {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 44rem;
}

.section-heading p,
.route-copy p,
.join-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.atlas-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.atlas-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.atlas-nav button {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.atlas-nav button[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.atlas-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.46);
}

.atlas-image {
  min-height: 420px;
  margin: 0;
}

.atlas-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.atlas-kicker {
  margin: 0;
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atlas-fact {
  margin: 0;
  color: var(--ink);
}

.atlas-notes {
  display: grid;
  gap: 14px;
}

.atlas-notes p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.atlas-notes span,
.ritual-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.ritual-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.44);
}

.ritual-card img {
  aspect-ratio: 1.08;
  border: 0;
  border-radius: 0;
}

.ritual-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.ritual-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.ritual-note {
  display: grid;
  align-items: end;
  background: var(--ink);
  color: var(--paper);
}

.ritual-note .ritual-label,
.ritual-note p:last-child {
  color: rgba(239, 230, 216, 0.8);
}

.chef-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  margin-top: 34px;
}

.chef-copy-card,
.menu-panel,
.order-request-form,
.thanks-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 253, 249, 0.6);
}

.chef-brandline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.chef-logo {
  width: 92px;
  height: 72px;
  border: 1px solid rgba(30, 23, 18, 0.12);
  border-radius: 18px;
  object-fit: cover;
}

.chef-text,
.menu-note,
.menu-item-note,
.menu-card-title p,
.order-empty,
.order-total-box p,
.order-line-meta span,
.order-footnote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

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

.chef-board article,
.chef-board .chef-event-link {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
}

.chef-board .chef-event-link {
  text-decoration: none;
  background: #25170f;
  color: var(--paper);
}

.chef-board span,
.order-total-box span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chef-board strong {
  font-size: 18px;
  line-height: 1.25;
}

.chef-board .chef-event-link span,
.chef-board .chef-event-link em {
  color: rgba(239, 230, 216, 0.72);
}

.chef-board .chef-event-link em {
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.chef-board a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.chef-board a.chef-event-link {
  text-decoration: none;
}

.event-drop-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  gap: 24px;
  align-items: stretch;
  margin: clamp(30px, 5vw, 58px) clamp(20px, 5vw, 76px) 0;
  padding: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-drop-feature h2 {
  max-width: 10ch;
}

.event-drop-feature p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.event-drop-link {
  position: relative;
  display: grid;
  align-content: end;
  gap: 9px;
  min-height: 250px;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 14%, rgba(246, 184, 63, 0.28), transparent 28%),
    linear-gradient(135deg, #223431, #25170f 58%, #4b170f);
  color: var(--paper);
  isolation: isolate;
}

.event-drop-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 15, 11, 0.14), rgba(20, 15, 11, 0.66) 52%, rgba(20, 15, 11, 0.92)),
    linear-gradient(90deg, rgba(20, 15, 11, 0.44), transparent 62%);
}

.event-drop-logo {
  position: absolute;
  top: 18px;
  right: 14px;
  z-index: 0;
  width: min(72%, 460px);
  max-height: 150px;
  object-fit: contain;
  object-position: right top;
  opacity: 0.94;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3));
}

.event-drop-link span {
  position: relative;
  z-index: 2;
  color: rgba(239, 230, 216, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-drop-link strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.96;
}

.event-drop-link em {
  position: relative;
  z-index: 2;
  color: rgba(239, 230, 216, 0.76);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chef-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.chef-media-large,
.chef-media-small {
  position: relative;
}

.chef-media-large {
  grid-row: 1 / 3;
}

.menu-panel-head,
.order-panel-head {
  display: grid;
  gap: 10px;
}

.menu-panel-head h3,
.order-panel-head h3 {
  font-size: clamp(34px, 4vw, 48px);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.order-panel {
  position: sticky;
  top: 102px;
}

.menu-groups {
  display: grid;
  gap: 32px;
}

.menu-category {
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.menu-category:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-category-head {
  display: grid;
  gap: 8px;
}

.menu-subgroup {
  margin: 0 0 14px;
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-cluster {
  display: grid;
}

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

.menu-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.76);
}

.menu-card-head,
.menu-card-foot,
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.menu-card-title {
  display: grid;
  gap: 8px;
}

.menu-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.menu-price {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-card-foot {
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.menu-card-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-add-button,
.order-step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.menu-add-button {
  min-width: 72px;
  min-height: 42px;
  padding: 0 16px;
}

.order-empty {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.52);
}

.order-lines {
  display: grid;
  gap: 12px;
}

.order-line {
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.order-lines .order-line:first-child {
  padding-top: 0;
  border-top: 0;
}

.order-line-meta {
  display: grid;
  gap: 4px;
}

.order-line-meta strong {
  font-size: 16px;
}

.order-line-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-step-button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.order-line-qty {
  min-width: 1.4rem;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.order-total-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.74);
}

.order-total-box strong {
  font-family: var(--display);
  font-size: 36px;
  line-height: 0.94;
}

.order-footnote {
  margin-bottom: 0;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
}

.thanks-card {
  max-width: 42rem;
}

.route-section {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.28);
}

.route-copy {
  display: grid;
  gap: 14px;
  max-width: 42rem;
}

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

.route-board article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.route-board span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.route-board h3 {
  font-size: 28px;
  line-height: 1;
}

.route-board p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.route-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-zones span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 34px;
}

.join-image {
  min-height: 100%;
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.54);
}

form label {
  display: grid;
  gap: 8px;
}

form span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(30, 23, 18, 0.18);
  border-radius: 16px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--ink);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.hidden {
  position: absolute;
  left: -9999px;
}

.partner-lettermark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 72px;
  border: 1px solid rgba(30, 23, 18, 0.18);
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-page h1 {
  max-width: 10ch;
}

.store-page h2 {
  max-width: 12ch;
}

.store-hero-media,
.store-shelf-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
}

.store-hero-product,
.store-shelf-card,
.store-category-grid article,
.store-product-card,
.builder-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.62);
}

.store-hero-product,
.store-shelf-card {
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
}

.store-hero-product img,
.store-shelf-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.main-product,
.store-shelf-card.large {
  grid-row: 1 / 3;
}

.main-product img,
.store-shelf-card.large img {
  height: 390px;
}

.store-hero-product span,
.store-shelf-card span,
.store-category-grid span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-hero-product strong,
.store-shelf-card strong {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.dark-product {
  background: var(--ink);
  color: var(--paper);
}

.dark-product span,
.dark-product p {
  color: rgba(239, 230, 216, 0.76);
}

.dark-product p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.store-copy-card .chef-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-category-section,
.store-catalog-section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.store-category-grid article {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
}

.store-category-grid strong {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.store-category-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.42;
}

.store-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.store-products-panel {
  display: grid;
  gap: 18px;
}

.store-filter-row,
.bundle-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-filter-row button,
.bundle-buttons button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-filter-row button[aria-pressed="true"],
.bundle-buttons button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.store-product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
}

.store-product-image {
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 253, 249, 0.58);
}

.store-product-image img {
  width: 100%;
  height: 158px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.store-product-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.store-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--spice);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-product-card h3 {
  font-size: 29px;
}

.store-product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.store-product-card button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.builder-panel form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.builder-panel-head {
  display: grid;
  gap: 10px;
}

.builder-panel-head h3 {
  font-size: clamp(34px, 4vw, 50px);
}

.builder-panel-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

form button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.text-inset-card {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  background: #25170f;
  color: var(--paper);
}

.text-inset-card strong {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.text-inset-card p {
  margin: 0;
  color: rgba(239, 230, 216, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.home-hero h1 {
  max-width: 11ch;
}

.lane-section,
.pantry-section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.lane-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 34px;
}

.lane-card {
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.58);
}

.lane-card-featured {
  grid-row: span 2;
}

.lane-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.lane-card-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.lane-card-copy span,
.status-pill {
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lane-card-copy p,
.restaurant-card-clean p,
.pantry-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.cate-lane {
  grid-template-rows: minmax(360px, 1fr) auto;
  background: #f3eadc;
}

.market-lane,
.restaurant-lane,
.pantry-lane {
  min-height: 330px;
}

.market-lane {
  background: #f7f1e8;
}

.restaurant-lane {
  background: #25170f;
  color: var(--paper);
}

.restaurant-lane .lane-card-copy p,
.restaurant-lane .lane-card-copy span {
  color: rgba(239, 230, 216, 0.76);
}

.pantry-lane {
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  background: #edf0e8;
}

.mini-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 18px 0;
}

.mini-products img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  mix-blend-mode: multiply;
}

.restaurant-menu-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
}

.restaurant-menu-strip strong {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(239, 230, 216, 0.18);
  border-radius: 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
  line-height: 0.96;
  text-align: center;
}

.store-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.store-flow article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
}

.store-flow span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.store-flow strong {
  font-size: 15px;
  line-height: 1.2;
}

.restaurant-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-top: 34px;
}

.restaurant-card-clean {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 380px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--ink);
  color: var(--paper);
}

.restaurant-card-clean h3 {
  max-width: 12ch;
  font-size: clamp(40px, 5vw, 72px);
}

.restaurant-card-clean p {
  color: rgba(239, 230, 216, 0.76);
}

.restaurant-card-clean .restaurant-menu-strip {
  padding: 0;
}

.restaurant-proof-image,
.mm-hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(239, 230, 216, 0.18);
  border-radius: 24px;
}

.restaurant-proof-image {
  min-height: 260px;
}

.restaurant-proof-image img,
.mm-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-proof-image figcaption,
.mm-hero-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.78);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-restaurant-card {
  background: rgba(255, 253, 249, 0.58);
  color: var(--ink);
}

.next-restaurant-card p {
  color: var(--ink-soft);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pantry-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pantry-tile {
  display: grid;
  grid-template-rows: minmax(260px, auto) auto 1fr;
  gap: 12px;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.56);
}

.pantry-tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.pantry-tile span,
.pantry-tile h3,
.pantry-tile p {
  margin-inline: 22px;
}

.pantry-tile span {
  margin-top: 10px;
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pantry-tile h3 {
  font-size: clamp(34px, 4vw, 52px);
}

.pantry-tile p {
  margin-bottom: 22px;
}

.pantry-note {
  grid-template-rows: auto auto 1fr;
  align-content: end;
  padding-top: 220px;
  background: var(--ink);
  color: var(--paper);
}

.pantry-note span,
.pantry-note p {
  color: rgba(239, 230, 216, 0.76);
}

.compact-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.mm-hero-clean h1 {
  max-width: 11ch;
}

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

.main-mm-photo {
  grid-row: span 2;
  min-height: 580px;
}

.mm-hero-photo:not(.main-mm-photo) {
  min-height: 280px;
}

.mm-hero-card {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 280px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.62);
}

.mm-hero-card span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mm-hero-card strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.96;
}

.mm-hero-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.mm-hero-card.dark-product p,
.mm-hero-card.dark-product span {
  color: rgba(239, 230, 216, 0.76);
}

.mm-hero-card.dark-product {
  background: var(--ink);
  color: var(--paper);
}

.partner-proof-grid {
  display: grid;
  gap: 18px;
}

.partner-proof-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.62);
}

.partner-proof-grid span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-proof-grid strong {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 0.98;
}

.partner-proof-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.static-menu-groups {
  margin-top: 34px;
}

.partner-fit-section {
  margin-top: clamp(34px, 5vw, 72px);
}

.mm-page .hero-main img,
.restaurant-section .chef-media-large img {
  filter: saturate(1.02) contrast(1.03);
}

.directory-section,
.spot-section,
.market-network-section,
.featured-event-section,
.operator-section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.directory-hero .lead {
  max-width: 31rem;
}

.directory-hero-media .hero-main {
  inset: 0 0 0 10%;
}

.directory-hero-media .hero-inset {
  width: min(46%, 320px);
}

.compact-heading {
  max-width: 36rem;
}

.compact-heading h2 {
  max-width: 9ch;
}

.section-kicker,
.directory-card-copy span,
.spot-copy span,
.market-network-grid span,
.event-copy span,
.operator-flow span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
  margin-top: 34px;
}

.directory-card {
  display: grid;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.62);
}

.directory-card > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.featured-directory-card {
  grid-row: span 2;
  grid-template-rows: minmax(360px, 1fr) auto;
  background: #f3eadc;
}

.directory-card-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.directory-card-copy p,
.spot-copy p,
.market-network-grid p,
.event-copy p,
.operator-section .section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.market-directory-card {
  min-height: 330px;
  background: #f7f1e8;
}

.market-directory-card .mini-products {
  padding: 18px 18px 0;
}

.event-directory-card {
  min-height: 390px;
  background: #25170f;
  color: var(--paper);
}

.event-directory-card .directory-card-copy span,
.event-directory-card .directory-card-copy p {
  color: rgba(239, 230, 216, 0.76);
}

.event-directory-card .button-secondary,
.featured-event-section .button-secondary,
.mm-event-section .button-secondary {
  border-color: rgba(239, 230, 216, 0.7);
  color: var(--paper);
}

.event-directory-card .button-secondary:hover,
.featured-event-section .button-primary,
.mm-event-section .button-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.spot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.spot-copy {
  display: grid;
  gap: 18px;
  max-width: 34rem;
}

.spot-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.spot-media-grid figure,
.event-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ddd3c5;
}

.spot-media-large {
  grid-row: 1 / 3;
}

.spot-media-grid img,
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-media-grid figcaption,
.event-image figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.78);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-network-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.32);
}

.market-network-grid,
.operator-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.market-network-grid article,
.operator-flow article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.66);
}

.market-network-grid strong,
.operator-flow strong {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 0.98;
}

.centered-actions {
  justify-content: center;
}

.featured-event-section {
  background: #25170f;
  color: var(--paper);
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.event-copy {
  display: grid;
  gap: 18px;
  max-width: 36rem;
}

.event-copy h2 {
  max-width: 10ch;
}

.event-copy span,
.event-copy p {
  color: rgba(239, 230, 216, 0.78);
}

.event-copy h2 {
  color: var(--paper);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-image {
  min-height: 430px;
  border-color: rgba(239, 230, 216, 0.18);
}

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

.operator-flow article {
  align-content: space-between;
  min-height: 150px;
}

.mm-event-section {
  border-top: 1px solid rgba(239, 230, 216, 0.16);
  border-bottom: 1px solid rgba(239, 230, 216, 0.16);
}

.platform-hero,
.page-directory,
.partners-hero,
.partner-model-section {
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 76px);
}

.platform-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.platform-hero h1 {
  max-width: 8ch;
  font-size: clamp(76px, 11vw, 154px);
}

.platform-hero .lead {
  max-width: 34rem;
}

.platform-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.platform-tile {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.62);
}

.platform-tile-large {
  grid-row: 1 / 3;
}

.platform-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-tile:not(.platform-tile-large) img {
  object-fit: contain;
  padding: 26px;
  mix-blend-mode: multiply;
}

.platform-tile:nth-child(3) img,
.platform-tile:nth-child(4) img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}

.partner-hero-card {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: clamp(360px, 48vw, 560px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(255, 253, 249, 0.94), rgba(244, 226, 198, 0.7)),
    radial-gradient(circle at 16% 12%, rgba(137, 74, 39, 0.18), transparent 32%);
  box-shadow: 0 28px 70px rgba(47, 33, 22, 0.12);
}

.partner-hero-card h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
}

.partner-hero-card p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-soft);
}

.karibu-card .partner-lettermark {
  width: 118px;
  height: 118px;
  font-size: 40px;
  background: var(--ink);
  color: var(--paper);
}

.karibu-photo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 92% 8%, rgba(137, 74, 39, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,253,249,1), rgba(241,225,199,0.74));
}

.karibu-photo-hero h1 {
  max-width: 10ch;
  font-size: clamp(66px, 8vw, 132px);
}

.karibu-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.karibu-shot,
.karibu-story-band figure,
.karibu-gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,253,249,0.72);
  box-shadow: 0 28px 70px rgba(47, 33, 22, 0.12);
}

.karibu-shot-main {
  grid-row: 1 / 3;
}

.karibu-shot img,
.karibu-story-band img,
.karibu-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.karibu-shot-main img {
  object-position: center center;
}

.karibu-shot figcaption,
.karibu-gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.82);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.karibu-story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.karibu-story-band figure {
  min-height: clamp(420px, 58vw, 720px);
}

.karibu-story-band h2 {
  max-width: 12ch;
  font-size: clamp(48px, 6vw, 94px);
}

.karibu-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.karibu-link-row a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.karibu-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.karibu-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.karibu-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.karibu-gallery-grid figure {
  min-height: 250px;
}

.karibu-gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.platform-tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.82);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-directory {
  border-top: 1px solid var(--line);
}

.page-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.page-directory-head h2 {
  max-width: 11ch;
}

.page-directory-head p {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.45;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-link-card {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.62);
}

.page-link-card span,
.partner-model-grid span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-link-card strong,
.partner-model-grid strong {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 0.98;
}

.page-link-card-dark {
  background: #25170f;
  color: var(--paper);
}

.page-link-card-dark span {
  color: rgba(239, 230, 216, 0.78);
}

.partners-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.partners-hero h1 {
  max-width: 9ch;
}

.partners-hero figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ddd3c5;
}

.partners-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-hero figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.82);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-model-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.3);
}

.partner-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-model-grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.68);
}

.partner-model-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.partner-examples {
  border-top: 0;
}

.ninadiah-page h1 {
  max-width: 13ch;
  font-size: clamp(50px, 6.8vw, 96px);
}

.ninadiah-page h2 {
  max-width: 12ch;
}

.ninadiah-hero {
  align-items: start;
}

.ninadiah-hero-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(3, minmax(170px, 1fr));
  gap: 18px;
}

.ninadiah-photo,
.ninadiah-logo-card,
.catalog-card,
.catalog-status-card,
.catalog-payment-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.62);
}

.ninadiah-photo {
  position: relative;
  margin: 0;
  min-height: 170px;
}

.ninadiah-photo-large {
  grid-row: 1 / 4;
}

.ninadiah-photo img,
.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-image-orange-set {
  object-position: center 24%;
}

.catalog-image-black-cuff {
  object-position: center center;
}

.catalog-image-kenya-cuff {
  object-position: center 22%;
}

.catalog-card img.catalog-image-pink-set {
  object-fit: contain;
  object-position: center center;
  background: #f4eee5;
}

.ninadiah-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(30, 23, 18, 0.82);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ninadiah-logo-card {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
}

.ninadiah-logo-card img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.ninadiah-logo-card strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.96;
}

.ninadiah-logo-card span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ninadiah-brand-logo {
  width: 116px;
  height: 78px;
  border: 1px solid rgba(30, 23, 18, 0.12);
  border-radius: 18px;
  background: var(--white);
  object-fit: contain;
}

.catalog-preview-section {
  display: grid;
  gap: 34px;
}

.catalog-groups {
  display: grid;
  gap: clamp(34px, 5vw, 60px);
}

.catalog-group {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.catalog-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  display: grid;
  grid-template-rows: 260px 1fr;
}

.catalog-card-wide {
  grid-column: span 2;
}

.catalog-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.catalog-card-copy span,
.catalog-status-card span {
  color: var(--spice);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.catalog-price {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-status-card {
  display: grid;
  gap: 10px;
  max-width: 44rem;
  padding: clamp(20px, 3vw, 28px);
  background: #25170f;
  color: var(--paper);
}

.catalog-status-card span,
.catalog-status-card p {
  color: rgba(239, 230, 216, 0.78);
}

.catalog-status-card strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.96;
}

.catalog-status-card p {
  max-width: 34rem;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.catalog-payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px);
  background: #25170f;
  color: var(--paper);
}

.catalog-payment-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.catalog-payment-copy span,
.payment-qr-grid span {
  color: rgba(239, 230, 216, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-payment-copy strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.96;
}

.catalog-payment-copy p {
  max-width: 34rem;
  margin: 0;
  color: rgba(239, 230, 216, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

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

.payment-contact-list div {
  padding-top: 10px;
  border-top: 1px solid rgba(239, 230, 216, 0.18);
}

.payment-contact-list dt {
  color: rgba(239, 230, 216, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-contact-list dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.payment-contact-list a {
  color: inherit;
  text-decoration-color: rgba(239, 230, 216, 0.42);
  text-underline-offset: 4px;
}

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

.payment-qr-grid article {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-radius: 22px;
  background: #fffdf9;
  color: var(--ink);
}

.payment-qr-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--white);
  object-fit: contain;
}

.payment-qr-grid img.payment-qr-venmo {
  object-fit: cover;
}

.payment-qr-grid span {
  color: var(--spice);
}

.payment-qr-grid strong {
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero,
  .chef-shell,
  .atlas-panel,
  .chef-board,
  .order-layout,
  .route-board,
  .join-shell,
  .store-catalog-layout,
  .lane-grid,
  .restaurant-showcase,
  .pantry-board,
  .ritual-grid,
  .directory-grid,
  .spot-section,
  .event-panel,
  .platform-hero,
  .partners-hero,
  .karibu-photo-hero,
  .karibu-story-band,
  .karibu-proof-layout,
  .ninadiah-hero-board,
  .event-drop-feature,
  .catalog-payment-panel {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-main,
  .hero-inset {
    position: relative;
    inset: auto;
  }

  .hero-main {
    aspect-ratio: 0.92;
  }

  .hero-inset {
    width: min(62%, 320px);
    margin: -72px 0 0 auto;
    aspect-ratio: 1;
  }

  .atlas-shell {
    grid-template-columns: 1fr;
  }

  .chef-media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .chef-media-large {
    grid-row: auto;
    min-height: 420px;
  }

  .order-panel {
    position: static;
  }

  .route-board {
    gap: 16px;
  }

  .store-hero-media,
  .store-shelf-preview {
    grid-template-columns: 1fr 1fr;
  }

  .store-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-flow,
  .mm-hero-board,
  .market-network-grid,
  .operator-flow,
  .page-link-grid,
  .partner-model-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .builder-panel {
    position: static;
  }

  .ninadiah-hero-board {
    grid-template-rows: auto;
  }

  .ninadiah-photo-large {
    grid-row: auto;
    min-height: 420px;
  }

  .featured-directory-card {
    grid-row: auto;
  }

  .spot-media-large {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand small {
    display: none;
  }

  .site-menu summary {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .site-menu-panel {
    right: 0;
    min-width: min(290px, calc(100vw - 32px));
  }

  nav {
    gap: 12px;
  }

  .message-strip {
    grid-template-columns: 1fr 1fr;
  }

  .message-strip p:nth-child(2n) {
    border-right: 0;
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .lead,
  .section-heading p,
  .route-copy p,
  .join-copy p {
    font-size: 16px;
  }

  .hero-main,
  .hero-inset,
  .atlas-image,
  .ritual-card,
  .join-image,
  form {
    border-radius: 24px;
  }

  .hero-inset {
    width: 68%;
    margin-top: -42px;
  }

  .hero-main {
    aspect-ratio: 0.84;
  }

  .message-strip p {
    padding: 14px 10px;
    font-size: 11px;
  }

  .chef-brandline {
    grid-template-columns: 1fr;
  }

  .chef-board,
  .menu-card-grid,
  .chef-media-grid,
  .store-hero-media,
  .store-shelf-preview,
  .store-flow,
  .mm-hero-board,
  .restaurant-showcase,
  .pantry-board,
  .store-category-grid,
  .store-product-grid,
  .directory-grid,
  .spot-media-grid,
  .market-network-grid,
  .operator-flow,
  .platform-visual-grid,
  .page-link-grid,
  .partner-model-grid,
  .karibu-mosaic,
  .karibu-gallery-grid,
  .ninadiah-hero-board,
  .event-drop-feature,
  .catalog-grid,
  .catalog-payment-panel {
    grid-template-columns: 1fr;
  }

  .lane-grid,
  .pantry-lane {
    grid-template-columns: 1fr;
  }

  .lane-card,
  .market-lane,
  .restaurant-lane,
  .pantry-lane,
  .directory-card {
    min-height: auto;
  }

  .store-copy-card .chef-board,
  .store-category-grid article,
  .market-network-grid article,
  .operator-flow article,
  .mm-hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mini-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-products img {
    height: 112px;
  }

  .restaurant-menu-strip {
    grid-template-columns: 1fr;
  }

  .pantry-note {
    padding-top: 120px;
  }

  .main-product,
  .store-shelf-card.large,
  .main-mm-photo,
  .platform-tile-large,
  .ninadiah-photo-large,
  .catalog-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .main-product img,
  .store-shelf-card.large img {
    height: 220px;
  }

  .main-mm-photo,
  .mm-hero-photo:not(.main-mm-photo),
  .restaurant-proof-image,
  .event-image,
  .partners-hero figure {
    min-height: 240px;
  }

  .platform-hero {
    min-height: auto;
  }

  .platform-hero h1 {
    font-size: clamp(62px, 18vw, 92px);
  }

  .karibu-photo-hero {
    min-height: auto;
  }

  .karibu-photo-hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .karibu-shot-main,
  .karibu-gallery-grid figure:first-child {
    grid-row: auto;
  }

  .karibu-shot,
  .karibu-story-band figure,
  .karibu-gallery-grid figure {
    min-height: 260px;
    border-radius: 24px;
  }

  .karibu-story-band h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .page-directory-head {
    display: grid;
    align-items: start;
  }

  .page-link-card,
  .partner-model-grid article {
    min-height: 170px;
  }

  .featured-directory-card {
    grid-template-rows: auto auto;
  }

  .directory-card > img {
    min-height: 240px;
  }

  .chef-media-large {
    min-height: 320px;
  }

  .menu-card h4 {
    font-size: 26px;
  }

  .menu-card-head,
  .menu-card-foot,
  .order-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-price {
    text-align: left;
  }

  .route-zones {
    gap: 8px;
  }
}

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


/* M&M Operator OS preview */
.mm-ops-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(137, 74, 39, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf8, #f2e6d6 42%, #21150f 42%, #21150f 64%, #fff9ef 64%);
}

.ops-hero,
.ops-section {
  padding: clamp(46px, 7vw, 104px) clamp(20px, 5vw, 76px);
}

.ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.ops-hero h1 {
  max-width: 11ch;
  font-size: clamp(60px, 8vw, 132px);
}

.ops-command-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(3, minmax(150px, auto));
  gap: 16px;
}

.ops-screen {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(30, 23, 18, 0.16);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 28px 70px rgba(47, 33, 22, 0.12);
}

.ops-screen-main {
  grid-row: 1 / 4;
  background: #20140e;
  color: var(--paper);
}

.screen-topline { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.screen-topline span, .ops-screen > span, .ops-route-grid span, .ops-capability-grid span, .ops-roadmap span {
  color: var(--spice); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase;
}
.ops-screen-main .screen-topline span, .ops-screen-main .screen-topline strong, .metric-screen.dark span, .metric-screen.dark small { color: rgba(239, 230, 216, 0.76); }
.ticket-grid { display: grid; gap: 14px; }
.ticket { display: grid; gap: 8px; padding: 18px; border: 1px solid rgba(239, 230, 216, 0.16); border-radius: 22px; background: rgba(239, 230, 216, 0.08); }
.ticket strong { font-family: var(--display); font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 0.96; }
.ticket.hot { border-color: rgba(238, 121, 53, 0.58); }
.ticket.ready { background: rgba(120, 160, 94, 0.18); }
.slack-screen p, .ops-route-grid p, .ops-capability-grid p, .ops-roadmap p, .slack-chat-preview p { margin: 0; color: var(--ink-soft); line-height: 1.45; }
.metric-screen { align-content: end; }
.metric-screen strong { font-family: var(--display); font-size: clamp(54px, 7vw, 92px); font-weight: 600; line-height: 0.9; }
.metric-screen.dark { background: #2c1a12; color: var(--paper); }
.ops-route-grid, .ops-capability-grid, .ops-roadmap { display: grid; gap: 16px; margin-top: 34px; }
.ops-route-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ops-route-grid article, .ops-capability-grid article, .ops-roadmap article { display: grid; align-content: start; gap: 12px; min-height: 240px; padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 253, 249, 0.72); }
.ops-route-grid strong, .ops-capability-grid strong, .ops-roadmap strong { font-family: var(--display); font-size: clamp(30px, 3.5vw, 48px); font-weight: 600; line-height: 0.96; }
.ops-route-grid small { color: var(--ink-soft); font-weight: 800; }
.ops-dark-section { background: #21150f; color: var(--paper); }
.ops-dark-section .section-heading p, .ops-dark-section .ops-capability-grid p, .ops-dark-section .ops-capability-grid span { color: rgba(239, 230, 216, 0.74); }
.ops-dark-section .ops-capability-grid article { border-color: rgba(239, 230, 216, 0.16); background: rgba(239, 230, 216, 0.07); }
.ops-capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.slack-flow-card { display: grid; grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr); gap: 0; overflow: hidden; margin-top: 34px; border: 1px solid var(--line); border-radius: 30px; background: rgba(255, 253, 249, 0.78); }
.slack-rail { display: grid; align-content: start; gap: 8px; padding: 22px; background: #2c1a12; color: var(--paper); }
.slack-rail span { padding: 12px; border-radius: 14px; background: rgba(239, 230, 216, 0.08); font-weight: 900; }
.slack-chat-preview { display: grid; gap: 12px; padding: clamp(20px, 4vw, 34px); }
.slack-chat-preview p { max-width: 56rem; padding: 14px 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.52); }
.ops-roadmap { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .ops-hero, .ops-route-grid, .ops-capability-grid, .ops-roadmap, .slack-flow-card { grid-template-columns: 1fr; } .ops-command-wall { grid-template-columns: 1fr 1fr; } .ops-screen-main { grid-column: 1 / 3; grid-row: auto; } }
@media (max-width: 760px) { .ops-hero h1 { font-size: clamp(48px, 15vw, 78px); } .ops-command-wall { grid-template-columns: 1fr; } .ops-screen-main { grid-column: auto; } .ticket strong { font-size: 32px; } }
