/* =========================================================
   0. RESET & BRAND TOKENS
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { padding: 0; list-style: none; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }

:root {
  /* EDIT: brand colours — only these two, on purpose */
  --cream: #e8e1d6;
  --charcoal: #1f1f1f;
  --cream-rgb: 232, 225, 214;
  --charcoal-rgb: 31, 31, 31;

  --line-on-cream: rgba(var(--charcoal-rgb), 0.16);
  --line-on-cream-soft: rgba(var(--charcoal-rgb), 0.09);
  --line-on-charcoal: rgba(var(--cream-rgb), 0.22);
  --line-on-charcoal-soft: rgba(var(--cream-rgb), 0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;

  --header-h: 68px;
}

html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background-color: var(--cream);
  /* subtle paper-grain texture, purely CSS — no extra image request */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

a { color: inherit; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* Focus states — visible everywhere, colour follows current text colour */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--charcoal); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: 2px; z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

section[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.4rem; border-radius: var(--radius);
  border: 2px solid currentColor; background: transparent; color: inherit;
  text-decoration: none; cursor: pointer; min-height: 48px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-solid-charcoal { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-solid-charcoal:hover { background: #3a3a3a; border-color: #3a3a3a; }

.btn-solid-cream { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.btn-solid-cream:hover { background: #fff; border-color: #fff; }

.btn-outline-charcoal { color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-charcoal:hover { background: var(--charcoal); color: var(--cream); }

.btn-outline-cream { color: var(--cream); border-color: var(--cream); }
.btn-outline-cream:hover { background: var(--cream); color: var(--charcoal); }

.btn-block { width: 100%; }

/* =========================================================
   1. HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(var(--cream-rgb), 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line-on-cream);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  text-decoration: none; color: var(--charcoal); white-space: nowrap;
  letter-spacing: -0.01em;
}
.logo em { font-style: italic; font-weight: 500; opacity: 0.75; padding-inline: 0.15em; }

/* Header-only lockup: mini icon + two-line stacked name (drawer logo is untouched) */
.header-inner .logo { display: flex; align-items: center; gap: 0.55rem; }
.logo-icon { width: 32px; height: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-line-1, .logo-line-2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.logo-line-1 { font-size: 0.88rem; }
.logo-line-2 { font-size: 0.74rem; font-weight: 600; opacity: 0.82; }

.primary-nav { display: none; }
.primary-nav ul {
  display: flex; align-items: center; gap: 0.45rem;
  margin: 0; padding: 0; list-style: none;
}
.primary-nav a {
  display: inline-flex; align-items: center;
  text-decoration: none; font-weight: 600; font-size: 0.96rem;
  padding: 0.55rem 0.85rem; border-radius: 4px;
  color: var(--charcoal);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible {
  background: var(--charcoal); color: var(--cream); transform: translateY(-1px);
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.call-btn-label { display: none; }
.header-call {
  padding: 0.65rem 0.9rem; min-height: 44px; min-width: 44px;
}

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; border-radius: var(--radius);
  background: transparent; border: 2px solid var(--charcoal); cursor: pointer;
}
.menu-toggle-bar {
  display: block; width: 20px; height: 2px; background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile / tablet drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(var(--charcoal-rgb), 0.55);
  z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--charcoal); color: var(--cream); z-index: 950;
  transform: translateX(100%); transition: transform 0.3s ease;
  padding: 2rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 2rem;
  box-shadow: -18px 0 36px rgba(0,0,0,0.18);
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer.is-open { transform: translateX(0); }

.drawer-top { display: block; }
.drawer-title {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7;
}
.drawer-title::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.55;
}
.drawer-nav ul {
  display: flex; flex-direction: column; gap: 0.35rem;
  margin: 0; padding: 0; list-style: none;
}
.drawer-nav li { margin: 0; }
.drawer-nav a {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--cream); font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 0.75rem 0.8rem; border: 1px solid transparent; border-radius: 6px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}
.drawer-nav a::after {
  content: "↗"; font-family: var(--font-body); font-size: 1rem; opacity: 0.45;
  transform: translateX(-4px); transition: opacity 0.2s ease, transform 0.2s ease;
}
.drawer-nav a:hover, .drawer-nav a:focus-visible, .drawer-nav a:active {
  background: rgba(var(--cream-rgb), 0.08); border-color: rgba(var(--cream-rgb), 0.18);
  transform: translateX(4px); padding-left: 1rem;
}
.drawer-nav a:hover::after, .drawer-nav a:focus-visible::after, .drawer-nav a:active::after {
  opacity: 0.9; transform: translateX(0);
}
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 0.9rem; }
.drawer-foot .btn { width: 100%; }
.drawer-note { font-size: 0.85rem; opacity: 0.75; }

/* =========================================================
   2. HERO
   ========================================================= */
.hero {
  /* Fill the opening screen exactly (viewport height minus the sticky
     header, which already occupies space above it) so the split section
     underneath stays fully off-screen until the user scrolls. */
  min-height: 100vh;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2.5rem, 7vw, 5rem) clamp(2.5rem, 6vw, 4rem);
}
.hero-eyebrow-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
  padding: 0.4rem 0.75rem; border: 1px solid var(--line-on-cream);
  border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-eyebrow-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--charcoal); flex-shrink: 0; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.5rem; }

/* Brand hero: logo front and center on black */
.hero--brand {
  position: relative; overflow: hidden; background: var(--charcoal); color: var(--cream);
}
.hero--brand::before, .hero--brand::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0.18; filter: grayscale(12%) brightness(0.72);
}
.hero--brand::before {
  background-image: url("../images/fresh_meat_banner.jpg");
  clip-path: polygon(0 0, 62% 0, 42% 100%, 0 100%);
}
.hero--brand::after {
  background-image: url("../images/grill_steak_banner.jpg");
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 42% 100%);
}
.hero--brand .container { position: relative; z-index: 1; }
.hero-center { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Emblem: logo with three brand claims arranged around it, not stacked */
.hero-emblem {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "c1 c2" "lg lg" "c3 c3";
  align-items: center; justify-items: center;
  gap: 0.5rem 0.85rem; width: 100%; max-width: 720px;
  margin-inline: auto; margin-bottom: 1.75rem;
}

.hero-logo-wrap { grid-area: lg; margin: 0.35rem 0; }
.hero-logo {
  display: block; width: clamp(320px, 72vw, 520px); height: auto; margin-inline: auto;
  animation: heroLogoIn 0.8s cubic-bezier(.2,.8,.2,1) both;
}

.hero-claim {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  line-height: 1.02; letter-spacing: 0.01em; color: var(--cream);
  font-size: clamp(0.82rem, 3.2vw, 1.2rem);
  width: 16ch; min-height: 2.25em;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.05em;
}
.hero-claim > span { display: block; white-space: nowrap; }
.hero-claim--1 { grid-area: c1; text-align: right; transform: rotate(-2.5deg); justify-self: end; }
.hero-claim--2 { grid-area: c2; text-align: left; transform: rotate(2.5deg); justify-self: start; }
.hero-claim--3 {
  grid-area: c3; text-align: center; margin-top: 0.55rem;
  width: min(100%, 56ch); min-height: 3.2em;
  padding: 0.6rem 1.5rem;
  font-size: clamp(0.95rem, 2.7vw, 1.35rem);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-claim-3-text { white-space: nowrap; }
.hero-claim--3 .rule { height: 2px; width: clamp(28px, 8vw, 60px); background: var(--cream); opacity: 0.55; flex-shrink: 0; }
.hero-eyebrow-note--dark .dot { background: var(--cream); }

@keyframes heroLogoIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

@media (min-width: 900px) {
  .hero-emblem {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "c1 lg c2" "c3 c3 c3";
    max-width: 1020px; gap: 1rem 2rem;
  }
  .hero-claim { font-size: clamp(0.82rem, 1.65vw, 1.15rem); width: 16ch; }
  .hero-claim--3 { margin-top: 1.25rem; }
  .hero-logo { width: clamp(420px, 33vw, 620px); }
}

/* =========================================================
   3. SPLIT FEATURE (Meat / Grill)
   ========================================================= */
.split { padding-block: clamp(1.75rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem); }
.split-intro { text-align: center; max-width: 46ch; margin: 0 auto clamp(1.25rem, 4vw, 2rem); padding-inline: var(--pad); }
.split-intro h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.5rem; }
.split-intro p { color: rgba(var(--charcoal-rgb), 0.75); }

.split-inner {
  display: flex; flex-direction: column; gap: 3px;
  border-radius: var(--radius); overflow: hidden;
}

.split-panel {
  position: relative; overflow: hidden; min-height: 200px;
  display: block; isolation: isolate; cursor: pointer;
}
.split-panel--meat { background: var(--cream); color: var(--charcoal); }
.split-panel--grill { background: var(--charcoal); color: var(--cream); }

.split-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.split-overlay { position: absolute; inset: 0; z-index: 1; }
.split-panel--meat .split-overlay { background: linear-gradient(120deg, rgba(var(--cream-rgb),0.55) 0%, rgba(var(--cream-rgb),0.93) 65%); }
.split-panel--grill .split-overlay { background: linear-gradient(120deg, rgba(var(--charcoal-rgb),0.4) 0%, rgba(var(--charcoal-rgb),0.9) 65%); }

.split-expand-btn {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2;
  background: transparent; border: 0; padding: 0; margin: 0; cursor: pointer;
}

.split-content {
  position: relative; z-index: 3; pointer-events: none;
  padding: 1.75rem 1.5rem; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.split-panel--meat .split-content { justify-content: flex-start; align-items: flex-start; text-align: left; }
.split-panel--grill .split-content { justify-content: flex-end; align-items: flex-end; text-align: right; }
.split-label-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.split-title { font-size: clamp(1.6rem, 4vw, 2.1rem); }
.split-cue { opacity: 0.7; }
.split-desc { max-width: 34ch; font-size: 0.98rem; }

.split-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s ease; margin-top: 0.25rem; }
.split-more-inner { overflow: hidden; }
.split-more-inner-pad { padding-top: 0.85rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.split-expanded-copy { max-width: 40ch; font-size: 1rem; }
.split-cta { pointer-events: auto; }

.split-panel.is-expanded .split-more { grid-template-rows: 1fr; }

@media (hover: hover) and (pointer: fine) {
  .split-panel:hover .split-more { grid-template-rows: 1fr; }
}

/* Mobile: stacked panels with a thin diagonal transition. */
.split-panel--meat { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 0 100%); }
.split-panel--grill { clip-path: polygon(0 18px, 100% 0, 100% 100%, 0 100%); margin-top: -12px; }

@media (max-width: 699px) {
  .hero-claim { font-size: clamp(0.78rem, 3.6vw, 1.02rem); width: 15.5ch; min-height: 2.3em; }
  .hero-claim--3 { width: min(100%, 48ch); min-height: 3.2em; padding-inline: 0.9rem; }
  .hero-claim-3-text { white-space: normal; }
  .hero-claim--3 .rule { width: clamp(18px, 10vw, 34px); }
  /*.meat-card-body { padding: 0.9rem; gap: 0.65rem; }
  .meat-card-body p { display: none; }
  .meat-card-body .btn { min-height: 44px; font-size: 0.82rem; padding-inline: 0.65rem; }*/
}

@media (max-width: 699px) {
  .split-panel { min-height: 185px; }
  .split-more { display: none; }
  .split-content { padding: 1.35rem 1.25rem; }
}

@media (min-width: 700px) {
  .split-inner { flex-direction: row; height: clamp(420px, 46vw, 520px); gap: 0; }
  .split-panel { min-height: 0; min-width: 0; flex: 1 1 0%; }

  .split-panel--meat {
    clip-path: polygon(0% 0%, 78% 0%, 22% 100%, 0% 100%);
    transition: clip-path 0.55s cubic-bezier(.4,0,.2,1);
  }
  .split-panel--grill {
    clip-path: polygon(78% 0%, 100% 0%, 100% 100%, 22% 100%);
    transition: clip-path 0.55s cubic-bezier(.4,0,.2,1);
  }

  .split-panel--meat.is-expanded { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .split-panel--grill.is-collapsed { clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%); }
  .split-panel--grill.is-expanded { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .split-panel--meat.is-collapsed { clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); }

  .split-content { padding: 2.5rem; }
  .split-panel--grill .split-content { align-items: flex-end; text-align: right; }
  .split-panel--grill .split-label-row { flex-direction: row-reverse; }

  @media (hover: hover) and (pointer: fine) {
    .split-panel--meat:hover { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    .split-inner:has(.split-panel--meat:hover) .split-panel--grill {
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }
    .split-panel--grill:hover { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
    .split-inner:has(.split-panel--grill:hover) .split-panel--meat {
      clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
  }
}

/* =========================================================
   4. MEAT SECTION
   ========================================================= */
.meat-section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; color: rgba(var(--charcoal-rgb), 0.78); max-width: 54ch; }
.card-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 699px) {
  .meat-card-body {
    padding: 0.95rem;
    gap: 0.7rem;
    min-width: 0;
  }

  .meat-card-body h3 {
    font-size: 1.05rem;
  }

  .meat-card-body p {
    display: none;
  }

  .meat-card-body .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 0.35rem;
    font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    min-height: 42px;
    height: auto;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.15;
    text-align: center;
  }
}
@media (min-width: 700px) {
  /* Desktop: 4 cards = 2x2, 6 cards = 3x2, 8 cards = 4x2. */
  .card-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.75rem;
    justify-content: center;
  }
  .card-grid > .meat-card { grid-column: span 6; }
  .card-grid:has(> .meat-card:nth-child(5)) > .meat-card { grid-column: span 4; }
  .card-grid:has(> .meat-card:nth-child(7)) > .meat-card { grid-column: span 3; }
}

.meat-card {
  border: 1.5px solid var(--charcoal); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; background: var(--cream);
}
.meat-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%); }
.meat-card-media img { width: 100%; height: 100%; object-fit: cover; }
.meat-card-media.tone-cool img { filter: grayscale(35%) saturate(85%) brightness(0.95) hue-rotate(-6deg); }
.meat-card-media.tone-warm img { filter: saturate(1.05) brightness(0.98); }

.meat-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; min-height: 0; }
.meat-card-body h3 { font-size: 1.3rem; }
.meat-card-body p { color: rgba(var(--charcoal-rgb), 0.8); font-size: 0.98rem; flex-grow: 1; }
.meat-card-body .btn {
  position: relative; align-self: flex-start; margin-top: 0.25rem;
  border-width: 1.5px; border-radius: 999px;
  padding-right: 2.35rem; font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, padding-right 0.2s ease;
}
/*.meat-card-body .btn::after {
  content: "→"; position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  font-size: 1rem; opacity: 0.65; transition: transform 0.2s ease, opacity 0.2s ease;
}*/
.meat-card-body .btn:hover, .meat-card-body .btn:focus-visible {
  transform: translateY(-2px); padding-right: 2.65rem;
  background: var(--charcoal); color: var(--cream);
}
.meat-card-body .btn:hover::after, .meat-card-body .btn:focus-visible::after {
  opacity: 1; transform: translate(3px, -50%);
}
.meat-card-body { min-height: 142px; }
.meat-card-body .btn { align-self: stretch; width: 100%; margin-top: auto; white-space: nowrap; text-align: center; }
/* quick fix to prevent overflowing text for "ask about availability" */
@media (max-width: 699px) {
  .meat-card-body .btn {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    line-height: 1.15;
  }
}
.availability-note {
  margin-top: clamp(1.5rem, 4vw, 2.25rem); font-size: 0.95rem;
  color: rgba(var(--charcoal-rgb), 0.7); border-top: 1px solid var(--line-on-cream);
  padding-top: 1.25rem;
}

/* =========================================================
   5. GRILL SECTION
   ========================================================= */
.grill-section { background: var(--charcoal); color: var(--cream); padding-block: clamp(3rem, 7vw, 5.5rem); }
.grill-section .section-head p { color: rgba(var(--cream-rgb), 0.78); }
.grill-note-inline {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600;
  font-size: 0.95rem; color: var(--cream); margin-top: 0.75rem;
}
.grill-note-inline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cream); }

.menu-feature-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
.menu-feature-stack { display: grid; gap: 1.5rem; min-width: 0; }
.menu-feature-card { min-width: 0; }
@media (min-width: 700px) {
  .menu-feature-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
  .menu-feature-card--signature { grid-column: 1; height: 100%; display: flex; flex-direction: column; }
  .menu-feature-stack { grid-column: 2; grid-template-rows: repeat(2, minmax(0, 1fr)); min-height: 100%; }
  .menu-feature-stack .menu-feature-card { display: flex; flex-direction: column; min-height: 0; }
  .menu-feature-card--signature .menu-feature-body,
  .menu-feature-stack .menu-feature-body { flex: 1 1 auto; min-height: 0; }
}

.menu-feature-card {
  border: 1.5px solid var(--line-on-charcoal); border-radius: var(--radius);
  overflow: hidden; background: rgba(var(--cream-rgb), 0.03);
}
.menu-feature-media { aspect-ratio: 16/9; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
.menu-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-feature-body { padding: 1.4rem; }
.menu-feature-body h3 { font-size: 1.25rem; margin-bottom: 0.9rem; font-family: var(--font-display); }

.menu-item-list { display: flex; flex-direction: column; gap: 0.85rem; }
.menu-item-row { display: flex; justify-content: space-between; gap: 1rem; }
.menu-item-name-wrap { display: flex; flex-direction: column; }
.menu-item-name { font-weight: 600; font-size: 1rem; }
.menu-item-desc { font-size: 0.88rem; color: rgba(var(--cream-rgb), 0.68); margin-top: 0.15rem; }
.menu-item-price { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

.menu-group-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
@media (min-width: 700px) {
  .menu-group-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .menu-group-grid > .menu-group:first-child { grid-column: 1 / -1; }
}
.menu-group {
  border: 1.5px solid var(--line-on-charcoal); border-radius: var(--radius); padding: 1.4rem;
}
.menu-group h3 { font-size: 1.15rem; margin-bottom: 1rem; font-family: var(--font-display); }
.menu-group .menu-item-list { gap: 0.7rem; }
.menu-group .menu-item-row { border-bottom: 1px solid var(--line-on-charcoal-soft); padding-bottom: 0.6rem; }
.menu-group .menu-item-row:last-child { border-bottom: none; padding-bottom: 0; }

.grill-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }

/* =========================================================
   6. ABOUT + TRUST
   ========================================================= */
.about-section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.about-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.about-copy h2 { font-size: clamp(1.9rem, 4.5vw, 2.5rem); margin-bottom: 1rem; }
.about-copy p { font-size: 1.05rem; color: rgba(var(--charcoal-rgb), 0.82); max-width: 56ch; }
.about-copy p + p { margin-top: 1rem; }

.trust-points { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .trust-points { grid-template-columns: 1fr; } }
.trust-point { border-top: 2px solid var(--charcoal); padding-top: 0.9rem; }
.trust-point h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.35rem; }
.trust-point p { font-size: 0.92rem; color: rgba(var(--charcoal-rgb), 0.72); }

/* =========================================================
   7. VISIT US
   ========================================================= */
.visit-section { padding-block: clamp(3rem, 7vw, 5.5rem); border-top: 1px solid var(--line-on-cream); }
.visit-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .visit-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; } }

.visit-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.75rem; }
.visit-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.visit-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--charcoal); display: flex; align-items: center; justify-content: center;
}
.visit-item h3 { font-size: 0.85rem; text-transform: none; font-weight: 700; margin-bottom: 0.2rem; letter-spacing: 0.01em; }
.visit-item p { color: rgba(var(--charcoal-rgb), 0.85); }
.visit-item a { text-decoration: underline; text-underline-offset: 3px; }
.hours-table { display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem; font-size: 0.95rem; }
.hours-table dt { color: rgba(var(--charcoal-rgb), 0.6); }
.hours-table dd { font-weight: 600; }
.visit-hours-item { align-items: stretch; }
.visit-hours-wrap { flex: 1 1 auto; min-width: 0; }
.visit-hours-columns { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 1.5rem; align-items: center; }
.visit-hours-group h3 { font-size: 0.82rem; margin-bottom: 0.55rem; }
.visit-hours-divider { width: 1px; align-self: stretch; background: var(--line-on-cream); min-height: 74px; }
@media (max-width: 560px) {
  .visit-hours-columns { grid-template-columns: 1fr; gap: 1rem; }
  .visit-hours-divider { width: 100%; height: 1px; min-height: 0; }
}

.visit-map-figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; border: 1.5px solid var(--charcoal);
  background: var(--charcoal); color: var(--cream);
  width: 100%; padding: 0;
}
.visit-map-figure iframe { display: block; width: 100%; height: 100%; border: 0; }
.visit-map-figure p { max-width: 26ch; font-family: var(--font-display); font-size: 1.15rem; }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--charcoal);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
}

/* =========================================================
   8. FOOTER
   ========================================================= */
.site-footer { background: var(--charcoal); color: var(--cream); padding-block: 3rem 2rem; }

.scroll-top {
  display: none;
  position: fixed; right: 1rem; bottom: 1rem; z-index: 800;
  width: 50px; height: 50px; border-radius: 10px;
  border: 2.5px solid var(--charcoal); background: var(--cream); color: var(--charcoal);
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 8px 20px rgba(var(--charcoal-rgb), 0.22);
  opacity: 0.48; transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.scroll-top svg { transition: transform 0.2s ease; }
.scroll-top:hover svg, .scroll-top:focus-visible svg { transform: translateY(-2px); }
.scroll-top:hover, .scroll-top:focus-visible, .scroll-top:active { opacity: 1; }
.scroll-top:active { transform: translateY(1px); }
.scroll-top.is-visible { display: inline-flex; }
.footer-top { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 700px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; text-decoration: none; color: var(--cream); }
.footer-tagline { margin-top: 0.6rem; color: rgba(var(--cream-rgb), 0.7); max-width: 32ch; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 0.9rem; color: rgba(var(--cream-rgb), 0.9); }
.footer-col ul {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 0; padding: 0; list-style: none;
}
.footer-col li { margin: 0; padding: 0; }
.footer-col a { text-decoration: none; color: rgba(var(--cream-rgb), 0.82); }
.footer-col a:hover { color: var(--cream); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--line-on-charcoal); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-size: 0.85rem; color: rgba(var(--cream-rgb), 0.6);
}

/* =========================================================
   DESKTOP NAV SWITCH
   ========================================================= */
@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .menu-toggle { display: none; }
  .call-btn-label { display: inline; }
  .header-call { padding: 0.85rem 1.4rem; }
}
@media (min-width: 480px) {
  .call-btn-label { display: inline; }
}
