@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #171932;
  --ink-soft: #26294d;
  --paper: #f8f4e9;
  --paper-deep: #eee8da;
  --white: #fffdf8;
  --gold: #dca63a;
  --gold-bright: #f0c463;
  --saffron: #c86a2d;
  --saffron-dark: #934019;
  --sage: #71806d;
  --body: #333540;
  --muted: #5e606a;
  --line: rgba(23, 25, 50, 0.15);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 30px 70px rgba(20, 21, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold-bright);
  color: var(--ink);
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.nav-wrap {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.brand > span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(220, 166, 58, 0.14), transparent 24rem),
    linear-gradient(135deg, #111329 0%, var(--ink) 60%, #222546 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.hero::after {
  position: absolute;
  right: -9%;
  bottom: -42%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(220, 166, 58, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(220, 166, 58, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  right: 8%;
  bottom: -24%;
  width: 41vw;
  height: 41vw;
}

.hero-orbit-two {
  right: 16%;
  bottom: -5%;
  width: 25vw;
  height: 25vw;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 800px;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: 72px;
  padding-top: 118px;
}

.hero-copy {
  padding: 80px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--saffron-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.text-link svg,
.quiet-link svg,
.inline-contact svg,
.download-arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-gold {
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(220, 166, 58, 0.16);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts > div {
  display: grid;
  gap: 2px;
  padding: 21px 24px 0 0;
}

.hero-facts strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guru-portrait {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding-top: 30px;
}

.portrait-arch {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 0.78;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(220, 166, 58, 0.55);
  border-radius: 220px 220px 8px 8px;
  background:
    radial-gradient(circle at 50% 37%, rgba(240, 196, 99, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.portrait-arch::before,
.portrait-arch::after {
  position: absolute;
  z-index: 0;
  inset: 12px;
  border: 1px solid rgba(220, 166, 58, 0.18);
  border-radius: inherit;
  content: "";
}

.portrait-arch::after {
  inset: 24px;
}

.portrait-arch img {
  position: relative;
  z-index: 2;
  width: 83%;
  height: auto;
  filter: saturate(0.9) contrast(1.04);
  mix-blend-mode: screen;
}

.sun-mark {
  position: absolute;
  z-index: 1;
  top: 54px;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(220, 166, 58, 0.34);
  border-radius: 50%;
  transform: translateX(-50%);
}

.sun-mark::before,
.sun-mark::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(220, 166, 58, 0.24);
  border-radius: 50%;
  content: "";
}

.sun-mark::after {
  inset: 29px;
  background: rgba(220, 166, 58, 0.1);
}

.sun-mark span {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 142px;
  height: 1px;
  background: rgba(220, 166, 58, 0.18);
}

.sun-mark span:nth-child(2) {
  transform: rotate(45deg);
}

.sun-mark span:nth-child(3) {
  transform: rotate(90deg);
}

.sun-mark span:nth-child(4) {
  transform: rotate(135deg);
}

.guru-portrait figcaption {
  display: grid;
  gap: 1px;
  width: calc(100% - 46px);
  margin: -28px auto 0;
  padding: 18px 20px;
  position: relative;
  z-index: 3;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(7, 8, 18, 0.26);
  color: var(--ink);
  text-align: center;
}

.guru-portrait figcaption span {
  color: var(--saffron-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guru-portrait figcaption strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.dedication {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.dedication-grid {
  display: grid;
  min-height: 230px;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 44px;
}

.dedication-symbol {
  margin: 0;
  color: var(--gold);
  font-family: serif;
  font-size: 75px;
  line-height: 1;
  text-align: center;
}

.dedication h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.05;
}

.dedication .section-kicker {
  margin-bottom: 9px;
}

.dedication p:not(.dedication-symbol, .section-kicker) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding-block: 112px;
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.7fr);
  gap: 9vw;
  align-items: center;
}

.section-intro h2,
.focus-heading h2,
.pathway h2,
.request-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 63px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1;
}

.section-intro > p:not(.section-kicker) {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.inline-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.price-panel {
  position: relative;
  padding: 40px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.price-panel::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(220, 166, 58, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(220, 166, 58, 0.035), 0 0 0 40px rgba(220, 166, 58, 0.025);
  content: "";
}

.price-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.price-top p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-top strong {
  display: flex;
  align-items: start;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 500;
  line-height: 0.8;
}

.price-top strong span {
  margin: 4px 2px 0 0;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
}

.price-panel ul {
  display: grid;
  gap: 15px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.price-panel li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.price-panel li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1px solid rgba(220, 166, 58, 0.5);
  border-radius: 50%;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.price-note {
  margin: 29px 0 0;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.6;
}

.focus {
  background: var(--paper-deep);
}

.focus-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 80px;
}

.focus-heading > p {
  margin: 0;
  color: var(--muted);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-list article {
  position: relative;
  min-height: 390px;
  padding: 35px 35px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.focus-number {
  color: var(--saffron-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.focus-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-top: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.focus-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.focus-list h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.focus-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pathway {
  background: var(--white);
}

.pathway h2 {
  max-width: 620px;
}

.pathway-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.pathway-list li {
  position: relative;
  padding: 0 35px 0 0;
}

.pathway-list li:not(:last-child)::after {
  position: absolute;
  top: 21px;
  right: 12px;
  left: 54px;
  height: 1px;
  background: var(--line);
  content: "";
}

.pathway-list li > span {
  display: grid;
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  color: var(--saffron);
  font-family: var(--serif);
  font-size: 20px;
}

.pathway-list h3 {
  margin: 23px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.pathway-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.request {
  background:
    linear-gradient(rgba(23, 25, 50, 0.95), rgba(23, 25, 50, 0.97)),
    url("/assets/ccim-dr-dv.png") center / cover;
  color: var(--white);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.04fr);
  align-items: start;
  gap: 8vw;
}

.request-copy h2 {
  color: var(--white);
}

.request-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-stack {
  display: grid;
  gap: 2px;
  margin-top: 37px;
}

.contact-stack > a {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
  margin-inline: -12px;
  border-radius: 4px;
  transition: background 180ms ease;
}

.contact-stack > a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(220, 166, 58, 0.4);
  border-radius: 50%;
}

.contact-icon svg,
.intake-note > span:first-child svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-stack > a > span:last-child,
.intake-note > span:nth-child(2) {
  display: grid;
}

.contact-stack small,
.intake-note small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-stack strong,
.intake-note strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
}

.intake-note {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 37px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.intake-note > span:first-child {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: rgba(220, 166, 58, 0.1);
}

.appointment-form {
  padding: 42px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(5, 6, 16, 0.32);
  color: var(--body);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.form-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.field span small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 25, 50, 0.2);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 102px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(200, 106, 45, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a2a09a;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--saffron);
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

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

.button-ink:hover {
  background: var(--ink-soft);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 -5px;
  font-size: 12px;
  text-align: center;
}

.form-status.success {
  color: #356c3a;
}

.intake-download {
  display: block;
  width: fit-content;
  margin: 0.8rem auto 0;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #356c3a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.intake-download:hover {
  filter: brightness(0.92);
}

.intake-download:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.form-status.error {
  color: #a3332b;
}

footer {
  padding: 68px 0 30px;
  background: #0d0f21;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 70px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 370px;
  margin: 17px 0 0;
  font-size: 13px;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--white);
}

.footer-fineprint {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 53px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-fineprint p:first-child {
  max-width: 700px;
}

.mobile-cta {
  display: none;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
}

.error-page main {
  max-width: 620px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 60px;
}

.error-page .button {
  margin-top: 20px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: 44px;
  }

  .guru-portrait {
    max-width: 350px;
  }

  .dedication-grid {
    grid-template-columns: 80px 1fr;
    padding-block: 42px;
  }

  .dedication .quiet-link {
    grid-column: 2;
  }

  .consultation-grid {
    gap: 60px;
  }

  .focus-heading {
    gap: 45px;
  }

  .focus-list article {
    padding-inline: 25px;
  }

  .request-grid {
    grid-template-columns: 0.72fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .nav-wrap {
    min-height: 90px;
  }

  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 118px;
  }

  .hero-copy {
    width: 100%;
    padding: 48px 0 0;
  }

  .hero h1 {
    font-size: clamp(52px, 11vw, 76px);
  }

  .guru-portrait {
    width: min(100%, 420px);
    margin-bottom: 76px;
  }

  .hero::before {
    left: 24%;
  }

  .hero::after,
  .hero-orbit {
    display: none;
  }

  .dedication-grid {
    grid-template-columns: 60px 1fr;
    gap: 26px;
  }

  .dedication-symbol {
    font-size: 57px;
  }

  .section {
    padding-block: 88px;
  }

  .consultation-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    max-width: 540px;
  }

  .focus-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .focus-heading > p {
    max-width: 560px;
  }

  .focus-list {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .focus-list article {
    display: grid;
    min-height: auto;
    grid-template-columns: 84px 1fr;
    column-gap: 28px;
    padding: 30px;
  }

  .focus-number {
    position: absolute;
    top: 14px;
    right: 17px;
  }

  .focus-icon {
    grid-row: span 2;
    margin-top: 0;
  }

  .focus-list h3 {
    margin-top: 8px;
  }

  .pathway-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }

  .pathway-list li:nth-child(2)::after {
    display: none;
  }

  .request-grid {
    gap: 64px;
  }

  .request-copy {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    padding-bottom: 59px;
  }

  .site-header .brand img {
    width: 50px;
  }

  .site-header .brand strong {
    font-size: 21px;
  }

  .site-header .brand small {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero-grid {
    padding-top: 90px;
  }

  .hero-copy {
    padding-top: 43px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 9px;
  }

  .eyebrow span {
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 65px);
    line-height: 0.94;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-facts {
    margin-top: 40px;
  }

  .hero-facts > div {
    padding-right: 10px;
  }

  .hero-facts strong {
    font-size: 21px;
  }

  .hero-facts span {
    font-size: 8px;
    line-height: 1.35;
  }

  .guru-portrait {
    margin-top: 6px;
  }

  .guru-portrait figcaption strong {
    font-size: 16px;
  }

  .dedication-grid {
    display: block;
  }

  .dedication-symbol {
    margin-bottom: 20px;
    text-align: left;
  }

  .dedication h2 {
    font-size: 32px;
  }

  .dedication .quiet-link {
    margin-top: 23px;
  }

  .section {
    padding-block: 72px;
  }

  .section-intro h2,
  .focus-heading h2,
  .pathway h2,
  .request-copy h2 {
    font-size: 43px;
  }

  .section-intro > p:not(.section-kicker) {
    font-size: 16px;
  }

  .price-panel {
    padding: 31px 25px;
  }

  .price-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-top strong {
    font-size: 57px;
  }

  .focus-list article {
    display: block;
    padding: 28px 25px 33px;
  }

  .focus-icon {
    width: 68px;
    height: 68px;
  }

  .pathway-list {
    grid-template-columns: 1fr;
    row-gap: 33px;
  }

  .pathway-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 19px;
    padding: 0;
  }

  .pathway-list li:not(:last-child)::after {
    top: 42px;
    right: auto;
    bottom: -33px;
    left: 20px;
    width: 1px;
    height: auto;
    display: block;
  }

  .pathway-list h3 {
    margin-top: 2px;
  }

  .request-grid {
    gap: 48px;
  }

  .appointment-form {
    margin-inline: -5px;
    padding: 29px 23px;
  }

  .form-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

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

  .field-full {
    grid-column: auto;
  }

  footer {
    padding-top: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-fineprint {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-fineprint p {
    margin: 0;
  }

  .mobile-cta {
    display: grid;
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 59px;
    place-items: center;
    background: var(--gold);
    box-shadow: 0 -8px 25px rgba(15, 15, 32, 0.18);
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
