/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(82vw, 760px);
  height: min(82vw, 760px);
  max-height: 78vh;
  pointer-events: none;
}
.hero-frame path {
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  opacity: .5;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawframe 2.4s ease forwards .3s;
}
@keyframes drawframe { to { stroke-dashoffset: 0; } }

.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero .label { display: block; opacity: 0; animation: fade 1s ease forwards 1.4s; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 26px 0 0;
}
.hero h1 .ln {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1.1s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero h1 .ln:nth-child(1) { animation-delay: 1.6s; }
.hero h1 .ln:nth-child(2) { animation-delay: 1.78s; }
.hero h1 .ln:nth-child(3) { animation-delay: 1.96s; }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  max-width: 480px;
  margin: 32px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, .74);
  opacity: 0;
  animation: fade 1.2s ease forwards 2.3s;
}
.hero-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .5);
  opacity: 0;
  animation: fade 1s ease forwards 2.8s;
}

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* ── Pillars preview ────────────────────────────────────── */
.pillars { margin-top: 78px; display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { padding: 0 34px; border-left: 1px solid var(--line); }
.pillar:first-child { padding-left: 0; border-left: none; }
.pillar .p-verb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; line-height: 1.1; margin-bottom: 18px; }
.pillar p { font-size: .96rem; color: var(--muted); }

/* ── Band ───────────────────────────────────────────────── */
.band { background: var(--navy); color: var(--cream); text-align: center; padding: 160px 0; }
.band p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.3;
  max-width: 20ch;
  margin: 0 auto;
}
.band em { font-style: italic; color: var(--gold); }

/* ── Journey preview ────────────────────────────────────── */
.j-preview {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
}
.j-cell {
  flex: 1 1 14%;
  min-width: 120px;
  padding: 26px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.j-cell .jn { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; }
.j-cell .jt { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-top: 4px; }

/* ── Values preview ─────────────────────────────────────── */
.values-wrap { background: var(--white); }
.values { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.v-item { display: flex; align-items: baseline; gap: 18px; padding: 28px 10px; border-top: 1px solid var(--line); }
.v-item:nth-child(1),
.v-item:nth-child(2),
.v-item:nth-child(3) { border-top: none; }
.v-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; min-width: 28px; }
.v-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }

/* ── Apply home ─────────────────────────────────────────── */
.apply-home { background: var(--navy); color: var(--cream); }
.apply-home .sec-title { color: var(--cream); }
.apply-home .lead { color: rgba(245, 240, 232, .72); }
.apply-home .cta { margin-top: 36px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 34px 0; border-left: none; border-top: 1px solid var(--line); }
  .pillar:first-child { padding-top: 0; border-top: none; }
  .values { grid-template-columns: 1fr; }
  .v-item:nth-child(2),
  .v-item:nth-child(3) { border-top: 1px solid var(--line); }
  .band { padding: 110px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame path,
  .hero .label,
  .hero h1 .ln,
  .hero-sub,
  .hero-cue {
    animation: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
}
