/* ===========================================================================
   Norton Cattle Co. — design system
   Palette: warm bone + deep forest + rust accent. Fraunces serif + Inter sans.
   =========================================================================== */

:root {
  --bone:     #F4EFE4;
  --bone-2:   #ECE3CF;
  --bone-3:   #E0D5BA;
  --forest:   #2C3A28;
  --forest-2: #1A2417;
  --moss:     #6E7E5C;
  --rust:     #A24A2A;
  --rust-2:   #82381E;
  --ochre:    #8C7350;   /* secondary accent — quiet labels, not for actions */
  --ink:      #1A1714;
  --ink-2:    #423C32;
  --mute:     #837C6E;
  --line:     #D6CCB6;
  --shadow-sm: 0 1px 2px rgba(26,23,20,.06), 0 1px 3px rgba(26,23,20,.05);
  --shadow:    0 6px 16px rgba(26,23,20,.08), 0 2px 6px rgba(26,23,20,.05);
  --shadow-lg: 0 20px 50px rgba(26,23,20,.12), 0 6px 14px rgba(26,23,20,.06);

  --serif: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Reset / base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Type --------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 144;
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 6vw + 1rem, 5.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem); }
h3 { font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lede { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; }

/* Layout ------------------------------------------------------------------- */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--bone-2 { background: var(--bone-2); }
.section--forest { background: var(--forest); color: var(--bone); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--bone); }
.section--forest .eyebrow { color: #D6A88E; }

/* Header / nav ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 228, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.logo {
  font-family: var(--serif); font-weight: 500; font-size: 1.25rem;
  color: var(--forest); letter-spacing: 0.01em; line-height: 1;
  font-variation-settings: 'SOFT' 50;
  white-space: nowrap;
}
.logo small {
  display: block; font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute);
  margin-top: 3px; font-weight: 500;
}
.nav { display: none; }
.nav__link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2);
  padding: 6px 4px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav__link:hover { color: var(--forest); }
.nav__link.is-active { color: var(--forest); border-bottom-color: var(--rust); }
@media (min-width: 768px) {
  .nav { display: flex !important; gap: 22px; align-items: center; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

.nav-toggle {
  background: none; border: 0; color: var(--forest); padding: 8px;
  display: flex; align-items: center; gap: 8px; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--bone);
  padding: 12px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0; font-size: 1rem; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.is-active { color: var(--rust); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .12s, background .15s, border-color .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--rust); color: var(--bone); }
.btn--primary:hover { background: var(--rust-2); }
.btn--ghost { color: var(--forest); border-color: var(--forest); background: transparent; }
.btn--ghost:hover { background: var(--forest); color: var(--bone); }
.btn--light { color: var(--bone); border-color: var(--bone); background: transparent; }
.btn--light:hover { background: var(--bone); color: var(--forest); }
.btn--lg { padding: 18px 34px; font-size: 0.95rem; }

/* Image placeholders (used until real photos drop in) ---------------------- */
.ph {
  position: relative; width: 100%; overflow: hidden; border-radius: 6px;
  background: linear-gradient(135deg, var(--bone-3) 0%, var(--moss) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,239,228,0.95); font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  text-shadow: 0 1px 2px rgba(26,36,23,.45);
  padding: 24px; text-align: center;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 6px, transparent 6px 14px);
  pointer-events: none;
}
.ph--16x9   { aspect-ratio: 16 / 9; }
.ph--4x3    { aspect-ratio: 4 / 3; }
.ph--3x2    { aspect-ratio: 3 / 2; }
.ph--1x1    { aspect-ratio: 1 / 1; }
.ph--3x4    { aspect-ratio: 3 / 4; }
.ph--forest { background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%); }
.ph--rust   { background: linear-gradient(135deg, var(--rust) 0%, #C97C5C 100%); }
.ph--moss   { background: linear-gradient(135deg, var(--moss) 0%, var(--bone-3) 100%); }
.ph--bone   { background: linear-gradient(135deg, var(--bone-2) 0%, var(--bone-3) 100%); color: var(--ink-2); text-shadow: none; }
.ph__label { position: relative; z-index: 1; max-width: 80%; }
.ph__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; display: block;
}
.ph:has(.ph__img) { background: var(--ink); }
.ph:has(.ph__img) .ph__label { display: none; }
.ph:has(.ph__img)::before { display: none; }

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 16px 0 16px;
  color: var(--bone); overflow: hidden;
}
@media (min-width: 768px)  { .hero { padding: 48px 0 40px; } }
@media (min-width: 1100px) { .hero { padding: 64px 0 52px; } }
.hero h1 { font-size: clamp(1.85rem, 5vw + 0.6rem, 4.9rem); }
.hero p  { font-size: 1rem; }
@media (min-width: 768px) { .hero p { font-size: 1.15rem; } }
.hero__cta { margin-top: 16px; }
@media (min-width: 768px) { .hero__cta { margin-top: 26px; } }
.hero .ph { position: absolute; inset: 0; border-radius: 0; aspect-ratio: auto; padding: 0; align-items: flex-end; justify-content: flex-end; }
.hero .ph__label {
  position: absolute; right: 16px; bottom: 12px; max-width: 60%;
  font-size: 0.62rem; letter-spacing: 0.18em; opacity: 0.55;
  text-align: right; line-height: 1.4;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,23,0.45) 0%, rgba(26,36,23,0.55) 35%, rgba(26,36,23,0.88) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { color: var(--bone); font-variation-settings: 'SOFT' 40, 'opsz' 144; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.hero .eyebrow {
  color: #F2D4B8;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 14px rgba(0,0,0,0.4);
  font-weight: 600;
}
.hero p { font-size: 1.2rem; max-width: 56ch; opacity: 0.96; text-shadow: 0 1px 6px rgba(0,0,0,0.45); }
.hero__cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Card grid ---------------------------------------------------------------- */
.cards { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bone);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .ph { border-radius: 0; }
.card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { color: var(--ink-2); margin-bottom: 16px; flex: 1; }
.card__link {
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--rust); border-bottom: 1px solid var(--rust);
  align-self: flex-start; padding-bottom: 3px;
}
.card__link:hover { color: var(--rust-2); border-color: var(--rust-2); }

/* Split section (image left/right, text other side) ------------------------ */
.split { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--reverse > :first-child { order: 2; }
}
.split__text { max-width: 56ch; }

/* Beef boxes --------------------------------------------------------------- */
.box-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .box-grid { grid-template-columns: repeat(3, 1fr); } }

.box {
  background: var(--bone); border: 1px solid var(--line); border-radius: 10px;
  padding: 36px 32px; display: flex; flex-direction: column;
  position: relative; transition: transform .15s, box-shadow .15s;
}
.box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.box--featured { background: var(--forest); color: var(--bone); border-color: var(--forest); }
.box--featured h3, .box--featured .box__price { color: var(--bone); }
.box--featured .box__price-currency, .box--featured .box__contents li { color: #E8DFCB; }
.box--featured .box__tag { background: var(--rust); color: var(--bone); }
.box__tag {
  position: absolute; top: -12px; left: 24px;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--bone-3); color: var(--forest);
}
.box h3 { margin-bottom: 4px; font-size: 1.6rem; }
.box__sub { font-size: 0.95rem; color: var(--mute); margin-bottom: 24px; }
.box--featured .box__sub { color: rgba(244,239,228,0.7); }
.box__price { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--forest); margin-bottom: 24px; }
.box__price-currency { font-size: 1.2rem; vertical-align: top; color: var(--mute); margin-right: 4px; }
.box__contents { list-style: none; padding: 0; margin: 0 0 28px; }
.box__contents li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.box--featured .box__contents li { border-color: rgba(216,205,184,0.18); }
.box__qty { font-weight: 600; min-width: 64px; color: var(--forest); }
.box--featured .box__qty { color: var(--bone); }
.box__note { color: var(--mute); font-size: 0.85rem; }
.box--featured .box__note { color: rgba(244,239,228,0.6); }
.box .btn { margin-top: auto; align-self: stretch; justify-content: center; }

/* Lists / amenities -------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li {
  padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 14px; height: 8px; border-left: 2px solid var(--rust); border-bottom: 2px solid var(--rust);
  transform: rotate(-45deg);
}

/* Forms -------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 6px;
}
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px; font: inherit;
  background: var(--bone); border: 1.5px solid var(--line); border-radius: 6px;
  color: var(--ink); transition: border-color .15s, background .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--rust); background: #fff;
  box-shadow: 0 0 0 3px rgba(162,74,42,0.12);
}
.form textarea { min-height: 120px; resize: vertical; }

/* Form card wrapper — bone-2 panel that frames a form with section dividers */
.form-card {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(26,36,23,0.06);
}
@media (min-width: 640px) { .form-card { padding: 36px 36px 32px; } }
.form-card .form__section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 4px;
}
.form-card .form__section:first-of-type { border-top: 0; padding-top: 0; }
.form-card .form__section-head {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre);
  margin: 0 0 14px;
}
.form-card .form__submit {
  border-top: 1px solid var(--line);
  margin-top: 8px; padding-top: 22px;
}
.form-card .form__submit .btn { width: 100%; justify-content: center; }
.form-card .form__hint {
  font-size: 0.85rem; color: var(--mute); font-weight: 400;
  letter-spacing: 0; text-transform: none; margin: -2px 0 0;
}

/* Form result (thanks / error) ------------------------------------------- */
.form-result {
  max-width: 540px; margin: 0 auto;
  background: var(--bone-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 48px 36px 36px;
  text-align: center; position: relative;
  box-shadow: 0 6px 20px rgba(26,36,23,0.06);
  scroll-margin-top: 90px; /* so smooth-scroll doesn't tuck under sticky header */
  animation:
    form-result-in   .4s cubic-bezier(.18,.89,.32,1.18),
    form-result-glow 1.4s ease-out .45s 2;
}
@keyframes form-result-glow {
  0%, 100% { box-shadow: 0 6px 20px rgba(26,36,23,0.06); }
  50%      { box-shadow: 0 0 0 10px rgba(162,74,42,0.22), 0 14px 32px rgba(26,36,23,0.14); }
}
.form-result--err {
  animation:
    form-result-in   .4s cubic-bezier(.18,.89,.32,1.18),
    form-result-glow-err 1.4s ease-out .45s 2;
}
@keyframes form-result-glow-err {
  0%, 100% { box-shadow: 0 6px 20px rgba(196,90,78,0.10); }
  50%      { box-shadow: 0 0 0 10px rgba(196,90,78,0.25), 0 14px 32px rgba(196,90,78,0.18); }
}
.form-result__icon {
  display: grid; place-items: center;
  width: 76px; height: 76px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--rust); color: var(--bone);
  box-shadow: 0 6px 14px rgba(162,74,42,0.28);
}
.form-result__icon svg { width: 38px; height: 38px; stroke: currentColor; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.form-result__heading {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem);
  font-weight: 500; font-variation-settings: 'SOFT' 40;
  color: var(--forest); margin: 0 0 12px; line-height: 1.1;
}
.form-result__body { color: var(--ink-2); font-size: 1.05rem; margin: 0 0 6px; }
.form-result__sub {
  color: var(--mute); font-size: 0.92rem;
  margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line);
}
.form-result__sub a { color: var(--rust); border-bottom: 1px solid var(--rust); padding-bottom: 1px; }
.form-result__sub a:hover { color: var(--rust-2); border-color: var(--rust-2); }

.form-result--err { background: #fbeae6; border-color: #e8b9ad; }
.form-result--err .form-result__icon { background: #c45a4e; box-shadow: 0 6px 14px rgba(196,90,78,0.28); }
.form-result--err .form-result__heading { color: #823a22; }

@keyframes form-result-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* Stat / fact block -------------------------------------------------------- */
.facts {
  display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}
@media (min-width: 720px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact__num {
  font-family: var(--serif); font-size: 3rem; line-height: 1;
  color: var(--rust); margin-bottom: 6px;
  font-variation-settings: 'SOFT' 60;
}
.fact__label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}

/* Footer ------------------------------------------------------------------- */
.site-footer { background: var(--forest-2); color: #C9C1B0; padding: 72px 0 32px; }
.site-footer h4 { color: var(--bone); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.site-footer a { color: #C9C1B0; }
.site-footer a:hover { color: var(--bone); }
.site-footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.site-footer__bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(216,205,184,0.15);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(216,205,184,0.65);
}
.site-footer__credit {
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0.7; transition: opacity .15s;
  white-space: nowrap;
}
.site-footer__credit:hover { opacity: 1; }
.site-footer__credit-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(216,205,184,0.55); font-weight: 500;
}
.site-footer__credit img {
  height: 26px; width: auto;
}
.site-footer .logo { color: var(--bone); }
.site-footer .logo small { color: rgba(216,205,184,0.65); }
.site-footer p { color: #C9C1B0; }

/* Utility ------------------------------------------------------------------ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.muted { color: var(--mute); }
.center-text { text-align: center; max-width: 720px; margin: 0 auto; }
.divider { height: 1px; background: var(--line); border: 0; margin: 32px 0; }

/* Slide-in panel (admin catalog edit, etc.) ------------------------------- */
.slide-panel {
  position: fixed; inset: 0; z-index: 250; display: none;
}
.slide-panel.is-open { display: block; }
.slide-panel__backdrop {
  position: absolute; inset: 0; background: rgba(26,36,23,0.6);
  backdrop-filter: blur(3px); animation: slide-fade .2s ease-out;
}
.slide-panel__card {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 720px;
  background: var(--bone);
  box-shadow: -20px 0 60px rgba(26,36,23,0.35);
  overflow-y: auto; overflow-x: hidden;
  animation: slide-in .25s cubic-bezier(.18,.89,.32,1.18);
}
.slide-panel__head {
  position: sticky; top: 0; z-index: 2;
  background: var(--bone); border-bottom: 1px solid var(--line);
  padding: 18px 28px; display: flex; align-items: center; justify-content: space-between;
}
.slide-panel__head h2 { margin: 0; font-size: 1.2rem; font-weight: 600; font-family: var(--sans); color: var(--ink); }
.slide-panel__head h2 small { display: block; font-size: 0.78rem; color: var(--mute); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.slide-panel__close {
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.6rem; line-height: 1;
  color: var(--mute); transition: background .15s, color .15s;
}
.slide-panel__close:hover { background: var(--bone-2); color: var(--ink); }
.slide-panel__body { padding: 24px 28px 32px; }
.slide-panel__footer {
  position: sticky; bottom: 0; background: var(--bone-2); border-top: 1px solid var(--line);
  padding: 14px 28px; display: flex; gap: 10px; justify-content: flex-end;
}
@keyframes slide-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slide-fade { from { opacity: 0; } to { opacity: 1; } }

/* Call-us modal (Book the Loft, Cattle availability, etc.) ---------------- */
.call-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.call-modal.is-open { display: flex; }
.call-modal__backdrop { position: absolute; inset: 0; background: rgba(26,36,23,0.72); backdrop-filter: blur(4px); cursor: pointer; }
.call-modal__card {
  position: relative; background: var(--bone); border-radius: 14px; padding: 40px 36px 32px;
  max-width: 460px; width: 100%; box-shadow: 0 30px 80px rgba(26,36,23,0.4);
  animation: call-modal-pop .18s ease-out;
}
@keyframes call-modal-pop { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.call-modal__close {
  position: absolute; top: 12px; right: 14px; background: transparent; border: 0;
  font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--mute);
  width: 36px; height: 36px; border-radius: 50%; transition: background .15s, color .15s;
}
.call-modal__close:hover { background: var(--bone-2); color: var(--ink); }

/* Page header (non-hero pages) -------------------------------------------- */
.page-head { background: var(--bone-2); padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: 16px; }
.page-head .lede { color: var(--ink-2); }

/* Hero variant of page-head — full-bleed image + dark veil + light text. */
.page-head--hero {
  position: relative; background-size: cover; background-position: center;
  padding: 140px 0 110px; border-bottom: 0; color: var(--bone);
  min-height: 360px;
}
.page-head--hero h1 { color: var(--bone); }
.page-head--hero .eyebrow { color: #E8C8AC; }
.page-head--hero .lede { color: rgba(244,239,228,0.92); }
.page-head__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,23,0.40) 0%, rgba(26,36,23,0.78) 100%);
  z-index: 1;
}

/* Box thumbnail image inside the beef box cards. */
.box__img {
  margin: -36px -32px 22px;          /* bleed into the card padding edges */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--bone-3);
}
.box__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.box--featured .box__img { background: rgba(244,239,228,0.06); }
