:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0066cc;
  --blue-hover: #0077ed;
  --paper: #ffffff;
  --soft: #f5f5f7;
  --line: #d2d2d7;
  --dark: #151516;
  --radius: 24px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 8px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-grid;
  justify-self: start;
  color: var(--ink);
  line-height: 1.05;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.76rem;
}

nav a,
.header-action {
  text-decoration: none;
}

nav a:hover,
.header-action:hover,
.text-link:hover {
  color: var(--blue);
}

.header-action {
  justify-self: end;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.76rem;
}

.header-action:hover {
  color: #fff;
  background: var(--blue-hover);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  max-width: var(--content);
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 24px 72px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  line-height: 0.93;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 0.98;
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-hover);
}

.button.quiet {
  border-color: var(--blue);
  color: var(--blue);
}

.button.quiet:hover {
  color: #fff;
  background: var(--blue);
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.portrait {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(0.98);
}

.portrait figcaption {
  display: grid;
  gap: 3px;
  padding: 17px 19px 19px;
}

.portrait strong {
  font-size: 0.95rem;
}

.portrait span {
  color: var(--muted);
  font-size: 0.76rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content);
  margin: 0 auto 12px;
  padding: 0 24px;
}

.quick-facts div {
  display: grid;
  gap: 5px;
  padding: 18px 24px;
  border-left: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 1px solid var(--line);
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.76rem;
}

.quick-facts strong {
  font-size: 0.93rem;
}

.section {
  max-width: calc(var(--content) + 48px);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 110px) 24px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.intro h2 {
  max-width: 9ch;
}

.intro-copy {
  max-width: 610px;
  padding-top: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 24px;
  max-width: var(--content);
  padding: 24px;
}

.feature-copy,
.feature-card,
.fee-copy,
.fee-card {
  border-radius: var(--radius);
  background: var(--soft);
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 24px;
  max-width: var(--content);
  padding-top: 24px;
  padding-bottom: 24px;
}

.bio-copy,
.bio-card {
  border-radius: var(--radius);
}

.bio-copy {
  padding: clamp(36px, 6vw, 76px);
  background: var(--soft);
}

.bio-copy h2 {
  max-width: 10ch;
}

.bio-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.bio-card {
  padding: clamp(30px, 4vw, 48px);
  color: #fff;
  background: var(--dark);
}

.bio-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-card li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid #3a3a3c;
}

.bio-card strong {
  font-size: 0.98rem;
}

.bio-card li span {
  color: #a1a1a6;
  font-size: 0.8rem;
}

.feature-copy {
  padding: clamp(34px, 6vw, 76px);
}

.feature-copy h2 {
  max-width: 11ch;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  text-decoration: none;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 48px);
  color: #fff;
  background: var(--dark);
}

.card-label {
  margin: 0 0 80px;
  color: #a1a1a6;
  font-size: 0.82rem;
}

.feature-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  padding: 14px 0;
  border-top: 1px solid #3a3a3c;
  font-size: 1.06rem;
}

.approach {
  max-width: var(--content);
}

.centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.centered p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.process-grid article {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft);
}

.process-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 650;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.fee-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 14px;
  max-width: var(--content);
  padding: 24px 24px clamp(76px, 10vw, 130px);
}

.fee-copy {
  padding: clamp(36px, 6vw, 76px);
  color: #fff;
  background: var(--blue);
}

.fee-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.fee-copy h2 {
  max-width: 10ch;
}

.fee-copy > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.fee-card {
  display: grid;
  align-content: center;
  padding: 38px;
}

.fee-card > span {
  color: var(--muted);
  font-size: 0.83rem;
}

.fee-card > strong {
  margin-top: 4px;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.fee-card > small {
  margin-top: 7px;
  color: var(--muted);
}

.fee-card hr {
  width: 100%;
  margin: 30px 0 18px;
  border: 0;
  border-top: 1px solid var(--line);
}

.fee-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 100px);
  max-width: var(--content);
  padding-top: 40px;
  padding-bottom: clamp(76px, 10vw, 130px);
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 42px 24px 0;
  color: var(--muted);
}

.faq-list details a {
  color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(68px, 9vw, 112px) max(24px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background: var(--dark);
}

.contact h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.contact > div:first-child > p:last-child {
  max-width: 600px;
  margin: 20px 0 0;
  color: #a1a1a6;
  font-size: 1.15rem;
}

.contact .eyebrow {
  color: #2997ff;
}

.contact-actions {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.button.light {
  color: var(--ink);
  background: #fff;
}

.button.light:hover {
  background: #e8e8ed;
}

.contact-link {
  color: #2997ff;
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-locations {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 56px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #3a3a3c;
}

.contact-locations p {
  margin: 0;
  color: #86868b;
  font-size: 0.75rem;
}

.contact-locations strong {
  color: #a1a1a6;
  font-weight: 600;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 20px max(24px, calc((100vw - var(--content)) / 2));
  color: #6e6e73;
  background: #f5f5f7;
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

@media (max-width: 850px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .intro,
  .bio-section,
  .feature-section,
  .fee-section,
  .faq-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait {
    width: min(100%, 430px);
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .quick-facts div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .quick-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intro-copy {
    padding-top: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid span,
  .card-label {
    margin-bottom: 36px;
  }

  .contact {
    align-items: start;
  }

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 50px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    gap: 40px;
    padding: 54px 18px 46px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .actions {
    display: grid;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .quick-facts div,
  .quick-facts div:nth-child(2),
  .quick-facts div:nth-child(3),
  .quick-facts div:nth-child(4),
  .quick-facts div:last-child {
    border: 0;
    border-top: 1px solid var(--line);
  }

  .quick-facts div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .bio-section,
  .feature-section,
  .fee-section,
  .faq-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .bio-copy,
  .bio-card,
  .feature-copy,
  .feature-card,
  .fee-copy,
  .fee-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
