:root {
  --ink: #171216;
  --muted: #6f646c;
  --rose: #b63768;
  --rose-dark: #8f244f;
  --rose-soft: #f8e8ef;
  --paper: #fffafc;
  --white: #ffffff;
  --line: #ead5df;
  --shadow: 0 24px 70px rgba(42, 22, 34, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 252, 0.88);
  border-bottom: 1px solid rgba(234, 213, 223, 0.75);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 252, 0.96);
  box-shadow: 0 10px 30px rgba(42, 22, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 2rem;
  text-decoration: none;
}

.brand-mark {
  width: 140px;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--rose);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px) 48px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.apply-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 14px 30px rgba(182, 55, 104, 0.28);
}

.primary:hover,
.primary:focus-visible {
  background: var(--rose-dark);
}

.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 16px;
  color: var(--white);
  background: rgba(23, 18, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.intro-band {
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.intro-band p {
  max-width: 1180px;
  margin: 0 auto;
  font-weight: 700;
}

.intro-band a {
  color: #ffd7e7;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 86px);
  max-width: 1240px;
  margin: 0 auto;
}

.copy-block {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-block p,
.feature-card p,
.teaching-panel p,
.qualification-card p,
.apply-copy p,
.section-heading p,
.testimonial-card p,
.mini-panel p,
.faq-list p {
  margin: 0;
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.process-section,
.faq-section,
.testimonials-section {
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(42, 22, 34, 0.08);
}

.rose-card {
  color: var(--white);
  background: var(--rose);
  border-color: var(--rose);
}

.feature-card:not(.rose-card) p {
  color: var(--muted);
}

.feature-card ul,
.teaching-panel ul,
.faq-list ul {
  margin: 0;
  padding-left: 20px;
}

.feature-card li,
.teaching-panel li,
.faq-list li {
  margin: 7px 0;
}

.rose-card p {
  color: rgba(255, 255, 255, 0.86);
}

.rose-card li {
  color: rgba(255, 255, 255, 0.9);
}

.card-number {
  font-weight: 800;
  opacity: 0.58;
}

.teaching-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.teaching-panel,
.qualification-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
}

.teaching-panel {
  color: var(--white);
  background: var(--ink);
}

.teaching-panel .section-kicker,
.teaching-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.qualification-card {
  background: var(--rose-soft);
  border: 1px solid var(--line);
}

.qualification-card p {
  color: var(--muted);
}

.qualification-card h2 + p {
  margin-top: 0;
}

.mini-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--rose-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(42, 22, 34, 0.07);
}

.faq-list summary {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details > *:not(summary) {
  margin-top: 14px;
  color: var(--muted);
}

.apply-link {
  width: fit-content;
  margin-top: 28px;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.testimonial-card p:not(.section-kicker) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
}

.legal-hero,
.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(42, 22, 34, 0.07);
}

.legal-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.legal-content p,
.legal-content ul {
  margin: 0;
  color: var(--muted);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--rose);
  font-weight: 800;
  text-underline-offset: 4px;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 64px);
  background: var(--white);
}

.apply-copy {
  max-width: 560px;
}

.apply-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(182, 55, 104, 0.16);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--rose-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 32px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 110px;
  height: auto;
}

.footer p {
  margin: 0;
  font-weight: 800;
}

.footer-contact,
.footer-legal {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-contact {
  display: flex;
  gap: 12px;
  justify-items: center;
}

.footer-legal {
  justify-items: end;
  text-align: right;
}

.footer a {
  color: #ffd7e7;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: #ffd7e7;
  border-radius: 50%;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.footer-contact svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
  background: var(--rose);
  transform: translateY(-2px);
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .two-column,
  .feature-grid,
  .process-grid,
  .teaching-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 620px;
  }

  .feature-card {
    min-height: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact,
  .footer-legal {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

  .hero,
  .section,
  .apply-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
