/* ================================================================
   All Out Productions – main.css  v1.0.0
   Brand colours: navy #0b0f2b | blue #1e3cff | bright #4d6fff
================================================================ */

/* ── Reset & Tokens ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0b0f2b;
  --navy-mid:   #0d1435;
  --navy-dark:  #080c22;
  --navy-black: #060919;
  --blue:       #1e3cff;
  --bright:     #4d6fff;
  --ice:        #8aabff;
  --white:      #ffffff;
  --off-white:  #e8eeff;
  --muted:      rgba(255,255,255,0.6);
  --subtle:     rgba(255,255,255,0.08);
  --border:     rgba(255,255,255,0.07);
  --font:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --transition: 0.25s ease;
  --shadow-blue: 0 8px 32px rgba(30,60,255,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--blue); color: var(--white);
  padding: 0.5rem 1rem; border-radius: 4px;
  font-size: 0.85rem; font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
section { padding: 7rem 2rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  border: none; cursor: pointer;
  font-family: var(--font);
  letter-spacing: -0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(30,60,255,0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  outline: none;
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: -0.02em;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--ice); color: var(--ice);
  transform: translateY(-2px); outline: none;
}
.btn-full { width: 100%; text-align: center; }

/* ── Typography helpers ──────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bright); margin-bottom: 0.65rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 1.05; margin-bottom: 0.9rem;
}
.section-lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; line-height: 1.65;
  margin-bottom: 3rem;
}

/* ── Divider ─────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,60,255,0.3), transparent);
}

/* ════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(11,15,43,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.site-nav.scrolled { background: rgba(11,15,43,0.97); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; gap: 1.5rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo .custom-logo,
.nav-logo-img { height: 44px; width: auto; }
.nav-logo-text {
  font-size: 1.05rem; font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  margin-left: auto;
}
.nav-links li a {
  color: rgba(255,255,255,0.68); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--white); }

.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem !important;
  font-size: 0.875rem !important;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
  /* No horizontal padding — hero is always edge-to-edge */
  padding-left: 0; padding-right: 0;
  width: 100%; left: 0; right: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #0d1a5c 0%, var(--navy) 70%);
}

/* Spotlight beams */
.spotlight-wrap {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.spotlight {
  position: absolute; top: -2%;
}
.spotlight--left  { left: 25%; }
.spotlight--center{ left: 50%; }
.spotlight--right { left: 75%; }

.spotlight__head {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--ice) 40%, var(--blue) 80%);
  box-shadow: 0 0 20px 8px rgba(138,171,255,0.55), 0 0 60px 20px rgba(30,60,255,0.3);
  transform: translateX(-50%);
}
.spotlight__beam {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 220px solid transparent;
  border-right: 220px solid transparent;
  border-top: 95vh solid rgba(77,111,255,0.05);
  filter: blur(35px);
}
.spotlight--left   .spotlight__beam { animation: sweep 9s  ease-in-out infinite alternate; }
.spotlight--center .spotlight__beam { animation: sweep 7s  ease-in-out infinite alternate-reverse; }
.spotlight--right  .spotlight__beam { animation: sweep 11s ease-in-out infinite alternate; }
@keyframes sweep {
  0%   { transform: translateX(-50%) rotate(-20deg); opacity: 0.3; }
  50%  { opacity: 0.8; }
  100% { transform: translateX(-50%) rotate(20deg);  opacity: 0.3; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px; padding: 2rem;
}
.hero-logo {
  width: 180px; margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(30,60,255,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ice);
  margin-bottom: 1.1rem;
}
.hero-headline {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 55%, var(--bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.62);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════════ */
.about-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden; /* prevent any child from escaping */
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  width: 100%; min-width: 0;
}
.about-body {
  color: rgba(255,255,255,0.52); line-height: 1.72;
  font-size: 0.95rem; margin-top: 1rem;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.25rem;
}
.stat-card {
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-num {
  font-size: 2.3rem; font-weight: 900; letter-spacing: -0.045em;
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em;
}

.about-visual {
  display: flex; align-items: center; justify-content: center;
}
.about-glow {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,60,255,0.28) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.about-glow img {
  width: 200px;
  filter: drop-shadow(0 0 60px rgba(77,111,255,0.55));
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════════ */
.services-section { background: var(--navy-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: #111630; /* solid card surface — visible on all screens */
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: rgba(30,60,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,60,255,0.14);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(30,60,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem; overflow: hidden;
}
.service-icon--image img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.service-name {
  font-size: 1.05rem; font-weight: 700;
  margin-top: 0; margin-bottom: 0.45rem;
  line-height: 1.3;
}
.service-name a { text-decoration: none; color: inherit; transition: color var(--transition); }
.service-name a:hover { color: var(--ice); }
.service-desc,
.service-desc p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.62;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════════════════ */
.process-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 27px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,60,255,0.4), transparent);
  pointer-events: none;
}
.process-step { text-align: center; }
.step-dot {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--bright));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 0 0 6px rgba(30,60,255,0.1);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.62; }

/* ════════════════════════════════════════════════════════════════
   EVENTS PORTFOLIO
════════════════════════════════════════════════════════════════ */
.events-section { background: var(--navy); }
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.event-card {
  border-radius: 16px; overflow: hidden;
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0d1a5c, #1a0a3d);
  border: 1px solid var(--border);
  display: flex; align-items: flex-end;
  transition: transform var(--transition);
  cursor: default;
}
.event-card.has-thumb { aspect-ratio: 4 / 3; }
.event-thumb {
  position: absolute; inset: 0;
}
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-card:hover { transform: scale(1.02); }
.event-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: 0.16;
}
.event-body {
  position: relative; z-index: 1; padding: 1.5rem;
  background: linear-gradient(to top, rgba(11,15,43,0.95) 0%, transparent 100%);
  width: 100%;
}
.event-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(30,60,255,0.45);
  border: 1px solid rgba(77,111,255,0.38);
  border-radius: 4px; padding: 0.2rem 0.5rem;
  margin-bottom: 0.45rem; color: var(--ice);
}
.event-title {
  font-size: 1rem; font-weight: 700;
}
.event-title a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #0d1a5c 100%);
  padding: 6rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.035em;
  margin-bottom: 0.9rem;
}
.cta-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-info p {
  color: rgba(255,255,255,0.58); line-height: 1.72;
  margin-bottom: 1.8rem;
}
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 0.8rem; margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(30,60,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.45; }
.contact-detail-text strong { color: var(--white); display: block; margin-bottom: 0.1rem; }

/* Form */
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
.form-group label {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font); font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-feedback {
  font-size: 0.875rem; padding: 0.75rem 1rem;
  border-radius: 8px; display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(30,200,100,0.12);
  border: 1px solid rgba(30,200,100,0.3);
  color: #6bffaa;
}
.form-feedback.error {
  display: block;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.25);
  color: #ff9090;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .custom-logo,
.footer-logo img { height: 36px; width: auto; }
.footer-logo {
  display: flex; align-items: center;
  gap: 0.6rem; text-decoration: none;
  margin-bottom: 0.9rem;
}
.footer-logo-text {
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: -0.025em; color: var(--white);
}
.footer-brand p {
  color: rgba(255,255,255,0.4); font-size: 0.84rem;
  line-height: 1.7; max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px;
  background: var(--subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(30,60,255,0.25); border-color: rgba(30,60,255,0.4); }

.footer-widgets {
  display: contents;
}
.footer-col-title,
.footer-col .footer-widget-title,
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.52); text-decoration: none;
  font-size: 0.875rem; transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.28);
}

/* ════════════════════════════════════════════════════════════════
   INNER PAGES – General
════════════════════════════════════════════════════════════════ */
.page-hero, .single-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.single-hero.has-image { padding: 10rem 2rem 5rem; min-height: 60vh; display: flex; align-items: flex-end; }
.single-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.single-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.single-hero-content { position: relative; z-index: 1; }

.page-title, .single-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em;
  margin-top: 0.75rem;
}
.single-meta { color: var(--muted); font-size: 0.85rem; margin-top: 0.75rem; }
.post-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(30,60,255,0.3);
  border: 1px solid rgba(77,111,255,0.35);
  border-radius: 4px; padding: 0.2rem 0.55rem;
  color: var(--ice);
}

.page-content-wrap, .single-content-wrap {
  max-width: 820px; margin: 0 auto;
  padding: 4rem 2rem;
}
.entry-content { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 1.02rem; }
.entry-content h2, .entry-content h3 { color: var(--white); margin: 2rem 0 0.75rem; letter-spacing: -0.025em; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content a { color: var(--ice); }
.entry-content a:hover { color: var(--white); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: 0.4rem; }

/* Blog grid */
.blog-layout { padding: 4rem 0; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform var(--transition);
}
.post-card:hover { transform: translateY(-4px); }
.post-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.post-card-title a { text-decoration: none; color: inherit; transition: color var(--transition); }
.post-card-title a:hover { color: var(--ice); }
.post-card-excerpt { color: var(--muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.post-card-link { font-size: 0.85rem; font-weight: 700; color: var(--bright); text-decoration: none; }

/* Single post nav */
.single-nav .nav-links { display: flex; justify-content: space-between; gap: 1rem; }
.single-nav .nav-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.single-nav .nav-title { font-weight: 700; }
.single-nav a { text-decoration: none; color: inherit; }
.single-nav a:hover { color: var(--ice); }

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS – Scroll-triggered fade-in
════════════════════════════════════════════════════════════════ */
.js-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11,15,43,0.98);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 199;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a { font-size: 1rem; }
  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; width: 100%; }
  .about-visual { order: -1; }
  .about-copy { width: 100%; min-width: 0; }
  .about-stats { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .events-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }

  section { padding: 5rem 1.5rem; }
  /* Hero must always be edge-to-edge regardless of section rule */
  section.hero-section { padding-left: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  /* Ensure nothing bleeds off-screen */
  .about-grid, .about-copy, .about-visual, .about-glow { width: 100%; max-width: 100%; }
  .about-glow { height: auto; }
  .about-glow img { width: 160px; }
  section { padding: 4rem 1.25rem; }
  section.hero-section { padding-left: 0; padding-right: 0; }
  .hero-content { padding: 1.25rem; }
  .container { padding: 0 1.25rem; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Hero – background image mode ───────────────────────────── */
.hero-has-bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important; /* avoid fixed on mobile Safari */
  background-color: var(--navy);
  /* Ensure truly full bleed on mobile */
  width: 100vw !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Ensure spotlights and content sit above the overlay */
.hero-has-bg .spotlight-wrap { z-index: 2; }
.hero-has-bg .hero-content   { z-index: 3; }
.hero-has-bg .hero-scroll    { z-index: 3; }

/* ── Fluent Forms – dark theme integration ───────────────────── */

/* Placeholder shown when no shortcode is set yet */
.fluent-form-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}
.fluent-form-placeholder code {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(30,60,255,0.15);
  border: 1px solid rgba(30,60,255,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  color: var(--ice);
  font-family: monospace;
}

/* Fluent Forms wrapper */
.fluent-form-wrap .ff-el-group,
.fluent-form-wrap .ff_form_wrap {
  color: var(--white);
}

/* Labels */
.fluent-form-wrap .ff-el-input--label label,
.fluent-form-wrap label {
  color: rgba(255,255,255,0.6) !important;
  font-family: var(--font) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 0.38rem !important;
}

/* Inputs, selects, textareas */
.fluent-form-wrap .ff-el-form-control,
.fluent-form-wrap input[type="text"],
.fluent-form-wrap input[type="email"],
.fluent-form-wrap input[type="tel"],
.fluent-form-wrap input[type="number"],
.fluent-form-wrap input[type="url"],
.fluent-form-wrap select,
.fluent-form-wrap textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  padding: 0.75rem 1rem !important;
  width: 100% !important;
  transition: border-color var(--transition) !important;
  outline: none !important;
  -webkit-appearance: none !important;
}
.fluent-form-wrap .ff-el-form-control::placeholder,
.fluent-form-wrap input::placeholder,
.fluent-form-wrap textarea::placeholder {
  color: rgba(255,255,255,0.28) !important;
}
.fluent-form-wrap .ff-el-form-control:focus,
.fluent-form-wrap input:focus,
.fluent-form-wrap select:focus,
.fluent-form-wrap textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(30,60,255,0.15) !important;
}

/* Select arrow */
.fluent-form-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238aabff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
  cursor: pointer !important;
}
.fluent-form-wrap select option {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* Checkboxes & radios */
.fluent-form-wrap .ff-el-form-check-input {
  accent-color: var(--blue);
  width: 16px; height: 16px;
}
.fluent-form-wrap .ff-el-form-check-label {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Submit button */
.fluent-form-wrap .ff-btn,
.fluent-form-wrap .ff-btn-md,
.fluent-form-wrap button[type="submit"] {
  background: var(--blue) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.85rem 2rem !important;
  font-family: var(--font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 4px 24px rgba(30,60,255,0.35) !important;
}
.fluent-form-wrap .ff-btn:hover,
.fluent-form-wrap button[type="submit"]:hover {
  background: var(--bright) !important;
  transform: translateY(-2px) !important;
}

/* Success & error messages */
.fluent-form-wrap .ff-message-success {
  background: rgba(30,200,100,0.1) !important;
  border: 1px solid rgba(30,200,100,0.25) !important;
  border-radius: 8px !important;
  color: #6bffaa !important;
  padding: 1rem 1.25rem !important;
}
.fluent-form-wrap .ff-el-is-error .ff-el-form-control,
.fluent-form-wrap .error .ff-el-form-control {
  border-color: rgba(255,80,80,0.5) !important;
}
.fluent-form-wrap .error small,
.fluent-form-wrap .ff-el-is-error .error-message {
  color: #ff9090 !important;
  font-size: 0.78rem !important;
  margin-top: 0.25rem !important;
  display: block;
}

/* Step/multi-page forms */
.fluent-form-wrap .ff-step-header {
  background: rgba(255,255,255,0.04) !important;
  border-radius: 8px !important;
  margin-bottom: 1.5rem !important;
}
.fluent-form-wrap .ff-step-titles li.ff_active .title {
  color: var(--ice) !important;
}

/* Remove Fluent Forms default white card background */
.fluent-form-wrap .ff_form_wrap,
.fluent-form-wrap .fluentform {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* ── Services – admin empty state (logged-in only) ───────────── */
.services-empty-notice {
  grid-column: 1 / -1;
  background: rgba(30,60,255,0.08);
  border: 1px dashed rgba(30,60,255,0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.services-empty-notice a {
  color: var(--ice);
  font-weight: 600;
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
════════════════════════════════════════════════════════════════ */
.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0d1a5c 0%, var(--navy) 100%);
}
.service-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.service-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(11,15,43,0.78);
}
.service-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  max-width: 720px;
}
.service-hero-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(30,60,255,0.2);
  border: 1px solid rgba(30,60,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.service-hero-icon img { width: 72px; height: 72px; object-fit: cover; }

.service-hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.0; margin: 0;
}
.service-hero-lead {
  font-size: 1.15rem; color: rgba(255,255,255,0.68);
  line-height: 1.65; max-width: 580px; margin: 0;
}

.service-content-section {
  background: var(--navy);
  padding: 5rem 2rem;
}
.service-content-wrap {
  max-width: 760px;
}

/* Related services */
.related-services-section {
  background: var(--navy-dark);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card--link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card--link:hover .service-name { color: var(--ice); }

@media (max-width: 900px) {
  .related-services-grid { grid-template-columns: 1fr 1fr; }
  .service-hero { min-height: auto; padding: 8rem 1.5rem 4rem; }
}
@media (max-width: 640px) {
  .related-services-grid { grid-template-columns: 1fr; }
  .service-hero-title { font-size: 2.2rem; }
}
