:root {
  --sage: #b8c8a8;
  --sage-dark: #59664c;
  --cream: #f3f0e8;
  --paper: #fbf8ef;
  --ink: #24231f;
  --muted: #6a665d;
  --line: #d9d0bd;
  --warm: #a9784f;
  --shadow: 0 18px 50px rgba(42, 35, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 9px clamp(18px, 4vw, 54px);
  background: rgba(243, 240, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav a,
.header-order {
  text-decoration: none;
}

.header-order {
  padding: 10px 16px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  min-height: calc(100vh - 101px);
  border-bottom: 1px solid var(--line);
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(251, 248, 239, 0.96), rgba(251, 248, 239, 0.86)),
    url("assets/white-wheat-sub-rolls.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.menu-hero h1 {
  max-width: 760px;
}

.menu-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.hero-media {
  min-height: 560px;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 7vw, 92px);
  background: linear-gradient(180deg, var(--paper), #f2ece0);
}

.eyebrow,
.tag {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 3.9rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.split-copy p,
.status-band p,
.repeat-layout p,
.site-footer p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--paper);
  background: var(--sage-dark);
}

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

.order-button {
  width: 100%;
  margin: 4px 0 2px;
  border-radius: 8px;
}

.order-button.pending,
.checkout-pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--sage-dark);
  background: #fff;
  border: 1px dashed var(--sage-dark);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 70px);
  background: var(--sage-dark);
}

.status-band h2,
.status-band p,
.status-band .eyebrow {
  color: var(--paper);
}

.status-panel {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(251, 248, 239, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
}

.status-panel span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-panel strong {
  font-size: 1.6rem;
}

.status-panel a {
  color: var(--sage-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section,
.split-section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

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

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(42, 35, 24, 0.08);
}

.product-card.featured {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-card div {
  padding: 18px;
}

.product-card p:not(.tag),
.wholesale-grid p,
.seo-grid p,
.faq-list p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 13px;
  background: var(--sage);
  border-radius: 50%;
}

.location-photos {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}

.location-photos img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-photos img:first-child {
  object-position: center top;
}

.soft {
  background: #e9e4d7;
}

.repeat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.qr-copy {
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 2px dashed var(--sage);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.qr-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.qr-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
}

.qr-copy p {
  margin: 4px 0 0;
}

.wholesale-grid,
.seo-grid,
.answer-grid,
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-steps article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.checkout-steps p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

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

.pickup-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pickup-card span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pickup-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.inline-note {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f5efe2;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
}

.compliance-section {
  background: #fffaf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.disclosure-statement {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--sage);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

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

.feature-strip article {
  padding: 22px;
  min-height: 190px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(42, 35, 24, 0.07);
}

.feature-strip span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-strip p,
.catalog-card p,
.catalog-card small {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
}

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--sage-dark);
  background: var(--paper);
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  color: var(--paper);
  background: var(--sage-dark);
}

.catalog-count {
  margin-bottom: 18px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 198px;
  overflow: hidden;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-card-image {
  width: calc(100% + 36px);
  aspect-ratio: 4 / 3;
  margin: -18px -18px 16px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.catalog-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-size: 1.12rem;
}

.catalog-card .product-meta {
  margin-top: 8px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.catalog-card small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  font-weight: 800;
}

.orderable-card {
  background: #f5efe2;
  border-color: var(--sage);
}

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

.option-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.option-list span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: baseline;
  padding: 9px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.option-list strong,
.option-list em {
  font-style: normal;
  font-size: 0.9rem;
}

.option-list small {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

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

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

.wholesale-grid article,
.seo-grid article,
.answer-grid article,
.faq-list article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.answer-grid p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.seo-section {
  background: #eee8da;
  border-top: 1px solid var(--line);
}

.answer-section,
.local-menu-search {
  background: #f5efe2;
  border-top: 1px solid var(--line);
}

.faq-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-foundation {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.rotation-test {
  background: #efe9dc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 18px;
}

.foundation-grid > article {
  padding: 24px;
  background: #f5efe2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

.mini-list-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.mini-list-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.mini-list-item span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 4px 8px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-list-item p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-list span {
  padding: 8px 10px;
  color: var(--sage-dark);
  background: var(--paper);
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

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

.rotation-grid article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rotation-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rotation-grid h3 {
  min-height: 2.5em;
  font-size: 1.08rem;
}

.rotation-grid p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.rotation-note {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.site-footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 70px);
  color: #fff;
  background: #24231f;
}

.site-footer p {
  margin: 8px 0 0;
  color: #e6dfd1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero,
  .menu-hero,
  .status-band,
  .split-section,
  .repeat-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-media {
    min-height: 360px;
  }

  .product-grid,
  .wholesale-grid,
  .seo-grid,
  .answer-grid,
  .pickup-grid,
  .checkout-steps,
  .feature-strip,
  .foundation-grid,
  .rotation-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .header-order {
    width: 100%;
    text-align: center;
  }

  .hero-copy {
    padding: 34px 20px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .product-grid,
  .wholesale-grid,
  .seo-grid,
  .answer-grid,
  .pickup-grid,
  .checkout-steps,
  .feature-strip,
  .foundation-grid,
  .rotation-grid,
  .catalog-grid,
  .faq-list,
  .location-photos {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .location-photos img {
    height: 310px;
  }

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