:root {
  --ink: #121315;
  --paper: #f4f1ea;
  --white: #fff;
  --muted: #696966;
  --line: #d3d0c8;
  --blue: #2f62ff;
  --orange: #ff6038;
  --lime: #c7e92d;
  --violet: #7d57ef;
  --experience: #e9e6de;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --accent-serif: "Newsreader", Georgia, serif;
  --gutter: clamp(24px, 5vw, 76px);
  --section-y: clamp(76px, 9vw, 120px);
  --content-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  touch-action: manipulation;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex="-1"]:focus {
  outline: 3px solid var(--focus-color, var(--ink));
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  max-width: 1220px;
  font-size: clamp(3.9rem, 10.3vw, 9rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--blue);
  font-family: var(--accent-serif);
  font-weight: 400;
  font-style: italic;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

h2 {
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.eyebrow,
.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header,
.hero,
.framing,
.offers,
.approach,
.experience,
.intake,
footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.framing,
.offers,
.approach,
.experience,
.intake {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-head,
.framing-inner,
.offer-grid,
.custom-card,
.approach-intro,
.steps,
.experience-head,
.case-grid,
.advisor-bio {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: relative;
  z-index: 2;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  font: 800 1.25rem/1 var(--display);
  letter-spacing: -0.055em;
}

.brand-name {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  white-space: normal;
}

.hero {
  min-height: clamp(620px, calc(100svh - 88px), 820px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin: 40px 0 32px;
}

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

.hero-copy p {
  margin: 0;
  font-size: clamp(1.15rem, 1.75vw, 1.5rem);
  line-height: 1.45;
}

.hero-copy p + p {
  margin-top: 16px;
}

.text-link,
.choose-offer,
.button-dark,
.next,
.submit,
.back {
  font-family: var(--display);
  letter-spacing: -0.01em;
}

.text-link {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-weight: 700;
}

.framing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.framing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
}

.framing h2 {
  max-width: 650px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

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

.framing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.framing-copy p + p {
  margin-top: 20px;
}

.framing-copy p:last-child {
  color: var(--ink);
  font-weight: 600;
}

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

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.section-head .kicker,
.approach .kicker {
  color: var(--lime);
}

.section-head h2,
.approach h2,
.intake h2 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.section-head > p {
  max-width: 430px;
  color: #bababa;
  font-size: 1.1rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #393a3c;
  border-left: 1px solid #393a3c;
}

.offer-card {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border-right: 1px solid #393a3c;
  border-bottom: 1px solid #393a3c;
  transition: background 0.25s, color 0.25s;
}

.offer-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--accent);
  content: "";
  transition: height 0.35s;
}

.offer-card:focus-within {
  background: #191a1d;
}

.offer-card:focus-within::before {
  height: 100%;
}

.accent-blue { --accent: var(--blue); }
.accent-orange { --accent: var(--orange); }
.accent-lime { --accent: var(--lime); }
.accent-violet { --accent: var(--violet); }

.card-number {
  color: #a2a2a0;
  font-size: 0.8rem;
}

.card-icon {
  margin: 28px 0;
  color: var(--accent);
  font: 500 4rem/1 var(--display);
}

.card-type {
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.offer-card > p:not(.card-type) {
  max-width: 520px;
  color: #c1c1c1;
  font-size: 1.05rem;
}

.offer-card ul {
  margin: 16px 0 24px;
  padding: 0;
  color: #ddd;
  list-style: none;
}

.offer-card li {
  padding: 7px 0;
  border-bottom: 1px solid #2d2e30;
}

.offer-card li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "+";
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 18px 0;
  color: #aaa;
  font-size: 0.875rem;
  line-height: 1.35;
}

.card-meta strong {
  color: var(--white);
}

.choose-offer,
.button-dark {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 19px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease-out, filter 0.15s ease-out;
}

.choose-offer span,
.button-dark span {
  flex: 0 0 auto;
}

.choose-offer:active,
.button-dark:active {
  transform: translateY(1px);
}

.custom-card {
  --focus-color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding: 36px;
  background: var(--lime);
  color: var(--ink);
}

.custom-card h3 {
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
}

.custom-card p {
  max-width: 480px;
}

.custom-card .kicker {
  margin-top: 0;
}

.custom-card .button-dark {
  min-width: 220px;
  background: var(--ink);
  color: var(--white);
}

.approach .kicker {
  color: var(--ink);
  border-left: 4px solid var(--blue);
  padding-left: 12px;
}

.approach-intro {
  margin-bottom: 56px;
}

.approach-summary {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.steps article {
  margin-right: 32px;
  padding: 32px 32px 8px 0;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.steps span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.steps h3 {
  margin: 32px 0 16px;
  font-size: 1.55rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.experience {
  background: var(--experience);
}

.experience-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  column-gap: 70px;
}

.experience-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  color: var(--ink);
  border-left: 4px solid var(--orange);
  padding-left: 12px;
}

.experience-head h2 {
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.experience-head > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

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

.case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-top span:first-child {
  min-width: 0;
}

.case-top span:last-child {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  padding: 6px;
  background: var(--orange);
  color: var(--ink);
}

.case-card h3 {
  margin: 32px 0 20px;
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.case-context {
  margin: 0;
  color: var(--ink);
}

.case-card dl {
  margin: auto 0 0;
}

.case-card dl div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.case-card dt {
  margin-bottom: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.advisor-bio {
  --focus-color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding: 36px;
  background: var(--ink);
  color: var(--white);
}

.bio-monogram {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font: 800 1.7rem/1 var(--display);
  letter-spacing: -0.04em;
}

.advisor-bio .kicker {
  margin: 0 0 8px;
  color: var(--lime);
}

.advisor-bio h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.advisor-copy > p:not(.kicker) {
  max-width: 720px;
  margin: 0;
  color: #c4c4c4;
}

.advisor-copy > p:not(.kicker) + p {
  margin-top: 12px;
}

.intake {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  background: var(--blue);
  color: var(--white);
}

.intake-copy > p:not(.kicker) {
  max-width: 470px;
  color: var(--white);
  font-size: 1.08rem;
}

.time-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.time-note strong {
  color: var(--lime);
  font: 700 4rem/1 var(--display);
}

.time-note span {
  font-size: 0.78rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

form {
  min-width: 0;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.form-progress span {
  height: 4px;
  background: #e1e1df;
}

.form-progress span.active {
  background: var(--orange);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step legend {
  margin-bottom: 28px;
  font: 700 clamp(1.8rem, 3vw, 2.6rem)/1.08 var(--display);
  letter-spacing: -0.025em;
}

label {
  display: block;
  margin: 20px 0 8px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #c9c9c6;
  border-radius: 0;
  outline: 0;
  background: #f7f7f4;
  color: var(--ink);
}

select {
  text-overflow: ellipsis;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 98, 255, 0.12);
}

.invalid {
  border-color: #c9342e !important;
}

.next,
.submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 15px 19px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.next span,
.submit span {
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.form-actions .next,
.form-actions .submit {
  margin: 0;
}

.back {
  min-height: 44px;
  padding: 12px 15px;
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.form-success.active {
  display: block;
}

.success-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  background: var(--lime);
  font-size: 1.5rem;
  font-weight: 800;
}

.form-success h3 {
  font-size: 2.3rem;
}

.form-success > p:not(.kicker):not(.integration-note) {
  color: var(--muted);
}

.form-success .button-dark {
  margin-top: 24px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.integration-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.integration-note a {
  text-decoration: underline;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

footer p {
  color: var(--muted);
}

footer > a {
  text-decoration: underline;
}

@media (max-width: 850px) {
  :root {
    --gutter: 24px;
    --section-y: 72px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .hero > .eyebrow {
    margin-bottom: 16px;
  }

  .hero-bottom,
  .framing-inner,
  .section-head,
  .experience-head,
  .intake {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    gap: 24px;
    margin: 32px 0 24px;
  }

  .text-link {
    justify-self: start;
  }

  .section-head {
    gap: 32px;
    margin-bottom: 48px;
  }

  .offer-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .case-card {
    min-height: auto;
  }

  .custom-card {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

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

  .steps article {
    margin: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:last-child {
    padding-right: 0;
    border-bottom: 0;
  }

  .experience-head {
    gap: 28px;
  }

  .case-grid {
    margin-top: 42px;
  }

  .advisor-bio {
    grid-template-columns: auto 1fr;
  }

  .intake {
    gap: 48px;
  }

  form {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 20px;
    --section-y: 56px;
  }

  .site-header {
    min-height: 74px;
    gap: 12px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.875rem;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.45rem);
    line-height: 0.95;
  }

  h1 em {
    line-height: 0.95;
  }

  .hero-bottom {
    gap: 20px;
    margin: 28px 0 24px;
  }

  .hero-bottom p {
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .offer-card,
  .case-card {
    padding: 28px 22px;
  }

  .offer-card {
    padding-top: 18px;
  }

  .offer-card .card-icon {
    margin: 12px 0 14px;
  }

  .offer-card .card-type {
    margin: 0 0 12px;
  }

  .custom-card,
  .advisor-bio {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .custom-card .button-dark {
    min-width: 0;
  }

  .bio-monogram {
    width: 72px;
    height: 72px;
  }

  .intake {
    gap: 36px;
  }

  form {
    min-height: 0;
    padding: 26px 20px;
  }

  .form-progress {
    margin-bottom: 32px;
  }

  .split-fields {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav-cta {
    font-size: 0.875rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.2rem);
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.brand{gap:0}.brand-logo{display:block;width:clamp(210px,22vw,275px);height:auto}.brand-logo-footer{width:220px}@media(max-width:520px){.brand-logo{width:160px}.brand-logo-footer{width:205px}}

/* Approved pre-publish maintenance: preserve identity and content. */
[hidden] { display: none !important; }

.site-header, .hero, .intake, footer {
  padding-inline: max(var(--gutter), calc((100% - var(--content-max)) / 2));
}

.accent-blue .choose-offer, .accent-violet .choose-offer {
  color: var(--white);
}

.step-status { margin: 0 0 12px; font-size: 0.875rem; font-weight: 600; }
.field-error { margin: 8px 0 0; color: #a5221c; font-size: 0.875rem; }
.form-step legend, #success-title, input, select, textarea { scroll-margin-top: 24px; }
.recovery-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.recovery-actions .text-link { display: inline-flex; align-items: center; min-height: 44px; }
.intake-fallback { text-align: left; margin-top: 16px; }
.intake-fallback summary { cursor: pointer; min-height: 44px; padding-block: 10px; }
#copy-status { font-size: 0.875rem; }
#copy-status:empty { display: none; }
.form-success { width: 100%; }
.form-success h3, .form-step legend { overflow-wrap: anywhere; }
.offer-card h3, .case-card h3, .framing h2, .intake h2 { overflow-wrap: anywhere; }
.nav-cta, .next, .submit, .back, .text-link, .site-header nav > a, footer > a, summary {
  transition: background-color 0.18s ease-out, color 0.18s ease-out, transform 0.15s ease-out;
}
.nav-cta:active, .next:active, .submit:active, .back:active { transform: translateY(1px); }
.back { font-weight: 700; }

@media (hover: hover) and (pointer: fine) {
  .offer-card:hover { background: #191a1d; }
  .offer-card:hover::before { height: 100%; }
  .choose-offer:hover, .button-dark:hover { filter: brightness(0.98); }
  .nav-cta:hover, .next:hover, .submit:hover { background: #393a3c; }
  .back:hover, summary:hover { background: var(--paper); }
  .text-link:hover, .site-header nav > a:not(.nav-cta):hover, footer > a:hover { text-decoration: underline; text-underline-offset: 5px; }
}

@media (hover: none) {
  .offer-card::before { height: 100%; }
}

@media (max-width: 520px) {
  .site-header nav { flex: 1 1 150px; justify-content: flex-end; }
  .nav-cta { max-width: 100%; }
  .form-actions { flex-wrap: wrap; }
  .form-actions .next, .form-actions .submit { flex: 1 1 170px; }
}
