/* ========================================
   SCHACC v2 — Bold & Bright Design
   Light theme, color blocks, scroll layout
   ======================================== */

@font-face {
  font-family: 'DM Serif Display';
  src: url('Assets/fonts/dm-serif-display.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('Assets/fonts/inter-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('Assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1B2A4A;
  --navy-dark: #111D33;
  --crimson: #C41E3A;
  --crimson-dark: #A81832;
  --gold: #C5A55A;
  --gold-light: #D9C07E;
  --gold-pale: #FBF6EC;
  --white: #FFFFFF;
  --off: #F8F7F4;
  --gray-100: #EEECEA;
  --gray-200: #DDDBD8;
  --gray-500: #8A8985;
  --gray-600: #6B6A66;
  --gray-800: #2D2D2A;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r: 12px;
  --r-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

img { display: block; max-width: 100%; }

em { font-style: normal; color: var(--crimson); }

/* ========================================
   SKIP LINK
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--crimson);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--r);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.logo img { width: 42px; height: 42px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-right a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-right a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r);
  font-weight: 600 !important;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--crimson) !important;
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--crimson);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-crimson {
  background: var(--crimson);
  color: var(--white);
}

.btn-crimson:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.btn-full { width: 100%; }

/* ========================================
   HERO: SPLIT SCREEN
   ======================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 0;
  margin-left: max(32px, calc((100vw - 1140px) / 2 + 32px));
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 18px;
  background: var(--gold-pale);
  color: #7A6530;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-left > p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right: card + shapes */
.hero-right {
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

.cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 14px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
}

.cd span {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
}

.cd small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.cd-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Decorative shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--crimson);
  opacity: 0.15;
  top: -80px;
  right: -60px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.1;
  bottom: -40px;
  left: -40px;
}

.shape-3 {
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255,255,255,0.08);
  bottom: 20%;
  right: 10%;
}

/* ========================================
   SECTION HELPERS
   ======================================== */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  padding: 6px 16px;
  background: rgba(196, 30, 58, 0.06);
  border-radius: 100px;
  margin-bottom: 16px;
}

.tag-light {
  color: var(--gold-light);
  background: rgba(197, 165, 90, 0.12);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 120px 0;
  background: var(--off);
}

.about h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 56px;
}

.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}

.mv:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.mv-bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mission-bar { background: var(--crimson); }
.vision-bar { background: var(--gold); }

.mv h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.mv p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   PILLARS
   ======================================== */
.pillars {
  padding: 120px 0 80px;
  background: var(--navy);
  color: var(--white);
}

.pillars h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 56px;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar-item {
  padding: 56px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
  position: relative;
}

.pillar-item:last-child { border-right: none; }

.pillar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.pillar-item:hover {
  background: rgba(255,255,255,0.04);
}

.pillar-item:hover::after {
  transform: scaleX(1);
}

.p-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pillar-item:hover .p-num {
  opacity: 0.6;
}

.pillar-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pillar-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ========================================
   JOIN / CTA
   ======================================== */
.join {
  padding: 120px 0;
  background: var(--white);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.join-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.join-text p {
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.7;
}

.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.perks li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold-pale);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5A55A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Form */
.join-form-wrap {
  background: var(--off);
  padding: 40px 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
}

.join-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: all 0.2s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.08);
}

.form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8985' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 16px;
}

.form-note a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img { width: 40px; height: 40px; }
.footer-left strong { color: var(--white); font-size: 0.95rem; display: block; }
.footer-left span { font-size: 0.72rem; }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy p {
  font-size: 0.72rem;
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */
/* Sections are always visible — no collapse issues */

/* ========================================
   CURTAIN REVEAL
   ======================================== */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: curtainLift 0.8s var(--ease) 0.8s forwards;
}

.curtain-logo img {
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  padding: 4px;
  animation: curtainLogoFade 0.5s ease both;
}

@keyframes curtainLogoFade {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes curtainLift {
  to {
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
  }
}

/* ========================================
   SPLIT TEXT REVEAL
   ======================================== */
.split-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(15deg);
  animation: wordReveal 0.7s var(--ease) forwards;
  animation-delay: calc(1.2s + var(--i) * 0.08s);
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* Gradient shimmer on accent words */
.accent-word {
  background: linear-gradient(90deg, var(--crimson) 0%, #E8475D 25%, var(--crimson) 50%, #E8475D 75%, var(--crimson) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Start shimmer after text reveals */
.split-reveal .accent-word {
  animation: wordReveal 0.7s var(--ease) forwards, shimmer 5s ease-in-out 3s infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* ========================================
   STAGGERED HERO ENTRANCE
   ======================================== */
.hero-badge {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s var(--ease) 1s forwards;
}

.hero-desc {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 1.8s forwards;
}

.hero-btns {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) 2.1s forwards;
}

.hero-card {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeScale 0.8s var(--ease) 1.4s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  to { opacity: 1; transform: scale(1); }
}

/* Hero seal breathing */
.hero-seal {
  animation: fadeScale 0.8s var(--ease) 1.4s forwards, breathe 4s ease-in-out 3.5s infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 16px rgba(197, 165, 90, 0.35)); }
}

/* ========================================
   COUNTDOWN SEPARATORS
   ======================================== */
.cd-sep {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  animation: colonPulse 1s ease-in-out infinite;
}

@keyframes colonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Improved countdown tick */
.cd-num.tick {
  animation: flipTick 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes flipTick {
  0% { transform: translateY(-30%) scale(1.1); opacity: 0.3; }
  50% { transform: translateY(5%); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ========================================
   GLASSMORPHISM BUTTON GLOW
   ======================================== */
.btn-glow {
  position: relative;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, var(--gold) 10%, transparent 20%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: glowSpin 3s linear infinite paused;
}

.btn-glow:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes glowSpin {
  to { --glow-angle: 360deg; }
}

/* ========================================
   SOCIAL ICONS HOVER
   ======================================== */
.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  width: 0%;
  z-index: 1001;
  transition: width 0.05s linear;
}

/* ========================================
   HERO VIDEO BACKGROUND
   ======================================== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.85) 0%, rgba(17, 29, 51, 0.9) 100%);
  z-index: 1;
}

/* ========================================
   GLASSMORPHISM COUNTDOWN CARD
   ======================================== */
.hero-card {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ========================================
   SCROLL REVEAL SECTIONS
   ======================================== */
.reveal-section .wrap,
.reveal-section .pillar-strip,
.reveal-section .join-grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-section.visible .wrap,
.reveal-section.visible .pillar-strip,
.reveal-section.visible .join-grid {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger pillar items */
.reveal-section.visible .pillar-item {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s var(--ease) forwards;
}
.reveal-section.visible .pillar-item:nth-child(1) { animation-delay: 0.1s; }
.reveal-section.visible .pillar-item:nth-child(2) { animation-delay: 0.2s; }
.reveal-section.visible .pillar-item:nth-child(3) { animation-delay: 0.3s; }
.reveal-section.visible .pillar-item:nth-child(4) { animation-delay: 0.4s; }

/* Stagger mv cards */
.reveal-section.visible .mv:nth-child(1) { animation: fadeUp 0.6s var(--ease) 0.1s forwards; opacity: 0; }
.reveal-section.visible .mv:nth-child(2) { animation: fadeUp 0.6s var(--ease) 0.25s forwards; opacity: 0; }

/* Active nav link */
.nav-active {
  color: var(--crimson) !important;
  font-weight: 600 !important;
}

/* ========================================
   SECTION ANGLED DIVIDERS
   ======================================== */
.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--off);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.pillars::after {
  content: '';
  display: block;
  height: 40px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ========================================
   ENHANCED CTA BUTTONS
   ======================================== */
.btn-dark {
  background: linear-gradient(135deg, var(--navy), #2a3f6e);
}

.btn-dark:hover {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3), 0 0 20px rgba(196, 30, 58, 0.15);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--crimson), #d42848);
}

.btn-crimson:hover {
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.35), 0 0 24px rgba(196, 30, 58, 0.2);
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .curtain { display: none; }

  .split-reveal span,
  .hero-badge, .hero-desc, .hero-btns,
  .hero-card, .hero-seal,
  .reveal-section .wrap,
  .reveal-section .pillar-strip,
  .reveal-section .join-grid,
  .reveal-section .pillar-item,
  .reveal-section .mv {
    opacity: 1 !important;
    transform: none !important;
  }

  .accent-word {
    -webkit-text-fill-color: var(--crimson);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    margin-left: 0;
    padding: 100px 28px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-right {
    padding: 60px 28px;
    min-height: 400px;
  }

  .mv-row { grid-template-columns: 1fr; }

  .pillar-strip {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .join-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .menu-btn { display: flex; }

  .nav-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--navy-dark) !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 32px 60px;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    transform: none;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-right.active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--white);
  }

  .menu-btn.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--white);
  }

  .menu-btn.open {
    z-index: 10001;
    position: relative;
  }

  .nav-right a {
    font-family: var(--serif);
    font-size: 1.4rem;
    padding: 16px 24px;
    color: rgba(255,255,255,0.85) !important;
    border-radius: var(--r);
    display: block;
    text-align: center;
    width: 100%;
    max-width: 300px;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s var(--ease);
  }

  .nav-right a:hover {
    color: var(--gold-light) !important;
    background: rgba(255,255,255,0.05);
  }

  .nav-right .nav-cta {
    background: var(--crimson) !important;
    color: #FFFFFF !important;
    text-align: center;
    margin-top: 16px;
    padding: 16px 32px !important;
    border-radius: var(--r) !important;
    width: 100%;
    max-width: 300px;
    border-bottom: none;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .nav-right .nav-cta:hover {
    transform: scale(1.02);
  }

  .hero-left { padding: 100px 20px 48px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }

  .about, .join { padding: 80px 0; }
  .about h2, .pillars h2, .join-text h2 { font-size: 1.6rem; }

  .pillar-strip { grid-template-columns: 1fr; }
  .pillar-item { padding: 36px 28px; }

  .join-form-wrap { padding: 28px 20px; }

  .countdown { gap: 10px; }
  .cd { min-width: 56px; padding: 10px 8px; }
  .cd span { font-size: 1.4rem; }

  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
