:root {
  --ink: #0b0b0b;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --paper: #f2efe8;
  --paper-2: #e7e1d7;
  --silver: #c6c3bc;
  --silver-bright: #ece9e2;
  --muted: #706d67;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(11, 11, 11, 0.16);
  --accent: #8f302d;
  --radius: 2px;
  --container: min(1240px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip-link {
  background: var(--paper);
  color: var(--ink);
  left: 12px;
  padding: 8px 14px;
  position: fixed;
  top: -80px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }

.topbar {
  background: #050505;
  border-bottom: 1px solid var(--line-dark);
  color: #aaa69f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar__inner { align-items: center; display: flex; height: 34px; justify-content: space-between; }
.topbar p { margin: 0; }
.topbar a { transition: color 180ms ease; }
.topbar a:hover { color: white; }

.site-header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--line-dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
}
.nav-shell { align-items: center; display: grid; grid-template-columns: auto 1fr auto; height: 88px; }
.brand { align-items: center; display: inline-flex; gap: 12px; min-width: max-content; }
.brand img { border-radius: 50%; height: 62px; object-fit: cover; width: 62px; }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand__wordmark strong { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0.15em; }
.brand__wordmark small { color: #9d9992; font-size: 9px; letter-spacing: 0.32em; margin-top: 8px; }
.nav { align-items: center; display: flex; gap: clamp(18px, 2.25vw, 38px); justify-content: center; }
.nav a { color: #cbc7c0; font-size: 12px; font-weight: 650; letter-spacing: 0.06em; position: relative; text-transform: uppercase; }
.nav a::after { background: #ddd9d1; bottom: -9px; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; width: 100%; }
.nav a:hover, .nav a:focus-visible { color: white; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.menu-button { background: none; border: 0; color: white; display: none; height: 44px; padding: 10px; width: 44px; }
.menu-button span:not(.sr-only) { background: currentColor; display: block; height: 1px; margin: 6px 0; transition: 180ms ease; width: 24px; }

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 50px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.button svg { height: 18px; transition: transform 180ms ease; width: 18px; }
.button:hover svg { transform: translateX(4px); }
.button:active { transform: translateY(1px); }
.button--silver { background: #cbc7c0; color: var(--ink); }
.button--silver:hover { background: white; }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: white; }
.button--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.42); color: white; }
.button--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: white; }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: #302f2e; }
.button--outline { background: transparent; border-color: var(--line-light); color: var(--ink); }
.button--outline:hover { border-color: var(--ink); }

.hero { background: #090909; color: white; height: min(760px, calc(100vh - 122px)); min-height: 620px; overflow: hidden; position: relative; }
.hero__media { background-image: url("assets/hero.webp"); background-position: center; background-size: cover; inset: 0; position: absolute; transform: scale(1.01); }
.hero__veil { background: linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.82) 31%, rgba(5,5,5,.34) 60%, rgba(5,5,5,.08) 100%), linear-gradient(0deg, rgba(4,4,4,.72), transparent 43%); inset: 0; position: absolute; }
.hero__content { display: flex; flex-direction: column; height: 100%; justify-content: center; padding-bottom: 28px; position: relative; z-index: 2; }
.eyebrow { align-items: center; color: #bdb9b1; display: flex; font-size: 10px; font-weight: 800; gap: 12px; letter-spacing: 0.2em; margin: 0 0 22px; text-transform: uppercase; }
.eyebrow::before { background: currentColor; content: ""; display: inline-block; height: 1px; width: 32px; }
.eyebrow--dark { color: #706d67; }
.hero h1, .section-heading h2, .specials h2, .story h2, .orders h2, .order-dialog h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
}
.hero h1 { font-size: clamp(60px, 7.2vw, 108px); max-width: 800px; }
.hero h1 em, .specials h2 em, .story h2 em { color: #aaa7a1; font-weight: 400; }
.hero__lede { color: #c4c0b9; font-size: 18px; margin: 28px 0 34px; max-width: 570px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { align-items: center; color: #aaa69f; display: flex; flex-wrap: wrap; font-size: 10px; font-weight: 750; gap: 18px; letter-spacing: 0.14em; margin-top: 45px; text-transform: uppercase; }
.hero__trust span { align-items: center; display: flex; gap: 9px; }
.hero__trust span::before { border: 1px solid #7d7a75; border-radius: 50%; content: ""; height: 5px; width: 5px; }
.hero__scroll { align-items: center; bottom: 30px; display: flex; flex-direction: column; gap: 10px; position: absolute; right: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2)); z-index: 2; }
.hero__scroll span { font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll i { background: rgba(255,255,255,.35); display: block; height: 64px; overflow: hidden; position: relative; width: 1px; }
.hero__scroll i::after { animation: scroll-line 2s infinite; background: white; content: ""; height: 22px; left: 0; position: absolute; top: -22px; width: 1px; }
@keyframes scroll-line { 50%,100% { transform: translateY(86px); } }

.section { padding: 120px 0; }
.section-heading--split { align-items: end; display: grid; gap: 80px; grid-template-columns: 1.1fr .9fr; margin-bottom: 58px; }
.section-heading h2, .story h2 { font-size: clamp(48px, 5vw, 78px); }
.section-heading > p { color: var(--muted); font-size: 17px; margin: 0 0 8px; max-width: 520px; }

.products { background: var(--paper); }
.filter-row { border-bottom: 1px solid var(--line-light); display: flex; gap: 6px; margin-bottom: 30px; overflow-x: auto; padding-bottom: 15px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter { background: transparent; border: 1px solid var(--line-light); border-radius: 999px; color: #65625c; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .1em; min-width: max-content; padding: 9px 16px; text-transform: uppercase; transition: 160ms ease; }
.filter:hover, .filter.is-active { background: var(--ink); border-color: var(--ink); color: white; }
.product-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); }
.product-card { background: #ded9cf; display: flex; flex-direction: column; min-height: 470px; overflow: hidden; transition: opacity 180ms ease, transform 180ms ease; }
.product-card.is-hidden { display: none; }
.product-card--feature { grid-column: span 2; }
.product-card__image { background-position: center; background-size: cover; min-height: 300px; position: relative; }
.product-card__image::after { background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 50%); content: ""; inset: 0; position: absolute; }
.product-card__image--beef { background-image: url("assets/beef.webp"); }
.product-card__badge { background: rgba(10,10,10,.86); color: white; font-size: 9px; font-weight: 800; left: 20px; letter-spacing: .15em; padding: 9px 12px; position: absolute; text-transform: uppercase; top: 20px; z-index: 1; }
.product-card__art { align-items: center; background: #1a1a19; color: #8f8c86; display: grid; min-height: 240px; overflow: hidden; place-items: center; position: relative; }
.product-card__art span { font-family: var(--serif); font-size: 13px; left: 20px; letter-spacing: .1em; position: absolute; top: 17px; }
.product-card__art svg { height: 140px; opacity: .9; stroke-width: 0.75; width: 140px; }
.product-card__art--chicken { background: #24231f; color: #c9bba4; }
.product-card__art--lamb { background: #1a1b1b; color: #a9acad; }
.product-card__art--pork { background: #2a2020; color: #c3a4a0; }
.product-card__art--wors { background: #171718; color: #aaa6a0; }
.product-card__body { display: flex; flex: 1; gap: 28px; justify-content: space-between; padding: 28px; }
.product-card__body h3 { font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.1; margin: 4px 0 12px; }
.product-card__body p { color: #64615c; font-size: 14px; margin: 0; max-width: 450px; }
.product-card__body .kicker { color: #7a7770; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.text-link { align-self: end; background: transparent; border: 0; border-bottom: 1px solid #77736c; color: var(--ink); cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .12em; min-width: max-content; padding: 0 0 5px; text-transform: uppercase; }
.text-link span { margin-left: 6px; }
.notice-strip { align-items: center; border: 1px solid var(--line-light); display: grid; gap: 18px; grid-template-columns: auto 1fr auto; margin-top: 30px; padding: 18px 20px; }
.notice-strip__icon { align-items: center; border: 1px solid #8a867e; border-radius: 50%; display: flex; font-family: var(--serif); height: 24px; justify-content: center; width: 24px; }
.notice-strip p { color: #625f59; font-size: 13px; margin: 0; }
.notice-strip p strong { color: var(--ink); }
.notice-strip button { background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .1em; padding: 0 0 4px; text-transform: uppercase; }

.specials { background: #0d0d0d; color: white; padding: 110px 0; }
.specials__grid { display: grid; gap: 1px; grid-template-columns: .86fr 1fr 1fr; }
.specials__intro { display: flex; flex-direction: column; justify-content: center; padding: 30px 55px 30px 0; }
.specials h2 { font-size: clamp(52px, 5.3vw, 82px); }
.specials__intro > p:not(.eyebrow) { color: #a8a49d; margin: 28px 0 34px; max-width: 330px; }
.specials__intro .button { align-self: start; }
.deal-card { min-height: 520px; overflow: hidden; padding: 34px; position: relative; }
.deal-card--photo { background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.04) 70%), url("assets/braai.webp") center/cover; }
.deal-card--silver { background: linear-gradient(145deg, #d9d6cf 0%, #8b8985 100%); color: #111; }
.deal-card__content { bottom: 34px; left: 34px; position: absolute; right: 34px; }
.deal-card__tag { font-size: 9px; font-weight: 800; letter-spacing: .18em; margin-bottom: 14px; text-transform: uppercase; }
.deal-card h3 { font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1.02; margin: 0; }
.deal-card__meta { color: inherit; font-size: 12px; margin: 18px 0 24px; opacity: .7; }
.deal-card__link { background: none; border: 0; border-bottom: 1px solid currentColor; color: inherit; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .12em; padding: 0 0 5px; text-transform: uppercase; }
.deal-card__link span { margin-left: 12px; }
.deal-card__monogram { font-family: var(--serif); font-size: 100px; letter-spacing: -.09em; opacity: .18; position: absolute; right: 20px; top: 15px; }

.story { background: var(--paper-2); }
.story__grid { align-items: center; display: grid; gap: clamp(60px, 8vw, 120px); grid-template-columns: 1fr .9fr; }
.story__image { position: relative; }
.story__image::before { border: 1px solid rgba(255,255,255,.4); content: ""; inset: 18px; pointer-events: none; position: absolute; z-index: 1; }
.story__image img { aspect-ratio: .86; height: 720px; object-fit: cover; object-position: 45% center; width: 100%; }
.story__stamp { align-items: center; background: var(--ink); bottom: -28px; color: white; display: flex; flex-direction: column; height: 120px; justify-content: center; position: absolute; right: -28px; transform: rotate(-2deg); width: 120px; }
.story__stamp span { font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.story__stamp strong { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.story h2 { max-width: 610px; }
.story__lead { color: #33312e; font-family: var(--serif); font-size: 23px; line-height: 1.45; margin: 34px 0 20px; }
.story__copy > p:not(.eyebrow):not(.story__lead) { color: #65615a; }
.values { border-top: 1px solid var(--line-light); margin: 42px 0 0; }
.values div { align-items: center; border-bottom: 1px solid var(--line-light); display: grid; grid-template-columns: 52px 1fr; padding: 14px 0; }
.values dt { color: #8b877f; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.values dd { font-family: var(--serif); font-size: 19px; margin: 0; }

.orders { background: #111; color: white; padding: 110px 0; }
.orders__grid { display: grid; gap: 70px; grid-template-columns: .9fr 1.1fr; }
.orders h2 { font-size: clamp(50px, 5vw, 76px); }
.order-steps { list-style: none; margin: 0; padding: 0; }
.order-steps li { align-items: start; border-top: 1px solid var(--line-dark); display: grid; gap: 24px; grid-template-columns: 48px 1fr; padding: 24px 0; }
.order-steps li:last-child { border-bottom: 1px solid var(--line-dark); }
.order-steps > li > span { color: #77736d; font-family: var(--serif); font-size: 17px; }
.order-steps h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.2; margin: 0 0 7px; }
.order-steps p { color: #9f9b94; font-size: 14px; margin: 0; max-width: 520px; }
.orders__button { align-self: end; grid-column: 2; justify-self: start; }

.visit { background: var(--paper); }
.visit__grid { display: grid; gap: 1px; grid-template-columns: 1.3fr .7fr; }
.map-card { background: #ccc7bd; min-height: 560px; overflow: hidden; position: relative; }
.map-card iframe { border: 0; filter: grayscale(1) contrast(.95); height: 100%; inset: 0; position: absolute; width: 100%; }
.map-card__directions { background: var(--ink); bottom: 22px; color: white; font-size: 10px; font-weight: 800; left: 22px; letter-spacing: .12em; padding: 15px 18px; position: absolute; text-transform: uppercase; z-index: 2; }
.map-card__directions span { margin-left: 18px; }
.map-card__note { background: rgba(242,239,232,.92); color: #4d4a45; font-size: 9px; font-weight: 750; letter-spacing: .08em; margin: 0; padding: 8px 10px; position: absolute; right: 12px; text-transform: uppercase; top: 12px; z-index: 2; }
.contact-panel { background: #dcd7cd; padding: 42px; }
.contact-panel address { font-style: normal; }
.contact-panel__item { border-bottom: 1px solid var(--line-light); padding: 0 0 24px; margin-bottom: 24px; }
.contact-panel__item span { color: #7a766f; display: block; font-size: 9px; font-weight: 800; letter-spacing: .16em; margin-bottom: 9px; text-transform: uppercase; }
.contact-panel__item strong { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.4; }
.pending-detail { color: #65615b; }
.contact-panel__actions { display: grid; gap: 9px; margin-top: 36px; }

.footer { background: #080808; color: white; padding: 80px 0 22px; }
.footer__top { align-items: center; border-bottom: 1px solid var(--line-dark); display: grid; gap: 40px; grid-template-columns: auto 1fr auto; padding-bottom: 60px; }
.footer__brand { align-items: center; display: flex; gap: 16px; }
.footer__brand img { border-radius: 50%; height: 84px; object-fit: cover; width: 84px; }
.footer__brand span { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.footer__brand strong { font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: .15em; }
.footer__brand small { color: #8f8b85; font-size: 9px; letter-spacing: .28em; margin-top: 8px; }
.footer__top > p { color: #aaa69f; font-family: var(--serif); font-size: 22px; justify-self: center; }
.footer__top nav { display: grid; gap: 7px; }
.footer__top nav a { color: #aaa69f; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer__top nav a:hover { color: white; }
.footer__bottom { align-items: center; color: #6f6c67; display: flex; font-size: 9px; font-weight: 700; justify-content: space-between; letter-spacing: .1em; padding-top: 22px; text-transform: uppercase; }
.footer__bottom div { display: flex; gap: 18px; }

.mobile-order-bar { display: none; }

.order-dialog { background: transparent; border: 0; color: var(--ink); height: 100dvh; margin: 0 0 0 auto; max-height: none; max-width: 620px; padding: 0; width: min(620px, 100%); }
.order-dialog::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
.order-dialog[open] { animation: dialog-in 240ms ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateX(40px); } }
.order-dialog__panel { background: var(--paper); min-height: 100%; overflow-y: auto; padding: clamp(34px, 7vw, 72px); position: relative; }
.order-dialog__close { align-items: center; background: none; border: 1px solid var(--line-light); border-radius: 50%; color: var(--ink); cursor: pointer; display: flex; font-size: 28px; height: 42px; justify-content: center; position: absolute; right: 24px; top: 24px; width: 42px; }
.order-dialog h2 { font-size: clamp(42px, 5vw, 62px); }
.order-dialog__heading > p:not(.eyebrow) { color: var(--muted); margin: 22px 0 34px; }
.order-dialog form { display: grid; gap: 18px; }
.order-dialog label { color: #4e4b46; display: grid; font-size: 10px; font-weight: 800; gap: 7px; letter-spacing: .1em; text-transform: uppercase; }
.order-dialog label span { color: #8a867f; font-weight: 600; }
.order-dialog input, .order-dialog textarea { background: rgba(255,255,255,.45); border: 1px solid var(--line-light); border-radius: 0; color: var(--ink); outline: none; padding: 14px 15px; text-transform: none; width: 100%; }
.order-dialog input:focus, .order-dialog textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.order-dialog textarea { resize: vertical; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.form-submit { margin-top: 4px; }
.form-status { color: #57544e; font-size: 12px; margin: 0; min-height: 22px; }

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: auto auto 1fr; }
  .menu-button { display: block; grid-column: 3; justify-self: end; }
  .header-order { display: none; }
  .nav {
    align-items: stretch;
    background: #0b0b0b;
    border-top: 1px solid var(--line-dark);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 24px 25px;
    position: absolute;
    right: 0;
    top: 88px;
  }
  .nav.is-open { display: flex; }
  .nav a { border-bottom: 1px solid var(--line-dark); padding: 16px 0; }
  .nav a::after { display: none; }
  .specials__grid { grid-template-columns: 1fr 1fr; }
  .specials__intro { grid-column: 1 / -1; padding: 0 0 50px; }
  .specials__intro > p:not(.eyebrow) { max-width: 520px; }
  .story__grid { gap: 70px; }
  .story__image img { height: 620px; }
  .visit__grid { grid-template-columns: 1.1fr .9fr; }
  .footer__top { grid-template-columns: auto 1fr; }
  .footer__top > p { display: none; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 34px, 680px); }
  .topbar__inner { height: 30px; }
  .topbar a { display: none; }
  .nav-shell { height: 72px; }
  .brand img { height: 50px; width: 50px; }
  .brand__wordmark strong { font-size: 15px; }
  .brand__wordmark small { font-size: 8px; margin-top: 6px; }
  .nav { top: 72px; }
  .hero { height: calc(100svh - 102px); min-height: 610px; }
  .hero__media { background-position: 62% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(5,5,5,.91), rgba(5,5,5,.53)), linear-gradient(0deg, rgba(4,4,4,.85), rgba(4,4,4,.05) 65%); }
  .hero h1 { font-size: clamp(53px, 16vw, 78px); }
  .hero__lede { font-size: 16px; max-width: 490px; }
  .hero__actions { align-items: stretch; flex-direction: column; width: min(100%, 390px); }
  .hero__trust { gap: 10px 16px; margin-top: 30px; }
  .hero__scroll { display: none; }
  .section { padding: 82px 0; }
  .section-heading--split { align-items: start; gap: 24px; grid-template-columns: 1fr; margin-bottom: 38px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card--feature { grid-column: 1 / -1; }
  .product-card { min-height: 430px; }
  .specials { padding: 82px 0; }
  .deal-card { min-height: 440px; }
  .story__grid { grid-template-columns: 1fr; }
  .story__image { order: 2; }
  .story__image img { aspect-ratio: 1 / 1.12; height: auto; }
  .story__stamp { bottom: -20px; right: -10px; }
  .orders { padding: 82px 0; }
  .orders__grid { gap: 50px; grid-template-columns: 1fr; }
  .orders__button { grid-column: 1; }
  .visit__grid { grid-template-columns: 1fr; }
  .map-card { min-height: 460px; }
  .footer { padding-bottom: 86px; }
  .footer__top { align-items: start; grid-template-columns: 1fr; }
  .footer__top nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-order-bar { background: rgba(9,9,9,.97); border-top: 1px solid var(--line-dark); bottom: 0; color: white; display: grid; grid-template-columns: .8fr 1.2fr; left: 0; padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)); position: fixed; right: 0; z-index: 45; }
  .mobile-order-bar a, .mobile-order-bar button { align-items: center; border: 0; display: flex; font-size: 10px; font-weight: 800; justify-content: center; letter-spacing: .12em; min-height: 48px; text-transform: uppercase; }
  .mobile-order-bar a { background: #242424; }
  .mobile-order-bar button { background: var(--silver-bright); color: var(--ink); }
}

@media (max-width: 540px) {
  .hero__content { justify-content: flex-end; padding-bottom: 48px; }
  .hero__lede { margin: 22px 0 26px; }
  .hero__trust { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .product-card--feature { grid-column: auto; }
  .product-card__image { min-height: 250px; }
  .product-card__art { min-height: 200px; }
  .product-card__body { min-height: 220px; }
  .notice-strip { align-items: start; grid-template-columns: auto 1fr; }
  .notice-strip button { grid-column: 2; justify-self: start; }
  .specials__grid { grid-template-columns: 1fr; }
  .deal-card { min-height: 470px; }
  .story__lead { font-size: 21px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 30px 24px; }
  .order-dialog__panel { padding: 74px 24px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .topbar, .mobile-order-bar, .hero__scroll, .button, .filter-row { display: none !important; }
  .hero { height: auto; min-height: 500px; }
}

.not-found {
  align-items: center;
  background: radial-gradient(circle at 50% 30%, #272727, #090909 62%);
  color: white;
  display: flex;
  min-height: 100vh;
  text-align: center;
}
.not-found main { margin: auto; padding: 50px 24px; }
.not-found img { border-radius: 50%; margin: 0 auto 28px; }
.not-found .eyebrow { justify-content: center; }
.not-found .eyebrow::after { background: currentColor; content: ""; height: 1px; width: 32px; }
.not-found h1 { font-family: var(--serif); font-size: clamp(100px, 20vw, 220px); font-weight: 400; letter-spacing: -.07em; line-height: .8; margin: 20px 0; }
.not-found main > p:not(.eyebrow) { color: #aaa69f; margin: 28px 0; }
