/* ============================================================
   event-production.css
   Page-specific styles for html/services/event-production.html

   Rebuilt to precisely match the real product-design-strategies.css
   (hero, ghost text, sections, overview split, buttons, "what we
   do" grid, dual-split blocks, contact-band overrides) — copied
   directly from that file for full consistency. The only genuinely
   new component is .approach-grid (the 4-step "Our Approach"
   section), since the reference page doesn't have that content
   shape; it borrows the same visual language (Bebas Neue headings,
   --green accent, --card-bg cards).

   This page has NO FAQ section, so the .faq-* rules from the
   reference file are intentionally omitted.

   Does not redefine navbar, mobile menu, footer, or the marquee's
   base structure — those come from global.css. The marquee's
   background color IS overridden below (orange instead of the
   sitewide default green), which is a deliberate page-specific
   choice, not an oversight.
============================================================ */

/* ═══════════════════════════════════
   PAGE HERO
═══════════════════════════════════ */
.page-hero {
  padding-top: 50px;
  padding-bottom: 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'EVENTS';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 14vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

[data-theme="dark"] .page-hero::before {
  -webkit-text-stroke: 1.5px #2a2a3a;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.page-hero h1 em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent2);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 20px;
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg2);
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.sec-eyebrow span {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
}

.sec-heading em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent2);
}

.sec-sub {
  font-size: 0.97rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 12px;
}

.centered {
  text-align: center;
}

.centered .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ─── OVERVIEW SPLIT (also reused for "What Makes Us Different") ─── */
.overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 900px) {
  .overview-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.overview-img-wrap {
  position: relative;
}

.overview-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}

.img-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}

@media (max-width: 560px) {
  .img-badge {
    width: 80px;
    height: 80px;
    bottom: -16px;
    right: -10px;
  }
  .img-badge strong {
    font-size: 1.4rem;
  }
}

.overview-content p {
  font-size: 0.97rem;
  color: var(--text2);
  line-height: 1.78;
  margin-bottom: 20px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

[data-theme="dark"] .btn-primary {
  background: var(--green);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* ─── WHAT WE DO GRID ─── */
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

@media (max-width: 900px) {
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
}

.design-card {
  background: var(--card-bg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.design-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.design-card:hover::after {
  transform: scaleX(1);
}

.design-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(168, 232, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 20px;
}

.design-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.design-card p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
}

.design-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--border);
  transition: color 0.3s;
}

.design-card:hover .design-card-num {
  color: rgba(168, 232, 50, 0.15);
}

/* ─── OUR APPROACH — 4-step grid ───
   New component (the reference page has no equivalent content
   shape), styled to match the same visual language: Bebas Neue
   headings, --green accent, --card-bg cards, 4px radii. */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.approach-card {
  position: relative;
  background: var(--card-bg);
  padding: 34px 28px;
  overflow: hidden;
}

.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.approach-card:hover::after {
  transform: scaleX(1);
}

.approach-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: rgba(168, 232, 50, 0.3);
  line-height: 1;
  margin-bottom: 14px;
}

.approach-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.62;
}

/* ─── DUAL IMAGE + TEXT BLOCKS (Featured Events) ─── */
.dual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

@media (max-width: 860px) {
  .dual-split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .dual-split[style*="rtl"] {
    direction: ltr !important;
  }
}

.dual-split img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.dual-split-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(168, 232, 50, 0.12);
  border: 1px solid rgba(168, 232, 50, 0.3);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dual-split-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.dual-split-content h3 em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent2);
}

.dual-split-content p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.75;
}

/* ─── CONTACT BAND ───
   Colour overrides only — the band's own background comes from
   global.css (shared sitewide component), same as every other
   service page. */
.contact-band {
  padding: 20px;
  text-align: center;
}

.contact-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
}

.contact-band h2 em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent2);
}

.contact-band p {
  font-size: 1rem;
  color: rgba(10, 10, 15, 0.6);
  margin-bottom: 36px;
}

.contact-band .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-band .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ─── MARQUEE ─── (page-specific override: orange instead of the
   sitewide default green — deliberate choice for this page) */
.marquee-strip {
  background: var(--accent2);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MOBILE NAV RESPONSIVE ─── */
@media (max-width: 768px) {
  .page-hero {
    padding-top: 155px;
  }
}

@media (max-width: 700px) {
  .dual-split img {
    height: 220px;
  }
}
/* ══════════════════════════════════════════════════════════
   WHAT WE OFFER — icon + label only, 2 columns, no descriptions
   ══════════════════════════════════════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  padding: 26px 28px;
  transition: background 0.3s;
}

.offer-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 232, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
}

.offer-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.25;
}

@media (max-width: 700px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-item {
    padding: 20px 22px;
  }
}

/* ══════════════════════════════════════════════════════════
   CLOSING CTA — matches the homepage's dark CTA band: left-
   aligned copy, two white pill buttons on the right. Uses a
   CSS-only radial-glow dark background (no canvas particles/
   photo — this page doesn't have access to that script/asset,
   so this matches the layout and color language instead).
   ══════════════════════════════════════════════════════════ */
.ep-cta-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 8%;
  overflow: hidden;
  isolation: isolate;
}

.ep-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 30%, rgba(168, 232, 50, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 70%, rgba(245, 109, 67, 0.08) 0%, transparent 60%),
    #0a0a0f;
  z-index: -1;
}

.ep-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ep-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.ep-cta-eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.ep-cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}

.ep-cta-text h2 em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--accent2);
}

.ep-cta-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 480px;
}

.ep-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0a0f;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 860px) {
  .ep-cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .ep-cta-btns {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .ep-cta-section {
    padding: 64px 6%;
  }
  .ep-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-white {
    justify-content: center;
  }
}