/* ============================================================
   1000 Oaks Meat Locker v2 — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --charcoal:  #16110d;
  --ink:       #0e0b08;
  --mid:       #2e2018;
  --dark-card: #1a1108;
  --parchment: #f2e8d5;

  --accent:    oklch(0.62 0.18 38);
  --accent-t:  oklch(0.62 0.18 38 / 0.35);
  --blood:     oklch(0.38 0.14 18);

  --ff-head:   'Oswald', sans-serif;
  --ff-body:   'Crimson Pro', Georgia, serif;
  --ff-caps:   'Barlow Condensed', sans-serif;

  --nav-h:  72px;
  --max-w:  1280px;
  --pad-x:  60px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Base ──────────────────────────────────────────────────── */
body {
  background: var(--charcoal);
  font-family: var(--ff-body);
  color: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film-grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--blood); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover { opacity: 0.85; }

.btn-ghost-light  { border: 1px solid rgba(242,232,213,0.45); color: var(--parchment); background: transparent; }
.btn-ghost-light:hover { background: rgba(242,232,213,0.08); }

.btn-ghost-accent  { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.btn-ghost-accent:hover { background: var(--accent); color: #fff; }

.btn-ghost-dark  { border: 1px solid #16110d; color: #16110d; background: transparent; }
.btn-ghost-dark:hover { background: #16110d; color: var(--parchment); }

.btn-ghost-white  { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-ghost-white:hover { background: #fff; color: var(--accent); }

.btn-lg { padding: 17px 48px; font-size: 14px; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(22,17,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(242,232,213,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--parchment); }

.nav-order {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-order:hover { opacity: 0.85 !important; color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(22,17,13,0.88) 0%,
    rgba(22,17,13,0.55) 60%,
    rgba(22,17,13,0.2) 100%);
}

.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 38px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--accent);
  padding: 10px 28px;
  z-index: 2;
  white-space: nowrap;
  text-align: center;
}

.hero-badge-name {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: var(--parchment);
  text-transform: uppercase;
  line-height: 1;
}

.hero-badge-est {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-text {
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-mobile-id {
  display: none;
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.9;
}

.badge-diamond {
  width: 5px; height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  margin-top: 40px;
}

.hero-eyebrow {
  font-family: var(--ff-caps);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 136px);
  line-height: 0.92;
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-title .accent { color: var(--accent); }

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(242,232,213,0.4);
  color: transparent;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 20px;
  color: rgba(242,232,213,0.72);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(242,232,213,0.6));
}

/* ── Info Bar ──────────────────────────────────────────────── */
.info-bar {
  background: var(--ink);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgba(242,232,213,0.06);
}

.info-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
}

.info-item {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-divider {
  width: 1px;
  background: rgba(242,232,213,0.08);
  align-self: stretch;
}

.info-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(242,232,213,0.05);
  border: 1px solid var(--accent-t);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--accent);
}

.info-label {
  display: block;
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-value {
  display: block;
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 13px;
  color: var(--parchment);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

a.info-value:hover { color: var(--accent); }

/* ── Specialties ───────────────────────────────────────────── */
.specialties {
  background: var(--dark-card);
  padding: 100px 0;
}

.specialties-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.specialties-header {
  margin-bottom: 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.specialties-eyebrow {
  font-family: var(--ff-caps);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.specialties-title {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.9;
  color: var(--parchment);
  letter-spacing: -0.01em;
}

.specialties-title .accent { color: var(--accent); }

.specialties-subtitle {
  font-family: var(--ff-body);
  font-size: 18px;
  color: rgba(242,232,213,0.55);
  max-width: 340px;
  line-height: 1.7;
  text-align: right;
  flex-shrink: 0;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
}

.specialty-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.specialty-card-bg {
  height: 440px;
  width: 100%;
  background: linear-gradient(135deg, #2a1a0e, #1a0e06);
  display: block;
}

.specialty-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(22,17,13,0.85) 0%,
    rgba(22,17,13,0.2) 60%,
    transparent 100%);
  transition: background 0.4s ease;
}

.specialty-card:hover .specialty-overlay {
  background: linear-gradient(to top,
    rgba(22,17,13,0.95) 0%,
    rgba(22,17,13,0.5) 60%,
    transparent 100%);
}

.specialty-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}

.specialty-tag {
  display: inline-block;
  background: var(--accent);
  padding: 3px 10px;
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.specialty-name {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.specialty-text {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(242,232,213,0.72);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.specialty-card:hover .specialty-text {
  max-height: 100px;
  opacity: 1;
}

.specialties-cta {
  margin-top: 56px;
  text-align: center;
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  background: var(--parchment);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: var(--charcoal);
}

.about-watermark {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(200px, 22vw, 340px);
  color: rgba(22,17,13,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-photo-wrap { position: relative; }

.about-photo {
  height: 520px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.2) contrast(1.05);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.about-badge-est {
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.about-badge-year {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.about-eyebrow {
  font-family: var(--ff-caps);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.about-title .accent { color: var(--accent); }

.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(22,17,13,0.12);
}

.about-stat-num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 40px;
  color: var(--charcoal);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(22,17,13,0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.about-body {
  font-family: var(--ff-body);
  font-size: 19px;
  color: rgba(22,17,13,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── Delivery Band ─────────────────────────────────────────── */
.delivery { position: relative; overflow: hidden; }

.delivery-photo-wrap {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.delivery-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.delivery-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(22,17,13,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-photo-eyebrow {
  font-family: var(--ff-caps);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.delivery-photo-headline {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
}

.delivery-photo-rule {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.delivery-cta {
  background: var(--charcoal);
  padding: 72px var(--pad-x);
  text-align: center;
  border-top: 2px solid var(--accent);
}

.delivery-cta-eyebrow {
  font-family: var(--ff-caps);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.delivery-cta-headline {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--parchment);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.delivery-cta-body {
  font-family: var(--ff-body);
  font-size: 18px;
  color: rgba(242,232,213,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.delivery-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Catering Strip ────────────────────────────────────────── */
.catering-strip { position: relative; overflow: hidden; }

.catering-strip-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.catering-strip-overlay {
  position: absolute; inset: 0;
  background: rgba(14,10,6,0.82);
}

.catering-strip-inner {
  position: relative;
  z-index: 1;
  padding: 72px var(--pad-x);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.catering-eyebrow {
  font-family: var(--ff-caps);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.catering-headline {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 52px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.catering-rule {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.catering-body {
  font-family: var(--ff-body);
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 380px;
  line-height: 1.65;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid rgba(242,232,213,0.08);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand-text {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(242,232,213,0.45);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col-title {
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(242,232,213,0.5);
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--parchment); }

.footer-bottom {
  border-top: 1px solid rgba(242,232,213,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-family: var(--ff-caps);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(242,232,213,0.25);
  text-transform: uppercase;
}

/* ── Utilities & Additions ──────────────────────────────────── */

/* Button variants used in HTML */
.btn-primary  { background: var(--accent); color: #fff; }
.btn-primary:hover  { opacity: 0.88; }
.btn-ghost    { border: 1px solid rgba(242,232,213,0.45); color: var(--parchment); background: transparent; }
.btn-ghost:hover    { background: rgba(242,232,213,0.08); }
.btn-outline  { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover  { background: var(--accent); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 11px; }

/* Hero bg div */
.hero-bg { background-size: cover; background-position: center 60%; }

/* Hero title line stacking */
.hero-line { display: block; }

/* Shared eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--ff-caps);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(242,232,213,0.55); }

/* Accent text in headings */
.accent-text { color: var(--accent); }

/* About stat items */
.about-stat { display: flex; flex-direction: column; }
.about-stat-div { width: 1px; background: rgba(22,17,13,0.15); align-self: stretch; flex-shrink: 0; }

/* Footer brand additions */
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; display: block; }
.footer-tagline {
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-about {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(242,232,213,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Footer hours */
.footer-hours { margin-top: 4px; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(242,232,213,0.5);
  margin-bottom: 8px;
}

/* Footer contact */
.footer-contact { margin-top: 4px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(242,232,213,0.5);
  line-height: 1.5;
}
.footer-contact-row i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a:hover { color: var(--parchment); }

/* Delivery band (distinct from .delivery css rule above) */
.delivery-band { position: relative; overflow: hidden; display: flex; }
.delivery-band-photo {
  position: relative;
  flex: 0 0 55%;
  min-height: 380px;
  overflow: hidden;
}
.delivery-band-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.delivery-band-text-overlay {
  position: absolute; inset: 0;
  background: rgba(14,10,6,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-band-headline {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 80px);
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
}
.delivery-band-cta {
  flex: 1;
  background: var(--charcoal);
  border-top: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 56px;
  gap: 0;
}
.delivery-band-cta h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  color: var(--parchment);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.delivery-band-cta p {
  font-family: var(--ff-body);
  font-size: 18px;
  color: rgba(242,232,213,0.6);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 340px;
}

/* Info bar link hover */
a.info-item:hover .info-value { color: var(--accent); }

/* Catering strip bg div (not img) */
.catering-strip-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 50%;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  :root { --pad-x: 40px; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { right: 0; bottom: 0; }
  .about-watermark { opacity: 0.025; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .catering-strip-inner { gap: 40px; }
  .catering-rule { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --pad-x: 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(22,17,13,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(242,232,213,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; border-radius: 4px; font-size: 1rem; }
  .nav-order { text-align: center; margin-top: 8px; }

  .hero-badge { display: none; }
  .hero-mobile-id { display: block; }

  .specialties-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .specialties-subtitle { text-align: left; max-width: 100%; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .specialty-card-bg { height: 360px; }

  .info-bar-inner { flex-direction: column; padding: 0 24px; }
  .info-divider { width: 100%; height: 1px; }
  .info-item { padding: 14px 0; }

  .about-inner { gap: 40px; }
  .about-photo { height: 360px; }
  .about-stats { gap: 24px; }

  .delivery-band { flex-direction: column; }
  .delivery-band-photo { flex: none; min-height: 280px; }
  .delivery-band-cta { padding: 48px 24px; }

  .catering-strip-inner { flex-direction: column; gap: 28px; text-align: center; padding: 48px 24px; }
  .catering-body { max-width: 100%; text-align: center; }

  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .specialties-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .delivery-cta-btns { flex-direction: column; align-items: center; }
  .delivery-cta-btns .btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────────────────────────── */
.page-hero {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
  padding-top: calc(var(--nav-h) + 48px);
  border-bottom: 2px solid var(--accent);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(14,10,6,0.94) 0%,
    rgba(14,10,6,0.65) 55%,
    rgba(14,10,6,0.5) 100%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x); width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-caps); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,232,213,0.4); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(242,232,213,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent); }
.breadcrumb .current { color: rgba(242,232,213,0.75); }
.page-hero h1 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(52px, 8vw, 108px);
  color: var(--parchment); text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero-sub {
  font-family: var(--ff-body); font-size: 19px;
  color: rgba(242,232,213,0.55);
  max-width: 520px; line-height: 1.6;
}

/* ── Section Layout ────────────────────────────────────────────── */
.page-section { padding: 100px 0; }
.page-section-dark { background: var(--dark-card); }
.page-section-charcoal { background: var(--charcoal); }
.page-section-ink { background: var(--ink); }
.page-section-parchment { background: var(--parchment); color: var(--charcoal); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section-header { margin-bottom: 64px; }
.section-h2 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(36px, 4vw, 64px);
  text-transform: uppercase; line-height: 0.92;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.page-section-parchment .section-h2 { color: var(--charcoal); }
.section-h2 .accent { color: var(--accent); }
.section-body {
  font-family: var(--ff-body); font-size: 18px; line-height: 1.75;
  color: rgba(242,232,213,0.65); max-width: 640px;
}
.page-section-parchment .section-body { color: rgba(22,17,13,0.65); }

/* ── Menu Subnav ───────────────────────────────────────────────── */
.menu-subnav {
  background: var(--ink);
  border-bottom: 1px solid rgba(242,232,213,0.07);
  position: sticky; top: var(--nav-h); z-index: 50;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.menu-subnav::-webkit-scrollbar { display: none; }
.menu-subnav-inner {
  display: flex; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x); white-space: nowrap;
}
.menu-subnav-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; color: rgba(242,232,213,0.45);
  padding: 15px 18px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; flex-shrink: 0;
}
.menu-subnav-link i { color: var(--accent); }
.menu-subnav-link:hover { color: var(--parchment); border-bottom-color: var(--accent); }

/* ── Menu Items ────────────────────────────────────────────────── */
.menu-main { background: var(--charcoal); padding-bottom: 80px; }
.menu-cat {
  padding: 72px 0 0;
  border-top: 1px solid rgba(242,232,213,0.05);
}
.menu-cat:first-child { border-top: none; padding-top: 72px; }
.menu-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.menu-cat-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blood); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 15px; flex-shrink: 0;
}
.menu-cat-title {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--parchment); text-transform: uppercase; line-height: 1;
}
.menu-rows-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px;
}
.menu-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(242,232,213,0.06);
}
.menu-row-name {
  font-family: var(--ff-body); font-size: 17px;
  color: rgba(242,232,213,0.82);
  display: flex; align-items: baseline; gap: 10px;
}
.menu-row-num {
  font-family: var(--ff-caps); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--accent); flex-shrink: 0; min-width: 18px;
}
.menu-row-price {
  font-family: var(--ff-head); font-weight: 500; font-size: 15px;
  color: var(--accent); white-space: nowrap; flex-shrink: 0;
}
.combo-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(242,232,213,0.03);
  border-left: 3px solid var(--accent);
  padding: 14px 18px; margin-bottom: 28px;
  font-family: var(--ff-body); font-size: 16px;
  color: rgba(242,232,213,0.65); line-height: 1.6;
}
.combo-note i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.combo-note strong { color: var(--parchment); }
.menu-subsection {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.25em; font-weight: 600;
  text-transform: uppercase; color: rgba(242,232,213,0.3);
  margin: 32px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(242,232,213,0.06);
}
.addon-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-family: var(--ff-body); font-size: 16px;
  color: rgba(242,232,213,0.55); border-top: 1px solid rgba(242,232,213,0.06); margin-top: 6px;
}
.addon-price { font-family: var(--ff-head); font-size: 14px; color: var(--accent); }

/* Pricing chips */
.pricing-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pricing-chip {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--dark-card); border: 1px solid rgba(242,232,213,0.08);
  padding: 16px 24px; min-width: 110px;
}
.chip-label {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; color: rgba(242,232,213,0.4);
}
.chip-price {
  font-family: var(--ff-head); font-weight: 600; font-size: 22px; color: var(--parchment);
}
.chip-unit {
  font-family: var(--ff-caps); font-size: 9px; letter-spacing: 0.1em;
  color: rgba(242,232,213,0.3); text-transform: uppercase;
}

/* Meat by pound */
.meat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px; margin-top: 8px;
}
.meat-card {
  background: var(--dark-card); padding: 28px 24px;
  border: 1px solid rgba(242,232,213,0.06);
  display: flex; flex-direction: column; gap: 8px;
}
.meat-card-name {
  font-family: var(--ff-head); font-weight: 600; font-size: 16px;
  color: var(--parchment); text-transform: uppercase; letter-spacing: 0.04em;
}
.meat-card-price {
  font-family: var(--ff-head); font-weight: 700; font-size: 28px;
  color: var(--accent); line-height: 1;
}
.meat-card-unit {
  display: block; font-family: var(--ff-caps); font-size: 10px;
  letter-spacing: 0.15em; color: rgba(242,232,213,0.3);
  text-transform: uppercase; font-weight: 400;
}

/* Round Up */
.round-up-box {
  background: var(--dark-card); border: 1px solid rgba(242,232,213,0.1);
  border-left: 4px solid var(--accent);
  display: grid; grid-template-columns: 160px 1fr;
  gap: 0 48px; padding: 44px;
}
.round-up-price-col { text-align: center; }
.round-up-price {
  font-family: var(--ff-head); font-weight: 700; font-size: 60px;
  color: var(--accent); line-height: 1;
}
.round-up-serves {
  display: block; font-family: var(--ff-caps); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,232,213,0.4); margin-top: 6px;
}
.round-up-title {
  font-family: var(--ff-head); font-weight: 600; font-size: 18px;
  text-transform: uppercase; color: var(--parchment); margin-bottom: 16px;
}
.round-up-list { list-style: none; }
.round-up-list li {
  font-family: var(--ff-body); font-size: 16px; color: rgba(242,232,213,0.65);
  padding: 7px 0 7px 18px; border-bottom: 1px solid rgba(242,232,213,0.06);
  position: relative;
}
.round-up-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent); font-family: var(--ff-head);
}
.round-up-note {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(242,232,213,0.3); margin-top: 18px;
}

/* Beverages */
.bev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 460px; margin-top: 8px; }
.bev-block { background: var(--dark-card); padding: 24px 28px; }
.bev-title {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(242,232,213,0.08);
}
.bev-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--ff-body); font-size: 15px;
  color: rgba(242,232,213,0.6); padding: 5px 0;
}
.bev-price { font-family: var(--ff-head); color: var(--parchment); font-size: 14px; }

/* Menu note */
.menu-note-box {
  margin-top: 64px; padding: 20px 24px;
  background: rgba(242,232,213,0.03); border: 1px solid rgba(242,232,213,0.07);
  font-family: var(--ff-body); font-size: 15px;
  color: rgba(242,232,213,0.45); line-height: 1.65;
}
.menu-note-box strong { color: rgba(242,232,213,0.75); }
.menu-note-box a { color: var(--accent); }

/* ── Catering ──────────────────────────────────────────────────── */
.occasion-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.occasion-card {
  background: var(--dark-card); padding: 36px 24px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(242,232,213,0.06);
  transition: border-color 0.25s;
}
.occasion-card:hover { border-color: var(--accent-t); }
.occasion-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(242,232,213,0.04); border: 1px solid var(--accent-t);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent);
}
.occasion-name {
  font-family: var(--ff-head); font-weight: 600; font-size: 18px;
  text-transform: uppercase; color: var(--parchment);
}
.occasion-text {
  font-family: var(--ff-body); font-size: 15px;
  color: rgba(242,232,213,0.5); line-height: 1.65;
}
.package-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.pkg-card {
  background: var(--dark-card); border: 1px solid rgba(242,232,213,0.08);
  display: flex; flex-direction: column; position: relative;
}
.pkg-card.featured { border-color: var(--accent); }
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--ff-caps); font-size: 9px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase; padding: 4px 14px; white-space: nowrap;
}
.pkg-head {
  padding: 40px 28px 24px;
  border-bottom: 1px solid rgba(242,232,213,0.08);
}
.pkg-icon { font-size: 22px; color: var(--accent); margin-bottom: 14px; }
.pkg-name {
  font-family: var(--ff-head); font-weight: 700; font-size: 22px;
  text-transform: uppercase; color: var(--parchment); margin-bottom: 6px;
}
.pkg-serves {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(242,232,213,0.35);
}
.pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-includes { list-style: none; margin-bottom: 28px; flex: 1; }
.pkg-includes li {
  font-family: var(--ff-body); font-size: 15px; color: rgba(242,232,213,0.6);
  padding: 7px 0 7px 16px; border-bottom: 1px solid rgba(242,232,213,0.05);
  position: relative;
}
.pkg-includes li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.pkg-price {
  font-family: var(--ff-head); font-weight: 700; font-size: 24px;
  color: var(--parchment); margin-bottom: 4px;
}
.pkg-price small {
  display: block; font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(242,232,213,0.3); font-weight: 400; margin-top: 4px;
}
.process-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.process-step {
  text-align: center; padding: 56px 32px;
  border: 1px solid rgba(242,232,213,0.05);
}
.process-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--blood);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ff-head); font-weight: 700; font-size: 22px; color: var(--parchment);
}
.process-title {
  font-family: var(--ff-head); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px;
}
.process-text {
  font-family: var(--ff-body); font-size: 16px; color: rgba(242,232,213,0.5); line-height: 1.65;
}

/* Forms */
.form-card { background: var(--dark-card); padding: 52px 56px; border: 1px solid rgba(242,232,213,0.08); }
.form-card-title {
  font-family: var(--ff-head); font-weight: 700; font-size: 28px;
  text-transform: uppercase; color: var(--parchment); margin-bottom: 8px;
}
.form-card-sub {
  font-family: var(--ff-body); font-size: 16px; color: rgba(242,232,213,0.5);
  line-height: 1.6; margin-bottom: 36px;
}
.form-card-sub a { color: var(--accent); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase; color: rgba(242,232,213,0.5); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 14px 16px;
  background: rgba(242,232,213,0.04); border: 1px solid rgba(242,232,213,0.12);
  color: var(--parchment); font-family: var(--ff-body); font-size: 16px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-control::placeholder { color: rgba(242,232,213,0.22); }
.form-control:focus { border-color: var(--accent); background: rgba(242,232,213,0.06); }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c17f3e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 140px; }
option { background: #1a1108; color: var(--parchment); }

/* ── About ─────────────────────────────────────────────────────── */
.story-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.story-photo-wrap { position: relative; }
.story-photo {
  width: 100%; display: block; object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
}
.story-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--accent);
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.story-badge-est {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75); text-transform: uppercase;
}
.story-badge-year {
  font-family: var(--ff-head); font-weight: 700; font-size: 28px;
  color: #fff; line-height: 1;
}
.story-text-col h2 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(36px, 4vw, 58px);
  text-transform: uppercase; line-height: 0.92; letter-spacing: -0.01em;
  color: var(--charcoal); margin-bottom: 28px;
}
.story-text-col h2 .accent { color: var(--accent); }
.story-body {
  font-family: var(--ff-body); font-size: 19px;
  color: rgba(22,17,13,0.65); line-height: 1.75; margin-bottom: 18px;
}
.stats-bar {
  background: var(--blood); padding: 56px 0;
}
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-num {
  font-family: var(--ff-head); font-weight: 700; font-size: clamp(40px, 5vw, 64px);
  color: var(--parchment); display: block; line-height: 1;
}
.stat-label {
  font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(242,232,213,0.55); margin-top: 6px;
  display: block;
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.value-card {
  background: rgba(242,232,213,0.03); border: 1px solid rgba(242,232,213,0.07);
  padding: 40px; display: flex; flex-direction: column; gap: 14px;
}
.value-icon { font-size: 22px; color: var(--accent); }
.value-name {
  font-family: var(--ff-head); font-weight: 600; font-size: 18px;
  text-transform: uppercase; color: var(--parchment);
}
.value-text {
  font-family: var(--ff-body); font-size: 17px;
  color: rgba(242,232,213,0.55); line-height: 1.65;
}
/* Timeline */
.timeline-wrap {
  max-width: 880px; margin: 0 auto; position: relative;
}
.timeline-wrap::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(242,232,213,0.1); transform: translateX(-50%);
}
.tl-item {
  display: grid; grid-template-columns: 1fr 28px 1fr;
  gap: 0 32px; align-items: start; margin-bottom: 56px;
}
.tl-content {
  background: var(--dark-card); padding: 28px 32px;
  border: 1px solid rgba(242,232,213,0.08);
}
.tl-content.right { border-left: 3px solid var(--accent); }
.tl-content.left { border-right: 3px solid var(--accent); }
.tl-year {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 8px;
}
.tl-text {
  font-family: var(--ff-body); font-size: 16px;
  color: rgba(242,232,213,0.6); line-height: 1.7;
}
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--charcoal);
  margin-top: 30px; justify-self: center;
}

/* ── Contact ───────────────────────────────────────────────────── */
.quick-actions-bar {
  background: var(--dark-card); padding: 24px 0;
  border-bottom: 2px solid var(--accent);
}
.quick-actions-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
}
.contact-info-card {
  background: var(--dark-card); padding: 40px;
  border: 1px solid rgba(242,232,213,0.08);
}
.contact-info-title {
  font-family: var(--ff-head); font-weight: 700; font-size: 20px;
  text-transform: uppercase; color: var(--parchment); margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(242,232,213,0.08);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(242,232,213,0.06);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(242,232,213,0.04); border: 1px solid var(--accent-t);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.contact-detail-label {
  display: block; font-family: var(--ff-caps); font-size: 10px; letter-spacing: 0.2em;
  font-weight: 600; text-transform: uppercase; color: var(--accent); margin-bottom: 5px;
}
.contact-detail-value {
  font-family: var(--ff-body); font-size: 16px;
  color: rgba(242,232,213,0.72); line-height: 1.5;
}
a.contact-detail-value:hover { color: var(--parchment); }
.hours-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 5px 20px; margin-top: 4px;
}
.hours-day { font-family: var(--ff-body); font-size: 15px; color: rgba(242,232,213,0.6); }
.hours-time { font-family: var(--ff-head); font-weight: 400; font-size: 14px; color: rgba(242,232,213,0.72); }
.map-embed { margin-top: 24px; overflow: hidden; }
.map-embed iframe {
  width: 100%; height: 260px; border: none; display: block;
  filter: grayscale(0.5) contrast(0.9);
}

/* ── Interior Page Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 60px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 360px; padding-bottom: 44px; }
  .page-hero h1 { font-size: clamp(40px, 10vw, 72px); }
  .menu-rows-2col { grid-template-columns: 1fr; }
  .round-up-box { grid-template-columns: 1fr; gap: 24px; }
  .round-up-price-col { text-align: left; }
  .bev-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 32px 24px; }
  .story-badge { left: 0; bottom: 0; }
  .tl-item { grid-template-columns: 1fr; padding-left: 36px; position: relative; gap: 0; margin-bottom: 24px; }
  .tl-dot { position: absolute; left: 0; top: 28px; margin: 0; }
  .tl-content.left { border-right: none; border-left: 3px solid var(--accent); }
  .tl-spacer { display: none; }
  .timeline-wrap::before { left: 6px; }
  .contact-grid { padding: 0 24px; }
  .page-section { padding: 72px 0; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
