/* ===== Full Gospel Christian Church — style.css ===== */

:root {
  --color-bg: #FAF8F3;
  --color-text: #111111;
  --color-muted: #5F5F5F;
  --color-accent: #E42312;
  --color-accent-hover: #c91d0e;
  --color-surface: #ffffff;
  --color-border: rgba(0,0,0,0.06);
  --color-border-light: rgba(255,255,255,0.7);

  --color-orange: #FF8A00;
  --color-yellow: #FFD76A;
  --color-green: #65D889;
  --color-cyan: #60D8E8;
  --color-blue: #6EA8FF;
  --color-purple: #A78BFA;
  --color-pink: #F472B6;

  --radius-sm: 16px;
  --radius-md: 30px;
  --radius-lg: 36px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 10px rgba(0,0,0,0.03);
  --shadow-medium: 0 12px 36px rgba(0,0,0,0.09);
  --shadow-accent: 0 12px 34px rgba(228,35,18,0.32);

  --container: 1200px;
  --container-wide: 1500px;

  --transition: 0.25s cubic-bezier(.2,.8,.2,1);
  --transition-slow: 0.4s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

a, button, [data-magnetic] { cursor: none; }
::selection { background: rgba(228,35,18,0.16); color: var(--color-accent); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
  font-size: 14px; font-weight: 600; z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes orbA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-40px) scale(1.12); } }
@keyframes orbB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,50px) scale(1.15); } }
@keyframes orbC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,60px) scale(0.9); } }
@keyframes orbD { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-30px) scale(1.1); } }
@keyframes hueDrift { 0%,100% { filter: blur(40px) hue-rotate(0deg); } 50% { filter: blur(40px) hue-rotate(26deg); } }

/* ===== HEADER ===== */
.header-wrap {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 18px;
  pointer-events: none;
}
.header {
  pointer-events: auto; width: 100%; max-width: var(--container);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 11px 14px 11px 22px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(170%); -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}
.header.scrolled {
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0,0,0,0.08);
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.header-logo-text .brand { font-size: 16px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text); }
.header-logo-text .sub { font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent); margin-top: 2px; white-space: nowrap; }

.nav-desktop { display: flex; align-items: center; gap: 26px; }
.nav-desktop > a { font-size: 14.5px; font-weight: 500; color: #2a2a2a; transition: color 0.2s; }
.nav-desktop > a:hover,
.nav-desktop > a:focus-visible { color: var(--color-accent); }

/* Desktop dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px; font-weight: 500; color: #2a2a2a;
  background: none; border: none; padding: 0; cursor: none;
  font-family: inherit; transition: color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--color-accent); }
.nav-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 220px; padding: 10px 0; border-radius: 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(170%); -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 110;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 22px;
  font-size: 14px; font-weight: 500; color: #2a2a2a;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(228,35,18,0.06); color: var(--color-accent); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform var(--transition), background 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(228,35,18,0.28);
}
.header-cta:hover { background: var(--color-accent-hover); box-shadow: 0 10px 28px rgba(228,35,18,0.4); }

.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: none; border-radius: var(--radius-pill);
  background: rgba(228,35,18,0.08); cursor: none; flex-direction: column; gap: 4px;
}
.menu-btn span { width: 17px; height: 1.8px; background: var(--color-accent); border-radius: 2px; display: block; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(250,248,243,0.96); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 22px; padding: 0 34px;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
  opacity: 0; transform: translateY(-12px); pointer-events: none;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; }
.mobile-menu .menu-cta {
  margin-top: 16px; padding: 17px 34px; border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff; font-size: 18px; font-weight: 600;
  display: inline-block;
}
.menu-close {
  position: absolute; top: 26px; right: 22px;
  width: 46px; height: 46px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-pill); background: #fff; cursor: none;
  font-size: 20px; color: var(--color-text);
  display: flex; align-items: center; justify-content: center;
}

/* Mobile dropdowns */
.mobile-dropdown { width: 100%; }
.mobile-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--color-text); background: none; border: none;
  padding: 0; cursor: none; font-family: inherit;
}
.mobile-dropdown-toggle .nav-chevron { transition: transform 0.3s ease; }
.mobile-dropdown.open .nav-chevron { transform: rotate(180deg); }
.mobile-dropdown-menu {
  display: flex; flex-direction: column; gap: 10px;
  padding: 10px 0 6px 18px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 400px; opacity: 1;
}
.mobile-dropdown-menu a {
  font-size: 20px; font-weight: 500; color: var(--color-muted);
  transition: color 0.2s;
}
.mobile-dropdown-menu a:hover { color: var(--color-accent); }

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed; top: 0; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-accent); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); opacity: 1;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), width 0.25s, height 0.25s;
  box-shadow: 0 2px 12px rgba(228,35,18,0.45);
  will-change: transform, left, top;
}
.custom-cursor.on-link {
  width: 40px; height: 40px;
  background: rgba(228,35,18,0.18);
  border: 2px solid var(--color-accent);
  box-shadow: 0 4px 18px rgba(228,35,18,0.3);
}

/* ===== GLASS CAPSULE ===== */
.glass-capsule {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55); border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.glass-capsule .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); }
.glass-capsule-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #555; white-space: nowrap;
}
.glass-capsule--dark {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16);
}
.glass-capsule--dark .glass-capsule-label { color: rgba(255,255,255,0.82); }

/* ===== BUTTONS ===== */
[data-magnetic] { transition: transform var(--transition); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform var(--transition), background 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--color-accent-hover); box-shadow: 0 18px 46px rgba(228,35,18,0.42); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55); color: var(--color-text);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid var(--color-border-light);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform var(--transition), background 0.25s, border-color 0.25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.1); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 46px; padding: 18px 34px; border-radius: var(--radius-pill);
  background: var(--color-text); color: #fff; font-size: 16px; font-weight: 600;
  transition: transform var(--transition), background 0.25s, box-shadow 0.25s;
}
.btn-dark:hover { background: var(--color-accent); box-shadow: 0 16px 40px rgba(228,35,18,0.34); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius-pill);
  background: #fff; color: var(--color-text); font-size: 15px; font-weight: 600;
  transition: transform var(--transition), box-shadow 0.25s;
}
.btn-white:hover { box-shadow: 0 14px 34px rgba(255,255,255,0.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 30px; border-radius: var(--radius-pill);
  background: #fff; color: var(--color-text); font-size: 15.5px; font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform var(--transition), border-color 0.25s;
}
.btn-outline:hover { border-color: rgba(0,0,0,0.2); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 30px; border-radius: var(--radius-pill);
  background: transparent; color: var(--color-accent); font-size: 15.5px; font-weight: 600;
  border: 1px solid rgba(228,35,18,0.3);
  transition: transform var(--transition), background 0.25s;
}
.btn-ghost:hover { background: rgba(228,35,18,0.06); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 24px 100px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--color-bg); z-index: 0; }
.hero-orbs {
  position: absolute; inset: -10%; z-index: 0;
  animation: hueDrift 16s ease-in-out infinite;
}
.hero-orbs div { position: absolute; border-radius: 50%; }
.hero-orb--1 { top: 2%; right: 6%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(228,35,18,0.14) 0%, rgba(228,35,18,0) 68%); animation: orbA 20s ease-in-out infinite; }
.hero-orb--2 { top: 26%; right: 28%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,138,0,0.12) 0%, rgba(255,138,0,0) 68%); animation: orbC 24s ease-in-out infinite; }
.hero-orb--3 { bottom: 0%; right: 14%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(244,114,182,0.12) 0%, rgba(244,114,182,0) 68%); animation: orbB 22s ease-in-out infinite; }
.hero-orb--4 { bottom: -6%; left: 2%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(110,168,255,0.11) 0%, rgba(110,168,255,0) 68%); animation: orbD 26s ease-in-out infinite; }
.hero-orb--5 { top: 10%; left: 10%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, rgba(167,139,250,0) 68%); animation: orbA 23s ease-in-out infinite; }
.hero-orb--6 { top: 44%; left: 32%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(101,216,137,0.09) 0%, rgba(101,216,137,0) 68%); animation: orbC 19s ease-in-out infinite; }

.hero-content {
  position: relative; z-index: 3; width: 100%; max-width: var(--container-wide);
  margin: 0 auto; padding: 0 8px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-capsule { margin-bottom: 34px; }
.hero h1 {
  margin: 0; font-size: clamp(52px, 8.5vw, 132px);
  line-height: 0.92; font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase; color: var(--color-text); white-space: nowrap;
}
.hero h1 .line-wrap { display: block; overflow: hidden; padding-bottom: 0.05em; }
.hero h1 .line-inner { display: inline-block; transform: translateY(115%); }
.hero h1 .gradient-word {
  background: linear-gradient(100deg, var(--color-accent) 0%, var(--color-orange) 52%, var(--color-pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  margin: 36px auto 0; font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55; font-weight: 400; color: var(--color-muted); max-width: 54ch;
  opacity: 0; transform: translateY(22px);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 42px;
  opacity: 0; transform: translateY(22px);
}

/* ===== SECTION: FIRST VISIT ===== */
.section-first {
  padding: clamp(80px, 11vw, 150px) 24px; position: relative; overflow: hidden;
}
.section-first .bg-orb {
  position: absolute; border-radius: 50%; filter: blur(30px); z-index: 0;
}
.section-first .bg-orb--1 { top: 10%; left: -8%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(228,35,18,0.07) 0%, rgba(228,35,18,0) 70%); }
.section-first .bg-orb--2 { bottom: 0; right: -8%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(110,168,255,0.08) 0%, rgba(110,168,255,0) 70%); }

.first-grid {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.first-left h2 {
  margin: 26px 0 0; font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05; font-weight: 700; letter-spacing: -0.035em; color: var(--color-text);
}
.first-left p {
  margin: 24px 0 0; font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62; color: var(--color-muted); max-width: 46ch;
}
.journey-path { position: relative; }
.journey-line {
  position: absolute; left: 47px; top: 40px; bottom: 40px; width: 2px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-orange), var(--color-green), var(--color-blue));
  opacity: 0.22; z-index: 0;
}
.journey-steps { display: flex; flex-direction: column; gap: 14px; }
.journey-step {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  position: relative; z-index: 1;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.journey-step:hover { transform: translateX(6px); }
.journey-step:nth-child(1):hover { box-shadow: 0 18px 42px rgba(228,35,18,0.12); }
.journey-step:nth-child(2):hover { box-shadow: 0 18px 42px rgba(255,138,0,0.14); }
.journey-step:nth-child(3):hover { box-shadow: 0 18px 42px rgba(101,216,137,0.16); }
.journey-step:nth-child(4):hover { box-shadow: 0 18px 42px rgba(110,168,255,0.16); }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
}
.step-num--1 { background: linear-gradient(140deg, #FF7A1A, var(--color-accent)); box-shadow: 0 6px 16px rgba(228,35,18,0.3); }
.step-num--2 { background: linear-gradient(140deg, #FFB23E, var(--color-orange)); box-shadow: 0 6px 16px rgba(255,138,0,0.3); }
.step-num--3 { background: linear-gradient(140deg, #86E6A4, #45C277); box-shadow: 0 6px 16px rgba(69,194,119,0.3); }
.step-num--4 { background: linear-gradient(140deg, #93BBFF, var(--color-blue)); box-shadow: 0 6px 16px rgba(110,168,255,0.3); }
.step-text { font-size: clamp(17px, 1.7vw, 20px); font-weight: 600; letter-spacing: -0.015em; color: var(--color-text); }

/* ===== SECTION: SERVICES ===== */
.section-services { padding: clamp(70px, 9vw, 120px) 24px; }
.services-container {
  max-width: 1380px; margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: 40px; background: #14110F;
  position: relative; overflow: hidden;
}
.services-container .bg-glow { position: absolute; border-radius: 50%; filter: blur(40px); }
.services-glow--1 { top: -120px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(228,35,18,0.34) 0%, rgba(228,35,18,0) 68%); }
.services-glow--2 { bottom: -140px; left: -60px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(244,114,182,0.26) 0%, rgba(244,114,182,0) 68%); }
.services-glow--3 { top: 20%; left: 40%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,138,0,0.2) 0%, rgba(255,138,0,0) 68%); }

.services-header { position: relative; max-width: 660px; }
.services-header .glass-capsule { margin-bottom: 22px; }
.services-header h2 {
  margin: 0; font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.035em; color: #fff;
}
.services-header p {
  margin: 22px 0 0; font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 48ch;
}
.services-grid {
  position: relative; display: flex;
  gap: 16px; margin-top: 54px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.services-grid::-webkit-scrollbar { display: none; }
.services-grid > .svc-card {
  flex: 0 0 calc(30% - 11px);
  scroll-snap-align: start;
  min-width: 280px;
}
.svc-card {
  display: flex; flex-direction: column; height: 100%; min-height: 240px;
  padding: 28px 26px; border-radius: var(--radius-md);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.svc-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.09); }
.svc-card:nth-child(1):hover { border-color: rgba(228,35,18,0.5); }
.svc-card:nth-child(3):hover { border-color: rgba(96,216,232,0.5); }
.svc-card:nth-child(4):hover { border-color: rgba(167,139,250,0.5); }
.svc-card--featured {
  background: linear-gradient(160deg, rgba(228,35,18,0.22), rgba(244,114,182,0.14));
  border: 1px solid rgba(228,35,18,0.4);
}
.svc-card--featured:hover { box-shadow: 0 22px 50px rgba(228,35,18,0.3); transform: translateY(-8px); }
.svc-badge-slot { min-height: 34px; margin-bottom: 14px; }
.svc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.82);
}
.svc-time {
  margin-top: auto; font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.15;
}
.services-grid--schedule .svc-time {
  font-size: clamp(48px, 6vw, 82px); letter-spacing: -0.05em; line-height: 0.95;
}
.svc-label { margin-top: 16px; font-size: 15px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,0.68); }
.svc-card--featured .svc-label { color: rgba(255,255,255,0.82); }
.services-cta { margin-top: 42px; }

/* ===== SECTION: WHY JESUS ===== */
.section-jesus {
  padding: clamp(90px, 13vw, 180px) 24px; position: relative; overflow: hidden;
}
.section-jesus .bg-glow {
  position: absolute; top: 14%; left: 50%; transform: translateX(-50%);
  width: 820px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,0.16) 0%, rgba(255,212,59,0.1) 40%, rgba(255,79,163,0) 72%);
  filter: blur(30px); z-index: 0;
}
.jesus-content {
  position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center;
}
.jesus-content h2 {
  margin: 30px auto 0; font-size: clamp(30px, 5.6vw, 72px);
  line-height: 1.08; letter-spacing: -0.04em; font-weight: 700;
  text-transform: uppercase; color: var(--color-text); max-width: 17ch;
}
.jesus-content h2 .gradient-text {
  background: linear-gradient(100deg, var(--color-accent), var(--color-orange), var(--color-pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.jesus-content .body-text {
  margin: 30px auto 0; font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6; color: var(--color-muted); max-width: 52ch;
}

/* ===== SECTION: MINISTRIES ===== */
.section-ministries { padding: clamp(70px, 9vw, 120px) 24px; }
.ministries-inner { max-width: var(--container); margin: 0 auto; }
.ministries-header {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.ministries-header h2 {
  margin: 22px 0 0; font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04; font-weight: 700; letter-spacing: -0.035em; color: var(--color-text);
}
.ministries-header p {
  margin: 22px 0 0; font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6; color: var(--color-muted); max-width: 52ch;
}
.ministries-photo {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.16); border: 1px solid rgba(255,255,255,0.6);
}
.ministries-photo img { width: 100%; height: 320px; object-fit: cover; object-position: center; }
.ministries-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,11,0.6) 0%, rgba(15,12,11,0) 52%);
  pointer-events: none;
}
.ministries-photo .badge {
  position: absolute; left: 20px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.ministries-photo .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-blue); }
.ministries-photo .badge-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
}

.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: clamp(40px, 5vw, 60px);
}
.bento-card {
  padding: 36px 32px; border-radius: 32px; min-height: 248px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s;
}
.bento-card:hover { transform: translateY(-7px); }
.bento-card .tag {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55); border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.bento-card .tag .dot { width: 6px; height: 6px; border-radius: 50%; }
.bento-card h3 {
  margin: 0; font-size: clamp(24px, 2.5vw, 33px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; color: var(--color-text);
}
.bento-card p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--color-muted); max-width: 32ch; }

.bento-card--prayer   { background: linear-gradient(150deg, #FDE9E6, #FFF3EF); border: 1px solid rgba(228,35,18,0.08); }
.bento-card--prayer:hover { box-shadow: 0 26px 54px rgba(228,35,18,0.12); }
.bento-card--prayer .tag { color: #C9341F; }
.bento-card--prayer .tag .dot { background: var(--color-accent); }

.bento-card--worship  { background: linear-gradient(150deg, #FFF1DF, #FFF9F0); border: 1px solid rgba(255,138,0,0.1); }
.bento-card--worship:hover { box-shadow: 0 26px 54px rgba(255,138,0,0.14); }
.bento-card--worship .tag { color: #D97A06; }
.bento-card--worship .tag .dot { background: var(--color-orange); }

.bento-card--youth    { background: linear-gradient(150deg, #E8F0FF, #F3F8FF); border: 1px solid rgba(110,168,255,0.14); }
.bento-card--youth:hover { box-shadow: 0 26px 54px rgba(110,168,255,0.16); }
.bento-card--youth .tag { color: #3D78D6; }
.bento-card--youth .tag .dot { background: var(--color-blue); }

.bento-card--kids     { background: linear-gradient(150deg, #FFF6D9, #FFFBEC); border: 1px solid rgba(255,215,106,0.3); }
.bento-card--kids:hover { box-shadow: 0 26px 54px rgba(214,170,0,0.16); }
.bento-card--kids .tag { color: #C79A00; }
.bento-card--kids .tag .dot { background: var(--color-yellow); }

.bento-card--sport    { background: linear-gradient(150deg, #E6F7EC, #F2FCF6); border: 1px solid rgba(101,216,137,0.18); }
.bento-card--sport:hover { box-shadow: 0 26px 54px rgba(101,216,137,0.16); }
.bento-card--sport .tag { color: #2A9C58; }
.bento-card--sport .tag .dot { background: var(--color-green); }

.bento-card--social   { background: linear-gradient(150deg, #F0EAFE, #F7F3FF); border: 1px solid rgba(167,139,250,0.18); }
.bento-card--social:hover { box-shadow: 0 26px 54px rgba(167,139,250,0.16); }
.bento-card--social .tag { color: #7A5BD6; }
.bento-card--social .tag .dot { background: var(--color-purple); }

/* ===== SECTION: PEOPLE (cinematic) ===== */
.section-people { padding: 0; margin: clamp(50px, 7vw, 100px) 0; }
.people-inner { position: relative; width: 100%; overflow: hidden; }
.people-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.people-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(15,12,11,0.84) 0%, rgba(15,12,11,0.58) 38%, rgba(15,12,11,0.18) 68%, rgba(15,12,11,0.04) 100%),
    linear-gradient(to top, rgba(15,12,11,0.66) 0%, rgba(15,12,11,0) 50%);
}
.people-content {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  min-height: min(88vh, 760px); display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 64px);
}
.people-capsule { align-self: flex-start; margin-bottom: 26px; }
.people-statement {
  margin: 0; font-size: clamp(24px, 3.4vw, 50px);
  line-height: 1.18; font-weight: 700; letter-spacing: -0.025em;
  text-transform: uppercase; color: #fff; max-width: 24ch;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.people-statement .line { transition: opacity 0.6s ease; }
.people-statement .accent {
  background: linear-gradient(100deg, #FFFFFF 0%, #FFC9C0 50%, #FF6A52 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.people-cta { margin-top: 40px; }
.people-cta .btn-primary { box-shadow: 0 14px 38px rgba(228,35,18,0.45); }

/* ===== SECTION: CONTACT ===== */
.section-contact { padding: 0 24px clamp(70px, 9vw, 120px); }
.contact-container {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(50px, 7vw, 100px) clamp(28px, 5vw, 72px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FFEDE9 0%, #FFF4E6 30%, #FDF0F6 70%, #EFF1FF 100%);
  border: 1px solid rgba(0,0,0,0.05); text-align: center;
  position: relative; overflow: hidden;
}
.contact-container .bg-glow { position: absolute; border-radius: 50%; filter: blur(20px); }
.contact-glow--1 { top: -120px; right: -40px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(228,35,18,0.16) 0%, rgba(228,35,18,0) 68%); }
.contact-glow--2 { bottom: -140px; left: -40px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(142,92,247,0.16) 0%, rgba(142,92,247,0) 68%); }
.contact-inner { position: relative; }
.contact-capsule { margin-bottom: 26px; }
.contact-dots { display: flex; gap: 4px; }
.contact-dots .dot--orange { width: 7px; height: 7px; border-radius: 50%; background: var(--color-orange); }
.contact-dots .dot--blue { width: 7px; height: 7px; border-radius: 50%; background: var(--color-blue); }
.contact-inner h2 {
  margin: 0; font-size: clamp(34px, 6vw, 76px);
  line-height: 1.0; font-weight: 700; letter-spacing: -0.04em; color: var(--color-text);
}
.contact-inner p {
  margin: 26px auto 0; font-size: clamp(16px, 1.9vw, 21px);
  line-height: 1.6; color: var(--color-muted); max-width: 54ch;
}
.contact-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 44px; }
.contact-buttons .btn-primary { font-size: 15.5px; padding: 17px 30px; box-shadow: 0 12px 32px rgba(228,35,18,0.3); }

/* ===== FOOTER ===== */
.site-footer { padding: clamp(50px, 6vw, 80px) 24px 40px; }
.footer-container {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
  border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; align-items: start;
}
.footer-brand { min-width: 200px; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-text { display: flex; flex-direction: column; line-height: 1.04; }
.footer-brand .logo-text .brand { font-size: 19px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text); }
.footer-brand .logo-text .sub { font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent); margin-top: 3px; }
.footer-brand .desc { margin: 18px 0 0; font-size: 14.5px; line-height: 1.55; color: #999; max-width: 30ch; }
.footer-dots { display: flex; gap: 7px; margin-top: 20px; }
.footer-dots span { width: 10px; height: 10px; border-radius: 50%; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; }
.footer-col-links { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.footer-col-links a { font-size: 14.5px; color: #555; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--color-accent); }
.footer-col-links .phone { font-size: 14.5px; color: var(--color-text); font-weight: 600; }
.footer-col-links .phone:hover { color: var(--color-accent); }
.footer-col-links .address { font-size: 14.5px; color: #555; }
.footer-bottom {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--color-border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom span { font-size: 13px; color: #aaa; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .ministries-header { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-btn { display: flex; }
  .services-grid > .svc-card { flex: 0 0 calc(50% - 8px); }
  .first-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { white-space: normal; font-size: clamp(40px, 10vw, 72px); }
}
@media (max-width: 620px) {
  .bento-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid > .svc-card { flex: 0 0 calc(100% - 8px); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav-desktop a[aria-current="page"] { color: var(--color-accent); }
.mobile-menu a[aria-current="page"] { color: var(--color-accent); }

/* ===== PAGE: WHY JESUS ===== */
.wj-hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  padding: 160px 24px 80px; overflow: hidden;
}
.wj-hero-content {
  position: relative; z-index: 3; width: 100%; max-width: 900px;
  margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.wj-hero h1 {
  margin: 28px 0 0; font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0; font-weight: 800; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--color-text);
}
.wj-hero-lead {
  margin: 28px auto 0; font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35; font-weight: 600; color: var(--color-text); max-width: 38ch;
  letter-spacing: -0.02em;
}
.wj-hero-desc {
  margin: 20px auto 0; font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6; color: var(--color-muted); max-width: 52ch;
}
.wj-hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px;
}

/* Intro */
.wj-intro {
  padding: clamp(60px, 8vw, 120px) 24px; position: relative; overflow: hidden;
}
.wj-intro-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.wj-intro-inner h2 {
  margin: 28px auto 0; font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.08; font-weight: 700; letter-spacing: -0.035em;
  color: var(--color-text); max-width: 20ch;
}
.wj-intro-inner p {
  margin: 24px auto 0; font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6; color: var(--color-muted); max-width: 52ch;
}

/* Beliefs */
.wj-beliefs { padding: clamp(60px, 8vw, 120px) 24px; }
.wj-beliefs-inner { max-width: var(--container); margin: 0 auto; }
.wj-beliefs-header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.wj-beliefs-header h2 {
  margin: 24px 0 0; font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04; font-weight: 700; letter-spacing: -0.035em; color: var(--color-text);
}
.wj-beliefs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.wj-belief-card {
  padding: 36px 32px; border-radius: 32px; min-height: 220px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.wj-belief-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.wj-belief-num {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55); border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-accent);
}
.wj-belief-card h3 {
  margin: 0; font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700; letter-spacing: -0.025em; color: var(--color-text);
}
.wj-belief-card p {
  margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--color-muted);
}
.wj-belief-card cite {
  font-style: normal; font-size: 13px; font-weight: 600;
  color: var(--color-accent); opacity: 0.7; letter-spacing: 0.02em;
  margin-top: auto;
}
.wj-belief-card--wide { grid-column: 1 / -1; }

/* Follow steps */
.wj-follow { padding: clamp(60px, 8vw, 120px) 24px; }
.wj-follow-inner { max-width: 800px; margin: 0 auto; }
.wj-follow-header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.wj-follow-header h2 {
  margin: 24px 0 0; font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04; font-weight: 700; letter-spacing: -0.035em; color: var(--color-text);
}
.wj-steps { display: flex; flex-direction: column; gap: 18px; }
.wj-step {
  display: flex; align-items: center; gap: 22px;
  padding: 28px 30px; border-radius: var(--radius-md);
  background: var(--color-surface); border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.wj-step:hover { transform: translateX(6px); box-shadow: var(--shadow-medium); }
.wj-step .step-num { flex-shrink: 0; margin-top: 4px; }
.wj-step-body h3 {
  margin: 0 0 8px; font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--color-text);
}
.wj-step-body p {
  margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--color-muted);
}

/* Why-Jesus responsive */
@media (max-width: 900px) {
  .wj-beliefs-grid { grid-template-columns: 1fr; }
  .wj-belief-card--wide { grid-column: auto; flex-direction: column !important; }
  .wj-belief-card--wide svg { display: none; }
  .history-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 620px) {
  .wj-step { flex-direction: column; gap: 14px; }
}

/* ===== CURSOR: DISABLE ON TOUCH ===== */
@media (hover: none), (pointer: coarse) {
  body, a, button, [data-magnetic] { cursor: auto; }
  .custom-cursor { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1 .line-inner { transform: translateY(0) !important; }
  .hero-subtitle, .hero-ctas { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   YOUTH MINISTRY PAGE — 5/14 Generation (Dark)
   ============================================ */

/* --- Dark body override --- */
.youth-page {
  background: #0B0B0D;
  color: #fff;
  scroll-padding-top: 100px;
}

/* --- Button icon --- */
.btn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.youth-page ::selection {
  background: rgba(228, 35, 18, 0.35);
  color: #fff;
}

/* --- Dark header adaptation --- */
.youth-page .header {
  background: rgba(11, 11, 13, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.youth-page .header.scrolled {
  background: rgba(11, 11, 13, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.youth-page .header-logo-text .brand { color: #fff; }
.youth-page .nav-desktop > a { color: rgba(255, 255, 255, 0.7); }
.youth-page .nav-desktop > a:hover { color: #fff; }
.youth-page .nav-dropdown-toggle { color: rgba(255, 255, 255, 0.7); }
.youth-page .nav-dropdown-toggle:hover { color: #fff; }
.youth-page .nav-dropdown-menu {
  background: rgba(20, 20, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.youth-page .nav-dropdown-menu a { color: rgba(255, 255, 255, 0.7); }
.youth-page .nav-dropdown-menu a:hover { background: rgba(228, 35, 18, 0.12); color: #fff; }
.youth-page .nav-desktop a[aria-current="page"] { color: var(--color-accent); }

.youth-page .menu-btn {
  background: rgba(228, 35, 18, 0.15);
}
.youth-page .menu-btn span { background: #fff; }

/* --- Dark footer --- */
.youth-page .site-footer {
  background: #0B0B0D;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.youth-page .site-footer .footer-container {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}
.youth-page .footer-brand .logo-text .brand { color: #fff; }
.youth-page .footer-brand .logo-text .brand,
.youth-page .footer-brand .desc { color: rgba(255, 255, 255, 0.6); }
.youth-page .footer-brand .logo-text .sub { color: var(--color-accent); }
.youth-page .footer-col-title { color: rgba(255, 255, 255, 0.35); }
.youth-page .footer-col-links a { color: rgba(255, 255, 255, 0.55); }
.youth-page .footer-col-links a:hover { color: #fff; }
.youth-page .footer-col-links .phone { color: #fff; }
.youth-page .footer-col-links .address { color: rgba(255, 255, 255, 0.45); }
.youth-page .footer-bottom { color: rgba(255, 255, 255, 0.25); border-color: rgba(255, 255, 255, 0.06); }

/* --- Youth shared elements --- */
.youth-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.youth-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.text-muted-line { color: rgba(255, 255, 255, 0.3); }
.text-accent { color: var(--color-accent); }

/* --- Youth buttons --- */
.youth-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--transition), background 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(228, 35, 18, 0.35);
}

.youth-btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 12px 36px rgba(228, 35, 18, 0.5);
  transform: translateY(-2px);
}

.youth-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--transition), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.youth-btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- Hero --- */
@keyframes youthHeroPhotoScale {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes youthHeroBgDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(12px, -8px); }
}

@keyframes youthHeroDotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.youth-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0B0B0D;
}

.youth-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.youth-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: youthHeroPhotoScale 1.8s cubic-bezier(.2,.8,.2,1) both;
}

.youth-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.72) 100%);
}

.youth-hero-glow {
  position: absolute;
  bottom: -120px;
  left: -10%;
  width: 60%;
  height: 400px;
  background: radial-gradient(ellipse, rgba(228, 35, 18, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Background typography layer */
.youth-hero-bg-text {
  position: absolute;
  right: -3%;
  bottom: 8%;
  font-size: clamp(180px, 28vw, 460px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  animation: youthHeroBgDrift 12s ease-in-out infinite alternate;
}

/* Accent dot */
.youth-hero-accent-dot {
  position: absolute;
  top: 22%;
  right: 14%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 35, 18, 0.6) 0%, rgba(228, 35, 18, 0) 70%);
  z-index: 1;
  pointer-events: none;
  animation: youthHeroDotPulse 5s ease-in-out infinite;
}

.youth-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 clamp(24px, 4vw, 56px) 76px;
  color: #fff;
}

/* Floating badge */
.youth-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.youth-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(228, 35, 18, 0.5);
}

.youth-hero-content h1 {
  font-size: clamp(56px, 5.6vw, 90px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 28px 0 0;
  color: #fff;
}

.hero-word-accent {
  font-size: 1.15em;
  display: inline-block;
}

.youth-hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 36px 0 0;
}

.youth-hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .youth-hero-photo img { animation: none; }
  .youth-hero-bg-text { animation: none; }
  .youth-hero-accent-dot { animation: none; opacity: 0.5; }
}

/* --- Storytelling (Alpha Youth style) --- */
.youth-story {
  position: relative;
  height: 320vh;
  background: #0B0B0D;
}

.youth-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 clamp(24px, 4vw, 56px);
}

.youth-story-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(340px, min(52%, 680px));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.youth-story-content {
  position: relative;
  z-index: 2;
}

.youth-story-text {
  margin-top: 48px;
}

.story-line {
  display: block;
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.12);
  transition: color 500ms ease, opacity 500ms ease;
}

.story-line.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.story-line--accent.is-active {
  color: #E42312;
}

/* Photo frame (Alpha-like angled panel) */
.youth-story-visual {
  position: relative;
  z-index: 1;
  margin-left: -40px;
}

@keyframes frameFloat {
  0%   { transform: rotate(-2.5deg) translate3d(0, 0, 0) scale(1); }
  20%  { transform: rotate(1.6deg) translate3d(10px, -8px, 0) scale(1.015); }
  45%  { transform: rotate(-1deg) translate3d(-8px, 6px, 0) scale(1.01); }
  70%  { transform: rotate(2.2deg) translate3d(6px, 8px, 0) scale(1.02); }
  100% { transform: rotate(-2.5deg) translate3d(0, 0, 0) scale(1); }
}

.youth-photo-frame {
  position: relative;
  width: clamp(420px, 48vw, 780px);
  height: clamp(360px, 56vh, 620px);
  overflow: hidden;
  clip-path: polygon(9% 5%, 100% 0, 91% 92%, 0 100%);
  background: #111;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: frameFloat 8s cubic-bezier(.4, 0, .6, 1) infinite;
  will-change: transform;
}

.youth-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}

.youth-photo-slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* 5/14 brand badge */
.youth-brand-badge {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 4vw, 54px);
  width: clamp(76px, 8vw, 132px);
  aspect-ratio: 1;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

.youth-brand-badge img {
  width: 76%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .youth-story { height: auto; }
  .youth-story-sticky { position: relative; height: auto; padding-top: 120px; padding-bottom: 120px; }
  .story-line { color: rgba(255, 255, 255, 0.88); }
  .story-line--accent { color: #E42312; }
  .youth-photo-frame { animation: none; transform: rotate(-2deg); }
}

/* --- Photo cinematic --- */
.youth-photo {
  padding: 0;
  background: #0B0B0D;
}

.youth-photo-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
}

.youth-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  inset: 0;
}

.youth-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #0B0B0D 0%, rgba(11, 11, 13, 0.7) 30%, rgba(11, 11, 13, 0.2) 60%, rgba(11, 11, 13, 0.35) 100%),
    linear-gradient(to right, rgba(11, 11, 13, 0.3) 0%, transparent 60%);
  z-index: 1;
}

.youth-photo-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(40px, 6vw, 96px) clamp(24px, 4vw, 56px);
  color: #fff;
  z-index: 2;
}

.youth-photo-text h2 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.youth-photo-text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 540px;
}

/* --- Meeting --- */
.youth-meeting {
  padding: 160px clamp(24px, 4vw, 56px);
  background: #0B0B0D;
}

.youth-meeting-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.youth-meeting-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(228, 35, 18, 0.08) 0%, rgba(123, 44, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.youth-meeting-body {
  position: relative;
  z-index: 1;
  padding: 80px 64px;
}

.youth-event-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(228, 35, 18, 0.12);
  border: 1px solid rgba(228, 35, 18, 0.2);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.youth-meeting-inner h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 32px 0 0;
  color: #fff;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.youth-meeting-desc {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 560px;
}

.youth-meeting-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 480px;
  font-style: italic;
}

.youth-meeting-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.youth-meeting-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.3);
}

.youth-meeting-links svg {
  flex-shrink: 0;
  opacity: 0.4;
}

.youth-meeting-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.youth-meeting-links a:hover {
  color: var(--color-accent);
}

.youth-meeting-links-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* --- Social gradient CTAs --- */
.social-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  min-height: 56px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: none;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s;
}

.social-cta--instagram {
  background: linear-gradient(135deg, #E42312 0%, #FF2BD6 100%);
  box-shadow: 0 8px 28px rgba(228, 35, 18, 0.3);
}

.social-cta--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(228, 35, 18, 0.45);
}

.social-cta--telegram {
  background: linear-gradient(135deg, #229ED9 0%, #32D6FF 100%);
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.3);
}

.social-cta--telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(34, 158, 217, 0.45);
}

/* --- Values --- */
.youth-values {
  padding: 160px clamp(24px, 4vw, 56px);
  background: #0B0B0D;
}

.youth-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.youth-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.youth-value-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.youth-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #FF2BD6, #7B2CFF);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.youth-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(228, 35, 18, 0.08);
}

.youth-value-card:hover::before {
  opacity: 1;
}

.youth-value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}

.youth-value-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* --- Active Life --- */
.youth-active {
  position: relative;
  padding: 120px 0;
  background: #070707;
  overflow: hidden;
}

/* Ticker */
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.active-ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0;
}

.active-ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
  width: max-content;
}

.active-ticker__track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
}

.active-ticker__dot {
  width: 4px !important;
  height: 4px;
  border-radius: 50%;
  background: #E42312;
  align-self: center;
  flex-shrink: 0;
}

/* Inner */
.active-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}

.active-header {
  text-align: center;
  margin-bottom: 64px;
}

.active-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 24px 0 0;
}

.active-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 520px;
}

/* Cards */
.active-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.active-card {
  padding: 36px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease;
}

.active-card:hover {
  border-color: rgba(228, 35, 18, .35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(228, 35, 18, .08);
}

.active-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(228, 35, 18, .1);
  border: 1px solid rgba(228, 35, 18, .2);
  display: grid;
  place-items: center;
  color: #E42312;
  margin-bottom: 20px;
}

.active-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.active-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin: 0;
}

/* Floating shapes */
@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(120deg); }
  66% { transform: translate(-15px, 15px) rotate(240deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 20px) scale(1.2); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(180deg); }
}

.active-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.active-shape {
  position: absolute;
  border-radius: 50%;
}

.active-shape--1 {
  width: 280px;
  height: 280px;
  top: 15%;
  right: -60px;
  background: radial-gradient(circle, rgba(228, 35, 18, .1) 0%, transparent 70%);
  animation: shapeFloat1 12s ease-in-out infinite;
}

.active-shape--2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(120, 60, 255, .08) 0%, transparent 70%);
  animation: shapeFloat2 10s ease-in-out infinite;
}

.active-shape--3 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(0, 200, 200, .06) 0%, transparent 70%);
  animation: shapeFloat3 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .active-ticker__track { animation: none; }
  .active-shape { animation: none; }
}

/* --- Social --- */
.youth-social {
  padding: 160px clamp(24px, 4vw, 56px);
  background: #0B0B0D;
  position: relative;
  overflow: hidden;
}

.youth-social-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(228, 35, 18, 0.08) 0%, rgba(123, 44, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.youth-social-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.youth-social-inner h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 28px 0 0;
  color: #fff;
}

.youth-social-inner p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 16px 0 0;
}

/* Social photo gallery */
.youth-social-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.social-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.social-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-photo:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.youth-social-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* --- Final CTA --- */
.youth-cta {
  padding: 80px clamp(24px, 4vw, 56px) 160px;
  background: #0B0B0D;
}

.youth-cta-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.youth-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(228, 35, 18, 0.1) 0%, rgba(123, 44, 255, 0.06) 40%, transparent 70%);
  pointer-events: none;
}

.youth-cta-inner {
  position: relative;
  z-index: 1;
  padding: 80px 64px;
  text-align: center;
}

.youth-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 24px 0 0;
  color: #fff;
}

.youth-cta-inner p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 16px auto 0;
  max-width: 520px;
}

.youth-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* --- Youth responsive --- */
@media (max-width: 900px) {
  .youth-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .youth-story { height: auto; }
  .youth-story-sticky {
    position: relative;
    height: auto;
    padding: 96px clamp(20px, 5vw, 48px);
  }

  .youth-story-inner {
    grid-template-columns: 1fr;
  }

  .youth-story-visual {
    margin-left: 0;
  }

  .youth-photo-frame {
    width: 100%;
    height: clamp(360px, 52vh, 460px);
    clip-path: none;
    transform: none !important;
    animation: none;
    border-radius: 20px;
  }

  .youth-brand-badge {
    width: 72px;
    right: 16px;
    bottom: 16px;
    border-radius: 18px;
  }
  .youth-meeting { padding: 96px clamp(20px, 5vw, 48px); }
  .youth-values { padding: 96px clamp(20px, 5vw, 48px); }
  .youth-active { padding: 96px 0; }
  .active-cards { grid-template-columns: 1fr; gap: 16px; }
  .active-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .youth-social { padding: 96px clamp(20px, 5vw, 48px); }
  .youth-cta { padding: 48px clamp(20px, 5vw, 48px) 96px; }

  .youth-photo-wrap {
    min-height: 65vh;
  }

  .youth-photo-text {
    padding: 36px clamp(20px, 5vw, 48px);
  }

  .youth-meeting-body {
    padding: 56px 36px;
  }

  .youth-cta-inner {
    padding: 56px 36px;
  }
}

@media (max-width: 620px) {
  .youth-hero {
    min-height: 100svh;
  }

  .youth-hero-bg-text {
    font-size: clamp(100px, 30vw, 160px);
    opacity: 0.04;
    right: -5%;
    bottom: 12%;
  }

  .youth-hero-accent-dot {
    width: 48px;
    height: 48px;
    top: 18%;
    right: 8%;
  }

  .youth-hero-content {
    padding: 0 20px 48px;
  }

  .youth-hero-badge {
    font-size: 10px;
    padding: 8px 16px;
    gap: 8px;
  }

  .youth-hero-content h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.95;
    margin-top: 20px;
  }

  .hero-word-accent {
    font-size: 1.1em;
  }

  .youth-hero-desc {
    margin-top: 24px;
  }

  .youth-hero-ctas {
    flex-direction: column;
    margin-top: 32px;
  }

  .youth-btn-primary,
  .youth-btn-glass {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .youth-story-sticky { padding: 72px 20px; }

  .story-line { font-size: clamp(1.3rem, 6vw, 1.7rem); }

  .youth-story-text { margin-top: 36px; }

  .youth-photo-frame {
    height: clamp(320px, 48vh, 420px);
  }

  .youth-brand-badge {
    width: 60px;
    right: 12px;
    bottom: 12px;
    border-radius: 14px;
  }

  .youth-photo-wrap {
    min-height: 480px;
  }

  .youth-photo-text {
    padding: 28px 20px;
  }

  .youth-photo-text h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .youth-meeting { padding: 72px 20px; }

  .youth-meeting-inner {
    border-radius: 24px;
  }

  .youth-meeting-body {
    padding: 44px 24px;
  }

  .youth-values { padding: 72px 20px; }

  .youth-value-card {
    padding: 32px 24px;
  }

  .youth-active { padding: 72px 0; }
  .active-inner { padding: 0 20px; }
  .active-header { margin-bottom: 40px; }
  .youth-social { padding: 72px 20px; }
  .youth-social-gallery { grid-template-columns: 1fr; gap: 12px; }
  .social-photo { aspect-ratio: 16 / 9; border-radius: 16px; }

  .youth-cta { padding: 20px 20px 80px; }

  .youth-cta-card {
    border-radius: 24px;
  }

  .youth-cta-inner {
    padding: 44px 24px;
  }

  .youth-meeting-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .youth-meeting-ctas .youth-btn-primary,
  .youth-meeting-ctas .youth-btn-glass {
    width: 100%;
    justify-content: center;
  }

  .youth-social-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .social-cta {
    width: 100%;
    justify-content: center;
  }

  .youth-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --- Youth custom cursor refinement --- */
.youth-page .custom-cursor {
  width: 14px;
  height: 14px;
  box-shadow: 0 2px 8px rgba(228, 35, 18, 0.35);
}

.youth-page .custom-cursor.on-link {
  width: 36px;
  height: 36px;
}

@media (hover: none), (pointer: coarse) {
  .youth-page .custom-cursor { display: none; }
}

/* ==========================================================================
   CONTACTS PAGE (light theme)
   ========================================================================== */

.ct-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.ct-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.ct-hero-inner .glass-capsule { margin-bottom: 22px; }

.ct-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--color-text);
}

.ct-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Cards */
.ct-cards { padding: 0 24px 80px; }

.ct-cards-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ct-card {
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease;
}

.ct-card--light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.ct-card--light:hover {
  border-color: rgba(228, 35, 18, .2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.ct-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(228, 35, 18, .08);
  border: 1px solid rgba(228, 35, 18, .15);
  color: #E42312;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ct-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
}

.ct-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
}

.ct-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #E42312;
  text-decoration: none;
  transition: gap 300ms ease;
}

.ct-card-link:hover { gap: 10px; }

/* Contacts responsive */
@media (max-width: 900px) {
  .ct-cards-inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .ct-hero { padding: 140px 0 60px; }
  .ct-cards { padding: 0 16px 60px; }
  .ct-cards-inner { gap: 14px; }
  .ct-card { padding: 28px 22px; }
}
