@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #152437;
  --muted: #607080;
  --line: #d9e2ea;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #edf3f7;
  --blue: #275f89;
  --blue-dark: #173d5c;
  --aqua: #70b7c8;
  --apricot: #d69a72;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(21, 36, 55, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef5fa 0, rgba(246,248,251,0) 420px),
    var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(246, 248, 251, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 860;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .84rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 760;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--surface);
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.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(300px, 390px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  min-height: 680px;
  padding: clamp(54px, 8vw, 118px) clamp(18px, 5vw, 86px) clamp(38px, 6vw, 72px);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 860;
  cursor: pointer;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 36px rgba(39, 95, 137, .22);
}

.btn.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--blue-dark);
}

.appointment-board {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    linear-gradient(135deg, rgba(112,183,200,.18), rgba(214,154,114,.14));
  box-shadow: var(--shadow);
}

.board-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--surface-soft);
}

.board-head span,
.appointment-board dt,
.info-strip span,
.path-list span,
.timeline span {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.board-head span {
  color: var(--muted);
}

.board-head strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.appointment-board dl {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.appointment-board dl div {
  padding: 16px;
  background: #fff;
}

.appointment-board dt {
  color: var(--blue);
}

.appointment-board dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.board-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 900;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 86px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.info-strip div {
  min-height: 150px;
  padding: 24px;
  background: var(--surface);
}

.info-strip span,
.path-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--apricot);
}

.info-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.info-strip p,
.path-list p,
.process-copy p,
.timeline p,
.praxis-copy p,
.contact-copy p {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 86px);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(240px, .48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker h2 {
  margin-bottom: 0;
}

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

.path-list article {
  display: grid;
  grid-template-columns: 180px minmax(260px, .8fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.path-list h3,
.path-list p {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--surface-soft);
}

.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(21, 36, 55, .06);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  letter-spacing: 0;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.timeline p {
  margin-bottom: 0;
}

.praxis-section {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.praxis-media {
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.praxis-media img {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fact-grid div {
  padding: 20px;
  background: var(--surface);
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1;
}

.fact-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  margin: 0 clamp(18px, 5vw, 86px) 72px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}

.contact-section h2 {
  color: #fff;
}

.contact-copy p {
  color: #c5d2dd;
}

.contact-section .eyebrow {
  color: var(--aqua);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: #eef5fb;
  font-weight: 780;
}

.appointment-form label:nth-child(3),
.appointment-form label:nth-child(4),
.appointment-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(112,183,200,.22);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

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

  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 16px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .section-kicker,
  .process,
  .praxis-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .appointment-board {
    min-height: auto;
  }

  .info-strip,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .path-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
