/* ============================================================
   URBANVIBEZ IGBETI — Cinematic Design System
   Brand: Navy canvas · Red lead accent (#e01e26) · Royal blue (#1e5bd6)
   Built on the Studio "Cinematic Web Platform" standard.
   ============================================================ */

:root {
  /* Brand accents (from the UrbanVibez logo) */
  --primary:    #e01e26;   /* red — lead accent / primary CTA */
  --primary-d:  #b8161d;   /* red hover */
  --secondary:  #1e5bd6;   /* royal blue — supporting accent */
  --secondary-d:#1546a8;
  --blue-lt:    #4f86ff;
  --silver:     #c9d2e2;   /* metallic wordmark tone */
  --gold:       #e8c14d;

  /* Dark cinematic surfaces (navy-dominant) */
  --dark:       #050d26;   /* deepest navy */
  --dark-2:     #0a1a44;   /* navy panel */
  --dark-3:     #0f2456;   /* raised navy */
  --dark-4:     #17306a;

  /* Text on dark */
  --text-light: rgba(255,255,255,0.92);
  --text-muted: rgba(198,214,255,0.60);

  /* Fonts */
  --fh: 'Montserrat', sans-serif;      /* headings / UI */
  --fd: 'Playfair Display', serif;     /* display / quotes */
  --fb: 'Open Sans', sans-serif;       /* body */

  --maxw: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--dark);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
section { position: relative; }

h1, h2, h3, h4, h5, h6 { font-family: var(--fh); line-height: 1.15; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Shared type helpers ── */
.eyebrow {
  display: inline-block;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-lt);
  border: 1px solid rgba(79,134,255,0.35);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.eyebrow.red { color: #ff6a6f; border-color: rgba(224,30,38,0.4); }

.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.5px;
}
.section-title .accent { color: var(--primary); }
.section-title .accent-b { color: var(--blue-lt); }

.lead-copy { color: var(--text-muted); font-size: 1.06rem; max-width: 620px; }
.text-muted-custom { color: var(--text-muted); }

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  margin: 0 auto 46px;
  max-width: 220px;
}

.section-pad { padding: 110px 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 20px 0;
}
.site-navbar.scrolled {
  background: rgba(5,13,38,0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  padding: 12px 0;
  backdrop-filter: blur(6px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--text-light);
  text-transform: uppercase;
  padding: 8px 15px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue-lt); }
.btn-nav-cta {
  font-family: var(--fh);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--primary); color: #fff !important;
  padding: 11px 24px; border-radius: 4px; margin-left: 10px;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover { background: var(--primary-d); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px; width: 44px; height: 40px; color: #fff; font-size: 1.2rem; cursor: pointer;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-wrap { position: fixed; top: 84px; right: 20px; z-index: 1200; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.flash {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--dark-3); border: 1px solid rgba(79,134,255,0.3);
  border-left: 4px solid var(--secondary); border-radius: 10px;
  padding: 14px 18px; box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  font-size: 0.9rem; color: var(--text-light);
}
.flash i { margin-top: 2px; }
.flash.success { border-left-color: #2ec46b; }
.flash.success i { color: #2ec46b; }
.flash.error { border-left-color: var(--primary); }
.flash.error i { color: var(--primary); }
.flash.info i { color: var(--blue-lt); }
@media (max-width: 480px) { .flash-wrap { left: 14px; right: 14px; max-width: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom, .btn-outline-custom, .btn-secondary-custom {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fh); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; cursor: pointer;
  border: none; transition: all 0.2s;
}
.btn-primary-custom { background: var(--primary); color: #fff; }
.btn-primary-custom:hover { background: var(--primary-d); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(224,30,38,0.4); }
.btn-secondary-custom { background: var(--secondary); color: #fff; }
.btn-secondary-custom:hover { background: var(--secondary-d); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(30,91,214,0.4); }
.btn-outline-custom { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); padding: 12px 30px; }
.btn-outline-custom:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* ============================================================
   TYPE A — CINEMATIC / HERO
   ============================================================ */
.hero-section { min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark) center/cover no-repeat;
  background-attachment: scroll;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(5,13,38,0.86) 0%, rgba(5,13,38,0.55) 55%, rgba(5,13,38,0.30) 100%);
}
.hero-body { position: relative; z-index: 2; width: 100%; padding-top: 80px; }
.hero-title {
  font-weight: 900;
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title .accent { color: var(--primary); }
.hero-title .accent-b { color: var(--blue-lt); }
.hero-sub { color: var(--text-light); font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 640px; margin-bottom: 34px; opacity: 0.9; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); font-size: 1.4rem; z-index: 3; animation: bob 2s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,10px);} }

/* Brand chip row under hero */
.brand-strip { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; align-items: center; }
.brand-strip .chip { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 0.8rem; font-family: var(--fh); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.brand-strip .chip i { color: var(--primary); }

/* ============================================================
   TYPE D — STATEMENT / MANIFESTO
   ============================================================ */
.statement-section { background: var(--dark-2); text-align: center; }
.statement-text {
  font-family: var(--fd); font-style: italic; font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2.2rem); line-height: 1.5;
  max-width: 860px; margin: 0 auto; color: var(--text-light);
}
.statement-text .accent { color: var(--primary); font-style: normal; }

/* ============================================================
   TYPE C — CONTENT GRID (platforms / programs / features)
   ============================================================ */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }

.feature-card {
  background: linear-gradient(160deg, var(--dark-3), var(--dark-2));
  border: 1px solid rgba(79,134,255,0.14);
  border-radius: 16px; padding: 34px 30px; height: 100%;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(79,134,255,0.4); box-shadow: 0 20px 44px rgba(0,0,0,0.45); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--secondary), var(--dark-4));
}
.feature-card.red .feature-icon { background: linear-gradient(150deg, var(--primary), #7a1013); }
.feature-title { font-size: 1.22rem; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.feature-tag {
  display: inline-block; margin-top: 16px; font-family: var(--fh); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-lt);
}

/* Platform card — photo top + overlapping icon badge */
.platform-card {
  background: linear-gradient(160deg, var(--dark-3), var(--dark-2));
  border: 1px solid rgba(79,134,255,0.14);
  border-radius: 16px; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.platform-card:hover { transform: translateY(-6px); border-color: rgba(79,134,255,0.4); box-shadow: 0 20px 44px rgba(0,0,0,0.45); }
.platform-photo { height: 168px; background-size: cover; background-position: center; position: relative; }
.platform-photo .pp-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,13,38,0.15), rgba(5,13,38,0.7)); }
.platform-photo .feature-icon { position: absolute; left: 24px; bottom: -26px; margin: 0; z-index: 3; box-shadow: 0 10px 26px rgba(0,0,0,0.45); }
.platform-card.red .feature-icon { background: linear-gradient(150deg, var(--primary), #7a1013); }
.platform-body { padding: 42px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.platform-body p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.platform-body .feature-tag { margin-top: 16px; }

/* Program card with image top */
.program-card {
  background: var(--dark-2); border: 1px solid rgba(79,134,255,0.14);
  border-radius: 16px; overflow: hidden; height: 100%;
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,0.5); }
.program-thumb {
  height: 180px; position: relative; display: grid; place-items: center;
  background-size: cover; background-position: center;
}
.program-thumb .thumb-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,13,38,0.15), rgba(5,13,38,0.75)); }
.program-thumb .thumb-icon { position: relative; z-index: 2; font-size: 2.4rem; color: #fff; opacity: 0.92; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.program-num { position: absolute; top: 14px; left: 16px; z-index: 2; font-family: var(--fh); font-weight: 900; font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.program-body { padding: 26px 24px 30px; flex: 1; display: flex; flex-direction: column; }
.program-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.program-body p { color: var(--text-muted); font-size: 0.94rem; flex: 1; }
.program-meta { margin-top: 18px; font-family: var(--fh); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue-lt); display: flex; align-items: center; gap: 8px; }

/* Placeholder gradient tint variants for thumbs (swap for real photos) */
.ph-blue  { background-image: linear-gradient(150deg, #0f2456, #1e5bd6); }
.ph-red   { background-image: linear-gradient(150deg, #2a0c0e, #e01e26); }
.ph-mix   { background-image: linear-gradient(150deg, #0f2456, #7a1013); }
.ph-deep  { background-image: linear-gradient(150deg, #0a1a44, #0f2456); }

/* ============================================================
   TYPE — STATS / IMPACT COUNTER
   ============================================================ */
.stats-section { background: var(--dark); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-cell { text-align: center; padding: 20px 14px; position: relative; }
.stat-cell:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-number { font-family: var(--fh); font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1; }
.stat-number .u { color: var(--primary); }
.stat-label { margin-top: 10px; font-family: var(--fh); font-size: 0.74rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   TYPE B — SPLIT SECTION
   ============================================================ */
.split-section { display: grid; grid-template-columns: 45% 55%; min-height: 90vh; }
.split-photo { position: relative; background: var(--dark-3) center/cover no-repeat; min-height: 400px; }
.split-photo .photo-veil { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(5,13,38,0.55), rgba(5,13,38,0.15)); }
.split-photo .photo-badge {
  position: absolute; bottom: 34px; left: 34px; z-index: 2;
  background: rgba(5,13,38,0.7); border: 1px solid rgba(79,134,255,0.3); border-radius: 12px;
  padding: 18px 22px; backdrop-filter: blur(6px);
}
.split-photo .photo-badge .big { font-family: var(--fh); font-weight: 900; font-size: 2rem; color: #fff; }
.split-photo .photo-badge .small { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.split-content { background: var(--dark-2); padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
/* Full-bleed split sections (home/about/contact) are now wrapped in a .container
   in the templates, so they line up with every other section (and share the same
   side gutters on mobile). Style them as a clean card, like the program-detail
   bands. .band (program-detail) already has its own card styling. */
.split-holder { padding-block: 28px; }
.split-section:not(.band) {
  min-height: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(79,134,255,0.14);
}
.value-list { list-style: none; margin-top: 26px; }
.value-list li { display: flex; gap: 15px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.value-list li i { color: var(--primary); font-size: 1.1rem; margin-top: 3px; }
.value-list li strong { display: block; font-family: var(--fh); font-size: 1rem; margin-bottom: 2px; }
.value-list li span { color: var(--text-muted); font-size: 0.9rem; }

/* Program detail page — quick facts */
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; transform: translateY(-40px); }
.fact { display: flex; align-items: center; gap: 16px; background: var(--dark-3); border: 1px solid rgba(79,134,255,0.16); border-radius: 14px; padding: 22px 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.fact-icon { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; color: #fff; background: linear-gradient(150deg, var(--secondary), var(--dark-4)); }
.fact-icon.red { background: linear-gradient(150deg, var(--primary), #7a1013); }
.fact-label { font-family: var(--fh); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.fact-value { font-family: var(--fh); font-weight: 800; font-size: 1.02rem; color: #fff; }

/* Program detail page — outcome list */
.outcome-list { list-style: none; display: grid; gap: 14px; }
.outcome-list li { display: flex; gap: 15px; align-items: flex-start; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px 22px; }
.outcome-list li i { color: #2ec46b; font-size: 1.2rem; margin-top: 2px; }
.outcome-list li span { color: var(--text-light); font-size: 1.02rem; }

/* Program detail page — prev / next nav */
.pn-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pn-link { display: flex; flex-direction: column; gap: 6px; background: var(--dark-3); border: 1px solid rgba(79,134,255,0.16); border-radius: 12px; padding: 20px 24px; transition: border-color 0.2s, transform 0.2s; }
.pn-link:hover { border-color: rgba(79,134,255,0.45); transform: translateY(-2px); }
.pn-link.next { text-align: right; align-items: flex-end; }
.pn-dir { font-family: var(--fh); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-lt); }
.pn-title { font-family: var(--fh); font-weight: 800; font-size: 1.05rem; color: #fff; }

/* Clickable program cards (detail "others" + linked list cards) */
.program-card-link { color: inherit; }
.program-card-link .program-meta .fa-arrow-right { transition: transform 0.2s; }
.program-card-link:hover .program-meta .fa-arrow-right { transform: translateX(4px); }

@media (max-width: 768px) {
  .fact-row { grid-template-columns: 1fr; transform: translateY(-30px); gap: 12px; }
  .pn-nav { grid-template-columns: 1fr; }
  .pn-link.next { text-align: left; align-items: flex-start; }
}

/* Program detail bands (Programs page) */
.band { min-height: auto; border-radius: 18px; overflow: hidden; border: 1px solid rgba(79,134,255,0.14); }
.band-red { border-color: rgba(224,30,38,0.18); }
.band.flip { direction: rtl; }
.band.flip .band-photo, .band.flip .band-content { direction: ltr; }
.band-photo { min-height: 280px; }
.band-num { font-size: 2.2rem; }
.band-icon { position: absolute; inset: 0; margin: auto; width: fit-content; height: fit-content; font-size: 3rem; color: rgba(255,255,255,0.9); z-index: 2; }
.band-content { padding: 48px 44px; }
.band-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 6px 0 14px; }
.feature-tag.tag-red { color: #ff6a6f; }

/* ============================================================
   TYPE A — QUOTE CAROUSEL (Elders' Corner)
   ============================================================ */
.quote-section { min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background: var(--dark) center/cover no-repeat; }
.quote-veil { position: absolute; inset: 0; background: rgba(5,13,38,0.78); }
.quote-body { position: relative; z-index: 2; width: 100%; text-align: center; }
.quote-mark { font-size: 3rem; color: var(--primary); margin-bottom: 10px; }
.quote-slide { display: none; max-width: 820px; margin: 0 auto; }
.quote-slide.active { display: block; animation: fadeq 0.8s ease; }
@keyframes fadeq { from { opacity: 0; } to { opacity: 1; } }
.quote-text { font-family: var(--fd); font-style: italic; font-weight: 700; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.5; margin-bottom: 24px; }
.quote-attrib { font-family: var(--fh); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-lt); }
.quote-attrib span { display: block; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; margin-top: 4px; }
.quote-dots { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.quote-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; padding: 0; }
.quote-dots button.active { width: 30px; border-radius: 5px; background: var(--primary); }

/* ============================================================
   GALLERY MOSAIC
   ============================================================ */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.mosaic-item {
  border-radius: 12px; overflow: hidden; position: relative;
  background-size: cover; background-position: center; display: grid; place-items: end start;
}
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item .m-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,13,38,0.85)); transition: opacity 0.3s; }
.mosaic-item:hover .m-veil { opacity: 0.6; }
.mosaic-item .m-label { position: relative; z-index: 2; padding: 16px; font-family: var(--fh); font-weight: 700; font-size: 0.85rem; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.mosaic-item .m-icon { position: absolute; top: 14px; right: 16px; z-index: 2; color: rgba(255,255,255,0.5); font-size: 1.1rem; }

/* ============================================================
   CTA FINALE
   ============================================================ */
.cta-section { min-height: 70vh; display: flex; align-items: center; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background: var(--dark) center/cover no-repeat; }
.cta-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,13,38,0.75), rgba(5,13,38,0.9)); }
.cta-body { position: relative; z-index: 2; width: 100%; }
.cta-title { font-weight: 900; font-size: clamp(2rem, 5.5vw, 3.8rem); line-height: 1.08; margin-bottom: 20px; }
.cta-title .accent { color: var(--primary); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--dark-2); text-align: center; padding: 84px 0; }
.newsletter-input-wrap { display: flex; max-width: 480px; margin: 0 auto; gap: 10px; }
.newsletter-input-wrap input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px; color: #fff; padding: 14px 18px; font-size: 0.95rem;
}
.newsletter-input-wrap input:focus { outline: none; border-color: var(--primary); }
.newsletter-input-wrap button {
  background: var(--primary); color: #fff; border: none; border-radius: 8px; padding: 0 26px;
  font-family: var(--fh); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; cursor: pointer; transition: background 0.2s;
}
.newsletter-input-wrap button:hover { background: var(--primary-d); }

/* ============================================================
   FORM (Contact)
   ============================================================ */
.form-wrap { background: var(--dark-2); border: 1px solid rgba(79,134,255,0.15); border-radius: 18px; padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--fh); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); }
.form-field label .req { color: var(--primary); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: #fff; padding: 12px 16px; font-family: var(--fb); font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); background: rgba(255,255,255,0.08); outline: none; }
.form-field textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.field-error { color: #ff6a6f; font-size: 0.8rem; }
.form-error-banner { background: rgba(224,30,38,0.12); border: 1px solid rgba(224,30,38,0.4); color: #ffb3b5; border-radius: 8px; padding: 12px 16px; margin-bottom: 18px; font-size: 0.9rem; }
/* Interior content pages (privacy / terms) */
.doc-section { padding: 150px 0 90px; background: var(--dark); min-height: 70vh; }
.doc-wrap { max-width: 780px; margin: 0 auto; }
.doc-wrap h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 10px; }
.doc-wrap h1 .accent { color: var(--primary); }
.doc-wrap .doc-meta { color: var(--text-muted); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 34px; }
.doc-wrap h2 { font-size: 1.3rem; font-weight: 800; margin: 34px 0 12px; }
.doc-wrap p, .doc-wrap li { color: var(--text-muted); margin-bottom: 12px; }
.doc-wrap ul { padding-left: 22px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.trust-row .trust { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.78rem; }
.trust-row .trust i { color: var(--secondary); }

/* Contact info cards */
.info-card { background: var(--dark-2); border: 1px solid rgba(79,134,255,0.14); border-radius: 14px; padding: 26px; margin-bottom: 16px; display: flex; gap: 16px; align-items: flex-start; }
.info-card i { font-size: 1.3rem; color: var(--primary); margin-top: 3px; }
.info-card h4 { font-family: var(--fh); font-size: 0.95rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--text-muted); font-size: 0.9rem; }

/* Page hero (interior) */
.page-hero { min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero .hero-bg { background-attachment: scroll; }
.page-hero .hero-body { padding-bottom: 70px; padding-top: 120px; }
.page-hero-title { font-weight: 900; font-size: clamp(2.2rem, 6vw, 4.4rem); letter-spacing: -1.5px; line-height: 1.05; }
.page-hero-title .accent { color: var(--primary); }
.breadcrumb-mini { font-family: var(--fh); font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #030814; padding: 76px 0 0; border-top: 1px solid rgba(79,134,255,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; }
.footer-logo img { height: 52px; margin-bottom: 18px; }
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; max-width: 320px; margin-bottom: 20px; }
.footer-heading { font-family: var(--fh); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-lt); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 56px; padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { color: var(--text-muted); font-size: 0.84rem; }
.footer-copy a:hover { color: var(--blue-lt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  /* Full-screen overlay menu. It hides in place (opacity/visibility) rather than
     parking off-screen to the right — a fixed element parked past the right edge
     isn't clipped by overflow-x:hidden and would widen the page on real phones,
     pushing the hamburger out of view. inset:0 + width:100% can never overflow. */
  .nav-menu {
    position: fixed; inset: 0; width: 100%;
    flex-direction: column; align-items: center; justify-content: center; gap: 22px;
    background: rgba(5,13,38,0.985); padding: 90px 40px 40px; z-index: 1000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu .nav-link { font-size: 1.05rem; padding: 8px 16px !important; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; z-index: 1002; }
  .navbar-brand { position: relative; z-index: 1002; }
  .btn-nav-cta { margin-left: 0; margin-top: 10px; font-size: 0.85rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-photo { min-height: 320px; }
  .split-content { padding: 60px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 768px) {
  /* Let the hero flow from the top (clear of the fixed navbar) instead of
     vertically centering — on phones the address bar shrinks the visible height,
     which otherwise pushes the eyebrow up into the logo. */
  .hero-section { align-items: flex-start; }
  /* .hero-body also carries .container; use a more specific selector so the
     ≤400px `.container { padding: 0 18px }` rule can't zero the top padding. */
  .hero-section .hero-body { padding-top: 120px; padding-bottom: 56px; }
  .page-hero .hero-body { padding-top: 116px; }
  .section-pad { padding: 76px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .stat-cell:nth-child(2)::after { display: none; }
  .stat-number { font-size: 8vw; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .mosaic-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-copy.hide-sm { display: none; }
}
@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell::after { display: none; }
  .container { padding: 0 18px; }
}

/* Respect reduced motion */
/* ============================================================
   ANTHEM PLAYER
   ============================================================ */
.anthem-section { position: relative; padding: 100px 0; background: var(--dark); overflow: hidden; }
.anthem-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none; z-index: 0; }
.anthem-orb.orb-a { width: 380px; height: 380px; background: radial-gradient(circle, rgba(224,30,38,0.55), transparent 70%); top: -130px; left: -90px; }
.anthem-orb.orb-b { width: 440px; height: 440px; background: radial-gradient(circle, rgba(79,134,255,0.5), transparent 70%); bottom: -170px; right: -110px; }

.anthem-card {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 260px 1fr; gap: 46px; align-items: center;
  max-width: 940px; margin: 0 auto; padding: 42px;
  background: linear-gradient(135deg, rgba(10,26,68,0.92), rgba(5,13,38,0.96));
  border: 1px solid rgba(79,134,255,0.18); border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Cover art / vinyl / play */
.anthem-art { position: relative; width: 260px; height: 260px; }
.anthem-vinyl {
  position: absolute; inset: -4px; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, #0b1020 0 3px, #05070f 3px 6px);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.04), 0 22px 50px rgba(0,0,0,0.6);
  animation: anthem-spin 5s linear infinite; animation-play-state: paused; z-index: 0;
}
.anthem-vinyl::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--blue-lt), var(--primary));
  opacity: 0.3; -webkit-mask: radial-gradient(circle, transparent 61%, #000 63%);
  mask: radial-gradient(circle, transparent 61%, #000 63%);
}
.anthem-cover {
  position: absolute; inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px);
  object-fit: cover; border-radius: 50%; z-index: 1;
  box-shadow: 0 0 0 4px rgba(5,13,38,0.95), 0 0 0 6px rgba(79,134,255,0.22);
}
.anthem-art::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; margin: -7px;
  background: var(--dark-2); border: 2px solid rgba(255,255,255,0.16); border-radius: 50%; z-index: 2;
}
.anthem-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%; border: none; cursor: pointer; z-index: 3;
  background: linear-gradient(135deg, var(--primary), #ff5257); color: #fff; font-size: 1.45rem;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(224,30,38,0.5), 0 0 0 8px rgba(224,30,38,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.anthem-play:hover { transform: translate(-50%,-50%) scale(1.07); box-shadow: 0 14px 42px rgba(224,30,38,0.6), 0 0 0 12px rgba(224,30,38,0.14); }
.anthem-play i { margin-left: 4px; }
.anthem-play.is-playing i { margin-left: 0; }

/* Equalizer */
.anthem-eq { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-bottom: 24px; }
.anthem-eq span {
  flex: 1; max-width: 7px; border-radius: 3px; height: 100%;
  background: linear-gradient(to top, var(--primary), var(--blue-lt));
  transform: scaleY(0.22); transform-origin: bottom;
  animation: anthem-eq 0.9s ease-in-out infinite; animation-play-state: paused;
}
.anthem-eq span:nth-child(3n)   { animation-duration: 1.15s; }
.anthem-eq span:nth-child(3n+1) { animation-duration: 0.7s; }
.anthem-eq span:nth-child(2n)   { animation-delay: -0.2s; }
.anthem-eq span:nth-child(4n)   { animation-delay: -0.45s; }
.anthem-eq span:nth-child(5n)   { animation-delay: -0.65s; }
.anthem-section.is-playing .anthem-vinyl,
.anthem-section.is-playing .anthem-eq span { animation-play-state: running; }

/* Transport / seek */
.anthem-transport { display: flex; align-items: center; gap: 14px; }
.anthem-time { font-family: var(--fh); font-size: 0.8rem; font-weight: 700; color: var(--text-muted); min-width: 38px; font-variant-numeric: tabular-nums; }
.anthem-time:last-child { text-align: right; }
.anthem-buffer { display: none; }
.anthem-track { flex: 1; position: relative; height: 8px; border-radius: 999px; border: none; padding: 0; cursor: pointer; background: rgba(255,255,255,0.1); }
.anthem-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--blue-lt)); }
.anthem-fill::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.2s;
}
.anthem-track:hover .anthem-fill::after, .anthem-section.is-playing .anthem-fill::after { opacity: 1; }

@keyframes anthem-spin { to { transform: rotate(360deg); } }
@keyframes anthem-eq { 0%, 100% { transform: scaleY(0.22); } 50% { transform: scaleY(1); } }

/* Hero "Play the Anthem" chip */
.hero-anthem {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px 20px 10px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #fff;
  font-family: var(--fh); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-anthem:hover { background: rgba(224,30,38,0.16); border-color: rgba(224,30,38,0.5); transform: translateY(-1px); }
.hero-anthem .ha-icon {
  width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), #ff5257); color: #fff; font-size: 0.7rem;
  box-shadow: 0 4px 14px rgba(224,30,38,0.5);
}
.hero-anthem .ha-icon i { margin-left: 2px; }
.hero-anthem.is-playing .ha-icon i { margin-left: 0; }
.hero-anthem .ha-eq { display: none; align-items: flex-end; gap: 3px; height: 15px; }
.hero-anthem.is-playing .ha-eq { display: inline-flex; }
.hero-anthem .ha-eq span {
  width: 3px; height: 100%; border-radius: 2px; transform: scaleY(0.4); transform-origin: bottom;
  background: linear-gradient(to top, var(--primary), var(--blue-lt));
  animation: anthem-eq 0.8s ease-in-out infinite;
}
.hero-anthem .ha-eq span:nth-child(2) { animation-delay: -0.2s; animation-duration: 1s; }
.hero-anthem .ha-eq span:nth-child(3) { animation-delay: -0.4s; animation-duration: 0.7s; }
.hero-anthem .ha-eq span:nth-child(4) { animation-delay: -0.15s; animation-duration: 1.1s; }

/* Lyrics toggle + panel */
.anthem-lyrics-wrap { position: relative; z-index: 1; text-align: center; margin-top: 26px; }
.anthem-lyrics-toggle {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 11px 24px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(79,134,255,0.3); color: var(--text-light);
  font-family: var(--fh); font-weight: 700; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.anthem-lyrics-toggle:hover { border-color: var(--primary); color: #fff; background: rgba(224,30,38,0.1); }
.anthem-lyrics-toggle .ll-caret { font-size: 0.7rem; transition: transform 0.3s; }
.anthem-lyrics-toggle[aria-expanded="true"] .ll-caret { transform: rotate(180deg); }
.anthem-lyrics { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.4s ease; }
.anthem-lyrics.open { max-height: 1600px; opacity: 1; }
.anthem-lyrics-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 30px auto 0; text-align: left; }
.lyric-block { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 22px 24px; }
.lyric-block.chorus { grid-column: 1 / -1; background: rgba(224,30,38,0.06); border-color: rgba(224,30,38,0.32); }
.lyric-label { display: inline-block; font-family: var(--fh); font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 10px; }
.lyric-block.chorus .lyric-label { color: var(--primary); }
.lyric-block p { color: var(--text-light); line-height: 1.9; font-size: 0.97rem; }
.lyric-block p em { font-style: italic; font-weight: 600; color: #fff; }
.lyric-note { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 22px; }

@media (max-width: 768px) {
  .anthem-lyrics-inner { grid-template-columns: 1fr; }
  .anthem-section { padding: 72px 0; }
  .anthem-card { grid-template-columns: 1fr; gap: 28px; padding: 30px 22px; text-align: center; }
  .anthem-art { width: 210px; height: 210px; margin: 0 auto; }
  .anthem-eq { justify-content: center; height: 40px; }
  .anthem-body p { margin-left: auto; margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
