/* ============================================
   PRESTICIA — Global Styles
   ============================================ */
:root {
  --gold: #C4A265;
  --gold-light: #D4B67A;
  --gold-glow: rgba(196,162,101,0.12);
  --bg: #09090B;
  --bg2: #111113;
  --bg3: #18181B;
  --wh: #FAFAF9;
  --mu: #9C9A94;
  --mul: #B5B3AC;
  --br: rgba(196,162,101,0.1);
  --brs: rgba(196,162,101,0.25);
  --sf: 'Playfair Display', Georgia, serif;
  --sn: 'DM Sans', -apple-system, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sn);
  background: var(--bg);
  color: var(--wh);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px,4vw,48px); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(9,9,11,0.75);
  border-bottom: 1px solid var(--br);
  transition: all 0.4s ease;
}
nav.scrolled { background: rgba(9,9,11,0.95); height: 64px; }
.nav-logo {
  font-family: var(--sf); font-size: 24px; font-weight: 500;
  color: var(--gold); letter-spacing: 1px; cursor: pointer;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--mu);
  cursor: pointer; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--wh); }
.nav-cta {
  padding: 8px 24px !important;
  border: 1px solid var(--brs) !important;
  color: var(--gold) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 24px; position: relative; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 100%; height: 1.5px; background: var(--gold);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.mobile-toggle span:first-child { top: 6px; }
.mobile-toggle span:last-child { bottom: 6px; }
.mobile-toggle.open span:first-child { top: 11px; transform: rotate(45deg); }
.mobile-toggle.open span:last-child { bottom: 11px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(9,9,11,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--sf); font-size: 28px; color: var(--wh);
  cursor: pointer; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; font-family: var(--sn); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--bg);
  background: var(--gold); border: 1px solid var(--gold); padding: 16px 44px;
  cursor: pointer; transition: all 0.35s ease; text-align: center;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(196,162,101,0.2);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block; font-family: var(--sn); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--mul);
  background: transparent; border: 1px solid var(--brs); padding: 16px 44px;
  cursor: pointer; transition: all 0.35s ease; text-align: center;
}
.btn-ghost:hover { color: var(--wh); border-color: var(--wh); }
.btn-disabled { opacity: 0.4; cursor: default; pointer-events: none; }

/* ---- UTILITIES ---- */
.tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--sf); font-size: clamp(28px,4vw,44px); font-weight: 400;
}
.divider-line { width: 80px; height: 1px; background: var(--brs); margin: 64px auto; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px clamp(20px,4vw,48px) 80px; position: relative;
}
.hero-line {
  position: absolute; top: 0; left: 50%; width: 1px; height: 140px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.3;
}
.hero-badge {
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding: 10px 24px; border: 1px solid var(--brs); margin-bottom: 48px;
}
.hero h1 {
  font-family: var(--sf); font-size: clamp(40px,7vw,88px); font-weight: 400;
  line-height: 1.1; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(15px,1.8vw,17px); font-weight: 300; line-height: 1.75;
  color: var(--mu); max-width: 580px; margin: 0 auto 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-note { margin-top: 24px; font-size: 12px; color: var(--mu); opacity: 0.6; }
.hero-scroll {
  position: absolute; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mu); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ---- PAGE HERO ---- */
.page-hero { text-align: center; padding: 160px 24px 80px; }
.page-hero h1 {
  font-family: var(--sf); font-size: clamp(36px,6vw,72px); font-weight: 400;
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--mu); max-width: 560px; margin: 0 auto;
}

/* ---- STATS ---- */
.stats {
  padding: 0 clamp(20px,4vw,48px);
  border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.stat { flex: 1 1 200px; text-align: center; padding: 48px 24px; }
.stat-num {
  display: block; font-family: var(--sf); font-size: clamp(28px,4vw,36px);
  font-weight: 400; color: var(--gold); margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mu); }
.stat-divider { width: 1px; height: 48px; background: var(--brs); }

/* ---- PILLARS ---- */
.pillars { padding: 120px clamp(20px,4vw,48px); max-width: 1200px; margin: 0 auto; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pillar {
  background: var(--bg3); border: 1px solid var(--br); padding: 48px 36px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.pillar:hover { border-color: var(--brs); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon { font-size: 28px; color: var(--gold); opacity: 0.5; margin-bottom: 24px; }
.pillar h3 { font-family: var(--sf); font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.pillar p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

/* ---- AWAITS ---- */
.awaits {
  padding: 120px clamp(20px,4vw,48px);
  background: var(--bg2); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
}
.awaits-inner { max-width: 1000px; margin: 0 auto; }
.await-item {
  display: flex; gap: clamp(24px,4vw,64px); margin-bottom: 64px;
  align-items: center; flex-wrap: wrap;
}
.await-item.reverse { flex-direction: row-reverse; }
.await-num {
  flex: 0 0 80px; text-align: center;
  font-family: var(--sf); font-size: 64px; font-weight: 300;
  color: var(--gold); opacity: 0.15; line-height: 1;
}
.await-content { flex: 1; min-width: 280px; }
.await-content h3 {
  font-family: var(--sf); font-size: clamp(22px,3vw,28px); font-weight: 500;
  margin-bottom: 16px; color: var(--wh);
}
.await-content p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mul); }

/* ---- QUOTE ---- */
.quote-section {
  padding: 100px clamp(20px,4vw,48px);
  border-bottom: 1px solid var(--br);
}
.quote-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark {
  font-family: var(--sf); font-size: 120px; color: var(--gold); opacity: 0.12;
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%); line-height: 1;
}
.quote-inner p {
  font-family: var(--sf); font-size: clamp(20px,3vw,28px); font-weight: 400;
  font-style: italic; line-height: 1.6; color: var(--mul);
}

/* ---- OFFERINGS GRID ---- */
.offerings { padding: 120px clamp(20px,4vw,48px); max-width: 1200px; margin: 0 auto; }
.offerings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px; background: var(--br);
}
.offer-card { background: var(--bg); padding: 48px 36px; transition: background 0.4s; }
.offer-card:hover { background: var(--bg2); }
.offer-num {
  font-family: var(--sf); font-size: 36px; font-weight: 300;
  color: var(--gold); opacity: 0.25; margin-bottom: 20px;
}
.offer-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 12px; }
.offer-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

/* ---- WHO FOR ---- */
.who-for {
  padding: 100px clamp(20px,4vw,48px);
  background: var(--bg2); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
}
.who-for-inner { max-width: 700px; margin: 0 auto; }
.who-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.who-item span { color: var(--gold); font-size: 18px; line-height: 1.6; flex-shrink: 0; }
.who-item p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--mul); }

/* ---- NUMBERS ---- */
.numbers { padding: 100px clamp(20px,4vw,48px); }
.numbers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 1000px; margin: 0 auto; text-align: center;
}
.number-item { padding: 32px 16px; }
.number-item .num {
  display: block; font-family: var(--sf); font-size: 36px; color: var(--gold); margin-bottom: 8px;
}
.number-item .label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--mu); }

/* ---- CTA ---- */
.cta-section {
  padding: 120px clamp(20px,4vw,48px);
  background: var(--bg2); border-top: 1px solid var(--br); border-bottom: 1px solid var(--br);
}
.cta-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-family: var(--sf); font-size: clamp(28px,4vw,40px); font-weight: 400; margin-bottom: 16px;
}
.cta-inner p { font-size: 15px; font-weight: 300; color: var(--mu); line-height: 1.7; margin-bottom: 40px; }

/* ---- MISSION ---- */
.mission-story { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.story-block { margin-bottom: 20px; }
.story-block h2 { font-family: var(--sf); font-size: clamp(24px,3vw,36px); font-weight: 400; margin-bottom: 24px; }
.story-block > p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--mul); margin-bottom: 16px; }
.story-block > p strong { color: var(--wh); font-weight: 500; }
.beliefs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 32px; }
.belief h4 { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--gold); }
.belief p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

.offering-phase { display: flex; gap: clamp(16px,3vw,40px); margin-bottom: 48px; flex-wrap: wrap; }
.phase-label { flex-shrink: 0; width: 120px; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.phase-content { flex: 1; min-width: 280px; border-left: 1px solid var(--brs); padding-left: clamp(16px,3vw,32px); display: flex; flex-direction: column; gap: 24px; }
.phase-content h4 { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.phase-content p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

/* ---- MEMBERSHIP ---- */
.criteria-section { padding: 80px clamp(20px,4vw,48px) 120px; max-width: 1000px; margin: 0 auto; }
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.criteria-card { background: var(--bg3); border: 1px solid var(--br); padding: 40px 32px; transition: border-color 0.3s; }
.criteria-card:hover { border-color: var(--brs); }
.criteria-num { font-family: var(--sf); font-size: 32px; color: var(--gold); opacity: 0.3; margin-bottom: 16px; }
.criteria-card h3 { font-family: var(--sf); font-size: 20px; font-weight: 500; margin-bottom: 12px; }
.criteria-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }
.criteria-card p strong { color: var(--wh); font-weight: 500; }

.process-section { padding: 80px clamp(20px,4vw,48px) 120px; max-width: 680px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; padding-bottom: 48px; position: relative; }
.process-step:last-child { padding-bottom: 0; }
.step-connector { position: absolute; top: 12px; left: 6px; width: 1px; height: 100%; background: var(--brs); }
.process-step:last-child .step-connector { display: none; }
.step-dot { flex-shrink: 0; width: 13px; height: 13px; border: 2px solid var(--gold); border-radius: 50%; margin-top: 4px; position: relative; z-index: 1; background: var(--bg); }
.step-content h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.step-content p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

.tiers-section { padding: 80px clamp(20px,4vw,48px) 120px; max-width: 900px; margin: 0 auto; }
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.tier-card { background: var(--bg3); border: 1px solid var(--gold); padding: 48px 36px; position: relative; }
.tier-standard { border-color: var(--br); opacity: 0.65; }
.tier-badge { position: absolute; top: -1px; right: 32px; background: var(--gold); color: var(--bg); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; }
.tier-card h3 { font-family: var(--sf); font-size: 24px; font-weight: 500; margin-bottom: 20px; }
.price-amount { font-family: var(--sf); font-size: 32px; font-weight: 500; color: var(--gold); }
.price-period { font-size: 14px; color: var(--mu); }
.tier-note { font-size: 13px; color: var(--mu); margin-bottom: 28px; margin-top: 8px; }
.tier-features { list-style: none; margin-bottom: 36px; }
.tier-features li { font-size: 14px; font-weight: 300; color: var(--mul); padding: 8px 0 8px 20px; border-bottom: 1px solid var(--br); position: relative; }
.tier-features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 10px; }

.faq-section { padding: 80px clamp(20px,4vw,48px) 120px; max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--br); cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 15px; font-weight: 400; transition: color 0.3s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
.faq-a p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mu); }

/* ---- APPLY ---- */
.apply-section { padding: 140px 24px 80px; max-width: 640px; margin: 0 auto; }
.apply-header { text-align: center; margin-bottom: 48px; }
.form-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.progress-num { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--brs); font-size: 13px; font-weight: 500; color: var(--mu); transition: all 0.3s; }
.progress-step.active .progress-num { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.progress-step.done .progress-num { border-color: var(--gold); color: var(--gold); }
.progress-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mu); }
.progress-step.active .progress-label { color: var(--gold); }
.progress-line { width: 60px; height: 1px; background: var(--brs); margin: 0 16px; margin-bottom: 24px; }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-family: var(--sf); font-size: 22px; font-weight: 400; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mu); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--sn); font-size: 14px; font-weight: 300;
  color: var(--wh); background: var(--bg3); border: 1px solid var(--br);
  padding: 14px 16px; outline: none; transition: all 0.3s; -webkit-appearance: none; border-radius: 2px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(156,154,148,0.35); }
.form-group select { cursor: pointer; color: var(--mu); }
.form-group select option { background: var(--bg3); color: var(--wh); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }
.form-actions .btn-primary, .form-actions .btn-ghost { flex: 1; }
.success-icon { width: 64px; height: 64px; margin: 0 auto 24px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); }
.form-privacy { text-align: center; margin-top: 32px; font-size: 12px; color: var(--mu); opacity: 0.5; }

/* ---- FOOTER ---- */
footer { padding: 64px clamp(20px,4vw,48px) 32px; border-top: 1px solid var(--br); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 32px; }
.footer-logo { font-family: var(--sf); font-size: 20px; font-weight: 500; color: var(--gold); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--mu); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a, .footer-social a { font-size: 13px; color: var(--mu); transition: color 0.3s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 24px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--br); font-size: 11px; color: var(--mu); opacity: 0.5; flex-wrap: wrap; gap: 8px; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .mobile-toggle { display: block !important; }
  .hero { padding: 120px 24px 60px; }
  .hero-badge { margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 48px; height: 1px; }
  .await-item, .await-item.reverse { flex-direction: column; }
  .await-num { flex: none; }
  .offering-phase { flex-direction: column; gap: 16px; }
  .phase-label { width: auto; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
