:root {
  --orange: #f4602a;
  --maroon: #7a1414;
  --cream: #f4efe6;
  --dark: #111111;
}
* { box-sizing: border-box; }
body { margin:0; font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; color:#222; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* Header */
header.site-header { background:var(--dark); position:sticky; top:0; z-index:100; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 20px; max-width:1300px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:12px; }
.logo img { height:48px; }
.logo span { color:#fff; font-weight:700; font-size:18px; letter-spacing:.5px; }
nav.main-nav ul { list-style:none; display:flex; gap:30px; margin:0; padding:0; }
nav.main-nav a { color:#fff; font-size:13px; font-weight:600; letter-spacing:.5px; }
nav.main-nav a.reserve-btn { background:var(--orange); padding:9px 18px; border-radius:20px; }

/* Hero */
.hero { position:relative; color:#fff; background-color:#1a1a1a; background-size:cover; background-position:center; min-height:420px; display:flex; align-items:center; }
.hero::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%); }
.hero .hero-title { position:relative; z-index:1; font-size:44px; line-height:1.15; font-weight:800; padding:0 60px; text-shadow:0 2px 10px rgba(0,0,0,.4); }
.hero-strip { position:absolute; bottom:0; left:0; right:0; height:8px; background:var(--orange); z-index:2; }

/* Reserve bar overlay on homepage hero */
.reserve-bar { background:#fff; display:flex; align-items:center; gap:16px; padding:16px 22px; border-radius:10px; box-shadow:0 10px 30px rgba(0,0,0,.18); max-width:900px; margin:-36px auto 0; position:relative; z-index:5; }
.reserve-bar select { flex:1; padding:12px; border:1px solid #ddd; border-radius:6px; font-size:14px; }
.btn-orange { background:var(--orange); color:#fff; border:none; padding:12px 26px; border-radius:24px; font-weight:700; cursor:pointer; letter-spacing:.3px; box-shadow:0 4px 12px rgba(244,96,42,.35); transition:transform .15s ease; }
.btn-orange:hover { transform:translateY(-1px); }

/* Section titles */
.section { padding:70px 0; }
.section-title { text-align:center; color:var(--orange); font-weight:800; font-size:28px; margin-bottom:36px; letter-spacing:.3px; }
.section.cream { background:var(--cream); }
.section.dark { background:var(--dark); color:#fff; }
.section.maroon { background:var(--maroon); color:#fff; }

/* Grids */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:40px; }
.circle-img { border-radius:50%; overflow:hidden; aspect-ratio:1/1; background:#eee; }

.outlet-card { position:relative; border-radius:10px; overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,.08); background:#f0f0f0; transition:transform .2s ease; }
.outlet-card:hover { transform:translateY(-3px); }
.outlet-card img { height:220px; object-fit:cover; width:100%; background:#e5e0d8; }
.outlet-card .label { background:var(--orange); color:#fff; text-align:center; padding:12px; font-weight:700; letter-spacing:.4px; }

/* Forms */
.form-card { background:#fff; padding:20px; border-radius:8px; }
.form-card input, .form-card textarea, .form-card select {
  width:100%; padding:11px; border:1px solid #ddd; border-radius:4px; margin-bottom:14px; font-size:14px;
}
.form-card button { background:var(--orange); color:#fff; border:none; padding:12px 24px; border-radius:20px; cursor:pointer; font-weight:700; }

/* Modal */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:999; align-items:center; justify-content:center; }
.modal-overlay.active { display:flex; }
.modal-box { background:#fff; border-radius:14px; padding:32px; width:440px; max-width:92vw; max-height:90vh; overflow-y:auto; position:relative; box-shadow:0 20px 60px rgba(0,0,0,.3); }
.modal-close { position:absolute; top:14px; right:18px; cursor:pointer; font-size:20px; border:none; background:none; color:#888; }
.date-strip { display:flex; gap:8px; overflow-x:auto; margin-bottom:16px; padding-bottom:4px; }
.date-strip .day { border:1px solid #ddd; border-radius:8px; padding:8px 12px; text-align:center; font-size:12px; cursor:pointer; min-width:56px; flex-shrink:0; transition:all .15s ease; }
.date-strip .day.active { border-color:var(--orange); color:var(--orange); background:#fff3ee; }
.pax-counter { display:flex; align-items:center; gap:10px; }
.pax-counter button { width:30px; height:30px; border-radius:50%; border:1px solid #ddd; background:#f5f5f5; cursor:pointer; font-size:16px; line-height:1; }
.pax-counter input { width:44px !important; text-align:center; margin-bottom:0 !important; padding:6px !important; }

/* Footer */
footer.site-footer { background:var(--dark); color:#ccc; padding:40px 0 20px; font-size:13px; }
footer.site-footer h4 { color:#fff; margin-bottom:10px; }
footer.site-footer a { color:#ccc; display:block; margin-bottom:6px; }
.social-icons { display:flex; gap:12px; margin-top:14px; }
.social-icons img { height:22px; }

@media (max-width: 900px) {
  nav.main-nav ul { display:none; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
}

/* ===== What To Expect tabs ===== */
.wte-tabs { display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid #eee; margin-bottom:24px; flex-wrap:wrap; gap:10px; }
.wte-tab { cursor:pointer; padding-bottom:12px; font-weight:700; font-size:13px; letter-spacing:.5px; color:#333; border-bottom:2px solid transparent; }
.wte-tab.active { color:var(--orange); border-bottom-color:var(--orange); }
.wte-left { margin-right:auto; }
.wte-right { margin-left:auto; }

/* Lightbox */
.lightbox-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.85); z-index:1000; align-items:center; justify-content:center; cursor:zoom-out; padding:20px; }
.lightbox-overlay.active { display:flex; }
.lightbox-overlay img { max-width:90vw; max-height:90vh; border-radius:8px; }

/* Icon feature row (About section) */
.icon-feature-row { text-align:center; }
.icon-feature { display:flex; flex-direction:column; align-items:center; gap:10px; font-weight:600; font-size:14px; }

/* Celebrate list */
.celebrate-list { list-style:none; padding:0; margin:20px 0; }
.celebrate-list li { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid #333; font-weight:700; letter-spacing:.4px; }
.celebrate-list li svg { flex-shrink:0; color:var(--orange); }

/* Team cards */
.team-card { text-align:center; background:#fff; border-radius:10px; padding:0 0 20px; box-shadow:0 4px 16px rgba(0,0,0,.06); overflow:hidden; }
.team-photo { width:100%; aspect-ratio:1/1; overflow:hidden; background:#eee; }
.team-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.team-card h4 { margin:16px 0 4px; }
.team-card p { margin:0 0 12px; color:#777; font-size:13px; }
.team-social { display:flex; justify-content:center; gap:10px; }
.team-social a { color:var(--orange); display:flex; }

/* Barbeque Stories - portrait, single row */
.stories-row { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.stories-row img { width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:8px; cursor:pointer; }

/* Events & Awards - hover overlay */
.events-grid { gap:24px; }
.event-card { position:relative; border-radius:10px; overflow:hidden; height:260px; }
.event-card img { width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.event-card:hover img { transform:scale(1.06); }
.event-overlay { position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%); display:flex; flex-direction:column; justify-content:flex-end; padding:18px; opacity:0; transition:opacity .25s ease; }
.event-card:hover .event-overlay { opacity:1; }
.event-overlay h4 { margin:0 0 6px; color:#fff; }
.event-overlay p { margin:0; font-size:13px; color:#eee; }

/* Franchise CTA banner */
.franchise-cta { position:relative; background-image:url('/assets/images/franchise-handshake.jpg'); background-size:cover; background-position:center; min-height:320px; display:flex; align-items:center; justify-content:center; }
.franchise-cta-overlay { position:absolute; inset:0; background:rgba(0,0,0,.6); }
.franchise-cta-content { position:relative; z-index:1; text-align:center; color:#fff; }
.franchise-cta-content h2 { font-size:32px; margin-bottom:20px; }

/* ===== Mobile responsive ===== */
@media (max-width: 900px) {
  nav.main-nav ul { display:none; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .grid-2 { grid-template-columns:1fr; gap:20px; }
  .stories-row { grid-template-columns:repeat(3,1fr); }
  .hero .hero-title { font-size:28px; padding:0 24px; }
  .reserve-bar { flex-wrap:wrap; margin:-24px 16px 0; }
  .wte-tabs { justify-content:flex-start; }
  .wte-left, .wte-right { margin:0; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns:1fr 1fr; }
  .stories-row { grid-template-columns:repeat(2,1fr); }
  .section { padding:44px 0; }
  .modal-box { padding:22px; }
}

/* ===== Reserve modal layout polish ===== */
.modal-box form label { margin-bottom:6px; }
.modal-box .form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.modal-box .pax-kids-row { display:flex; justify-content:space-between; gap:20px; margin-bottom:16px; }
