/*
Theme Name: got FIREd Bar-B-Q
Theme URI: http://www.gotfiredbbq.com
Author: got FIREd Bar-B-Q
Author URI: http://www.gotfiredbbq.com
Description: Custom theme for got FIREd Bar-B-Q trailer. Dark smoke aesthetic with fire orange accents. Pages: Home, Menu, Events, About.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gotfired
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --fire-orange: #FF6B1A;
  --fire-yellow: #FFB347;
  --ember-red: #C0392B;
  --smoke: #1a1a1a;
  --ash: #2d2d2d;
  --cream: #F5E6D3;
  --bark: #3D2B1F;
  --white: #FFF8F0;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--smoke);
  color: var(--white);
  font-family: 'Libre Baskerville', Georgia, serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fire-orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fire-yellow); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--fire-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

em, .fire-text { color: var(--fire-orange); font-style: italic; }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--fire-orange);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.site-branding a {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--fire-orange);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-branding a span { color: var(--white); }

#primary-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

#primary-menu li a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a,
#primary-menu li.current_page_item a {
  color: var(--fire-orange);
  border-color: var(--fire-orange);
}

.header-phone {
  font-family: 'Oswald', sans-serif;
  color: var(--fire-yellow);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--fire-orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-fire {
  background: linear-gradient(135deg, var(--fire-orange), var(--ember-red));
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.4);
}

.btn-fire:hover { box-shadow: 0 6px 30px rgba(255, 107, 26, 0.6); color: var(--white) !important; }

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid var(--fire-orange);
}

.btn-outline:hover { background: rgba(255, 107, 26, 0.1); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =============================================
   PAGE HEADER (interior pages)
   ============================================= */
.page-header-block {
  padding: 9rem 2rem 4rem;
  background: linear-gradient(160deg, #1a0800 0%, var(--smoke) 100%);
  border-bottom: 3px solid var(--fire-orange);
  text-align: center;
}

.page-header-block h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-header-block p {
  font-size: 1.05rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 80%, #5c1a00 0%, #1a0800 50%, #000 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 100%, rgba(255,107,26,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(192,57,43,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255,179,71,0.15) 0%, transparent 40%);
  animation: flicker 4s ease-in-out infinite alternate;
}

@keyframes flicker {
  0%   { opacity: 0.8; }
  25%  { opacity: 1; }
  50%  { opacity: 0.85; }
  75%  { opacity: 0.95; }
  100% { opacity: 1; }
}

.flames {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.flame {
  width: 60px; height: 200px;
  background: linear-gradient(to top, var(--fire-yellow) 0%, var(--fire-orange) 40%, var(--ember-red) 70%, transparent 100%);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  opacity: 0;
  transform-origin: bottom center;
  animation: burn 2s ease-in-out infinite;
  filter: blur(6px);
}

.flame:nth-child(odd)  { animation-delay: 0.3s; height: 150px; width: 50px; }
.flame:nth-child(3n)   { animation-delay: 0.7s; height: 250px; width: 70px; }
.flame:nth-child(4n)   { animation-delay: 1.1s; }

@keyframes burn {
  0%   { opacity: 0; transform: scaleX(0.8) scaleY(0.5) translateY(20px); }
  30%  { opacity: 0.7; }
  70%  { opacity: 0.5; }
  100% { opacity: 0; transform: scaleX(1.1) scaleY(1) translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-logo-img {
  max-width: 600px;
  width: 90vw;
  margin: 1.5rem auto;
  filter: drop-shadow(0 0 40px rgba(255,107,26,0.6));
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--cream);
  margin: 1rem 0 2.5rem;
  letter-spacing: 0.04em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HOME — HIGHLIGHTS STRIP
   ============================================= */
.highlights-strip {
  background: var(--ash);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--fire-orange);
  border-bottom: 3px solid var(--fire-orange);
}

.highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.highlight-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--fire-orange);
  line-height: 1;
}

.highlight-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.4rem;
}

/* =============================================
   HOME — FOOD GALLERY
   ============================================= */
.food-section {
  padding: 5rem 2rem;
  background: var(--smoke);
}

.food-section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
}

.food-card { position: relative; overflow: hidden; background: var(--bark); }
.food-card:first-child { grid-column: span 2; grid-row: span 2; }
.food-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.food-card:hover img { transform: scale(1.06); }

.food-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem 1rem 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--fire-yellow);
  pointer-events: none;
}

/* =============================================
   HOME — ABOUT TEASER
   ============================================= */
.about-teaser {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--bark) 0%, #1f0e06 100%);
  border-left: 5px solid var(--fire-orange);
}

.about-teaser-inner { max-width: 900px; margin: 0 auto; }
.about-teaser h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-teaser p { font-size: 1.1rem; line-height: 1.9; color: var(--cream); margin-bottom: 1.5rem; }

/* =============================================
   CONTACT STRIP
   ============================================= */
.contact-strip {
  background: var(--ember-red);
  padding: 3rem 2rem;
  text-align: center;
}

.contact-strip h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; }

.contact-strip .phone {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-strip .website {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-wrapper { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 5rem; }

.menu-note {
  background: var(--bark);
  border-left: 4px solid var(--fire-yellow);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--fire-yellow);
  font-style: italic;
  margin-bottom: 3rem;
}

.menu-category { margin-bottom: 4rem; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ash);
}

.cat-icon { font-size: 2rem; line-height: 1; }
.cat-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--fire-orange); }

.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }

.menu-item {
  background: var(--ash);
  padding: 1.4rem 1.6rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.menu-item:hover { border-color: var(--fire-orange); background: #353535; }

.item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.4rem; }
.item-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.item-price { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--fire-yellow); white-space: nowrap; }
.item-desc { font-size: 0.88rem; color: rgba(245,230,211,0.7); line-height: 1.6; font-style: italic; }
.item-badge { display: inline-block; background: var(--ember-red); color: white; font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.5rem; margin-bottom: 0.5rem; }

.photo-divider { width: 100%; max-height: 350px; object-fit: cover; filter: brightness(0.6) saturate(1.2); }

.catering-cta { background: linear-gradient(135deg, var(--bark), #2a1008); text-align: center; padding: 4rem 2rem; border-top: 3px solid var(--fire-orange); }
.catering-cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.catering-cta p { color: var(--cream); max-width: 550px; margin: 0 auto 2rem; line-height: 1.8; }

/* =============================================
   EVENTS PAGE
   ============================================= */
.follow-banner { background: var(--bark); border-left: 4px solid var(--fire-yellow); text-align: center; padding: 1.5rem 2rem; }
.follow-banner p { color: var(--fire-yellow); font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.04em; }
.follow-banner a { color: var(--fire-orange); }

.events-wrapper { max-width: 900px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.events-header { margin-bottom: 2.5rem; }
.events-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); }

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  background: var(--ash);
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-left: 4px solid var(--fire-orange);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover { transform: translateX(4px); box-shadow: -4px 0 20px rgba(255,107,26,0.3); }

.event-date-block {
  background: var(--fire-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.5rem;
  text-align: center;
}

.event-month { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.event-day   { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.event-year  { font-family: 'Oswald', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.75); }

.event-info { padding: 1.4rem 1.8rem; }
.event-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.event-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.event-meta span { font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--fire-yellow); text-transform: uppercase; }
.event-desc { font-size: 0.92rem; color: rgba(245,230,211,0.75); line-height: 1.6; }

.no-events { background: #222; border: 2px dashed var(--ash); padding: 2rem; text-align: center; }
.no-events p { color: rgba(255,255,255,0.4); font-style: italic; }

.private-section { background: linear-gradient(135deg, var(--bark), #200e06); padding: 4rem 2rem; border-top: 3px solid var(--fire-orange); text-align: center; }
.private-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.private-section > p { color: var(--cream); max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; font-size: 1.05rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; max-width: 800px; margin: 0 auto 2.5rem; }
.service-item { background: rgba(255,255,255,0.05); border: 1px solid var(--ash); padding: 1.5rem 1rem; text-align: center; }
.service-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.service-name { font-family: 'Oswald', sans-serif; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fire-yellow); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero-section {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%), url('') center / cover no-repeat;
  padding: 7rem 2rem 4rem;
}

.story-section { max-width: 800px; margin: 0 auto; padding: 5rem 2rem; }

.story-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--fire-yellow);
  margin-bottom: 2rem;
  line-height: 1.5;
  border-left: 4px solid var(--fire-orange);
  padding-left: 1.5rem;
}

.story-section p { font-size: 1.05rem; line-height: 1.95; color: var(--cream); margin-bottom: 1.8rem; }
.story-section p strong { color: var(--fire-orange); }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 320px; gap: 4px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(1.1); transition: filter 0.3s; }
.photo-strip img:hover { filter: brightness(1) saturate(1.3); }

.values-section { background: var(--ash); padding: 5rem 2rem; border-top: 3px solid var(--fire-orange); border-bottom: 3px solid var(--fire-orange); }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 3rem; }
.values-header h2 { font-size: clamp(2rem, 4vw, 3rem); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--smoke); padding: 2rem 1.5rem; border-top: 3px solid var(--fire-orange); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--fire-yellow); margin-bottom: 0.6rem; }
.value-text { font-size: 0.92rem; color: rgba(245,230,211,0.75); line-height: 1.7; }

.contact-section { max-width: 800px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.contact-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.contact-item { background: var(--ash); padding: 1.8rem 1.2rem; }
.ci-label { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.ci-value { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--fire-yellow); }
.ci-value a { color: var(--fire-yellow); }
.ci-value a:hover { color: var(--fire-orange); }

.social-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.social-link { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fire-orange) !important; border: 1px solid var(--fire-orange); padding: 0.6rem 1.2rem; transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--fire-orange); color: var(--white) !important; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #0a0a0a;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 2px solid var(--ash);
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--fire-orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--white); }

.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; list-style: none; }
.footer-nav a { font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-nav a:hover { color: var(--fire-orange); }

.footer-copy { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); text-transform: uppercase; }

/* =============================================
   WORDPRESS SPECIFIC — editor, alignments
   ============================================= */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .food-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .food-card:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .header-phone { display: none; }

  #primary-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 2px solid var(--fire-orange);
  }

  #primary-menu.is-open { display: flex; }
  .menu-toggle { display: block; }

  .photo-strip { grid-template-columns: 1fr 1fr; height: 240px; }
  .photo-strip img:last-child { display: none; }

  .event-card { grid-template-columns: 80px 1fr; }
  .event-day { font-size: 2rem; }
}

@media (max-width: 520px) {
  .header-inner { padding: 0.8rem 1rem; }
  .food-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .food-card { height: 240px; }
  .food-card:first-child { grid-column: span 1; }
  .menu-items { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
}

/* =============================================
   CATERING PAGE
   ============================================= */

/* Hero */
.catering-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 80%, #5c1a00 0%, #1a0800 50%, #000 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.catering-hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 100%, rgba(255,107,26,0.3) 0%, transparent 45%),
    radial-gradient(circle at 85% 100%, rgba(192,57,43,0.2) 0%, transparent 45%);
  animation: flicker 4s ease-in-out infinite alternate;
}

.catering-hero-inner {
  position: relative; z-index: 2;
  max-width: 750px; margin: 0 auto;
}

.catering-hero-inner h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  margin: 0.5rem 0 1rem;
}

.catering-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.catering-hero-cta { margin-top: 0.5rem; }

/* Since strip */
.since-strip {
  background: var(--fire-orange);
  padding: 1.8rem 2rem;
}

.since-inner {
  max-width: 900px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.since-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 2.5rem;
}

.since-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--white); line-height: 1;
}

.since-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.2rem;
}

.since-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.3);
}

/* Cuisines section */
.cuisines-section {
  padding: 5rem 2rem;
  background: var(--smoke);
}

.cuisines-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cuisines-text h2 { margin-bottom: 1rem; }
.cuisines-text p { color: var(--cream); line-height: 1.85; margin-bottom: 1rem; font-size: 1.05rem; }

.cuisine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.cuisine-card {
  background: var(--ash);
  padding: 1.4rem;
  border-top: 3px solid var(--ash);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.cuisine-card:hover { border-color: var(--fire-orange); transform: translateY(-2px); }

.cuisine-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bark), #2a1008);
  border-top-color: var(--fire-orange);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cuisine-featured .cuisine-icon { font-size: 2rem; flex-shrink: 0; margin-top: 0.2rem; }

.cuisine-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.cuisine-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--fire-yellow); margin-bottom: 0.4rem; }
.cuisine-card p { font-size: 0.88rem; color: rgba(245,230,211,0.7); line-height: 1.6; }
.cuisine-badge { display: inline-block; background: var(--fire-orange); color: white; font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; margin-top: 0.5rem; }

/* Photo strip */
.catering-photo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 260px;
  gap: 4px;
}

.cp-img {
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(1.1);
  transition: filter 0.3s;
}

.cp-img:hover { filter: brightness(0.95) saturate(1.3); }

/* Offerings */
.offerings-section {
  padding: 5rem 2rem;
  background: var(--ash);
}

.offerings-inner { max-width: 1100px; margin: 0 auto; }

.offerings-header { text-align: center; margin-bottom: 3rem; }
.offerings-header h2 { margin-bottom: 0.75rem; }
.offerings-sub { color: var(--cream); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.offering-block {
  background: var(--smoke);
  padding: 1.8rem;
  border-top: 3px solid var(--fire-orange);
}

.offering-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--fire-yellow);
  margin-bottom: 1rem;
}

.offering-block ul { list-style: none; padding: 0; }
.offering-block li {
  font-size: 0.9rem; color: rgba(245,230,211,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}
.offering-block li:last-child { border-bottom: none; }
.offering-block li::before { content: '— '; color: var(--fire-orange); }

/* Service styles */
.service-styles-section {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, #1a0800 0%, var(--smoke) 100%);
}

.service-styles-inner { max-width: 1100px; margin: 0 auto; }
.service-styles-header { text-align: center; margin-bottom: 3rem; }
.service-styles-header h2 { margin-bottom: 0.5rem; }

.service-style-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-style-card {
  background: var(--ash);
  padding: 2rem 1.8rem;
  border-top: 3px solid var(--ash);
  position: relative;
  transition: border-color 0.2s;
}

.service-style-card:hover { border-top-color: var(--fire-orange); }

.ssc-featured {
  background: linear-gradient(160deg, var(--bark), #2a1008);
  border-top-color: var(--fire-orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ssc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,107,26,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ssc-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.service-style-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-style-card > p {
  font-size: 0.92rem; color: rgba(245,230,211,0.75);
  line-height: 1.7; margin-bottom: 1rem;
}

.ssc-bullets { list-style: none; padding: 0; margin-top: 0.5rem; }
.ssc-bullets li { font-size: 0.85rem; color: var(--cream); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ssc-bullets li:last-child { border-bottom: none; }
.ssc-bullets li::before { content: '✓ '; color: var(--fire-orange); font-weight: 700; }

.ssc-popular {
  display: inline-block;
  background: var(--fire-orange);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  position: absolute; top: -1px; right: 1.5rem;
}

/* Event types */
.event-types-section {
  padding: 4rem 2rem;
  background: var(--ash);
  text-align: center;
  border-top: 3px solid var(--fire-orange);
}

.event-types-inner { max-width: 900px; margin: 0 auto; }
.event-types-inner h2 { margin-bottom: 2rem; }

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.event-type-item {
  background: var(--smoke);
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.event-type-item:hover { border-color: var(--fire-orange); }

.eti-icon { font-size: 1.8rem; }
.eti-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream);
}

/* Quote Form */
.quote-section {
  padding: 5rem 2rem 6rem;
  background: var(--smoke);
}

.quote-inner { max-width: 820px; margin: 0 auto; }

.quote-header { text-align: center; margin-bottom: 3rem; }
.quote-header h2 { margin-bottom: 0.75rem; }
.quote-header p { color: var(--cream); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin: 0 auto; }

.form-success {
  background: rgba(39,174,96,0.12);
  border: 1px solid #27ae60;
  color: #4cca7e;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-error {
  background: rgba(192,57,43,0.12);
  border: 1px solid var(--ember-red);
  color: #e74c3c;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.form-error a { color: var(--fire-yellow); }

.quote-form { display: flex; flex-direction: column; gap: 0; }

.form-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fire-orange);
  padding: 1.5rem 0 0.75rem;
  border-top: 1px solid var(--ash);
  margin-top: 1rem;
}

.form-section-label:first-of-type { border-top: none; margin-top: 0; }

.form-row { margin-bottom: 1rem; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream);
}

.form-group label small { font-size: 0.75rem; color: rgba(245,230,211,0.5); text-transform: none; letter-spacing: 0; }

.req { color: var(--fire-orange); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  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 fill='%23FF6B1A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 2px rgba(255,107,26,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group select option { background: var(--ash); }

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.cb-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem;
  background: var(--ash);
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.9rem !important;
  font-family: 'Libre Baskerville', serif !important;
  color: var(--cream) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border: 1px solid transparent;
  transition: border-color 0.15s;
}

.cb-label:hover { border-color: var(--fire-orange); }

.cb-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--fire-orange);
  flex-shrink: 0;
}

.form-submit-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-submit {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(245,230,211,0.5);
  font-style: italic;
  line-height: 1.5;
}

/* Responsive — catering */
@media (max-width: 900px) {
  .cuisines-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-style-cards { grid-template-columns: 1fr; }
  .ssc-featured { transform: none; }
  .catering-photo-strip { height: 180px; }
}

@media (max-width: 600px) {
  .since-divider { display: none; }
  .since-inner { gap: 1.5rem; }
  .cuisine-cards { grid-template-columns: 1fr; }
  .cuisine-featured { grid-column: span 1; flex-direction: column; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit { text-align: center; }
  .catering-photo-strip { grid-template-columns: 1fr 1fr; }
  .cp-img:last-child { display: none; }
}
