/* ============================================================
   STICK'N'BITE — Global Stylesheet
   Brand: Brazilian BBQ Catering | San Diego, CA
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --green-dark:   #6E2320;
  --green:        #832A25;
  --green-light:  #C0402E;
  --gold:         #C0402E;
  --gold-light:   #D9583F;
  --accent-soft:  #ED9C82;
  --slate:        #3B4E5C;
  --cream:        #FDF8F0;
  --cream-dark:   #F2EAD8;
  --charcoal:     #111827;
  --gray-dark:    #374151;
  --gray:         #6B7280;
  --gray-light:   #F3F4F6;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.16);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.25s ease;
  --max-w:        1160px;
  --nav-h:        72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-dark); }

.display-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === LAYOUT === */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark  { background: var(--green-dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-charcoal { background: var(--charcoal); color: var(--white); }

/* Legible accents on dark maroon backgrounds */
.section-dark .display-tag,
.page-hero .display-tag,
.cta-section .display-tag { color: var(--accent-soft); }
.section-dark .divider { background: var(--accent-soft); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header .display-tag { margin-bottom: 12px; }
.section-header .divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,64,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-bottom: 1px solid var(--cream-dark);
}
.nav.nav-solid {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 46px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green-dark); }
.mobile-nav .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,71,49,0.88) 0%,
    rgba(17,24,39,0.72) 50%,
    rgba(26,71,49,0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 24px 80px;
}
.hero-content .display-tag { margin-bottom: 16px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--green-dark);
  text-align: center;
  color: var(--white);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* === FEATURES STRIP === */
.features-strip {
  background: var(--green-dark);
  padding: 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.feature-item p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* === WHY SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-card p  { font-size: 0.9rem; }

/* === MENU PREVIEW === */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.menu-card-body { padding: 20px; }
.menu-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.menu-card-body p  { font-size: 0.875rem; }
.menu-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(192,64,46,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* === FULL MENU PAGE === */
.menu-category { margin-bottom: 72px; }
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}
.menu-category-icon { font-size: 1.8rem; }
.menu-category-header h2 { font-size: 1.8rem; }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.menu-item:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }
.menu-item h4 { margin-bottom: 6px; color: var(--green-dark); }
.menu-item p  { font-size: 0.875rem; }
.menu-item-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFF6F3 0%, #FDECE6 100%);
}
.menu-featured-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(192,64,46,0.12);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

/* === INLINE SVG ICONS === */
svg.ico  { display:inline-block; vertical-align:middle; fill:none; }
svg.ico-b{ display:inline-block; vertical-align:middle; fill:currentColor; }
.menu-category-icon { color: var(--gold); display:inline-flex; }
.menu-category-icon svg.ico { width:26px; height:26px; }
.feature-icon    { color: var(--accent-soft); }
.feature-icon svg.ico { width:32px; height:32px; }
.why-card-icon   { color: var(--gold); }
.why-card-icon svg.ico { width:26px; height:26px; }
.about-pillar-icon { color: var(--gold); }
.about-pillar-icon svg.ico { width:18px; height:18px; }
.contact-detail-icon { color: var(--gold); }
.contact-detail-icon svg.ico { width:22px; height:22px; }
.testimonial-avatar { color: var(--green-dark); }
.testimonial-avatar svg.ico { width:22px; height:22px; }
.hero-badge-icon { color:#fff; }
.hero-badge-icon svg.ico { width:18px; height:18px; }
.display-tag svg.ico { width:15px; height:15px; margin-right:7px; vertical-align:-2px; }
.social-link svg.ico-b { width:17px; height:17px; }
.ig-handle svg.ico-b { width:18px; height:18px; vertical-align:-3px; margin-right:6px; }

/* === PRICING / PACKAGES === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-per { color: var(--gray); font-size: 0.9rem; margin-bottom: 26px; }
.price-features {
  text-align: left;
  width: 100%;
  flex-grow: 1;
  margin-bottom: 26px;
}
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  color: var(--gray-dark);
  display: flex;
  gap: 10px;
  align-items: center;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; margin-top: 28px; color: var(--gray); font-size: 0.9rem; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  position: relative;
}
.testimonial-source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-event { font-size: 0.78rem; color: var(--gray); }

/* === EVENTS PAGE === */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.event-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-bg { transform: scale(1.05); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.92) 0%, rgba(17,24,39,0.2) 60%);
}
.event-card-body {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: var(--white);
  width: 100%;
}
.event-card-body .display-tag { margin-bottom: 8px; }
.event-card-body h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.event-card-body p  { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 20px; }
.event-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.event-feature-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img { width: 100%; height: 520px; object-fit: cover; }
.about-story-content .display-tag { margin-bottom: 12px; }
.about-story-content h2 { margin-bottom: 20px; }
.about-story-content p  { margin-bottom: 18px; }
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
}
.about-pillar-icon {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.owned-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--cream);
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.72); font-size: 0.875rem; }

/* === CONTACT / QUOTE FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-detail-text span  { font-size: 0.9rem; color: var(--gray); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(45,122,79,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; }
.form-success p  { color: var(--green-light); }
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.form-checkbox label { font-size: 0.85rem; color: var(--gray-dark); font-weight: 400; cursor: pointer; }

/* === CTA SECTION === */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #4A1512 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .btn-primary {
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--cream);
}
.cta-section .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover;
  opacity: 0.08;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 14px; display: block; }
.footer-logo-img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--charcoal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* === INSTAGRAM STRIP === */
.ig-strip {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.ig-strip .display-tag { margin-bottom: 8px; }
.ig-strip h2 { margin-bottom: 8px; }
.ig-strip p  { margin-bottom: 32px; }
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ig-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.3); }

/* === MOBILE STICKY CTA BAR === */
.mobile-cta-bar { display: none; }

/* Anchor targets clear the fixed nav when jumped to */
#faq, #quoteForm { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* === ADD-ONS === */
.addons {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 20px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
}
.addons-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.addons-body .display-tag { display: block; margin-bottom: 8px; }
.addons-body h3 { color: var(--green-dark); margin-bottom: 6px; }
.addons-body > p  { font-size: 0.925rem; margin-bottom: 18px; }
.addons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
}
.addons-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.925rem;
  color: var(--gray-dark);
  display: flex;
  gap: 10px;
  align-items: center;
}
.addons-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* === STICKY MOBILE CTA BAR === */
.mobile-cta-bar { display: none; }

/* === PACKAGE INCLUSIONS === */
.package-includes {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
}
.package-includes-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.package-includes-col p { font-size: 0.925rem; margin: 0; }

/* === PROOF STRIP === */
.proof-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  text-align: center;
}
.proof-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.proof-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.proof-rating strong { color: var(--green-dark); font-weight: 700; }
.proof-sep { color: var(--gray); }
.proof-quote {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-dark);
}
.proof-quote cite { font-style: normal; font-weight: 600; color: var(--green-dark); }

/* === GALLERY === */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.gallery-filter {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--gray-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-label,
.gallery-item:focus-visible .gallery-item-label { opacity: 1; }
.gallery-item.is-hidden { display: none; }
.gallery-empty { text-align: center; color: var(--gray); padding: 40px 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17,24,39,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 16px;
  font-weight: 500;
}
.lightbox-count { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 4px; }
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-btn:hover { background: rgba(255,255,255,0.28); }
.lightbox-close { top: 20px; right: 20px; font-size: 1.7rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* === UTILS === */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-green  { color: var(--green-dark) !important; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .why-grid           { grid-template-columns: 1fr; }
  .menu-preview-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .stats-row          { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-story        { grid-template-columns: 1fr; }
  .about-story-img    { order: -1; }
  .about-story-img img { height: 360px; }
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:last-child { border-bottom: none; }
  .menu-preview-grid  { grid-template-columns: 1fr; }
  .menu-items-grid    { grid-template-columns: 1fr; }
  .package-includes   { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .addons             { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
  .addons-media img   { height: 240px; }
  .addons-list        { grid-template-columns: 1fr; }
  .events-grid        { grid-template-columns: 1fr; }
  .about-pillars      { grid-template-columns: 1fr; }
  .stats-row          { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .hero-badges        { gap: 16px; }
  .form-row           { grid-template-columns: 1fr; }
  .quote-form         { padding: 28px 20px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .why-card           { flex-direction: column; }

  /* Persistent quote + call actions, since .nav-cta is hidden on mobile */
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 998;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(253,248,240,0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--cream-dark);
    box-shadow: 0 -2px 14px rgba(0,0,0,0.10);
  }
  .mobile-cta-bar .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 8px;
    font-size: 0.9rem;
    gap: 6px;
  }
  .mobile-cta-bar svg.ico { width: 16px; height: 16px; }
  /* keep the footer clear of the fixed bar */
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .proof-rating { font-size: 0.85rem; gap: 7px; }
  .proof-quote  { font-size: 0.85rem; }
  .proof-sep    { display: none; }
  .gallery-grid    { column-gap: 10px; }
  .gallery-item    { margin-bottom: 10px; }
  .gallery-filters { gap: 8px; }
  .gallery-filter  { padding: 8px 16px; font-size: 0.8rem; }
  .lightbox-prev   { left: 8px; }
  .lightbox-next   { right: 8px; }
  .hero-btns  { flex-direction: column; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .stats-row  { grid-template-columns: 1fr; }
  .stat-item  { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:first-child { border-top: none; }
}
