@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ===== TOKENS ===== */
:root {
  --navy:      #003865;
  --navy-deep: #002347;
  --blue:      #9BCBEB;
  --blue-mid:  #4a9fd4;
  --blue-pale: #dceef9;
  --blue-bg:   #f0f7fc;
  --white:     #ffffff;
  --ink:       #003865;
  --ink-2:     #2d5a7a;
  --ink-3:     #5a8aaa;
  --border:    #c8dff0;
  --muted:     #f0f7fc;

  --shadow: 0 8px 28px rgba(0,56,101,.10), 0 2px 6px rgba(0,56,101,.06);
  --shadow-lg: 0 20px 48px rgba(0,56,101,.14);
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1160px;
  --section: 88px;

  --f-display: clamp(38px, 5.5vw, 62px);
  --f-h2: clamp(26px, 2.8vw, 36px);
  --f-h3: clamp(17px, 1.6vw, 20px);
  --f-lead: clamp(16px, 1.6vw, 19px);
  --f-body: 16px;
  --f-small: 14px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--f-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section) 0; }
.section-alt { background: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gap-md { gap: 16px; }
.row { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.wrap { flex-wrap: wrap; }

@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .cards-3 { grid-template-columns: 1fr; }
}

/* ===== TOPBAR ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.topbar.scrolled { box-shadow: 0 4px 20px rgba(0,56,101,.08); }
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: .2px;
}
.brand-name span { color: var(--blue-mid); }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a {
  font-size: 14px; font-weight: 400;
  color: var(--ink-2); text-decoration: none;
  transition: color .15s;
}
.nav a:hover { color: var(--navy); }
.topbar-inner { padding: 14px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(155,203,235,.5);
}
.btn-primary:hover { filter: brightness(.95); box-shadow: 0 6px 20px rgba(155,203,235,.6); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { filter: brightness(1.1); }
.btn-nav {
  background: var(--navy); color: var(--white);
  padding: 9px 20px; font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(155,203,235,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(74,159,212,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  margin: 0 0 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--f-display);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--white);
  margin: 0 0 20px;
}
.hero-title em { color: var(--blue); font-style: italic; }
.hero-lead {
  font-size: var(--f-lead);
  color: rgba(255,255,255,.75);
  max-width: 44ch; margin: 0 0 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image placeholder */
.hero-image-wrap {
  position: relative;
}
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(155,203,235,.15) 0%, rgba(0,56,101,.4) 100%);
  border: 1px solid rgba(155,203,235,.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(155,203,235,.6);
  font-size: 13px; text-align: center;
}
.hero-img-placeholder svg {
  width: 48px; height: 48px;
  opacity: .5;
}
.hero-img-placeholder p { margin: 0; line-height: 1.4; }

/* Floating stats card */
.hero-stats-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hstat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--navy); line-height: 1;
  display: block;
}
.hstat-label { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-items {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2); font-weight: 400;
}
.trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-mid); flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.section-eyebrow {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-mid);
  margin: 0 0 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--f-h2); font-weight: 500;
  color: var(--navy); margin: 0 0 6px;
  letter-spacing: -.2px;
}
.section-sub {
  font-size: var(--f-body); color: var(--ink-2);
  max-width: 52ch; margin: 0 0 40px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.offering-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 24px;
}
.offering-icon.dance { background: var(--blue-pale); }
.offering-icon.wellness { background: #d8efd8; }
.offering-icon.finance { background: #e8e4f5; }

.card-title {
  font-family: var(--font-display);
  font-size: var(--f-h3); font-weight: 600;
  color: var(--navy); margin: 0 0 8px;
}
.card-body { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--blue-mid); font-size: 14px; font-weight: 500;
  text-decoration: none; margin-top: 14px;
  transition: gap .15s;
}
.card-link:hover { gap: 8px; }

/* ===== JOURNEY STEPS ===== */
.journey { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 768px) { .journey { grid-template-columns: repeat(2,1fr); } }
.jstep {
  text-align: center; padding: 28px 20px;
}
.jstep-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.jstep-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin: 0 0 6px;
}
.jstep-body { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }

/* ===== MID BANNER ===== */
.mid-banner {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(155,203,235,.1) 0%, transparent 70%);
}
.mid-banner-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.3;
  max-width: 680px; margin: 0 auto 10px;
  position: relative;
}
.mid-banner-sub {
  font-size: 15px; color: var(--blue);
  margin: 0 0 32px; position: relative;
}
.mid-banner .btn { position: relative; }

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  width: 100%; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--border) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--ink-3);
  font-size: 13px; text-align: center;
  padding: 40px 20px;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: .5; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 768px) { .testimonials { grid-template-columns: 1fr; } }
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; position: relative;
  box-shadow: var(--shadow);
}
.tcard-quote-mark {
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--blue-pale); position: absolute;
  top: 12px; left: 20px;
}
.tcard-body {
  font-size: 15px; color: var(--ink);
  line-height: 1.65; margin: 0 0 16px;
  font-style: italic; position: relative;
}
.tcard-author { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.tcard-stars { color: var(--blue-mid); font-size: 13px; margin-bottom: 4px; }

/* ===== ABOUT ===== */
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute; bottom: 20px; right: -16px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  color: var(--blue); display: block;
}
.about-badge-label { font-size: 12px; color: rgba(255,255,255,.7); }
.about-name {
  font-family: var(--font-display);
  font-size: var(--f-h2); font-weight: 600;
  color: var(--navy); margin: 0 0 4px;
}
.about-role { font-size: 15px; color: var(--blue-mid); margin: 0 0 20px; }
.about-bio { font-size: 15px; color: var(--ink-2); line-height: 1.75; margin: 0 0 16px; }
.pillars-list { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; }
.pillar-tag {
  font-size: 12px; padding: 5px 12px;
  border-radius: 999px; border: 1px solid;
}
.pillar-tag.dance { background: var(--blue-pale); color: var(--navy); border-color: var(--blue); }
.pillar-tag.wellness { background: #e5f4e5; color: #1a4d1a; border-color: #8aba7a; }
.pillar-tag.finance { background: #eeeaf8; color: #2d1a6b; border-color: #a89fd4; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .2s;
}
details.faq-item[open] { border-color: var(--blue-mid); }
details.faq-item summary {
  cursor: pointer; font-weight: 500;
  color: var(--navy); font-size: 16px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq-item summary::after {
  content: '+'; font-size: 20px;
  color: var(--blue-mid); transition: transform .2s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-split {
  background: var(--navy-deep);
  padding: var(--section) 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-title {
  font-family: var(--font-display);
  font-size: var(--f-h2); font-weight: 500;
  color: var(--white); margin: 0 0 14px; line-height: 1.1;
}
.contact-sub { font-size: 15px; color: rgba(155,203,235,.85); line-height: 1.65; margin: 0 0 28px; }
.contact-info { font-size: 14px; color: rgba(155,203,235,.65); line-height: 2; }
.contact-info a { color: var(--blue); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,203,235,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--white); margin: 0 0 24px;
}
.form-lined label {
  display: block; font-size: 12px;
  color: var(--blue); letter-spacing: .5px;
  margin-bottom: 16px;
}
.form-lined input,
.form-lined textarea,
.form-lined select {
  display: block; width: 100%;
  background: transparent; color: var(--white);
  border: 0; border-bottom: 1px solid rgba(155,203,235,.25);
  border-radius: 0; padding: 8px 0;
  font-family: var(--font-body); font-size: 15px;
  margin-top: 6px; outline: none;
  transition: border-color .2s;
}
.form-lined input:focus,
.form-lined textarea:focus,
.form-lined select:focus { border-bottom-color: var(--blue); }
.form-lined input::placeholder,
.form-lined textarea::placeholder { color: rgba(255,255,255,.35); }
.form-lined select { cursor: pointer; }
.form-lined select option { background: var(--navy-deep); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(155,203,235,.3) 0%, transparent 100%);
  margin: 24px 0 20px;
}
.form-status {
  padding: 12px 16px; border-radius: 8px;
  margin-bottom: 16px; font-size: 14px;
  display: none;
}
.form-status.success { background: rgba(100,200,100,.1); color: #7ddb7d; border: 1px solid rgba(100,200,100,.2); }
.form-status.error { background: rgba(235,80,80,.1); color: #f08080; border: 1px solid rgba(235,80,80,.2); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(155,203,235,.1);
  padding: 32px 0;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(155,203,235,.5); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(155,203,235,.5); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--blue); }

/* ===== SKIP / A11Y ===== */
.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus { left: 16px; top: 12px; background: var(--white); padding: 8px 12px; border-radius: 8px; z-index: 999; }

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); }
  .reveal.inview { animation: fadeUp .65s ease forwards; }
  .reveal.left { transform: translateX(-20px); }
  .reveal.left.inview { animation: slideLeft .65s ease forwards; }
  .reveal.right { transform: translateX(20px); }
  .reveal.right.inview { animation: slideRight .65s ease forwards; }
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes slideLeft { to { opacity: 1; transform: none; } }
@keyframes slideRight { to { opacity: 1; transform: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .hero { padding: 72px 0 64px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .trust-items { flex-direction: column; align-items: flex-start; gap: 10px; }
  .journey { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .about-badge { right: 10px; }
  .form-2col { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}
