/* =============================================
   JurisprudencIA — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@200;300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --burgundy-dark:  #3D0A14;
  --burgundy:       #6B1A2A;
  --burgundy-mid:   #8B2635;
  --burgundy-light: #B04055;
  --burgundy-pale:  #F5E8EB;

  --white:     #FFFFFF;
  --off-white: #F5F5F7;
  --grey-50:   #FAFAFA;
  --grey-100:  #E8E8ED;
  --grey-200:  #D2D2D7;
  --grey-300:  #C7C7CC;
  --grey-500:  #86868B;
  --grey-700:  #48484A;
  --grey-800:  #2C2C2E;
  --grey-900:  #1D1D1F;
  --black:     #000000;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.45, 0, 0.55, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul   { list-style: none; }

/* =============================================
   SPLASH SCREEN
   ============================================= */
#splash {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1s var(--ease-out), visibility 1s;
}

#splash.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.splash-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--burgundy-light);
  margin-left: 6px;
  vertical-align: middle;
  animation: blink 0.75s step-end infinite;
}

.splash-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--burgundy-light), transparent);
  margin-top: 32px;
  transition: width 1s var(--ease-out);
}

.splash-line.expand { width: 280px; }

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 52px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav.nav-dark { background: transparent; }

.nav.nav-dark.scrolled {
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: none;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--grey-900);
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-logo .ia { color: var(--burgundy); }
.nav-dark .nav-logo { color: var(--white); }
.nav-dark .nav-logo .ia { color: var(--burgundy-light); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey-700);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--grey-900); }
.nav-links a:hover::after { width: 100%; }

.nav-dark .nav-links a { color: rgba(255,255,255,0.65); }
.nav-dark .nav-links a:hover { color: var(--white); }
.nav-dark .nav-links a::after { background: var(--burgundy-light); }

/* CTA pill */
.nav-cta {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding: 9px 22px !important;
  border-radius: 980px;
  background: var(--burgundy) !important;
  color: var(--white) !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--burgundy-dark) !important; transform: scale(1.03); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--grey-900);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  border-radius: 2px;
}
.nav-dark .nav-hamburger span { background: var(--white); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--burgundy-light); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.section { padding: 128px 0; }
.section-sm { padding: 80px 0; }

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--grey-900);
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--burgundy-light); }

.section-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 18px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 18px auto 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 980px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-dark); transform: scale(1.02); box-shadow: 0 8px 24px rgba(107,26,42,0.35); }

.btn-outline { background: transparent; color: var(--burgundy); border: 1.5px solid var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--white); }

.btn-white { background: var(--white); color: var(--burgundy); }
.btn-white:hover { background: var(--off-white); transform: scale(1.02); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

.btn-arrow {
  background: none; color: var(--burgundy);
  padding: 0; font-size: 0.9375rem;
  font-weight: 500; border-radius: 0;
  gap: 6px;
}
.btn-arrow svg { transition: transform 0.2s var(--ease-out); }
.btn-arrow:hover { color: var(--burgundy-dark); }
.btn-arrow:hover svg { transform: translateX(5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,26,42,0.55) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,10,20,0.45) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.9s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.9s var(--ease-out) 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--burgundy-light); }

.hero-desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-top: 28px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.9s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.9s var(--ease-out) 0.8s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUpIn 1s var(--ease-out) 1.2s both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.35), transparent);
}

/* =============================================
   MARQUEE TICKER
   ============================================= */
.ticker {
  background: var(--burgundy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* =============================================
   VALUES / PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-100);
  margin-top: 72px;
}

.pillar-card {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.pillar-card:hover { background: var(--off-white); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: var(--burgundy);
}
.pillar-num {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--grey-100);
  line-height: 1;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 14px;
}
.pillar-text {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: var(--grey-900);
  padding: 100px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-700);
  margin-top: 56px;
}
.stat-card {
  background: var(--grey-900);
  padding: 48px 40px;
  text-align: center;
  transition: background 0.2s;
}
.stat-card:hover { background: var(--grey-800); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--burgundy-light); }
.stat-label {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

/* =============================================
   ABOUT SPLIT
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual-bg {
  width: 100%; height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--burgundy-dark) 0%, var(--grey-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-monogram {
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.05em;
  user-select: none;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(107,26,42,0.4);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}
.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
  display: block;
}

.about-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-list-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  flex-shrink: 0;
  margin-top: 7px;
}
.about-list-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
}
.about-list-item p {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.7;
}

/* =============================================
   EVENTS PREVIEW
   ============================================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.event-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.09);
}

.event-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-mid));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card-thumb-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
    transparent 1px, transparent 18px
  );
}
.event-card-thumb-icon {
  color: rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}

.event-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 980px;
  z-index: 2;
}

.event-body { padding: 28px; }
.event-date {
  font-size: 0.8125rem;
  color: var(--burgundy);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.event-desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.event-foot {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--grey-500);
  padding-top: 18px;
  border-top: 1px solid var(--grey-100);
  flex-wrap: wrap;
}
.event-foot-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =============================================
   PULL QUOTE
   ============================================= */
.quote-section {
  background: var(--burgundy-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px; left: 20px;
  line-height: 0.7;
  pointer-events: none;
}
.quote-section::after {
  content: '\201D';
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  bottom: 20px; right: 20px;
  line-height: 0.7;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.625rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.45;
  position: relative; z-index: 1;
}
.quote-rule {
  width: 40px; height: 1px;
  background: var(--burgundy-light);
  margin: 28px auto;
  position: relative; z-index: 1;
}
.quote-author {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-section { background: var(--off-white); padding: 120px 0; }
.cta-card {
  background: var(--grey-900);
  border-radius: 20px;
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(107,26,42,0.55) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  padding: 80px 0 36px;
  color: var(--grey-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.625rem;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--grey-500);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--grey-800);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8125rem; }
.footer-social {
  display: flex;
  gap: 24px;
}
.footer-social a {
  font-size: 0.8125rem;
  color: var(--grey-700);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--grey-900);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(107,26,42,0.38) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.25rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
}
.page-hero-title em { font-style: italic; color: var(--burgundy-light); }
.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin-top: 18px;
  line-height: 1.75;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 44px 36px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  border-color: var(--burgundy);
}
.value-icon {
  width: 44px; height: 44px;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 10px;
}
.value-text {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.75;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card { text-align: center; }
.team-avatar {
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--burgundy-dark), var(--grey-800));
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.team-card:hover .team-avatar {
  transform: scale(0.96);
  box-shadow: 0 16px 32px rgba(107,26,42,0.25);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 4px;
}
.team-role { font-size: 0.875rem; color: var(--grey-500); }

/* =============================================
   EVENTS PAGE
   ============================================= */
.events-tabs {
  display: flex;
  gap: 4px;
  background: var(--off-white);
  padding: 4px;
  border-radius: 980px;
  margin-bottom: 48px;
  display: inline-flex;
}
.tab-btn {
  padding: 8px 24px;
  border-radius: 980px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-500);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.tab-btn.active {
  background: var(--white);
  color: var(--grey-900);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.events-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.event-card-h {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.event-card-h:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}
.event-card-h-thumb {
  width: 220px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--burgundy-dark), var(--burgundy-mid));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-card-h-thumb-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
    transparent 1px, transparent 18px
  );
}
.event-card-h-date {
  position: relative; z-index: 1;
  text-align: center;
  color: var(--white);
}
.event-card-h-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
}
.event-card-h-date span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.event-card-h-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.event-card-h-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.event-card-h-title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-card-h-desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.event-card-h-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--grey-500);
  flex-wrap: wrap;
}
.meta-item { display: flex; align-items: center; gap: 5px; }

/* =============================================
   JOIN PAGE
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey-100);
  margin-top: 72px;
  border-radius: 2px;
  overflow: hidden;
}
.benefit-card {
  background: var(--white);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.benefit-card:hover { background: var(--off-white); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--grey-100);
  line-height: 1;
  position: absolute;
  top: 16px; right: 28px;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 14px;
}
.benefit-text {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
}

/* Form */
.form-section { background: var(--off-white); padding: 120px 0; }
.form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 72px;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(0,0,0,0.04);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
}
.form-input,
.form-select,
.form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(107,26,42,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
}
.contact-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--burgundy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--burgundy);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 5px;
}
.contact-info-value {
  font-size: 0.9375rem;
  color: var(--grey-900);
  line-height: 1.6;
}
.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 980px;
  border: 1.5px solid var(--grey-200);
  font-size: 0.875rem;
  color: var(--grey-700);
  transition: all 0.2s;
}
.social-pill:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: var(--burgundy-pale);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.30s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.50s; opacity: 1; transform: none; }

@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .nav { padding: 0 36px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split { gap: 56px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .pillars-grid, .events-grid, .benefits-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-split, .contact-split, .events-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 16px; right: 16px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { padding: 52px 32px; }
  .form-wrap { padding: 40px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .event-card-h { flex-direction: column; }
  .event-card-h-thumb { width: 100%; height: 140px; }
  .hero-scroll-indicator { display: none; }
  .quote-section::before, .quote-section::after { font-size: 160px; }
  .page-hero { padding: 120px 0 64px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .contact-social-row .social-pill { flex: 1; justify-content: center; }
}
