/* ============ HOME ============ */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 6rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sky-gradient);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: var(--lavender); top: -120px; left: -80px; }
.blob-2 { width: 480px; height: 480px; background: var(--teal-soft); top: 30%; right: -140px; animation-delay: -6s; animation-duration: 22s; }
.blob-3 { width: 380px; height: 380px; background: var(--accent-warm); opacity: 0.25; bottom: -100px; left: 35%; animation-delay: -12s; animation-duration: 26s; }

.hero-inner {
  max-width: 1100px;
  padding-top: 2rem;
}

.hero-meta { margin-bottom: 2rem; }

.hero-title {
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  max-width: 14ch;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(100deg, #B8A4E3 0%, #4FB8B0 60%, #1A2E4A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 58ch;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-details {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.hero-details .divider-dot { background: var(--teal); }

.chapter-mark {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  z-index: 3;
}
.chapter-mark span:first-child {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.35;
}

/* ---- Scroll reveal base ---- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---- Shift section ---- */
.shift { padding: 8rem 0 5rem; }

.shift-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.shift-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-top: 1.25rem;
  line-height: 1;
}

.shift-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}
.shift-prose p:last-child { margin-bottom: 0; }
.shift-prose strong { color: var(--navy-deep); font-weight: 500; }

/* ---- Faculties ---- */
.faculties {
  padding: 6rem 0 6rem;
  background: linear-gradient(180deg, transparent 0%, var(--cream-warm) 30%, var(--cream-warm) 70%, transparent 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head .eyebrow { margin-bottom: 1rem; justify-content: center; display: inline-flex; }
.section-head h2 { max-width: 18ch; margin: 0 auto; }

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faculty {
  background: var(--cream);
  padding: 2.5rem 2rem 2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faculty::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faculty:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(26, 46, 74, 0.2);
  border-color: transparent;
}
.faculty:hover::before { transform: scaleX(1); }

.faculty-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.faculty h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.faculty p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.faculty-cta {
  background: var(--navy-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.faculty-cta h3 { color: var(--cream); }
.faculty-cta p { color: rgba(251, 248, 243, 0.7); margin-bottom: 1.5rem; }
.faculty-cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(251, 248, 243, 0.2);
  align-self: flex-start;
}
.faculty-cta .btn-ghost:hover { border-color: var(--lavender); background: rgba(184, 164, 227, 0.1); }

/* ---- Pull quote ---- */
.pull-quote {
  padding: 7rem 0;
  text-align: center;
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 0.5;
  color: var(--lavender);
  opacity: 0.4;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---- Made for ---- */
.made-for { padding: 5rem 0 7rem; }

.made-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.made-copy h2 { margin: 1rem 0 1.5rem; max-width: 15ch; }
.made-copy p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.made-list { list-style: none; }
.made-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--navy-deep);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.made-list li span {
  color: var(--teal);
  font-weight: 400;
  font-size: 1.1rem;
}
.made-list li:last-child { border-bottom: none; }

/* ---- Final CTA ---- */
.final-cta { padding: 4rem 0 5rem; }

.cta-card {
  background: var(--brand-gradient);
  border-radius: 28px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.cta-card > * { position: relative; z-index: 2; }
.cta-card .eyebrow { color: var(--lavender-pale); margin-bottom: 1.25rem; justify-content: center; }
.cta-card .eyebrow::before { background: var(--lavender-pale); }
.cta-card h2 { color: var(--cream); max-width: 20ch; margin: 0 auto 1.5rem; }
.cta-card p { color: rgba(251, 248, 243, 0.85); max-width: 50ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-card .btn-primary {
  background: var(--cream);
  color: var(--navy-deep);
}
.cta-card .btn-primary:hover { background: #fff; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .shift-grid, .made-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faculty-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 3.5rem 2rem; }
  .chapter-mark { display: none; }
}

@media (max-width: 560px) {
  .faculty-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 4rem 0 4rem; }
}
