/* ================================================================
   FAITHFAMILY PRAISEBAND — TEF-Pattern Design System
   Font: Mulish | Brand: #6B1A2A
================================================================ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600&display=swap');

/* ── Tokens ── */
:root {
  --brand:       #6B1A2A;
  --brand-dark:  #4A0E1A;
  --brand-light: #8B2238;
  --white:       #FFFFFF;
  --off-white:   #F8F6F4;
  --light-gray:  #F2EFEC;
  --border:      #E0DADA;
  --text:        #1A1A1A;
  --text-mid:    #444444;
  --text-muted:  #777777;
  --dyk-bg:      #5A5A5A;
  --font:        'Mulish', sans-serif;
  --hdr-h:       72px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ================================================================
   HEADER / NAVBAR
================================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--brand);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: transform 0.3s var(--spring);
}
.header-logo:hover .logo-icon { transform: scale(1.08) rotate(-5deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
#site-header.scrolled .logo-main { color: var(--brand); }
#site-header.scrolled .logo-sub  { color: var(--text-muted); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.9);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
#site-header.scrolled .header-nav a { color: var(--text-mid); }
#site-header.scrolled .header-nav a:hover { color: var(--brand); background: rgba(107,26,42,0.06); }

.btn-connect {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 3px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-connect:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
#site-header.scrolled .hamburger span { background: var(--text); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s var(--ease);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer a:hover { background: rgba(107,26,42,0.06); color: var(--brand); }
.drawer-cta {
  margin-top: 1rem;
  background: var(--brand) !important;
  color: var(--white) !important;
  text-align: center;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem !important;
  border-radius: 3px !important;
}
.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: var(--light-gray);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ================================================================
   HERO
================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1A0508 0%, #3A1020 35%, #6B1A2A 60%, #2A1010 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  background-size: cover;
}
/* Simulated crowd silhouette via gradient overlay */
.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(107,26,42,0.3) 0%, transparent 60%),
    linear-gradient(to top, rgba(10,2,4,0.85) 0%, rgba(10,2,4,0.4) 40%, rgba(10,2,4,0.2) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,2,4,0.7) 0%,
    rgba(10,2,4,0.3) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-text-block { max-width: 640px; }
.hero-text-block h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Watch button — TEF style */
.watch-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.watch-icon {
  width: 52px; height: 52px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  transition: transform 0.3s var(--spring), background 0.2s;
  flex-shrink: 0;
}
.watch-btn:hover .watch-icon { transform: scale(1.1); background: var(--brand-dark); }
.watch-label {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: var(--brand);
  position: relative;
  z-index: 10;
}
.stats-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 1.75rem 2rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section {
  padding: 80px 0 80px;
  background: var(--white);
}
.about-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-headline {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-body p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-more:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* About image */
.about-image-block {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: visible;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, #2A0810 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 3rem;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}
.about-img-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.about-img-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--brand);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107,26,42,0.35);
}
.badge-year {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* ================================================================
   DID YOU KNOW CAROUSEL
================================================================ */
.dyk-section {
  position: relative;
  background: var(--dyk-bg);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 220px;
  overflow: hidden;
}
.dyk-track { flex: 1; overflow: hidden; }
.dyk-slide {
  display: none;
  text-align: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.dyk-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.dyk-label {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.dyk-slide p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.dyk-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.dyk-readmore:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.dyk-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.dyk-arrow:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.dyk-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.dyk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
}
.dyk-dot.active { background: var(--white); transform: scale(1.3); }

/* ================================================================
   WHAT WE ARE UP TO
================================================================ */
.wwdo-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.wwdo-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wwdo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.btn-view-events {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-view-events:hover { color: var(--brand); border-color: var(--brand); }
.wwdo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wwdo-card {
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}
.wwdo-card:hover {
  box-shadow: 0 8px 32px rgba(107,26,42,0.1);
  border-color: rgba(107,26,42,0.25);
}
.card-title-red {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.wwdo-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card-more {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  transition: gap 0.2s, letter-spacing 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.card-more:hover { letter-spacing: 0.14em; }

/* ================================================================
   RECENT UPDATES
================================================================ */
.updates-section {
  padding: 0 0 60px;
  background: var(--white);
}
.updates-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.updates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand);
  padding: 0.85rem 2rem;
  margin-bottom: 2rem;
}
.updates-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.updates-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.updates-more:hover { background: rgba(255,255,255,0.15); }
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.update-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.update-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.update-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.update-img-1 { background: linear-gradient(135deg, #6B1A2A 0%, #3A0E18 100%); }
.update-img-2 { background: linear-gradient(135deg, #1A2A4A 0%, #0D1A30 100%); }
.update-img-3 { background: linear-gradient(135deg, #2A1A6B 0%, #15093A 100%); }
.update-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
}
.update-card:hover .update-img-overlay { color: rgba(255,255,255,0.3); }
.update-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.update-body p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.update-readmore {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--brand);
  text-transform: uppercase;
  transition: letter-spacing 0.2s;
}
.update-readmore:hover { letter-spacing: 0.1em; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-section {
  position: relative;
  background: #1A0508;
  padding: 80px 2rem;
  overflow: hidden;
  text-align: center;
}
.testi-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
  padding: 0 2rem;
}
.testi-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.testi-heading {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.testi-slide {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.testi-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.testi-author-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.testi-author-role {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.testi-slide blockquote {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin: 0 0 2rem;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--brand); transform: scale(1.3); }

/* ================================================================
   NEWSLETTER / STAY UPDATED
================================================================ */
.newsletter-section {
  background: var(--brand);
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-inner > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.newsletter-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input {
  background: var(--white);
  border: none;
  padding: 0.7rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-group input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.form-check-row {
  margin-bottom: 1.5rem;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  cursor: pointer;
}
.form-check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-dark);
  cursor: pointer;
}
.btn-subscribe {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: var(--brand-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-subscribe:hover { background: #3A0A14; transform: translateY(-1px); }
.btn-subscribe:active { transform: translateY(0); }
.subscribe-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ================================================================
   FOOTER
================================================================ */
#footer {
  background: #1A1A1A;
  padding-top: 0;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-social-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-contact-info div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-info i { color: var(--brand-light); font-size: 0.75rem; flex-shrink: 0; }
.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a:hover { border-color: var(--brand); background: var(--brand); color: var(--white); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-el.revealed {
  opacity: 1;
  transform: translateY(0);
}
.wwdo-card:nth-child(2).reveal-el { transition-delay: 0.1s; }
.wwdo-card:nth-child(3).reveal-el { transition-delay: 0.2s; }
.update-card:nth-child(2).reveal-el { transition-delay: 0.1s; }
.update-card:nth-child(3).reveal-el { transition-delay: 0.2s; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 991px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { order: -1; }
  .wwdo-cards { grid-template-columns: 1fr; gap: 1rem; }
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dyk-section { padding: 50px 50px; }
}
@media (max-width: 767px) {
  .hero-text-block h1 { font-size: 1.6rem; }
  .watch-btn { display: none; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 80%; height: 1px; }
  .updates-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dyk-section { padding: 40px 20px; }
  .dyk-arrow { display: none; }
}
@media (max-width: 576px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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

/* ================================================================
   OTHER PAGES — shared components used by about/contact/etc
================================================================ */

/* Page hero (non-home pages) */
.page-hero {
  padding: calc(var(--hdr-h) + 60px) 0 60px;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand-light);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Shared section container */
.section-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================================
   ACTIVE LINK state (for inner pages)
================================================================ */
.header-nav a.active {
  color: var(--white) !important;
}
#site-header.scrolled .header-nav a.active {
  color: var(--brand) !important;
}
