/* ==========================================================================
   Path Architects — Landing page
   Static port of "Path Architects.dc.html". Brand tokens come from tokens/*.css;
   this sheet recreates the page layout and the DS component styles
   (Button, StepMarker, Input) as plain CSS. Values match the design 1:1.
   ========================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: #F1EEE4;
  color: #0B2238;
  overflow-x: hidden;
}
a { color: inherit; }
::selection { background: #C4A268; color: #0B2238; }

img { display: block; }

/* anchor targets clear the sticky header */
#method, #about, #outcomes, #contact { scroll-margin-top: 80px; }

/* Shared blueprint-grid background motif ---------------------------------- */
.pa-grid-bg {
  background-color: #F6F4EC;
  background-image:
    linear-gradient(rgba(19, 58, 94, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 58, 94, .05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.pa-grid-bg--faint {
  background-image:
    linear-gradient(rgba(19, 58, 94, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 58, 94, .04) 1px, transparent 1px);
}

/* Shared eyebrow row (gold rule + mono label) ----------------------------- */
.pa-eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.pa-rule { width: 46px; height: 1.5px; background: #C4A268; flex-shrink: 0; }
.pa-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8E6F3E;
}
.pa-eyebrow--gold { color: #D4B988; }

.pa-overline {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8E6F3E;
  margin-bottom: 18px;
}

.pa-section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #0B2238;
  margin: 0;
}
.pa-section-title--center { text-align: center; }

.pa-arrow { color: #D4B988; }
.pa-arrow-mono { font-family: 'Space Mono', monospace; color: #8E6F3E; font-size: 13px; }

/* ==========================================================================
   Buttons (ported from DS Button)
   ========================================================================== */
.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 200ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 120ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pa-btn:active { transform: scale(0.98); }
.pa-btn--lg { padding: 15px 30px; font-size: 16px; gap: 10px; letter-spacing: 0.04em; }

.pa-btn--primary {
  background: #133A5E;
  color: #FBFAF6;
  border: 1.5px solid #133A5E;
  box-shadow: 0 1px 2px rgba(11, 34, 56, 0.06);
}
.pa-btn--primary:hover { background: #0B2238; border-color: #0B2238; }
.pa-btn--primary .pa-arrow { color: #FBFAF6; }

.pa-btn--outline {
  color: #133A5E;
  background: transparent;
  border: 1.5px solid #C2BBA8;
  padding: 15px 26px;
  font-size: 16px;
}
.pa-btn--outline:hover { border-color: #133A5E; }

/* ==========================================================================
   Sticky header
   ========================================================================== */
.pa-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 238, 228, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #D9D3C4;
}
.pa-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pa-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.pa-brand__mark { height: 34px; width: auto; }
.pa-brand__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #0B2238;
  white-space: nowrap;
}
.pa-nav { display: flex; align-items: center; gap: 38px; font-size: 15px; font-weight: 500; color: #133A5E; }
.pa-nav-link { position: relative; text-decoration: none; }
.pa-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: #C4A268;
  transition: width 200ms ease;
}
.pa-nav-link:hover::after { width: 100%; }
.pa-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  background: #133A5E;
  color: #FBFAF6;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px;
  transition: background 200ms ease;
}
.pa-nav-cta:hover { background: #0B2238; }

/* ==========================================================================
   Hero
   ========================================================================== */
.pa-hero { position: relative; border-bottom: 1px solid #D9D3C4; }
.pa-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 104px 40px 110px;
  display: block;
}
.pa-hero__copy { max-width: 820px; }
.pa-hero__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 92px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #0B2238;
  margin: 0 0 30px;
}
.pa-hero__title-accent { color: #A8854E; }
.pa-hero__lede {
  font-size: 19px;
  line-height: 1.64;
  color: #3E4A57;
  max-width: 520px;
  margin: 0 0 40px;
  font-weight: 400;
}
.pa-hero__actions { display: flex; gap: 14px; align-items: center; }
.pa-logo-strip { display: flex; gap: 34px; margin-top: 60px; flex-wrap: wrap; }
.pa-logo-strip span {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #6E8094;
}

/* Blueprint "One Year Early" timeline card */
.pa-blueprint-card {
  position: relative;
  border: 1.5px solid #133A5E;
  border-radius: 4px;
  background: rgba(246, 244, 236, 0.6);
  padding: 34px 34px 30px;
}
.pa-fig {
  position: absolute;
  top: 16px; right: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #98A0A8;
}
.pa-blueprint-card__label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8E6F3E;
  margin-bottom: 28px;
}
.pa-timeline { display: flex; flex-direction: column; gap: 0; }
.pa-timeline__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-left: 1px solid #C2BBA8;
  margin-left: 6px;
  padding-left: 22px;
  position: relative;
}
.pa-timeline__row--last { border-left: 1px solid transparent; padding-bottom: 0; }
.pa-timeline__node {
  position: absolute;
  left: -5px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #FBFAF6;
  border: 1.5px solid #133A5E;
}
.pa-timeline__node--gold {
  width: 11px; height: 11px;
  background: #C4A268;
  border: 1.5px solid #A8854E;
}
.pa-timeline__year { font-family: 'Space Mono', monospace; font-size: 12px; color: #66707B; }
.pa-timeline__year--gold { color: #8E6F3E; font-weight: 700; }
.pa-timeline__text { font-size: 14.5px; line-height: 1.5; color: #3E4A57; }
.pa-timeline__text--strong { color: #0B2238; font-weight: 600; }

/* ==========================================================================
   Method
   ========================================================================== */
.pa-method { max-width: 1200px; margin: 0 auto; padding: 116px 40px 40px; }
.pa-method__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.pa-method__head-left { max-width: 640px; }
.pa-method__head-right { font-size: 17px; line-height: 1.62; color: #3E4A57; max-width: 360px; margin: 0; }

/* Service overview cards — align-items:start so an expanded card never
   stretches its shorter siblings. */
.pa-service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pa-service-card {
  border: 1px solid #D9D3C4;
  border-radius: 6px;
  background: #FBFAF6;
  box-shadow: 0 1px 2px rgba(11, 34, 56, .04);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.pa-service-card:hover { border-color: #C4A268; box-shadow: 0 6px 18px rgba(11, 34, 56, .07); }
/* static (non-expandable) card body */
.pa-service-card:not(.pa-service-card--expandable) {
  padding: 34px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pa-service-card__no {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #A8854E;
  line-height: 1;
}
.pa-service-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #0B2238;
  margin: 0;
  line-height: 1.2;
}
.pa-service-card__body { font-size: 15px; line-height: 1.6; color: #3E4A57; margin: 0; }

/* Expandable card — native <details> "click to read the methodology" */
.pa-service-card--expandable { overflow: hidden; }
.pa-service-card__summary {
  list-style: none;
  cursor: pointer;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  -webkit-tap-highlight-color: transparent;
}
.pa-service-card__summary::-webkit-details-marker { display: none; }
.pa-service-card__summary:focus-visible { outline: 2px solid #C4A268; outline-offset: -3px; }
.pa-service-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8E6F3E;
}
.pa-service-card[open] .pa-service-card__toggle { color: #66707B; }
/* +/− glyph drawn from two bars; vertical bar collapses when open */
.pa-service-card__chev { position: relative; width: 11px; height: 11px; flex-shrink: 0; }
.pa-service-card__chev::before,
.pa-service-card__chev::after {
  content: "";
  position: absolute;
  background: #A8854E;
  transition: transform 220ms ease, opacity 220ms ease;
}
.pa-service-card__chev::before { top: 5px; left: 0; width: 11px; height: 1.5px; }
.pa-service-card__chev::after  { left: 5px; top: 0; width: 1.5px; height: 11px; }
.pa-service-card[open] .pa-service-card__chev::after { transform: scaleY(0); opacity: 0; }

.pa-service-card__detail { padding: 26px 30px 34px; border-top: 1px solid #E4DECF; }
.pa-service-card__detail > .pa-tag { display: inline-block; margin-bottom: 20px; }
.pa-service-card__detail .pa-track__lede { font-size: 15px; line-height: 1.62; margin: 0 0 22px; max-width: none; }
.pa-service-card__detail .pa-steps { grid-template-columns: 1fr; gap: 26px; }
.pa-service-card__detail .pa-english-grid { grid-template-columns: 1fr; }

/* Subjects-taught chips (Academic Tutoring card) */
.pa-subjects { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pa-subjects li {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: #133A5E;
  background: #EAF0F4;
  border: 1px solid #CDDAE3;
  border-radius: 4px;
  padding: 8px 14px;
}

.pa-track {
  border: 1px solid #D9D3C4;
  border-radius: 6px;
  background: #FBFAF6;
  padding: 44px 44px 48px;
  box-shadow: 0 1px 2px rgba(11, 34, 56, .04);
}
.pa-track--english { margin-top: 32px; }
.pa-track__head { display: flex; align-items: center; gap: 14px; margin-bottom: 38px; }
.pa-track__head--tight { margin-bottom: 14px; }
.pa-track__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #0B2238;
  margin: 0;
}
.pa-track__lede { font-size: 17.5px; line-height: 1.66; color: #3E4A57; max-width: 760px; margin: 0 0 40px; }

.pa-tag {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}
.pa-tag--navy { color: #133A5E; background: #EAF0F4; border: 1px solid #CDDAE3; }
.pa-tag--gold { color: #8E6F3E; background: #F3ECDD; border: 1px solid #E0CFA8; }

/* StepMarker (ported from DS StepMarker) */
.pa-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pa-step { display: flex; flex-direction: column; gap: 16px; }
.pa-step__top { display: flex; align-items: center; gap: 16px; }
.pa-step__index {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #133A5E;
  line-height: 1;
  letter-spacing: 0.02em;
}
.pa-step__rule { flex: 1; height: 1.5px; background: #94B0C8; opacity: 0.7; }
.pa-step__label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #66707B;
}
.pa-step__title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0B2238;
  line-height: 1.2;
  margin: 0;
}
.pa-step__desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #3E4A57;
  margin: 0;
}
/* active step → gold (the "advantage") */
.pa-step--active .pa-step__index { color: #A8854E; }
.pa-step--active .pa-step__rule { background: #C4A268; opacity: 1; }
.pa-step--active .pa-step__label { color: #8E6F3E; }

/* Track 2 — spoken English grid */
.pa-english-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E4DECF;
  border: 1px solid #E4DECF;
  border-radius: 5px;
  overflow: hidden;
}
.pa-english-card { background: #FBFAF6; padding: 28px 26px 30px; }
.pa-english-card__no {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #98A0A8;
  margin-bottom: 16px;
}
.pa-english-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #0B2238;
  margin: 0 0 10px;
  line-height: 1.2;
}
.pa-english-card__body { font-size: 14.5px; line-height: 1.58; color: #505A66; margin: 0; }

/* ==========================================================================
   About / Peem  (navy section)
   ========================================================================== */
.pa-about { background: #0B2238; color: #E8EDF1; margin-top: 116px; }
.pa-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 76px;
  align-items: start;
}
.pa-portrait { position: relative; }
.pa-portrait__frame {
  position: absolute;
  inset: -13px;
  border: 1.5px solid #3B6285;
  border-radius: 4px;
  pointer-events: none;
}
.pa-portrait__slot {
  width: 440px;
  height: 540px;
  border-radius: 3px;
  background: #102B45;
  border: 1px dashed #3B6285;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  filter: grayscale(1) contrast(1.03);
  transition: border-color 200ms ease, background 200ms ease;
}
.pa-portrait__slot:hover,
.pa-portrait__slot:focus-visible,
.pa-portrait__slot.is-dragover { border-color: #C4A268; background: #143150; outline: none; }
.pa-portrait__placeholder {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6E8398;
  padding: 0 28px;
  line-height: 1.6;
}
.pa-portrait__slot.is-filled { border-style: solid; cursor: default; filter: none; }
.pa-portrait__slot.is-filled .pa-portrait__placeholder { display: none; }
.pa-portrait__img { width: 100%; height: 100%; object-fit: cover; }
.pa-portrait__caption {
  position: absolute;
  left: 2px; bottom: -50px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #8FA3B5;
}
.pa-portrait__caption span { color: #6E8398; }

.pa-about__copy { padding-top: 6px; }
.pa-about__copy .pa-eyebrow-row { margin-bottom: 26px; }
.pa-about__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #FBFAF6;
  margin: 0 0 28px;
}
.pa-about__body { font-size: 18px; line-height: 1.7; color: #C2CDD6; margin: 0 0 20px; max-width: 620px; }
.pa-about__body:last-of-type { margin-bottom: 44px; }

/* Founding-tutors layout — single column instead of portrait + copy */
.pa-about__inner--team { display: block; }
.pa-about__head { max-width: 720px; margin-bottom: 48px; }
.pa-about__head .pa-eyebrow-row { margin-bottom: 24px; }
.pa-about__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #FBFAF6;
  margin: 0 0 18px;
}
.pa-about__intro { font-size: 18px; line-height: 1.7; color: #C2CDD6; margin: 0; max-width: 620px; }

/* Tutor cards — collapsible bios on the navy background */
.pa-tutors { display: flex; flex-direction: column; gap: 18px; }
.pa-tutor {
  border: 1px solid #234059;
  border-radius: 8px;
  background: #0E2942;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.pa-tutor:hover { border-color: #3B6285; }
.pa-tutor__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 24px 28px;
  -webkit-tap-highlight-color: transparent;
}
.pa-tutor__summary::-webkit-details-marker { display: none; }
.pa-tutor__summary:focus-visible { outline: 2px solid #C4A268; outline-offset: -3px; }
.pa-tutor__photo {
  width: 116px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #102B45;
  border: 1px solid #2C4D6B;
}
.pa-tutor__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.pa-tutor__photo--empty { display: flex; align-items: center; justify-content: center; }
.pa-tutor__photo-ph {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5E748A;
  text-align: center;
  line-height: 1.5;
}
.pa-tutor__head { flex: 1; min-width: 0; }
.pa-tutor__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: #FBFAF6;
  margin: 0 0 6px;
}
.pa-tutor__role {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A268;
  margin-bottom: 14px;
}
.pa-tutor__blurb { font-size: 15.5px; line-height: 1.6; color: #C2CDD6; margin: 0; max-width: 640px; }
.pa-tutor__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4B988;
}
.pa-tutor__toggle-text--less { display: none; }
.pa-tutor[open] .pa-tutor__toggle-text--more { display: none; }
.pa-tutor[open] .pa-tutor__toggle-text--less { display: inline; }
.pa-tutor .pa-service-card__chev::before,
.pa-tutor .pa-service-card__chev::after { background: #D4B988; }
.pa-tutor[open] .pa-service-card__chev::after { transform: scaleY(0); opacity: 0; }

.pa-tutor--static { cursor: default; }
.pa-tutor--static .pa-tutor__summary { cursor: default; }
.pa-tutor__detail { padding: 0 28px 30px; }
.pa-tutor__detail-inner { border-top: 1px solid #234059; padding-top: 26px; }
.pa-tutor__full { font-size: 16.5px; line-height: 1.7; color: #C2CDD6; margin: 0 0 28px; max-width: 760px; }
.pa-tutor__detail-inner .pa-creds:last-child,
.pa-tutor__full:last-child { margin-bottom: 0; }

.pa-creds { border-top: 1px solid #234059; }
.pa-cred {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid #234059;
  align-items: baseline;
}
.pa-cred__year { font-family: 'Space Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em; color: #7E93A6; }
.pa-cred__text { font-size: 16px; line-height: 1.45; color: #E2E9EF; }
.pa-cred__text strong { font-weight: 600; color: #FBFAF6; }
.pa-cred__text span { color: #9DAEBC; }

/* LinkedIn link */
.pa-tutor__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 15px 8px 13px;
  border: 1px solid #2C4D6B;
  border-radius: 6px;
  background: #102B45;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4B988;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.pa-tutor__link:hover { border-color: #C4A268; color: #F0DCB4; background: #12314F; }
.pa-tutor__link:focus-visible { outline: 2px solid #C4A268; outline-offset: 2px; }
.pa-tutor__link-icon { width: 15px; height: 15px; flex-shrink: 0; }

/* Résumé sections */
.pa-resume { display: flex; flex-direction: column; gap: 34px; }
.pa-resume__block { min-width: 0; }
.pa-resume__title {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8E6F3E;
  margin: 0 0 4px;
}

/* ==========================================================================
   Outcomes / testimonials
   ========================================================================== */
.pa-outcomes { max-width: 1200px; margin: 0 auto; padding: 116px 40px; }
.pa-outcomes__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.pa-outcomes__head--sub { margin-top: 96px; }
.pa-outcomes__intro { font-size: 17px; line-height: 1.6; color: #4A5A69; margin: 22px auto 0; max-width: 560px; }

/* University destinations */
.pa-unis { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.pa-uni {
  flex: 1 1 200px;
  max-width: 240px;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #133A5E;
  border-radius: 6px;
  padding: 26px 32px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.pa-uni:hover { border-color: #C4A268; transform: translateY(-2px); }
.pa-uni__logo {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* LSE is a square monogram — scale up so it reads at the same weight as the wordmarks */
.pa-uni__logo--lse { max-height: 86px; }
.pa-outcomes .pa-section-title { font-size: 48px; line-height: 1.05; }
.pa-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pa-testimonial {
  border: 1.5px solid #133A5E;
  border-radius: 6px;
  background: transparent;
  padding: 32px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.pa-testimonial__no {
  position: absolute;
  top: 20px; right: 22px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B7C0C8;
}
.pa-testimonial__quote-mark { font-family: 'Sora', sans-serif; font-size: 40px; line-height: 1; color: #C4A268; margin-bottom: 12px; }
.pa-testimonial__quote { font-size: 16.5px; line-height: 1.62; color: #2C3A47; margin: 0 0 26px; flex: 1; }
.pa-testimonial__cite { border-top: 1px solid #D9D3C4; padding-top: 16px; }
.pa-testimonial__name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: #0B2238; }
.pa-testimonial__detail { font-family: 'Space Mono', monospace; font-size: 11.5px; letter-spacing: 0.06em; color: #8E97A0; margin-top: 3px; }
.pa-outcomes__note { text-align: center; font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.08em; color: #A8A294; margin-top: 32px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.pa-contact { border-top: 1px solid #D9D3C4; }
.pa-contact__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pa-contact__copy .pa-eyebrow-row { margin-bottom: 26px; }
.pa-contact__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #0B2238;
  margin: 0 0 24px;
}
.pa-contact__body { font-size: 18px; line-height: 1.66; color: #3E4A57; max-width: 440px; margin: 0 0 36px; }
.pa-contact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pa-contact__list li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: #3E4A57; }

/* form card */
.pa-form-card {
  background: #FBFAF6;
  border: 1px solid #D9D3C4;
  border-radius: 8px;
  padding: 38px 36px;
  box-shadow: 0 12px 32px rgba(11, 34, 56, .07);
}
.pa-form { display: flex; flex-direction: column; gap: 20px; }
.pa-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pa-form__row--single { grid-template-columns: 1fr; }

/* Input (ported from DS Input) */
.pa-field { display: flex; flex-direction: column; gap: 7px; }
.pa-field__label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3E4A57;
}
.pa-field__label--mono {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5C6772;
  margin-bottom: 1px;
}
.pa-field__control {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #FFFFFF;
  border: 1.5px solid #C2BBA8;
  border-radius: 4px;
  padding: 0 12px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.pa-field__control:focus-within { border-color: #2E5E86; box-shadow: 0 0 0 3px rgba(46, 94, 134, 0.28); }
.pa-field__control input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0B2238;
  padding: 11px 0;
  min-width: 0;
}

.pa-select {
  width: 100%;
  height: 44px;
  border: 1.5px solid #D9D3C4;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 0 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: #0B2238;
  cursor: pointer;
}
.pa-textarea {
  width: 100%;
  border: 1.5px solid #D9D3C4;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #0B2238;
  resize: vertical;
}
.pa-select:focus, .pa-textarea:focus { outline: none; border-color: #2E5E86; box-shadow: 0 0 0 3px rgba(46, 94, 134, 0.28); }

.pa-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #133A5E;
  color: #FBFAF6;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 200ms ease;
  margin-top: 4px;
}
.pa-form__submit:hover { background: #0B2238; }
.pa-form__submit:disabled { opacity: 0.6; cursor: default; }
.pa-form__submit.is-loading { pointer-events: none; }
.pa-form__error { font-size: 13px; line-height: 1.5; color: #B03A2E; margin: 2px 0 0; text-align: center; }
.pa-form__fineprint { font-size: 12.5px; line-height: 1.5; color: #8A929B; margin: 2px 0 0; text-align: center; }

/* success state */
.pa-form-success { text-align: center; padding: 40px 10px; }
.pa-form-success__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8E6F3E;
  margin-bottom: 18px;
}
.pa-form-success__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 26px; color: #0B2238; margin: 0 0 14px; letter-spacing: -0.01em; }
.pa-form-success__body { font-size: 16px; line-height: 1.6; color: #3E4A57; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.pa-footer { background: #0B2238; color: #9DAEBC; }
.pa-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.pa-footer__brand { display: flex; align-items: center; gap: 13px; }
.pa-footer__mark { height: 32px; width: auto; }
.pa-footer__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: #FBFAF6; letter-spacing: -0.01em; }
.pa-footer__tagline { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: #6E8398; margin-top: 3px; }
.pa-footer__nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; color: #C2CDD6; }
.pa-footer__nav a { text-decoration: none; }
.pa-footer__nav a:hover { color: #FBFAF6; }
.pa-footer__copy { font-family: 'Space Mono', monospace; font-size: 11.5px; color: #5E748A; }

/* ==========================================================================
   Responsive — the design is a 1200px desktop layout; collapse gracefully.
   ========================================================================== */
@media (max-width: 1040px) {
  .pa-hero__inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 32px 80px; }
  .pa-hero__title { font-size: 72px; }
  .pa-about__inner { grid-template-columns: 1fr; gap: 64px; }
  .pa-portrait__slot { width: 100%; max-width: 440px; }
  .pa-contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .pa-steps { grid-template-columns: 1fr; gap: 36px; }
  .pa-english-grid { grid-template-columns: repeat(2, 1fr); }
  .pa-testimonials { grid-template-columns: 1fr; }
  .pa-method, .pa-outcomes { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 720px) {
  .pa-header__inner { padding: 16px 20px; }
  .pa-nav { gap: 18px; font-size: 14px; }
  .pa-nav-link { display: none; }
  .pa-hero__inner { padding: 56px 20px 64px; }
  .pa-hero__title { font-size: 54px; }
  .pa-section-title, .pa-outcomes .pa-section-title, .pa-contact__title, .pa-about__title { font-size: 36px; }
  .pa-method { padding: 80px 20px 24px; }
  .pa-service-cards { grid-template-columns: 1fr; }
  .pa-track { padding: 32px 24px 36px; }
  .pa-english-grid { grid-template-columns: 1fr; }
  .pa-about__inner { padding: 72px 20px; }
  .pa-about__heading { font-size: 32px; }
  .pa-tutor__summary { gap: 16px; padding: 18px 18px; align-items: flex-start; }
  .pa-tutor__photo { width: 82px; height: 100px; }
  .pa-tutor__name { font-size: 21px; }
  .pa-tutor__detail { padding: 0 18px 24px; }
  .pa-portrait__slot { height: 460px; }
  .pa-outcomes { padding: 80px 20px; }
  .pa-outcomes__head--sub { margin-top: 64px; }
  .pa-contact__inner { padding: 72px 20px; }
  .pa-form__row { grid-template-columns: 1fr; }
  .pa-form-card { padding: 28px 22px; }
  .pa-footer__inner { padding: 40px 20px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .pa-btn, .pa-nav-cta, .pa-nav-link::after { transition: none; }
}
