/* ─── Ginger & Scallion — Design System ─── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Lora:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600&display=swap');

/* ─── Tokens ─── */
:root {
  --gold:       #B8932E;
  --gold-hover: #9E7D24;
  --gold-ring:  rgba(184, 147, 46, 0.35);
  --cream:      #F5F0E8;
  --red-orange: #D4945A;
  --warm-wood:  #C9A87A;
  --near-black: #1A1A18;
  --text-muted: #5C5A54;
  --border:     rgba(26, 26, 24, 0.12);
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --nav-h: 64px;

  --z-sticky:  200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-toast:   600;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--near-black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.2;
}

p { margin: 0; }

button, input, select, textarea {
  font: inherit;
}

/* ─── Utilities ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.label-caps {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container--narrow {
  max-width: 760px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 80ms ease;
  min-height: 48px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

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

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn--primary:active { transform: scale(0.98); }

.btn--outline {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}
.btn--outline:hover { background: var(--near-black); color: var(--white); }

.btn--outline-cream {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-cream:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  min-height: 36px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.nav__wordmark {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--near-black);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--near-black);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 150ms ease;
}

.nav__links a:hover { opacity: 1; }
.nav__links a[aria-current="page"] { opacity: 1; font-weight: 600; }

.nav__cta { margin-left: 0.5rem; }

/* Mobile nav toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  z-index: calc(var(--z-sticky) - 1);
}

.nav__mobile-menu.is-open { display: block; }

.nav__mobile-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav__mobile-links a {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--near-black);
  text-decoration: none;
}

/* ─── Footer ─── */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand .nav__wordmark { color: var(--cream); font-size: 1.25rem; }
.footer__brand p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; }

.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-wood);
  margin-bottom: 0.875rem;
}

.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.875rem; transition: color 150ms; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer__bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer__bottom a:hover { color: var(--white); }

/* ─── Page base ─── */
.page-main { padding-top: var(--nav-h); }

/* ─── Section spacing ─── */
.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section--lg { padding-block: 7rem; }

.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-style: italic;
}

.section__subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 24, 0.42) 0%,
    rgba(26, 26, 24, 0.58) 60%,
    rgba(26, 26, 24, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem 1.25rem;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-wood);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem;
  font-style: italic;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ─── Brand strip ─── */
.brand-strip {
  background: var(--near-black);
  color: rgba(255,255,255,0.8);
  padding: 1.25rem 0;
}

.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.brand-strip__divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── Info strip (hours/address) ─── */
.info-strip {
  background: var(--warm-wood);
  color: var(--near-black);
  padding: 1rem 0;
}

.info-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
}

.info-strip__icon {
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── Brand statement ─── */
.brand-statement {
  background: var(--cream);
}

.brand-statement__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-statement__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.brand-statement__text p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.brand-statement__text p + p { margin-top: 1rem; }

.brand-statement__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

/* ─── Press strip ─── */
.press-strip {
  background: var(--near-black);
  padding: 2.5rem 0;
}

.press-strip__label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.press-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.press-strip__outlet {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 200ms;
  letter-spacing: 0.01em;
}

.press-strip__outlet:hover { color: rgba(255,255,255,0.8); }

/* ─── Instagram grid ─── */
.ig-section {
  background: var(--cream);
}

.ig-grid { display: none; } /* legacy — replaced by ig-embed-grid */

.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.ig-embed-grid .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .ig-embed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ig-embed-grid {
    grid-template-columns: 1fr;
  }
}

.ig-follow {
  margin-top: 1.5rem;
  text-align: center;
}

/* ─── Menu page ─── */
.menu-hero {
  background: var(--near-black);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.menu-hero__eyebrow { color: var(--warm-wood); margin-bottom: 1rem; }

.menu-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.menu-hero__sub {
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-inline: auto;
}

.menu-body {
  background: var(--cream);
  padding-block: 4rem;
}

.menu-section {
  margin-bottom: 4rem;
}

.menu-section__heading {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table tr {
  border-bottom: 1px solid var(--border);
}

.menu-table tr:last-child {
  border-bottom: none;
}

.menu-table td {
  padding: 1.25rem 0;
  vertical-align: top;
}

.menu-table td:last-child {
  text-align: right;
  padding-left: 2rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
}

.menu-item__name {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 55ch;
}

.menu-item__garnish {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge--vegan { background: #D4EDDA; color: #1A5932; }
.badge--halal { background: #D4E8F5; color: #0E3D5C; }
.badge--spicy { background: #FCEBEB; color: #791F1F; }

.menu-addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.menu-addon-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--near-black);
}

.menu-addon-pill span {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.drinks-category h3 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.drinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drinks-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 1rem;
}

.drinks-list .price {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── Order page ─── */
.order-page {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: calc(100svh - var(--nav-h));
  align-items: start;
}

.order-main {
  padding: 2.5rem 2rem 8rem;
  max-width: 760px;
}

/* Fulfillment toggle */
.fulfillment-toggle {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 2.5rem;
}

.fulfillment-toggle__btn {
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 150ms, color 150ms;
}

.fulfillment-toggle__btn.active {
  background: var(--near-black);
  color: var(--white);
}

/* Step indicator */
.order-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.order-step-tab {
  padding: 0.75rem 0;
  margin-right: 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: color 150ms;
  position: relative;
  bottom: -1px;
  letter-spacing: 0.03em;
}

.order-step-tab.active {
  color: var(--near-black);
  border-bottom-color: var(--gold);
}

/* Protein / add-on cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.product-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
  border-color: var(--warm-wood);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.product-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(201,168,122,0.15);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease-out);
}

.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__body {
  padding: 0.75rem;
}

.product-card__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 0.125rem;
}

.product-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

.product-card__price {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--near-black);
}

.product-card__check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
}

.product-card.selected .product-card__check { display: flex; }

.product-card__check svg { width: 12px; height: 12px; }

/* Add-on counter badge */
.product-card__qty {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.product-card.has-qty .product-card__qty { display: flex; }

.add-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.add-qty-controls button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--near-black);
  padding: 0;
  font-weight: 500;
  transition: border-color 150ms, background 150ms;
}

.add-qty-controls button:hover { border-color: var(--gold); background: rgba(184,147,46,0.08); }

.add-qty-controls .qty-num {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 1.25rem;
  text-align: center;
}

/* Step section header */
.order-section-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.25rem;
}

.order-section-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Upsell section divider */
.upsell-divider {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* Cart sidebar */
.order-cart {
  position: sticky;
  top: var(--nav-h);
  height: calc(100svh - var(--nav-h));
  overflow-y: auto;
  background: var(--white);
  border-left: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.cart__loyalty-banner {
  background: rgba(184,147,46,0.1);
  border: 1px solid rgba(184,147,46,0.25);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #6B5015;
  line-height: 1.5;
}

.cart__title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cart__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  gap: 0.75rem;
}

.cart__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cart__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.cart__item-name { color: var(--near-black); font-weight: 500; }
.cart__item-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.125rem; }
.cart__item-price { font-family: var(--font-sans); font-weight: 600; white-space: nowrap; }

.cart__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 1rem;
}

.cart__subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.cart__cta {
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms;
  min-height: 52px;
}

.cart__cta:hover { background: var(--gold-hover); }
.cart__cta:disabled { background: rgba(26,26,24,0.15); cursor: not-allowed; color: var(--text-muted); }

/* Mobile sticky bottom bar */
.mobile-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

.mobile-cart-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-cart-bar__summary {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
}

.mobile-cart-bar__summary strong {
  display: block;
  font-size: 1rem;
}

.mobile-cart-bar button {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
}

/* ─── Story page ─── */
.story-hero {
  position: relative;
  height: 60svh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.story-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.story-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 60%);
}

.story-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 3rem 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.story-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.story-hero__content p {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
}

.story-body {
  background: var(--cream);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
  border-bottom: 1px solid var(--border);
}

.story-block:last-child { border-bottom: none; }

.story-block--reverse { direction: rtl; }
.story-block--reverse > * { direction: ltr; }

.story-block__text .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.story-block__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.story-block__text p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.story-block__text p + p { margin-top: 1rem; }

.story-block__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.story-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-pillars {
  background: var(--near-black);
  color: var(--white);
  padding-block: 5rem;
}

.story-pillars h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.pillar {
  text-align: center;
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar__title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pillar__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── Find us page ─── */
.find-hero {
  background: var(--near-black);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.find-body {
  background: var(--cream);
  padding-block: 4rem;
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.find-map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(201,168,122,0.2);
}

.find-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.find-info__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.find-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.find-detail {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.find-detail:first-of-type { border-top: 1px solid var(--border); }

.find-detail__icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.find-detail__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.find-detail__value {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.find-detail__value a {
  color: var(--gold);
  text-decoration: none;
}

.find-detail__value a:hover { text-decoration: underline; }

.no-sign-callout {
  margin-top: 1.5rem;
  background: rgba(184,147,46,0.1);
  border: 1px solid rgba(184,147,46,0.3);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #5C440A;
  line-height: 1.6;
}

.no-sign-callout strong { color: #3D2D07; }

.qr-section {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.qr-section__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--near-black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.625rem;
  text-align: center;
  font-family: var(--font-sans);
  padding: 0.5rem;
}

.qr-section__text h3 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.qr-section__text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .order-page {
    grid-template-columns: 1fr;
  }
  .order-cart { display: none; }
  .mobile-cart-bar { display: block; }
  .order-main { padding-bottom: 6rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .brand-statement__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brand-statement__image {
    order: -1;
    aspect-ratio: 16/9;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-block--reverse { direction: ltr; }

  .find-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section { padding-block: 3rem; }
  .section--lg { padding-block: 4rem; }

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

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .brand-strip__inner {
    gap: 1rem;
  }

  .brand-strip__divider { display: none; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
