:root {
  --ink: #17211b;
  --ink-soft: #35423a;
  --muted: #626d66;
  --paper: #f7f6f1;
  --paper-deep: #efeee7;
  --white: #ffffff;
  --yellow: #f1c800;
  --yellow-soft: #fff3ad;
  --line: #d9dcd6;
  --line-strong: #bfc5be;
  --max-width: 1240px;
  --reading-width: 780px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 830px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 5.7vw, 6.25rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.shell {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(247, 246, 241, 0.96);
  border-bottom: 1px solid rgba(23, 33, 27, 0.1);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(178px, 18vw, 220px);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.7rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav .nav-cta {
  margin-left: 0.3rem;
  padding-inline: 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.hero {
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(5.5rem, 9vw, 9rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  column-gap: clamp(3rem, 6vw, 6.75rem);
  row-gap: 2.25rem;
  align-items: start;
}

.hero-copy {
  min-width: 0;
  align-self: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #4d5a52;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 3px;
  flex: 0 0 auto;
  background: var(--yellow);
  content: "";
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary:hover {
  background: #2a3730;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.hero-grid > .hero-assurances {
  grid-column: 1;
}

.hero-assurances li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero-assurances li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-figure {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.hero-figure::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 58%;
  height: 72%;
  background: var(--yellow-soft);
  content: "";
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 59% center;
}

.hero-figure figcaption {
  display: inline-block;
  margin: -1.8rem 1.25rem 0;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 27, 0.13);
  color: var(--ink-soft);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
  transform: translateY(-0.1rem);
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.section-heading {
  max-width: var(--reading-width);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading-wide {
  max-width: 990px;
}

.section-heading > p:not(.eyebrow) {
  max-width: var(--reading-width);
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.situations-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.situations-list li {
  display: grid;
  grid-template-columns: minmax(48px, 0.22fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.situation-number,
.step-index {
  color: #69756d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.situations-list h3 {
  margin-bottom: 0.55rem;
}

.situations-list p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
}

.recognition-quote {
  max-width: 900px;
  margin: clamp(3.5rem, 7vw, 6.5rem) 0 0 auto;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 6px solid var(--yellow);
}

.recognition-quote p {
  margin-bottom: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

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

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.approach-intro {
  position: sticky;
  top: 2rem;
  margin-bottom: 0;
}

.approach-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.approach-note {
  margin-top: 2rem;
  padding: 1.25rem 0 0 1.25rem;
  border-top: 1px solid var(--line-strong);
  border-left: 3px solid var(--yellow);
  font-weight: 700;
}

.approach-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line-strong);
}

.step-question {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.approach-steps h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.approach-steps p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.stories {
  border-top: 1px solid var(--line-strong);
}

.story {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.story-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-body {
  max-width: 820px;
}

.story-body h3 {
  margin-bottom: 1.1rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.9rem, 3.3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.story-body > p:not(.story-takeaway) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story-takeaway {
  margin: 1.75rem 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--yellow);
  font-weight: 750;
}

.principles {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2.25rem, 5vw, 4rem);
  background: var(--paper);
}

.principles h3 {
  max-width: 260px;
  margin-bottom: 0;
}

.principles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 700;
}

.principles li:first-child {
  padding-top: 0;
}

.advisor {
  background: var(--paper);
}

.advisor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.advisor-intro h2 {
  margin-bottom: 1rem;
}

.advisor-role {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.advisor-copy {
  max-width: 800px;
  padding-top: 0.4rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.advisor-copy > p {
  margin-bottom: 1.5rem;
}

.profile-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.profile-link:hover {
  text-decoration-color: var(--ink);
}

.independence {
  background: var(--yellow-soft);
}

.independence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.independence-copy {
  color: #364238;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.independence-copy > p {
  margin-bottom: 1.5rem;
}

.independence-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.independence-points li {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(23, 33, 27, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
}

.contact {
  text-align: center;
}

.contact-inner {
  max-width: 940px;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.contact > .shell > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.button-large {
  min-height: 58px;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .site-nav li:not(:last-child) {
    display: none;
  }

  .hero-grid,
  .approach-layout,
  .advisor-layout,
  .independence-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-figure,
  .hero-grid > .hero-assurances {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-figure {
    width: 100%;
  }

  .hero-figure img {
    aspect-ratio: 3 / 2;
    object-position: center center;
  }

  .approach-intro {
    position: static;
    max-width: 850px;
    margin-bottom: 1rem;
  }

  .independence-copy {
    max-width: 800px;
  }

  .advisor-copy {
    max-width: 800px;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .header-inner {
    min-height: 76px;
    gap: 1rem;
  }

  .brand img {
    width: 160px;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-grid {
    gap: 3.25rem;
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.8rem);
  }

  .contact h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.8rem);
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-assurances {
    display: grid;
    gap: 0.6rem;
  }

  .hero-figure::before {
    top: -0.7rem;
    right: -0.7rem;
  }

  .hero-figure figcaption {
    margin-right: 0.8rem;
    margin-left: 0.8rem;
  }

  .situations-list li,
  .approach-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .story,
  .principles {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 0.75rem;
  }

  .story-label {
    margin-bottom: 0;
  }

  .principles {
    gap: 2rem;
    margin-inline: -0.5rem;
    padding: 2rem 1.25rem;
  }

  .principles h3 {
    max-width: none;
  }

  .independence-points {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 145px;
  }

  .site-nav .nav-cta {
    padding-inline: 0.75rem;
  }

  .hero-figure img {
    aspect-ratio: 4 / 3;
    object-position: 54% center;
  }

  .contact .button {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #3d4941;
    --line: #aeb4ae;
  }
}
