/* ============================================================
   Barry Larry's Food Truck & Catering — stylesheet
   Palette pulled straight from the truck: bright orange body,
   gold crown, near-black lettering, warm takeout-box cream.
   Condensed display type reads like truck signage; body copy is
   a plain humanist sans.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --charcoal: #211C18;
  --charcoal-dark: #161210;
  --gold: #EFC743;
  --gold-light: #F5D875;
  --orange: #D9722F;
  --orange-dark: #B85A20;
  --stone: #8A7C64;
  --cream: #FFF8EC;
  --cream-2: #FBEEDA;
  --ink: #1C1B17;
  --ink-soft: #4A473E;
  --white: #FFFFFF;
  --line: rgba(28, 27, 23, 0.14);
  --line-on-dark: rgba(255, 248, 236, 0.22);

  /* Back-compat aliases so section-by-section styles below (ported from the
     reusable template) don't need renaming one at a time. */
  --pine: var(--charcoal);
  --pine-dark: var(--charcoal-dark);
  --grass: var(--gold);
  --grass-light: var(--gold-light);
  --clay: var(--orange);
  --clay-dark: var(--orange-dark);

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0;
  color: var(--pine-dark);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus visibility, kept consistent site-wide */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--grass-light);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.12s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-clay {
  background: var(--clay);
  color: var(--white);
}
.btn-clay:hover { background: var(--clay-dark); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--cream);
}
.btn-outline:hover { background: var(--line-on-dark); }

.btn-pine {
  background: var(--pine);
  color: var(--cream);
}
.btn-pine:hover { background: var(--pine-dark); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--pine);
  color: var(--cream);
  border-bottom: 3px solid var(--clay);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark-wrap {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 3px var(--charcoal), 0 0 16px 2px rgba(217, 114, 47, 0.7);
  background: var(--gold);
}
.brand-flame {
  position: absolute;
  bottom: -5px;
  right: -6px;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.footer-brand .brand-mark-wrap { width: 40px; height: 40px; }
.footer-brand .brand-mark { width: 40px; height: 40px; box-shadow: 0 0 0 2px var(--charcoal-dark), 0 0 10px 1px rgba(217, 114, 47, 0.6); }
.footer-brand .brand-flame { width: 18px; height: 18px; bottom: -3px; right: -4px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--grass-light);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.88;
}
.main-nav a:hover { opacity: 1; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  line-height: 1.2;
}
.header-phone span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grass-light);
}
.header-phone strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--line-on-dark);
  border-radius: 3px;
  color: var(--cream);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 3px solid var(--clay);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  opacity: 0.34;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--pine) 38%, rgba(22, 48, 42, 0.42) 75%, rgba(22, 48, 42, 0.15) 100%);
  pointer-events: none;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(241, 237, 225, 0.05) 0px,
    rgba(241, 237, 225, 0.05) 46px,
    transparent 46px,
    transparent 92px
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero-eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--grass-light);
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--grass-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(241, 237, 225, 0.86);
  max-width: 46ch;
  margin: 20px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--cream);
  line-height: 1;
}
.hero-trust span {
  font-size: 0.78rem;
  color: rgba(241, 237, 225, 0.65);
  margin-top: 4px;
}

/* Hero quote card */
.quote-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.quote-card h2 {
  font-size: 1.5rem;
  color: var(--pine-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.quote-card .quote-sub {
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

/* ---------- Form ---------- */
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--pine-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 10px; }
.honeypot { display: none; }

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(63, 107, 52, 0.14); color: var(--grass); }
.form-status.err { background: rgba(156, 59, 30, 0.12); color: var(--clay-dark); }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-eyebrow {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--clay);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.section-alt { background: var(--cream-2); }
.section-dark {
  background: var(--pine);
  color: var(--cream);
}
.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head p { color: rgba(241, 237, 225, 0.78); }
.section-dark .section-eyebrow { color: var(--grass-light); }

/* ---------- About / brothers story ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-art {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--pine);
}
.about-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--pine-dark);
}
.about-list svg { flex: none; margin-top: 3px; color: var(--grass); }

/* ---------- Services ledger ---------- */
.service-list {
  border-top: 2px solid var(--pine);
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--pine);
}
.service-row h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--pine-dark);
}
.service-row p { font-size: 0.98rem; margin: 0; }
.service-tag {
  justify-self: end;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--clay);
  border: 1.5px solid var(--clay);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ---------- Recent work gallery ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-item {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.work-item-wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(14,33,28,0.82), transparent);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
}
@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ---------- Happy customers / private parties gallery ---------- */
.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.party-item {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.party-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.party-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(14,33,28,0.82), transparent);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
}
@media (max-width: 760px) {
  .party-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .party-grid { grid-template-columns: 1fr; }
}

/* ---------- How it works (a genuine sequence) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  padding-top: 20px;
  border-top: 3px solid var(--grass);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--grass-light);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--cream);
}
.step p { color: rgba(241, 237, 225, 0.78); font-size: 0.95rem; }

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.area-towns {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 20px;
}
.area-towns li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  break-inside: avoid;
}
.area-map {
  aspect-ratio: 4/3.4;
  border-radius: 4px;
  background: var(--pine);
  position: relative;
  overflow: hidden;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--grass);
  padding: 26px;
  border-radius: 3px;
}
.testimonial p {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--pine-dark);
  font-size: 0.92rem;
}
.testimonial-loc {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.stars { color: var(--gold); text-shadow: 0 1px 0 rgba(0,0,0,0.15); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }

/* ---------- Follow us ---------- */
.follow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.follow-photo {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.follow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.follow-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(14,33,28,0.82), transparent);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.social-card {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.social-card:hover { border-color: var(--grass); transform: translateY(-2px); }
.social-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.social-card strong { display: block; font-size: 1.05rem; color: var(--pine-dark); }
.social-card span { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--clay);
  color: var(--white);
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 52ch;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-outline { color: var(--white); }
.cta-band .btn-pine { background: var(--pine-dark); color: var(--cream); }
.cta-band .btn-pine:hover { background: var(--pine); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-dark);
  color: rgba(241, 237, 225, 0.78);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-grid h4 {
  color: var(--cream);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-brand .brand-text { font-size: 1.1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(241, 237, 225, 0.78); font-size: 0.94rem; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(241, 237, 225, 0.55);
}

/* ---------- Menu (fan favorites) ---------- */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.menu-photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--charcoal);
}
.menu-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.menu-list .dish { font-weight: 700; color: var(--charcoal-dark); font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.01em; }
.menu-list .desc { font-size: 0.88rem; color: var(--ink-soft); margin-top: 2px; }
.menu-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--orange);
  padding-left: 14px;
}

/* ---------- Press / featured strip ---------- */
.press-strip {
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  text-align: center;
}
.press-strip span {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 248, 236, 0.72);
  letter-spacing: 0.02em;
}
.press-strip strong { color: var(--gold-light); }

/* ---------- Contact split (two booking lines) ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  padding: 24px;
}
.contact-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}
.contact-card a.contact-line {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
  margin-bottom: 4px;
}
.contact-card a.contact-email {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: underline;
}

/* ---------- Hibachi spotlight (the "fun and wild" moment) ---------- */
.hibachi-spotlight {
  background: radial-gradient(120% 140% at 15% 20%, #3A2115 0%, var(--charcoal-dark) 55%), var(--charcoal-dark);
  color: var(--cream);
  padding: 90px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.hibachi-spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hibachi-spotlight h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.96;
}
.hibachi-side {
  display: grid;
  gap: 22px;
}
.hibachi-photo {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(239, 199, 67, 0.35);
  box-shadow: 0 8px 30px rgba(217, 114, 47, 0.35);
}
.hibachi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flame-stats {
  display: grid;
  gap: 18px;
}
.flame-stat {
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid rgba(239, 199, 67, 0.35);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 18px 20px;
}
.flame-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1.1;
}
.flame-stat span { font-size: 0.88rem; color: rgba(255,248,236,0.75); }
.spotlight-flame {
  width: 44px;
  height: 58px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 10px rgba(217, 114, 47, 0.55));
}

/* ---------- Sticky mobile booking bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--charcoal-dark);
  border-top: 3px solid var(--orange);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.mobile-cta-bar .call { background: transparent; border: 1.5px solid var(--cream); color: var(--cream); }
.mobile-cta-bar .book { background: var(--orange); color: var(--white); }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; }
  .about-grid, .area-grid, .menu-layout, .contact-split, .hibachi-spotlight-grid, .follow-grid { grid-template-columns: 1fr; }
  .about-art, .menu-photo { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; } /* room for the sticky mobile CTA bar */
  .mobile-cta-bar { display: flex; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .service-row {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc"
      "tag  tag";
  }
  .service-icon { grid-area: icon; width: 40px; height: 40px; }
  .service-row h3 { grid-area: title; }
  .service-row p { grid-area: desc; }
  .service-tag { grid-area: tag; justify-self: start; margin-top: 10px; }
  .steps { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--pine-dark);
  border-top: 1px solid var(--line-on-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 24px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid var(--line-on-dark);
}
