/* ========================================
   360BOOTHY — MAIN STYLESHEET
   Premium Event Entertainment Design System
   ======================================== */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --white: #ffffff;
  --off-white: #FAFAF8;
  --cream: #F5F3EF;
  --black: #1A1A1A;
  --dark: #2D2F38;
  --gold: #CFA202;
  --gold-light: #E8D06A;
  --gold-bg: rgba(207,162,2,0.08);
  --gray-100: #F8F8F6;
  --gray-200: #EDEDEB;
  --gray-300: #D4D4D0;
  --gray-400: #A8A8A4;
  --gray-500: #737370;
  --gray-600: #52524F;
  --gray-800: #2D2D2B;
  --font-display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Anton', Impact, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 0px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── SHARED COMPONENTS ─────────────────────────────────── */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--gray-300);
  transition: all 0.3s var(--ease);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: gap 0.3s var(--ease);
}
.btn-text-arrow:hover { gap: 14px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-header-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--black);
  line-height: 1.15;
}
.section-header-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 420px;
  line-height: 1.7;
}
.section-header-center .section-header-desc { max-width: 600px; }

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  font-size: 13px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.top-bar a { color: var(--dark); font-weight: 500; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.top-bar-right svg { width: 14px; height: 14px; }
@media (max-width: 768px) { .top-bar { padding: 8px 20px; font-size: 12px; } }

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo img { height: 72px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a,
.nav-dropdown > .nav-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-links > a:hover,
.nav-dropdown:hover > .nav-trigger { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-trigger { display: flex; align-items: center; gap: 4px; }
.nav-trigger svg { width: 10px; height: 10px; transition: transform 0.3s; }
.nav-dropdown:hover .nav-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  min-width: 280px;
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--gray-600);
  transition: all 0.2s;
}
.dropdown-menu a:hover { color: var(--gold); background: var(--gold-bg); padding-left: 30px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--dark); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-inner { padding: 20px; flex: 1; }
.mobile-nav-inner > a.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
}
.mobile-nav-group { border-bottom: 1px solid var(--gray-200); }
.mobile-nav-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.mobile-nav-trigger svg { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-nav-group.open .mobile-nav-trigger svg { transform: rotate(180deg); }
.mobile-nav-sub { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.mobile-nav-group.open .mobile-nav-sub { max-height: 600px; }
.mobile-nav-sub a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 15px;
  color: var(--gray-600);
  text-decoration: none;
}
.mobile-nav-sub a:hover { color: var(--gold); }
.mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 16px;
  width: 100%;
  margin: 20px 0 16px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav-contact { font-size: 14px; color: var(--gray-500); margin-top: 16px; }
.mobile-nav-contact a { display: flex; align-items: center; gap: 8px; color: var(--dark); margin-top: 8px; text-decoration: none; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { padding: 10px 20px; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 85vh;
}
.hero-text {
  padding: 80px 60px 80px 0;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-bg);
  border: 1px solid rgba(207,162,2,0.2);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-text h1 .gold { color: var(--gold); }
.hero-text .subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 12px;
}
.hero-text .subtitle strong { color: var(--dark); font-weight: 600; }
.hero-text .subtitle-sm {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.hero-text .subtitle-sm strong { color: var(--dark); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  height: 85vh;
  overflow: hidden;
  animation: fadeIn 1s 0.2s var(--ease-out) both;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
}
.hero-image-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
}
.hero-image-tag span {
  font-size: 13px;
  color: var(--gray-500);
}

@media (max-width: 992px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 0 40px; text-align: center; }
  .hero-text .subtitle { margin: 0 auto 12px; }
  .hero-text .subtitle-sm { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-image { height: 50vh; }
  .hero-image-tag { bottom: 16px; left: 16px; padding: 12px 16px; }
}

/* ========================================
   CLIENT LOGOS
   ======================================== */
.clients-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.clients-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.clients-strip span {
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.clients-strip span:hover { color: var(--gold); }

@media (max-width: 768px) {
  .clients-inner { flex-direction: column; gap: 16px; }
  .clients-strip { gap: 32px; }
  .clients-strip span { font-size: 15px; }
}

/* ========================================
   WELCOME / ABOUT
   ======================================== */
.welcome-section {
  padding: 100px 0;
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-media { position: relative; }
.welcome-media-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.welcome-media-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
}
.welcome-stat-card {
  background: var(--black);
  color: var(--white);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.welcome-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
}
.welcome-stat-label {
  font-size: 13px;
  color: var(--gray-400);
  max-width: 180px;
  line-height: 1.5;
}
.welcome-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.welcome-content > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 28px;
}
.feature-list { margin-bottom: 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
}
.feature-list .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.feature-list li strong { color: var(--dark); }

@media (max-width: 992px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .welcome-media-accent { position: relative; bottom: 0; right: 0; margin-top: -40px; display: inline-block; }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee-section {
  padding: 28px 0;
  background: var(--black);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-accent);
  font-size: clamp(20px, 3vw, 36px);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 8px;
}
.marquee-dot {
  color: var(--gold);
  font-size: 24px;
  padding: 0 16px;
}

/* ========================================
   SERVICES BENTO GRID
   ======================================== */
.services-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 16px;
  margin-bottom: 64px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.bento-card:hover img { transform: scale(1.05); }
.bento-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.bento-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.bento-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
}
.bento-card-arrow {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s;
}
.bento-card:hover .bento-card-arrow { transform: translateX(4px); }

/* Bento layout: first card spans 2 cols */
.bento-card-1 { grid-column: 1 / 3; }
.bento-card-2 { grid-column: 3 / 4; }
.bento-card-3 { grid-column: 1 / 2; }
.bento-card-4 { grid-column: 2 / 3; }
.bento-card-5 { grid-column: 3 / 4; }

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
  }
  .bento-card-1,
  .bento-card-2,
  .bento-card-3,
  .bento-card-4,
  .bento-card-5 { grid-column: 1 / -1; }
}

/* Service category links */
.service-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.service-cat-title {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}
.service-cat-list li { margin-bottom: 4px; }
.service-cat-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.2s;
}
.service-cat-list a:hover { padding-left: 8px; border-color: var(--gold); }
.service-cat-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.service-cat-desc {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.service-cat-list a:hover .service-cat-name { color: var(--gold); }

@media (max-width: 992px) { .service-cats { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .service-cats { grid-template-columns: 1fr; gap: 32px; } }

/* ========================================
   HOW IT WORKS
   ======================================== */
.process-section {
  padding: 100px 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.process-step {
  position: relative;
  padding: 40px 32px;
  background: var(--gray-100);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-number {
  font-family: var(--font-accent);
  font-size: 48px;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.process-cta { text-align: center; }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-step { padding: 32px 24px; }
}

/* ========================================
   EVENT TYPES
   ======================================== */
.events-section {
  padding: 80px 0;
  background: var(--cream);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.events-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.events-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}
.events-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.event-tag {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s;
}
.event-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================================
   STATS
   ======================================== */
.stats-section {
  padding: 80px 0;
  background: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ========================================
   AREAS SERVED
   ======================================== */
.areas-section {
  padding: 100px 0;
  background: var(--white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.area-card {
  display: block;
  padding: 28px 32px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.area-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.area-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
}
.area-card-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}
.area-card:hover .area-card-arrow { transform: translateX(4px); }
.area-card-tagline {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.area-card-neighborhoods {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.area-card:hover .area-card-neighborhoods { color: var(--dark); }

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { padding: 24px 20px; }
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.review-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.review-author {
  font-size: 14px;
  color: var(--black);
}
.review-role {
  font-size: 13px;
  color: var(--gray-400);
}
.review-meta {
  text-align: center;
  font-size: 15px;
  color: var(--gray-500);
}
.review-meta strong { color: var(--gold); font-size: 18px; }

@media (max-width: 992px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--black);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 24px 0;
  gap: 16px;
}
.faq-question span { flex: 1; }
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 24px;
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-desc {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-locations {
  font-size: 13px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-brand img { height: 72px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-400);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-400); }
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ========================================
   SERVICE PAGE TEMPLATE
   ======================================== */
.page-hero {
  padding: 80px 0 60px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero .tagline {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; }
.page-content {
  padding: 64px 0;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--black);
  margin-bottom: 20px;
}
.page-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--black);
  margin-bottom: 16px;
}
.page-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 720px;
}

/* ========================================
   404 PAGE
   ======================================== */
.page-404 {
  padding: 120px 0;
  text-align: center;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 16px;
}
.page-404 p { color: var(--gray-500); margin-bottom: 32px; }

/* ========================================
   WORDPRESS ADMIN BAR FIX
   ======================================== */
#wpadminbar ~ .site-header { top: 32px; }
@media (max-width: 782px) { #wpadminbar ~ .site-header { top: 46px; } }

/* ========================================
   ELEMENTOR / THEME OVERRIDE BLOCK
   Forces our layout when Elementor Pro or
   parent theme CSS fights specificity.
   ======================================== */
body .hero-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; min-height: 85vh !important; align-items: center !important; gap: 0 !important; }
body .welcome-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 80px !important; align-items: center !important; }
body .bento-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; grid-template-rows: 320px 320px !important; gap: 16px !important; }
body .bento-card-1 { grid-column: 1 / 3 !important; }
body .bento-card-2 { grid-column: 3 / 4 !important; }
body .bento-card-3 { grid-column: 1 / 2 !important; }
body .bento-card-4 { grid-column: 2 / 3 !important; }
body .bento-card-5 { grid-column: 3 / 4 !important; }
body .process-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 48px !important; }
body .process-step { position: relative !important; padding: 40px 32px !important; background: var(--gray-100) !important; border-top: 3px solid var(--gold) !important; }
body .process-number { font-family: var(--font-accent) !important; font-size: 48px !important; color: var(--gray-200) !important; line-height: 1 !important; margin-bottom: 16px !important; }
body .events-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 60px !important; align-items: center !important; }
body .events-tags { display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
body .event-tag { display: inline-block !important; padding: 12px 24px !important; background: var(--white) !important; border: 1px solid var(--gray-200) !important; font-size: 14px !important; font-weight: 500 !important; color: var(--dark) !important; transition: all 0.3s !important; }
body .stats-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 32px !important; text-align: center !important; }
body .areas-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
body .reviews-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; }
body .service-cats { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 40px !important; }
body .section-header { display: flex !important; justify-content: space-between !important; align-items: flex-end !important; gap: 40px !important; margin-bottom: 56px !important; }
body .section-header-center { flex-direction: column !important; align-items: center !important; text-align: center !important; }
body .clients-inner { display: flex !important; align-items: center !important; gap: 40px !important; overflow: hidden !important; }
body .clients-strip { display: flex !important; align-items: center !important; gap: 48px !important; width: max-content !important; animation: marqueeScroll 30s linear infinite !important; }
body .hero-btns { display: flex !important; gap: 16px !important; flex-wrap: wrap !important; }
body .cta-btns { display: flex !important; gap: 16px !important; justify-content: center !important; flex-wrap: wrap !important; }
body .footer-grid { display: grid !important; grid-template-columns: 1.4fr repeat(5, 1fr) !important; gap: 32px !important; }

/* Mobile overrides */
@media (max-width: 992px) {
  body .hero-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  body .welcome-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  body .reviews-grid { grid-template-columns: 1fr !important; }
  body .events-grid { grid-template-columns: 1fr !important; }
  body .service-cats { grid-template-columns: 1fr 1fr !important; }
  body .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  body .bento-grid { grid-template-columns: 1fr !important; grid-template-rows: repeat(5, 280px) !important; }
  body .bento-card-1, body .bento-card-2, body .bento-card-3, body .bento-card-4, body .bento-card-5 { grid-column: 1 / -1 !important; }
  body .process-grid { grid-template-columns: 1fr !important; }
  body .stats-grid { grid-template-columns: 1fr 1fr !important; }
  body .areas-grid { grid-template-columns: 1fr !important; }
  body .service-cats { grid-template-columns: 1fr !important; }
  body .footer-grid { grid-template-columns: 1fr !important; }
  body .section-header { flex-direction: column !important; align-items: flex-start !important; }
  body .clients-inner { flex-direction: column !important; gap: 16px !important; }
}

/* Force font families over theme defaults */
body .hero-text h1,
body .welcome-content h2,
body .section-header h2,
body .process-step h3,
body .events-content h2,
body .area-card h3,
body .review-card,
body .faq-question,
body .cta-section h2,
body .page-hero h1 { font-family: 'Marcellus', Georgia, serif !important; }

body .hero-text .subtitle,
body .welcome-content > p,
body .process-step p,
body .events-content p,
body .feature-list li,
body .faq-answer p,
body .cta-desc { font-family: 'Poppins', sans-serif !important; }

body .eyebrow,
body .service-cat-title,
body .process-number,
body .marquee-item,
body .footer-col h4,
body .clients-strip span,
body .stat-number { font-family: 'Anton', Impact, sans-serif !important; }

/* Force hide mobile nav and dropdowns - Elementor/parent theme override */
body .mobile-nav { display: none !important; position: fixed !important; inset: 0 !important; background: #fff !important; z-index: 9999 !important; flex-direction: column !important; overflow-y: auto !important; }
body .mobile-nav.open { display: flex !important; }
body .dropdown-menu { display: none !important; position: absolute !important; top: 100% !important; left: 0 !important; min-width: 240px !important; background: #fff !important; box-shadow: 0 8px 32px rgba(0,0,0,.1) !important; padding: 12px 0 !important; z-index: 100 !important; }
body .nav-dropdown:hover .dropdown-menu,
body .nav-dropdown.open .dropdown-menu { display: block !important; }
body .mobile-nav-sub { max-height: 0 !important; overflow: hidden !important; }
body .mobile-nav-group.open .mobile-nav-sub { max-height: 600px !important; }
body .gold,
body .hero-text h1 .gold { color: #CFA202 !important; }

/* Fix bento card image display */
body .bento-card { position: relative !important; overflow: hidden !important; display: block !important; }
body .bento-card img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

/* Force area card layout */
body .area-card { display: block !important; text-align: center !important; }
body .area-card-header { display: flex !important; justify-content: space-between !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }

/* Review card layout */
body .review-card { display: flex !important; flex-direction: column !important; }

/* Feature list layout */
body .feature-list li { display: flex !important; align-items: flex-start !important; gap: 12px !important; }

/* ═══════════════════════════════════════════════
   TEMPLATE PAGES — Additional Styles
   ═══════════════════════════════════════════════ */

/* FAQ accordion */
body .boothy-faq-item summary::-webkit-details-marker { display: none; }
body .boothy-faq-item[open] summary span:last-child { transform: rotate(45deg); }

/* Events tags (reused on service pages) */
body .events-tag {
    display: inline-block !important;
    padding: 10px 24px !important;
    background: var(--off-white) !important;
    border: 1px solid var(--gray-200) !important;
    font-size: 14px !important;
    color: var(--gray-600) !important;
    transition: all 0.2s !important;
}
body .events-tag:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

/* Section header utilities */
body .section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
body .section-header-center { flex-direction: column; align-items: center; text-align: center; }

/* Category hub service list - mobile */
@media (max-width: 768px) {
    body .svc-two-col {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Category hub list items — stack on mobile */
    body [style*="grid-template-columns: 240px"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    body [style*="grid-template-columns: 240px"] > div:first-child {
        width: 100% !important;
        height: 200px !important;
    }
    
    /* Areas hub — city + hoods grid */
    body [style*="grid-template-columns: 280px"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    /* Venues grid */
    body [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Section header stacking */
    body .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
}
