/* ================================================
   AURAELYS — MASTER STYLESHEET
   The Night Sky Above Your Next Chapter
   ================================================ */

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

/* ─── BRAND TOKENS ─── */
:root {
  /* Core palette */
  --night:       #0a0d14;
  --blue-black:  #080b12;
  --dark-azure:  #111827;
  --azure-mid:   #1a2540;
  --moon-grey:   #a8b8cc;
  --silver:      #d8e4f2;
  --soft-white:  #f0f4fa;

  /* Path accent colors */
  --rose-gold:        #c4967a;
  --rose-gold-light:  #d4a98d;
  --rose-gold-dim:    rgba(196,150,122,0.12);
  --bronze:           #b08a5a;
  --bronze-light:     #c9a470;
  --bronze-dim:       rgba(176,138,90,0.12);
  --sacred-gold:      #c9a84c;
  --sacred-gold-light:#dbbf6e;
  --sacred-gold-dim:  rgba(201,168,76,0.12);

  /* Typography */
  --font-display:  'Cinzel Decorative', serif;
  --font-heading:  'Cinzel', serif;
  --font-body:     'EB Garamond', Georgia, serif;

  /* Layout */
  --max-w: 1200px;
  --pad-x: clamp(24px, 5vw, 72px);
  --section-y: clamp(64px, 9vw, 120px);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--night);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.82;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--soft-white);
}
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moon-grey);
}
em, .italic { font-family: var(--font-body); font-style: italic; font-weight: 300; }

/* ─── STAR DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.2rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,212,232,0.3), transparent);
}
.divider .star { font-size: 0.7rem; color: var(--moon-grey); opacity: 0.6; }
.divider.left { justify-content: flex-start; }
.divider.left::before { display: none; }
.divider.left::after { flex: 0 0 60px; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease-std), padding 0.45s var(--ease-std);
}
.nav.scrolled {
  background: rgba(8,11,18,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid rgba(200,212,232,0.05);
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo .name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-white);
}
.nav-logo .tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moon-grey);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-std);
}
.nav-links a:hover, .nav-links a.active { color: var(--soft-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft-white);
  border: 1px solid rgba(200,212,232,0.3);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-std);
}
.nav-cta:hover { background: rgba(200,212,232,0.07); border-color: var(--silver); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { width: 22px; height: 1px; background: var(--silver); display: block; transition: all 0.3s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(8,11,18,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--soft-white); }
.mobile-close {
  position: absolute;
  top: 22px; right: var(--pad-x);
  background: none;
  border: none;
  color: var(--moon-grey);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  transition: all 0.32s var(--ease-std);
  white-space: nowrap;
}
.btn::after { content: '→'; font-family: serif; font-size: 0.95rem; }

.btn-default { border-color: rgba(200,212,232,0.35); color: var(--soft-white); }
.btn-default:hover { background: rgba(200,212,232,0.07); border-color: var(--silver); }

.btn-rose  { border-color: var(--rose-gold);   color: var(--rose-gold);   }
.btn-rose:hover  { background: var(--rose-gold-dim);  border-color: var(--rose-gold-light);  }

.btn-bronze{ border-color: var(--bronze);      color: var(--bronze);      }
.btn-bronze:hover{ background: var(--bronze-dim);    border-color: var(--bronze-light);    }

.btn-gold  { border-color: var(--sacred-gold); color: var(--sacred-gold); }
.btn-gold:hover  { background: var(--sacred-gold-dim);border-color: var(--sacred-gold-light);}

/* ─── SECTION HERO (bg-image hero for inner pages) ─── */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 68px;
  overflow: hidden;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,18,0.18) 0%,
    rgba(8,11,18,0.1)  30%,
    rgba(8,11,18,0.55) 65%,
    rgba(8,11,18,0.96) 100%
  );
}
.page-hero .content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 680px;
}
.page-hero .quote-bubble {
  position: absolute;
  top: 50%;
  right: var(--pad-x);
  transform: translateY(-50%);
  width: 190px; height: 190px;
  border: 1px solid rgba(200,212,232,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
  background: rgba(8,11,18,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.page-hero .quote-bubble:empty { display: none; }
.page-hero .quote-bubble p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moon-grey);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--silver); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.35; }

/* ─── BACKGROUND SECTION ─── */
.bg-section {
  position: relative;
  overflow: hidden;
}
.bg-section .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-section .bg-overlay {
  position: absolute;
  inset: 0;
}
.bg-section .content-over {
  position: relative;
  z-index: 2;
}

/* ─── HOMEPAGE HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,18,0.15) 0%,
    rgba(8,11,18,0.08) 25%,
    rgba(8,11,18,0.45) 65%,
    rgba(8,11,18,0.97) 100%
  );
}
.hero .content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 640px;
}
.hero-overline {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--moon-grey);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--soft-white);
  letter-spacing: 0.05em;
  line-height: 1.14;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: var(--silver);
  margin-bottom: 20px;
}
.hero-body {
  font-size: 0.92rem;
  color: var(--moon-grey);
  max-width: 380px;
  margin-bottom: 34px;
  line-height: 1.85;
}

/* ─── LIMINAL BAND ─── */
.liminal {
  background: var(--dark-azure);
  border-top: 1px solid rgba(200,212,232,0.05);
  border-bottom: 1px solid rgba(200,212,232,0.05);
  padding: 56px 0;
  text-align: center;
  position: relative;
}
.liminal .bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}
.liminal .inner { position: relative; z-index: 2; }
.liminal-title {
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--moon-grey);
  margin-bottom: 6px;
}
.liminal-body {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--soft-white);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 36px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200,212,232,0.07);
  margin-top: 36px;
}
.pillar {
  padding: 26px 16px;
  border-right: 1px solid rgba(200,212,232,0.07);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar-icon { 
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  color: var(--moon-grey);
  display: flex; align-items: center; justify-content: center;
}
.pillar h3 {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 5px;
}
.pillar p { font-size: 0.88rem; color: var(--silver); line-height: 1.5; }

/* ─── PATH CARDS ─── */
.paths-header {
  text-align: center;
  padding: 52px 0 0;
  background: var(--blue-black);
}
.paths-header h2 {
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--moon-grey);
  margin-bottom: 5px;
}
.paths-header p {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--silver);
  font-size: 0.98rem;
  margin-bottom: 36px;
}
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue-black);
  gap: 1px;
}
.path-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(200,212,232,0.08);
  background: rgba(10,13,20,0.95);
  transition: transform 0.4s var(--ease-out);
}
.path-card:hover { transform: translateY(-4px); z-index: 2; }

/* Card header — text sits on top */
.path-card .card-header {
  position: relative;
  z-index: 2;
  padding: 28px 28px 20px;
  flex-shrink: 0;
}
.path-card .path-eye {
  font-family: var(--font-heading);
  font-size: 0.54rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.path-card .path-name {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-weight: 400;
}
.path-card .path-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.path-card .path-desc {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.6;
}

/* Card image — fills the middle section */
.path-card .card-image {
  position: relative;
  overflow: hidden;
  height: 340px;
  flex-shrink: 0;
}
.path-card .card-image .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}
.path-card:hover .card-image .bg { transform: scale(1.05); }
.path-card .card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,11,18,0.15) 0%,
    rgba(8,11,18,0.0) 30%,
    rgba(8,11,18,0.0) 70%,
    rgba(8,11,18,0.2) 100%);
  z-index: 1;
}

/* Card footer — button sits at bottom */
.path-card .card-footer {
  position: relative;
  z-index: 2;
  padding: 20px 28px 28px;
  flex-shrink: 0;
}
.path-card .path-accent-label { display: none; }

/* Path-specific accent colors */
.card-haven .path-eye,
.card-haven .path-name { color: var(--rose-gold); }
.card-haven .path-sub { color: var(--rose-gold-light); }
.card-haven .card-header { border-bottom: 1px solid var(--rose-gold-dim); }

.card-meadow .path-eye,
.card-meadow .path-name { color: var(--bronze); }
.card-meadow .path-sub { color: var(--bronze-light); }
.card-meadow .card-header { border-bottom: 1px solid var(--bronze-dim); }

.card-ylysium .path-eye,
.card-ylysium .path-name { color: var(--sacred-gold); }
.card-ylysium .path-sub { color: var(--sacred-gold-light); }
.card-ylysium .card-header { border-bottom: 1px solid var(--sacred-gold-dim); }

/* ─── KIMBERLY STRIP ─── */
.kim-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark-azure);
  border-top: 1px solid rgba(200,212,232,0.05);
  border-bottom: 1px solid rgba(200,212,232,0.05);
  min-height: 360px;
}
.kim-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.kim-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.88) contrast(1.02);
}
.kim-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--dark-azure));
}
.kim-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
}
.kim-text h2 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--soft-white);
  margin-bottom: 5px;
}
.kim-text .kim-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 14px;
}
.kim-text p {
  font-size: 0.94rem;
  color: var(--silver);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 18px;
}

/* ─── CLOSING CTA ─── */
.closing-cta {
  position: relative;
  text-align: center;
  padding: 110px var(--pad-x);
  overflow: hidden;
}
.closing-cta .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.closing-cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,11,18,0.8);
}
.closing-cta .inner {
  position: relative;
  z-index: 2;
}
.closing-cta h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  letter-spacing: 0.1em;
  color: var(--soft-white);
  line-height: 1.25;
  margin-bottom: 10px;
}
.closing-cta .cta-italic {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  color: var(--silver);
  margin-bottom: 32px;
}

/* ─── ICON BAND ─── */
.icon-band {
  background: var(--dark-azure);
  border-top: 1px solid rgba(200,212,232,0.06);
  border-bottom: 1px solid rgba(200,212,232,0.06);
  padding: 52px 0;
}
.icon-band-header {
  text-align: center;
  margin-bottom: 40px;
}
.icon-band-header h2 {
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--moon-grey);
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.icon-cell {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(200,212,232,0.07);
}
.icon-cell:last-child { border-right: none; }
.icon-cell .ico { font-size: 1.5rem; margin-bottom: 13px; opacity: 0.7; }
.icon-cell h3 {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 7px;
}
.icon-cell p { font-size: 0.88rem; color: var(--silver); line-height: 1.55; }

/* ─── TWO-COL LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.two-col.centered { align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── ARCHED IMAGE ─── */
.arch-img {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}
.arch-img img { width: 100%; height: 420px; object-fit: cover; object-position: center top; filter: brightness(0.88); }

/* ─── CREDENTIAL BADGES ─── */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.cred-badge {
  background: rgba(8,11,18,0.6);
  border: 1px solid rgba(200,212,232,0.09);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-badge .star { font-size: 0.6rem; color: var(--moon-grey); flex-shrink: 0; }
.cred-badge span {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.4;
}

/* ─── BULLET LIST ─── */
.star-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.star-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--moon-grey);
  line-height: 1.65;
}
.star-list li::before {
  content: '✦';
  font-size: 0.45rem;
  margin-top: 7px;
  flex-shrink: 0;
}
.star-list.rose li::before  { color: var(--rose-gold); }
.star-list.bronze li::before{ color: var(--bronze); }
.star-list.gold li::before  { color: var(--sacred-gold); }

/* ─── PHILOSOPHY GRID ─── */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(200,212,232,0.07);
  margin-top: 32px;
}
.phil-cell {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid rgba(200,212,232,0.07);
}
.phil-cell:last-child { border-right: none; }
.phil-cell .ico { font-size: 1rem; color: var(--moon-grey); opacity: 0.6; margin-bottom: 10px; }
.phil-cell h4 {
  font-size: 0.53rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.phil-cell p { font-size: 0.94rem; color: var(--moon-grey); line-height: 1.55; }

/* ─── OFFERING GRID ─── */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(200,212,232,0.07);
  margin: 36px 0;
}
.offering-cell {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(200,212,232,0.07);
  transition: background 0.3s;
}
.offering-cell:last-child { border-right: none; }
.offering-cell:hover { background: rgba(200,212,232,0.03); }
.offering-cell .ico { font-size: 1.2rem; color: var(--moon-grey); opacity: 0.6; margin-bottom: 12px; }
.offering-cell h3 { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--silver); margin-bottom: 7px; }
.offering-cell p { font-size: 0.86rem; color: var(--moon-grey); line-height: 1.5; }

/* ─── COLLAB LIST ─── */
.collab-list { list-style: none; display: flex; flex-direction: column; }
.collab-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(200,212,232,0.06);
}
.collab-list li:last-child { border-bottom: none; }
.collab-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,212,232,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: var(--moon-grey);
  flex-shrink: 0;
}
.collab-list h4 { font-size: 0.57rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--silver); margin-bottom: 3px; }
.collab-list p { font-size: 0.88rem; color: var(--moon-grey); }

/* ─── PROCESS STEPS ─── */
.process-row {
  display: flex;
  align-items: flex-start;
  margin-top: 44px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 19px;
  right: 0;
  width: 50%;
  height: 1px;
  background: rgba(200,212,232,0.1);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,212,232,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--moon-grey);
}
.process-step h4 { font-size: 0.57rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--silver); margin-bottom: 5px; }
.process-step p { font-size: 0.75rem; color: var(--moon-grey); line-height: 1.5; }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 56px; }
.form-box, .info-box {
  background: rgba(17,24,39,0.55);
  border: 1px solid rgba(200,212,232,0.08);
  padding: clamp(28px, 4vw, 48px);
}
.form-box h3, .info-box h3 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moon-grey);
  margin-bottom: 6px;
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(8,11,18,0.5);
  border: 1px solid rgba(200,212,232,0.1);
  color: var(--silver);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  appearance: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(200,212,232,0.32); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%238a9bb5' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.form-group select option { background: var(--dark-azure); color: var(--silver); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.72rem; color: var(--moon-grey); margin-bottom: 18px; line-height: 1.5; }
.contact-info-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,212,232,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--moon-grey);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.57rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--silver); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; color: var(--moon-grey); line-height: 1.65; }
.contact-info-item a { color: var(--silver); text-decoration: underline; text-underline-offset: 3px; }

/* ─── TRUST GRID ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200,212,232,0.06);
  margin-top: 52px;
}
.trust-cell {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(200,212,232,0.06);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .ico { font-size: 1.3rem; color: var(--moon-grey); opacity: 0.55; margin-bottom: 12px; }
.trust-cell h4 { font-size: 0.57rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--silver); margin-bottom: 7px; }
.trust-cell p { font-size: 0.88rem; color: var(--moon-grey); line-height: 1.55; }

/* ─── BLOCKQUOTE ─── */
blockquote {
  border-left: 2px solid rgba(200,212,232,0.14);
  padding: 14px 22px;
  margin: 0;
}
blockquote p { font-family: var(--font-body); font-style: italic; font-size: 0.95rem; color: var(--silver); line-height: 1.7; }

/* ─── FOOTER ─── */
footer {
  background: var(--blue-black);
  border-top: 1px solid rgba(200,212,232,0.05);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .f-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft-white);
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.95rem; color: var(--silver); line-height: 1.7; max-width: 210px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.88rem; color: var(--silver); transition: color 0.3s; }
.footer-col a:hover { color: var(--silver); }
.footer-social { display: flex; flex-direction: column; }
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,212,232,0.13);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  color: var(--moon-grey);
  transition: all 0.3s;
}
.social-icons a:hover { border-color: var(--silver); color: var(--silver); }
.footer-bottom {
  border-top: 1px solid rgba(200,212,232,0.05);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moon-grey);
}
.footer-bottom a:hover { color: var(--silver); }
.footer-bottom .pipe { opacity: 0.25; }

/* ─── QUIZ BAND ─── */
.quiz-band {
  background: var(--dark-azure);
  border: 1px solid rgba(200,212,232,0.06);
  padding: 52px clamp(24px, 6vw, 72px);
  text-align: center;
  margin: 56px 0;
}
.quiz-band h2 { font-size: 0.65rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--moon-grey); margin-bottom: 6px; }
.quiz-band h3 { font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--soft-white); margin-bottom: 7px; }
.quiz-band p { font-family: var(--font-body); font-style: italic; color: var(--silver); max-width: 440px; margin: 0 auto 26px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim { animation: fadeUp 0.8s var(--ease-out) both; opacity: 0; }
.anim-in { animation: fadeIn 0.7s var(--ease-std) both; opacity: 0; }
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pillars, .icon-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .path-cards { grid-template-columns: 1fr; }
  .path-card { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phil-grid { grid-template-columns: repeat(3, 1fr); }
  .offering-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .kim-strip { grid-template-columns: 1fr; }
  .kim-photo { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .process-row { flex-direction: column; gap: 28px; }
  .process-step::after { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .page-hero .quote-bubble { display: none; }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(200,212,232,0.07); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .phil-grid { grid-template-columns: repeat(2, 1fr); }
  .offering-grid { grid-template-columns: repeat(2, 1fr); }
}
