:root {
  --bg: #0c0806;
  --bg-2: #14100c;
  --ink: #f3ebe3;
  --muted: #b5a494;
  --ember: #c45c28;
  --ember-deep: #8b3a1a;
  --line: rgba(243, 235, 227, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(196, 92, 40, 0.2), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(139, 58, 26, 0.16), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

body.coming-soon-page {
  overflow: hidden;
}
body.coming-soon-page .site-nav,
body.coming-soon-page main,
body.coming-soon-page .site-foot,
body.coming-soon-page .cart-bar {
  display: none !important;
}
body:not(.coming-soon-page) .coming-soon {
  display: none !important;
}

.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  background: #0c0806;
  color: var(--ink);
}
.coming-soon-bg {
  position: absolute;
  inset: -24px;
  z-index: 0;
  pointer-events: none;
}
.coming-soon-bg picture,
.coming-soon-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px);
  transform: scale(1.08);
}
.coming-soon-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.28), rgba(12, 8, 6, 0.55)),
    rgba(12, 8, 6, 0.18);
  pointer-events: none;
}
.coming-soon-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100% - 2rem, 28rem);
  margin-top: 16vh;
}
.coming-soon-logo {
  display: block;
  width: min(72vw, 17.5rem);
  height: auto;
}
.coming-soon-kicker {
  margin: 1.6rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.15rem, 3.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f3ebe3;
  opacity: 0;
  animation: comingSoonIn 3.2s ease-out 1.2s forwards;
}
.coming-soon-lead,
.coming-soon-note {
  margin: 0.85rem 0 0;
  max-width: 26rem;
  line-height: 1.5;
  color: #e2c08d;
  opacity: 0;
  animation: comingSoonIn 2.8s ease-out 3.2s forwards;
}
.coming-soon-lead { font-size: 1.05rem; }
.coming-soon-note {
  font-size: 0.92rem;
  color: #b5a494;
  animation-delay: 5.2s;
}
.coming-soon-dev {
  margin-top: 1.35rem;
  opacity: 0;
  animation: comingSoonIn 2.6s ease-out 7.2s forwards;
}
.coming-soon-staff {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 3;
  color: rgba(243, 235, 227, 0.28);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.coming-soon-staff:hover { color: rgba(243, 235, 227, 0.55); }
@keyframes comingSoonIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

a { color: inherit; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 8, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-brand img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
}

.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

.nav-cart {
  color: var(--ink) !important;
  border: 1px solid var(--ember);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.hero, .menu, .story, .find, .events, .site-foot {
  width: min(1080px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--ember);
  margin: 0 0 0.85rem;
}

h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 700; }

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 auto 1rem;
  max-width: 16ch;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 26rem);
}

.menu-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.menu-cta [data-order-ways],
.menu-cta .order-ways {
  width: min(100%, 26rem);
}

.order-ways {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 26rem);
}

.order-ways-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  position: relative;
}

.order-ways-direct {
  margin-top: 0.15rem;
}

.order-ways-direct .btn-buy {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  padding: 0.7rem 0.85rem;
}

.order-ways .btn-ghost {
  width: auto;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  padding: 0.7rem 1.1rem;
}

.hero-actions > .btn-ghost {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  background: #fff;
}
.btn-icon:hover { transform: translateY(-1px); }
.order-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.pin-ico {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.direct-form {
  max-width: 36rem;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.direct-form label { display: grid; gap: 0.35rem; color: var(--muted); font-size: 0.92rem; }
.direct-form input,
.direct-form textarea {
  font: inherit;
  color: var(--ink);
  background: #14100c;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}
.direct-form textarea { min-height: 4.5rem; resize: vertical; }
.direct-form h3 {
  font-family: Fraunces, Georgia, serif;
  margin: 0.75rem 0 0;
}
.direct-form .hp { position: absolute; left: -9999px; }

.qty-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  flex-shrink: 0;
}
.dish.has-pic .qty-step,
.dish.has-pic .qty-step * {
  text-shadow: none;
}
.qty-step button {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #1a1410;
  color: var(--ink);
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.qty-step button.dish-combo-btn {
  width: auto;
  min-width: 0;
  padding: 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
.qty-step button:hover { border-color: var(--ember); }
.qty-step span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.cart-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1080px, calc(100% - 2rem));
  padding: 0.75rem 1rem;
  background: #1a1410;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}
.cart-bar .btn-buy { min-height: 2.4rem; }
body.has-cart-bar { padding-bottom: 4.5rem; }

.checkout-page h1 { max-width: 18ch; }
.checkout-page h2 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.75rem;
}
.checkout-lines { display: grid; gap: 0.5rem; }
.checkout-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.checkout-line small { display: block; color: var(--muted); font-weight: 400; }
.checkout-line .qty-step { margin-top: 0; }
.checkout-deal strong { color: #c6e6c2; }
.checkout-total { font-size: 1.15rem; }
.pay-methods {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.55rem;
}
.pay-methods legend { padding: 0 0.35rem; color: var(--muted); }
.pay-methods label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
}
.pay-hint { color: var(--muted); font-size: 0.88rem; margin: 0.25rem 0 0; }

.dish-video {
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 10px;
  max-height: 12rem;
}

.order-status { min-height: 1.2rem; }
.order-status.ok { color: #c6e6c2; }
.order-status.err { color: #f0b4a8; }

.btn-buy, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-buy {
  background: var(--ember);
  color: #fff8f2;
}

.btn-buy:hover { background: #d36a32; }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  white-space: nowrap;
}

.strip span { padding: 0 0.5rem; }

.menu { padding: 4rem 0 2rem; }

.section-head { max-width: 36rem; margin-bottom: 1.75rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.6rem; }
.section-head p:last-child { color: var(--muted); margin: 0; }

.menu-filters {
  margin: 0 0 1.6rem;
}
.menu-filters-label {
  margin: 0 0 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}
.menu-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0 0.85rem 0 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}
.menu-filter:hover { border-color: rgba(226, 192, 141, 0.45); }
.menu-filter.is-on {
  border-color: var(--ember);
  background: rgba(196, 92, 40, 0.22);
}
.menu-diet-note {
  margin: 0.7rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}
.menu-filter .ind {
  width: 1.35rem;
  height: 1.35rem;
  background: transparent;
  border: 0;
}
.menu-filter .ind-svg {
  width: 1rem;
  height: 1rem;
}
.menu-filter[data-diet=""] { padding-left: 0.9rem; }

.menu-board { display: grid; gap: 2.75rem; }
.menu-cat-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

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

.dish {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  min-height: 13.5rem;
  padding: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.2), rgba(12, 8, 6, 0.8)),
    radial-gradient(120% 80% at 0% 0%, rgba(196, 92, 40, 0.38), transparent 55%),
    var(--bg-2);
  display: flex;
  flex-direction: column;
}

.dish.has-pic {
  min-height: 22rem;
}

.dish-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem 0.85rem;
  min-height: 13.5rem;
}

.dish.has-pic .dish-body {
  min-height: 22rem;
}

.dish.has-pic .dish-body > * {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 6px 18px rgba(0, 0, 0, 0.55);
}

.dish h3 {
  margin: 0.35rem 0.5rem 0;
  font-size: 1.45rem;
  text-align: center;
  line-height: 1.15;
}
.dish-feeds {
  margin: 0.3rem 0.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2c08d;
}
.dish-desc {
  text-align: center;
  margin: 0.4rem 0.35rem 0;
}
.dish-choices {
  text-align: center;
  margin: 0.35rem 0.35rem 0;
  font-size: 0.88rem;
  color: #e2c08d;
}
.choice-picker {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.choice-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 6, 0.78);
}
.choice-picker-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: 90vh;
  overflow: auto;
  background: #14100c;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.15rem 1.1rem;
}
.choice-picker-panel h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
}
.choice-picker-group {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}
.choice-picker-group legend {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.choice-picker-cat {
  margin: 0.7rem 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2c08d;
}
.choice-picker-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0;
}
.choice-picker-err {
  color: #f0b4a8;
  margin: 0 0 0.75rem;
}
.choice-picker-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.choice-picker-actions .btn-ghost {
  background: transparent;
  border-color: rgba(243, 235, 227, 0.35);
}
.dish-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}
.dish-foot .ind-row {
  justify-content: flex-end;
}
.qty-step.dish-buy {
  width: 100%;
  flex-wrap: nowrap;
}
.dish-buy .dish-price {
  margin: 0 0 0 auto;
  font-weight: 600;
  white-space: nowrap;
}
.dish-buy .dish-combo-btn {
  margin-left: auto;
}
.dish-buy .dish-combo-btn + .dish-price {
  margin-left: 0;
}
.dish-combo-btn {
  flex: 0 0 auto;
  height: 2.1rem;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 999px;
  background: #e31b23;
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow: none;
  white-space: nowrap;
}
.dish-combo-btn:hover,
.dish-combo-btn:focus-visible {
  background: #c4141b;
  outline: none;
}
.dish-offers {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  padding-top: 0.65rem;
}
.dish-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.3rem 0.45rem;
  align-items: center;
}
.dish-offer-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.dish-offer-blurb {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.choice-picker-lead {
  margin: 0 0 0.9rem;
  color: var(--muted);
}
.choice-pick-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  margin: 0 0 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #1a1410;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.choice-pick-btn:hover,
.choice-pick-btn:focus-visible {
  border-color: var(--ember);
  outline: none;
}
.choice-pick-name { font-weight: 600; }
.choice-pick-meta {
  color: var(--muted);
  font-size: 0.88rem;
}
.combo-info-block {
  margin: 0 0 1rem;
}
.combo-info-block h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.combo-info-list {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.combo-info-add { margin-top: 0.75rem; }
.choice-picker-combo {
  margin: 0 0 0.85rem;
  color: #e2c08d;
}
.dish-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  min-width: 0;
}
.dish-price {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}
.ind-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  margin: 0;
}
.ind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
button.ind {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}
.ind-combo {
  color: #e2c08d;
  border-color: rgba(226, 192, 141, 0.55);
  background: rgba(226, 192, 141, 0.18);
}
.ind-svg {
  width: 1.2rem;
  height: 1.2rem;
}
.ind-svg path:not([fill="none"]) {
  fill: currentColor;
}
.ind-svg [stroke] {
  stroke: currentColor;
}
.ind-heat_mild { color: #62d46e; }
.ind-heat_medium { color: #f0b429; }
.ind-heat_hot { color: #ff6b4a; }
.ind-heat_fire { color: #ff3b30; }
.ind-beef { color: #e2c08d; }
.ind-pork { color: #f3a3b0; }
.ind-chicken { color: #f5d76e; }
.ind-lamb { color: #ddd0c0; }
.ind-fish { color: #7ec8e8; }
.ind-game { color: #c4a574; }
.ind-carnivore { color: #f0c8a0; }
.ind-vegetarian { color: #7be08a; }
.ind-vegan { color: #4fd36a; }
.ind-gluten_free { color: #e6c97a; }
.ind-dairy { color: #d9e4f2; }
.ind-nuts { color: #e39b4d; }
.dish p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.dish.has-pic p,
.dish.has-pic .dish-price {
  color: #f3ebe3;
}
.dish.has-pic .dish-combo-btn {
  color: #fff;
}
.dish-cat {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--ember);
  margin: 0 0 0.45rem;
}
.dish-price .was {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 0.4rem;
  font-weight: 500;
}
.dish-pic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}
.menu-empty { color: var(--muted); max-width: 36rem; }
.menu-page { padding-top: 2.5rem; }
.menu-page h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.6rem;
}

.dish-0 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 80% 20%, #8a3e1c, #1a100c 60%); }
.dish-1 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 20% 10%, #a34a22, #120c09 62%); }
.dish-2 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 70% 80%, #7a3016, #0c0806 58%); }
.dish-3 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 10% 90%, #5c2410, #14100c 60%); }
.dish-4 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 90% 40%, #9a4a12, #100c09 62%); }
.dish-5 { background-image: linear-gradient(180deg, transparent, rgba(12,8,6,.84)), radial-gradient(at 40% 0%, #6b2e16, #0c0806 60%); }

.menu-note { color: var(--muted); margin: 1.25rem 0; }
.menu-cta { margin-bottom: 1.5rem; }

.story, .find, .events { padding: 3rem 0; }

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

.story h2, .find h2, .events h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  max-width: 16ch;
}

.story p, .find p, .events p {
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.6;
}

.find { padding-bottom: 4rem; }

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

.story h2, .find h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  max-width: 16ch;
}

.story p, .find p {
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.6;
}

.find { padding-bottom: 4rem; }

.site-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-foot strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.staff-link {
  color: #4a3f38;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.staff-link:hover { color: #6d5e52; }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cart) { display: none; }
  .hero { padding-top: 3rem; }
  h1 { max-width: none; }
  .order-ways-direct .btn-buy {
    font-size: 0.86rem;
    padding: 0.65rem 0.5rem;
  }
}
