/*
  Reference-driven skin tokens and component specs (inspired by stockedfoodstore.com.au):
  - Neutral palette with soft warm background
  - Condensed display heading + clean sans body
  - Flat cards, thin dividers, pill CTA buttons
  - Wide section rhythm and simple grid structure
*/
:root {
  --rf-bg: #ece8e2;
  --rf-surface: #f6f1eb;
  --rf-surface-2: #e5ddd2;
  --rf-text: #26221f;
  --rf-text-muted: #716a61;
  --rf-line: #cec4b7;
  --rf-line-strong: #b6ab9d;
  --rf-dark: #1a1a1a;
  --rf-heading: "Anton", "Arial Narrow", sans-serif;
  --rf-body: "Poppins", "Segoe UI", sans-serif;

  --bg: var(--rf-bg);
  --paper: var(--rf-surface);
  --ink: var(--rf-text);
  --ink-soft: var(--rf-text-muted);
  --line: var(--rf-line);
  --brand: #232323;
  --brand-deep: #111111;
  --accent: #b7a38a;
  --accent-soft: #efe6da;
  --shadow: none;
  --radius: 0;
}

body {
  background: var(--rf-bg);
  color: var(--rf-text);
  font-family: var(--rf-body);
  letter-spacing: 0;
}

body::before,
.page-main::before,
.site-header::after,
.brand-banner {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--rf-heading);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

p,
li,
label,
input,
select,
textarea,
button,
a {
  font-family: var(--rf-body);
}

.wrap {
  width: min(1260px, calc(100% - 2rem));
}

.page-main {
  padding-bottom: 2.2rem;
}

.section {
  padding: 2.4rem 0;
}

.section-head {
  margin-bottom: 1.2rem;
  text-align: center;
  justify-items: center;
  gap: 0.5rem;
}

.section-head h2 {
  font-size: clamp(2.05rem, 4.4vw, 3.8rem);
  line-height: 0.95;
  color: #4c4741;
}

.section-head p {
  color: var(--rf-text-muted);
  max-width: 70ch;
  font-size: 0.9rem;
}

.lead {
  color: var(--rf-text-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  backdrop-filter: blur(6px);
  background: rgba(236, 232, 226, 0.95);
  border-bottom: 1px solid var(--rf-line);
  box-shadow: none;
}

.header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  min-width: 165px;
  gap: 0.5rem;
}

.site-header .brand {
  min-width: auto;
}

.brand img {
  width: 26px;
  height: 30px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
}

.brand-text {
  gap: 0;
}

.site-header .brand-text {
  display: grid;
}

.brand-name {
  font: 700 0.9rem/1 var(--rf-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f7568;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  gap: 0.95rem;
}

.main-nav a {
  border-bottom: 0;
  padding: 0.25rem 0.05rem;
  font: 600 0.72rem/1.1 var(--rf-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #332f2a;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #000;
  border-bottom: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.nav-toggle {
  border-radius: 999px;
  border: 1px solid var(--rf-line-strong);
  background: var(--rf-surface);
  font: 600 0.72rem/1 var(--rf-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.46rem 0.72rem;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: none;
  font: 600 0.7rem/1 var(--rf-body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.74rem 1rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--rf-dark);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: #2f2c29;
  border-color: var(--rf-line-strong);
}

.btn.gold {
  background: #bca68f;
  color: #1d1b19;
}

.cart-toggle {
  min-width: 102px;
}

.cart-badge {
  background: #2a2a2a;
  color: #fff;
}

.hero {
  padding: 2.1rem 0 2.4rem;
}

.hero-shell,
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.kicker {
  border: 0;
  background: transparent;
  color: #8a8073;
  padding: 0;
  font: 600 0.68rem/1 var(--rf-body);
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.2rem, 5.8vw, 4.85rem);
  line-height: 0.95;
  color: #4c4741;
}

.hero-ctas {
  gap: 0.55rem;
}

.hero-copy .small {
  margin-top: -0.25rem;
}

.hero-cert-note {
  margin-top: 0.55rem;
  color: #312c27;
  font-weight: 600;
}

.hero-notes {
  gap: 0.45rem;
}

.note-card {
  border: 1px solid var(--rf-line);
  border-radius: 0;
  background: var(--rf-surface);
  padding: 0.64rem;
}

.hero-photo {
  border: 1px solid var(--rf-line);
  border-radius: 0;
  box-shadow: none;
  min-height: 360px;
}

.hero-badge {
  left: 0;
  bottom: 0;
  border-radius: 0;
  background: rgba(19, 19, 19, 0.84);
  font: 600 0.62rem/1 var(--rf-body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.42rem 0.72rem;
}

.hero-photo,
.gallery-grid figure,
.catering-category,
.contact-visual {
  position: relative;
  overflow: hidden;
}

.grid-3,
.menu-grid,
.gallery-grid {
  gap: 0.5rem;
}

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

.gallery-grid figure {
  border-radius: 0;
  border: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.info-card,
.feature-card,
.contact-card,
.timeline-card,
.stat-card,
.form-card,
.signature-card,
.menu-card,
.order-catalog,
.strip,
.form-card,
.callout {
  background: var(--rf-surface);
  border: 1px solid var(--rf-line);
  border-radius: 0;
  box-shadow: none;
}

.info-card h3,
.feature-card h3,
.timeline-card h3,
.stat-card h3,
.contact-card h3,
.signature-card h3 {
  font-size: 1.55rem;
  line-height: 0.94;
}

.info-card p,
.feature-card p,
.timeline-card p,
.stat-card p,
.contact-card p,
.signature-card p,
.form-card p {
  color: var(--rf-text-muted);
}

.strip {
  background: var(--rf-surface-2);
}

.field,
input,
select,
textarea {
  border-radius: 0;
  background: #fcfaf7;
  border: 1px solid var(--rf-line-strong);
}

.field:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #5c5751;
  outline: none;
}

.filter-pills {
  margin: 0.65rem 0 0.7rem;
  gap: 0.36rem;
}

.pill {
  border: 1px solid var(--rf-line-strong);
  background: #f2ece3;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.34rem 0.58rem;
}

.pill.active {
  border-color: #232323;
  color: #fff;
  background: #232323;
}

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

.menu-card {
  border: 1px solid var(--rf-line);
  border-radius: 0;
  background: #f5f0e9;
  padding: 0.72rem;
  gap: 0.55rem;
}

.menu-card h3 {
  font: 600 1rem/1.25 var(--rf-body);
  color: #2a2826;
}

.code {
  color: #656057;
  letter-spacing: 0.05em;
}

.price {
  color: #191817;
  font-size: 0.97rem;
}

.pack,
.small {
  color: var(--rf-text-muted);
}

.empty-state {
  border: 1px dashed var(--rf-line-strong);
  border-radius: 0;
  background: #f4ede3;
}

.order-catalog h3,
.meta-row h3 {
  font-size: 1.45rem;
  line-height: 0.95;
}

.basket-item,
.order-total {
  border-radius: 0;
  border: 1px solid var(--rf-line);
  background: #f7f1e8;
}

.qty-box,
.cart-close {
  border-radius: 999px;
  border: 1px solid var(--rf-line-strong);
}

.cart-drawer {
  border-left: 1px solid var(--rf-line-strong);
  background: #f3ede4;
  box-shadow: none;
}

.cart-drawer-head {
  border-bottom: 1px solid var(--rf-line);
}

.cart-backdrop {
  background: rgba(19, 17, 15, 0.45);
}

.cart-fab {
  border-radius: 999px;
  background: #222;
  color: #fff;
}

/* Order page shop layout */
.order-shop-hero .section-head h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.order-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  align-items: start;
}

.order-intro-card {
  margin-bottom: 1rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.order-intro-copy {
  display: grid;
  gap: 0.45rem;
}

.order-intro-copy .small,
.order-cert-note {
  margin: 0;
}

.order-cert-note {
  color: #2d2924;
  font-weight: 600;
}

.order-shop-heading {
  align-items: end;
}

.order-shop-heading-count {
  justify-content: flex-end;
}

.order-sidebar {
  border: 1px solid var(--rf-line);
  background: #f5f0e8;
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
  position: sticky;
  top: 92px;
}

.order-sidebar h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 0.95;
}

.order-category-list {
  display: grid;
  gap: 0.2rem;
}

.order-category-btn {
  border: 0;
  background: transparent;
  color: #6b6359;
  text-align: left;
  font: 700 0.78rem/1.3 var(--rf-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.24rem 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: space-between;
  align-items: baseline;
}

.order-category-btn span {
  color: #9f9487;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  margin-left: 0.4rem;
}

.order-category-btn.active {
  color: #1b1815;
}

.order-category-btn.active span {
  color: #4a433b;
}

.order-category-fallback {
  display: none;
}

.order-shop-main {
  display: grid;
  gap: 0.82rem;
}

#orderCatalogList {
  display: grid;
  gap: 0.9rem;
}

.product-group {
  display: grid;
  gap: 0.52rem;
}

.product-group h4 {
  margin: 0;
  font: 700 1.2rem/1.1 var(--rf-body);
  color: #3d3934;
}

.product-grid-shop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
}

.product-card-shop {
  border: 1px solid var(--rf-line);
  background: #f5f0e8;
  padding: 0.72rem;
  display: grid;
  gap: 0.38rem;
  align-content: start;
  min-height: 0;
  height: 100%;
}

.product-card-shop-has-image {
  grid-template-rows: 168px auto minmax(2.35em, auto) minmax(1.25rem, auto) auto;
}

.product-card-shop-no-image {
  padding: 0.82rem;
  grid-template-rows: auto minmax(2.35em, auto) minmax(1.25rem, auto) auto;
}

.product-card-shop h4 {
  margin: 0;
  font: 700 0.98rem/1.18 var(--rf-body);
  color: #252220;
  min-height: 2.35em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-image-wrap {
  margin: 0;
  border: 1px solid #cabfb0;
  background: #f1e9dc;
  height: 168px;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 168px;
  min-height: 168px;
  object-fit: cover;
  display: block;
}

.product-price {
  font-weight: 700;
  color: #2c2824;
  min-height: 1.2em;
  margin: 0;
}

.product-subline {
  margin: 0;
  min-height: 1.25rem;
}

.product-subline.is-empty {
  visibility: hidden;
}

.product-card-shop .btn {
  margin-top: 0;
  width: 100%;
  justify-content: center;
  align-self: end;
}

.cart-summary-card {
  margin-top: 0.2rem;
}

.order-total .btn {
  width: 100%;
}

.cart-drawer-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.45rem;
  min-height: 0;
  overflow: hidden;
}

.basket-list {
  max-height: none;
  min-height: 0;
  margin-bottom: 0;
  overflow: auto;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: #9f9587 #ebe4d8;
}

.basket-list::-webkit-scrollbar {
  width: 8px;
}

.basket-list::-webkit-scrollbar-track {
  background: #ebe4d8;
  border-radius: 999px;
}

.basket-list::-webkit-scrollbar-thumb {
  background: #9f9587;
  border-radius: 999px;
}

.basket-list::-webkit-scrollbar-thumb:hover {
  background: #857b6e;
}

/* Checkout page */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.checkout-items {
  display: grid;
  gap: 0.45rem;
  max-height: 48vh;
  overflow: auto;
}

.checkout-item {
  border: 1px solid var(--rf-line);
  background: #f7f1e8;
  padding: 0.58rem;
  display: grid;
  gap: 0.22rem;
}

.checkout-item p {
  margin: 0;
}

.checkout-totals {
  margin-top: 0.75rem;
  border-top: 1px solid var(--rf-line);
  padding-top: 0.55rem;
  display: grid;
  gap: 0.28rem;
}

.checkout-actions {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.5rem;
}

/* Catering page specific layout */
.catering-hero .hero-copy {
  text-align: center;
  justify-items: center;
}

.catering-hero .hero-copy h1 {
  max-width: 12ch;
}

.catering-hero .lead {
  max-width: 68ch;
}

.catering-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.catering-categories {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catering-category {
  border: 1px solid var(--rf-line);
  background: #f2ece3;
  display: grid;
  grid-template-rows: 190px auto;
}

.catering-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-category div {
  padding: 0.78rem;
  display: grid;
  gap: 0.36rem;
}

.catering-category h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.92;
  color: #4f4a45;
}

.catering-category p {
  margin: 0;
  color: var(--rf-text-muted);
  font-size: 0.84rem;
}

.menu-browser {
  margin-top: 0.95rem;
  border: 1px solid var(--rf-line);
  background: var(--rf-surface);
  padding: 0.95rem;
}

.catering-values {
  padding-top: 0.75rem;
}

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

.value-item {
  border: 1px solid var(--rf-line);
  background: var(--rf-surface);
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.value-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--rf-line-strong);
  display: inline-grid;
  place-items: center;
  color: #3a3733;
}

.value-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h3 {
  margin: 0;
  font: 700 0.92rem/1.25 var(--rf-body);
  text-transform: none;
  letter-spacing: 0;
  color: #272420;
}

.value-item p {
  margin: 0;
  color: var(--rf-text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.catering-contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rf-line-strong);
}

.contact-visual {
  margin: 0;
  min-height: 420px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel {
  background: #595652;
  color: #f2eee7;
  padding: 1.55rem;
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.contact-panel h2 {
  margin: 0;
  color: #f8f4ed;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.contact-panel p {
  margin: 0;
  color: #e9e2d8;
  font-size: 0.88rem;
}

.contact-panel .btn.primary {
  background: #f6efe5;
  color: #222;
}

.contact-panel .btn.ghost {
  border-color: #dfd3c4;
  color: #f8f4ed;
}

.store-list {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(245, 237, 228, 0.34);
  padding-top: 0.75rem;
}

.store-list h3 {
  margin: 0 0 0.35rem;
  color: #f7f2eb;
  font: 600 0.9rem/1.2 var(--rf-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-list ul {
  list-style: none;
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
}

.store-list li {
  color: #ebe3d7;
  font-size: 0.82rem;
}

/* Catering coming soon page */
.coming-hero .hero-copy {
  text-align: center;
  justify-items: center;
  max-width: 84ch;
  margin: 0 auto;
}

.coming-hero .hero-copy h1 {
  max-width: 38rem;
  width: 100%;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 0.95;
}

.coming-hero .lead {
  max-width: 66ch;
  width: 100%;
}

.coming-hero-lead {
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: #2b2723;
}

.coming-hero-lead strong {
  color: #171513;
}

.coming-waitlist {
  padding-top: 0.5rem;
}

.coming-card {
  border: 1px solid var(--rf-line);
  background: var(--rf-surface);
  padding: 1.45rem;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.coming-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6f1d9a, #bca68f);
}

.coming-card h2 {
  margin: 0.15rem 0 0;
  color: #2c2824;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.94;
}

.coming-card p {
  margin: 0.4rem 0 0;
  color: var(--rf-text-muted);
  font-size: 0.9rem;
}

.coming-offer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: #efe5d8;
  border: 1px solid #ccbba7;
  color: #433b33;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-offer-copy {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
}

.coming-offer-copy strong {
  color: #171513;
}

.coming-offer-footnote {
  margin-top: 0.8rem;
  color: #5f564c;
}

.coming-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.coming-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.coming-form .field {
  width: 100%;
  min-height: 54px;
}

.coming-form .btn {
  min-height: 54px;
}

.coming-form-note {
  min-height: 1.25rem;
}

.coming-form-note.is-success {
  color: #2f5f2f;
}

.coming-form-note.is-error {
  color: #8f2d2d;
}

.launch-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(20, 18, 15, 0.66);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.launch-popup-backdrop[hidden] {
  display: none !important;
}

.launch-popup {
  width: min(720px, 100%);
  border: 1px solid var(--rf-line-strong);
  background: var(--rf-surface);
  padding: 1.1rem;
  position: relative;
  display: grid;
  gap: 0.55rem;
}

.launch-popup h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.95;
  color: #4c4741;
}

.launch-popup p {
  margin: 0;
  color: var(--rf-text-muted);
}

.launch-popup-voucher {
  color: #2d2924;
}

.launch-popup-linkline a,
.contact-simple-hero a,
.about-short a {
  color: #302a24;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.launch-popup-linkline a:hover,
.contact-simple-hero a:hover,
.about-short a:hover {
  color: #171513;
}

.launch-popup-close {
  justify-self: end;
  border-radius: 999px;
  border: 1px solid var(--rf-line-strong);
  background: #f4eee4;
  color: #2d2924;
  font: 600 0.72rem/1 var(--rf-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.56rem 0.9rem;
  cursor: pointer;
}

.launch-popup-close:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

body.popup-open {
  overflow: hidden;
}

.contact-simple-hero {
  max-width: 78ch;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.contact-simple-hero h1 {
  max-width: 28ch;
}

.contact-simple-wrap {
  max-width: 760px;
}

#checkoutMessage.is-success {
  color: #2f5f2f;
}

#checkoutMessage.is-error {
  color: #8f2d2d;
}

#stripeStatus.is-success {
  color: #2f5f2f;
}

#stripeStatus.is-error {
  color: #8f2d2d;
}

.coming-gallery-section {
  padding-top: 1rem;
}

.coming-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  width: min(920px, 100%);
  margin: 0 auto;
}

.carousel-arrow {
  width: 2.8rem;
  min-height: 2.8rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
}

.coming-carousel-viewport {
  overflow: hidden;
  border: 1px solid var(--rf-line);
  background: var(--rf-surface);
  padding: 0.75rem;
}

.coming-carousel-track {
  display: flex;
  transition: transform 0.48s ease;
}

.coming-slide {
  flex: 0 0 100%;
  margin: 0;
  background: #f2ece3;
  min-height: clamp(260px, 38vw, 460px);
  display: grid;
  place-items: center;
  padding: 0.5rem;
}

.coming-slide img {
  width: min(100%, 760px);
  height: clamp(240px, 34vw, 420px);
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.coming-slide figcaption {
  padding: 0.5rem 0.65rem;
  border-top: 1px solid var(--rf-line);
  background: #f8f3ec;
  color: #5c554d;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-waitlist-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  width: min(280px, calc(100vw - 2rem));
  border: 1px solid #bca68f;
  border-radius: 1.1rem;
  background: #171513;
  color: #fff;
  display: grid;
  gap: 0.12rem;
  padding: 0.85rem 0.95rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(23, 21, 19, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-waitlist-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(23, 21, 19, 0.26);
  background: #211d1a;
}

.floating-waitlist-cta__eyebrow {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8c6b0;
}

.floating-waitlist-cta strong {
  font: 700 1rem/1.1 var(--rf-body);
  letter-spacing: 0;
  text-transform: none;
}

.floating-waitlist-cta__sub {
  font-size: 0.76rem;
  color: #f2ece5;
  line-height: 1.35;
}

/* About page profile + review sections */
.about-banner {
  background: #d9d9d9;
  border-bottom: 1px solid #cdc4b8;
}

.about-banner-inner {
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 0;
}

.about-banner h1 {
  margin: 0;
  font: 700 clamp(2.4rem, 4.9vw, 4.1rem) / 1 "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  color: #101010;
}

.about-banner p {
  margin: 0.2rem 0 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: #3e4b56;
  font-weight: 600;
}

.about-profile-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.about-main-photo {
  width: min(100%, 620px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-main-photo img {
  width: 100%;
  display: block;
}

.about-short {
  margin-top: 1.5rem;
}

.about-short h2 {
  margin: 0;
  font: 700 clamp(2.25rem, 3.2vw, 3.05rem) / 1 "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  color: #0f0f0f;
}

.about-short p {
  margin-top: 0.85rem;
  color: #5a5a5a;
  font-size: 1.02rem;
  line-height: 1.64;
}

.about-bio-list {
  margin-top: 0.65rem;
  padding-left: 1.2rem;
  color: #525252;
  display: grid;
  gap: 0.38rem;
  line-height: 1.6;
}

.about-photos {
  margin-top: 1.7rem;
}

.about-photos h2 {
  margin: 0 0 0.7rem;
  font: 700 clamp(2rem, 2.9vw, 2.65rem) / 1 "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  color: #171717;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.about-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #cbc0b2;
  background: #f2ece2;
  min-height: 160px;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-chip {
  border: 1px solid var(--rf-line-strong);
  border-radius: 999px;
  background: #f4eee4;
  color: #312e29;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.34rem 0.62rem;
}

.about-chip:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

.about-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-meta-list {
  display: grid;
  gap: 0.34rem;
  margin-top: 0.75rem;
  color: var(--rf-text-muted);
  font-size: 0.86rem;
}

.about-links {
  display: grid;
  gap: 0.34rem;
  margin-top: 0.6rem;
}

.about-links a {
  color: #3b352f;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.about-links a:hover {
  color: #171513;
}

.about-video-wrap {
  margin-top: 0.6rem;
  border: 1px solid var(--rf-line);
  background: #f0e9dd;
}

.about-video-wrap iframe {
  display: block;
  width: 100%;
  min-height: 240px;
  border: 0;
}

.about-review-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.about-review-toolbar span {
  border: 1px solid var(--rf-line-strong);
  border-radius: 999px;
  background: #f4eee4;
  color: #4f473f;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.28rem 0.55rem;
}

.review-stars {
  margin-top: 0.22rem;
}

.review-stars span {
  display: inline-block;
  color: #c9932f;
  font-size: 1.38rem;
  letter-spacing: 0.15rem;
  text-shadow: 0 1px 0 #fff;
}

.about-review-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: stretch;
}

.review-nav {
  border: 1px solid var(--rf-line-strong);
  background: #f4eee4;
  color: #2d2924;
  border-radius: 999px;
  font: 600 0.68rem/1 var(--rf-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.58rem 0.7rem;
  align-self: center;
  cursor: pointer;
}

.review-nav:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

.about-review-viewport {
  overflow: hidden;
}

.about-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 0.72rem) / 2);
  gap: 0.72rem;
  transition: transform 0.45s ease;
}

.about-review-card {
  min-height: 100%;
}

.about-owner-reply {
  margin-top: 0.6rem;
  border-top: 1px solid var(--rf-line);
  padding-top: 0.5rem;
  font-size: 0.83rem;
}

/* Footer style matching reference structure */
.footer {
  border-top: 1px solid var(--rf-line);
  background: #e2dbd1;
  padding: 1.35rem 0 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.footer-brand-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.footer-lockup {
  gap: 0.45rem;
  align-items: center;
}

.footer-lockup img {
  width: 56px;
  height: 32px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.footer-brand {
  font: 400 1.5rem/0.95 var(--rf-heading);
  color: #262320;
  letter-spacing: 0;
}

.footer-store {
  margin: 0;
  color: #645c52;
  font-size: 0.75rem;
  max-width: 36ch;
}

.footer-col h4 {
  margin: 0 0 0.4rem;
  font: 700 0.75rem/1 var(--rf-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #47423c;
}

.footer-links {
  display: grid;
  gap: 0.22rem;
}

.footer-links a {
  color: #5e574e;
  font-size: 0.76rem;
}

.footer-links a:hover {
  color: #1f1d1b;
}

.footer-base {
  margin-top: 0.9rem;
  padding-top: 0.65rem;
  border-top: 1px solid #c8beaf;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.footer-base p,
.footer-base a,
.footer .small {
  margin: 0;
  color: #645c52;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.footer-row,
.footer-contact,
.footer-copy {
  display: none;
}

@media (max-width: 1180px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

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

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

  .contact-visual {
    min-height: 300px;
  }

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

  .about-grid-2 {
    grid-template-columns: 1fr;
  }

  .about-review-track {
    grid-auto-columns: 100%;
  }

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

@media (max-width: 760px) {
  .wrap {
    width: min(1260px, calc(100% - 1.15rem));
  }

  .header-row {
    min-height: 70px;
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    justify-self: end;
    display: inline-flex;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    padding: 0.45rem 0 0.15rem;
    border-top: 1px solid var(--rf-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
  }

  .main-nav a {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.76rem;
  }

  .top-cta {
    display: none;
  }

  .section {
    padding: 1.8rem 0;
  }

  .hero {
    padding: 1.5rem 0 1.85rem;
  }

  .hero-shell,
  .grid-2,
  .order-shop-layout,
  .contact-layout,
  .signature-layout,
  .quick-grid,
  .split,
  .menu-toolbar,
  .hero-notes,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 11.2vw, 3.45rem);
    max-width: 13.5ch;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .hero-photo {
    min-height: 240px;
  }

  .catering-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .coming-form-row {
    grid-template-columns: 1fr;
  }

  .order-intro-card {
    grid-template-columns: 1fr;
  }

  .coming-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .floating-waitlist-cta {
    right: 0.8rem;
    bottom: 0.8rem;
    width: min(250px, calc(100vw - 1.6rem));
  }

  .catering-categories {
    grid-template-columns: 1fr;
  }

  .catering-category {
    grid-template-rows: 170px auto;
  }

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

  .product-grid-shop {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .footer-base {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .about-review-carousel {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .review-nav {
    justify-self: start;
  }

  .coming-slide img {
    width: min(100%, 520px);
    height: 240px;
  }

  .about-banner-inner {
    min-height: 150px;
    padding: 1.4rem 0;
  }

  .about-banner h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .about-banner p {
    font-size: clamp(1rem, 5.2vw, 1.45rem);
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }
}
