:root {
  --forest: #2a3328;
  --forest-dark: #182117;
  --sage: #6b8c74;
  --soft-green: #dde8df;
  --ivory: #fdfbf7;
  --paper: #f6f3ec;
  --plum: #765f69;
  --text-soft: #506052;
  --line: rgba(42, 51, 40, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --page: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--forest);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--soft-green);
  color: var(--forest-dark);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest-dark);
  color: var(--ivory);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 5px;
}

.site-header {
  width: min(100%, var(--page));
  margin: 0 auto;
  padding: 24px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: clamp(220px, 24vw, 300px);
}

.brand img,
footer img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding: 5px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.header-link:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.hero {
  width: min(100%, var(--page));
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: 48px 44px 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--sage);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 6.35rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 610px;
  margin: 36px 0 35px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.76;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--ivory);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.button span {
  font-size: 1.1rem;
  line-height: 1;
}

.button:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-2px);
}

.consultation-note {
  margin: 17px 0 0 5px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.portrait-block {
  position: relative;
  margin: 0;
}

.portrait-block::before {
  content: "";
  position: absolute;
  inset: -28px -24px 52px 34px;
  z-index: -1;
  border-radius: 50%;
  background: var(--soft-green);
  transform: rotate(4deg);
}

.portrait-shape {
  aspect-ratio: 5 / 6.6;
  overflow: hidden;
  border-radius: 48% 48% 8px 48% / 34% 34% 8px 66%;
  background: var(--sage);
  box-shadow: 0 28px 70px rgba(42, 51, 40, 0.13);
}

.portrait-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.portrait-block figcaption {
  margin: 24px 0 0 16%;
  padding-left: 18px;
  border-left: 2px solid var(--sage);
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.portrait-block figcaption strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.portrait-block figcaption span {
  color: var(--text-soft);
  font-size: 0.74rem;
}

.hero-copy > *,
.portrait-block {
  opacity: 0;
  animation: rise 750ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > :nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > :nth-child(4),
.hero-copy > :nth-child(5) {
  animation-delay: 240ms;
}

.portrait-block {
  animation-delay: 170ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.practice-strip {
  width: min(calc(100% - 88px), calc(var(--page) - 88px));
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.practice-strip > div {
  min-width: 0;
  padding: 0 clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.practice-strip > div:first-child {
  padding-left: 0;
}

.practice-strip > div:last-child {
  padding-right: 0;
}

.practice-strip > div + div {
  border-left: 1px solid var(--line);
}

.strip-label {
  color: var(--plum);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.practice-strip strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.3;
}

.approach {
  margin-top: 150px;
  padding: clamp(90px, 11vw, 150px) max(44px, calc((100vw - 1152px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(64px, 10vw, 138px);
  background: var(--soft-green);
}

.approach h2,
.support h2,
.closing h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.approach h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
}

.approach-copy {
  align-self: end;
  max-width: 570px;
  color: #455449;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.85;
}

.approach-copy p {
  margin: 0;
}

.approach-copy p + p {
  margin-top: 24px;
}

.support {
  width: min(100%, 1152px);
  margin: 0 auto;
  padding: clamp(100px, 13vw, 174px) 44px;
}

.support h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.support-list {
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  list-style: none;
}

.support-list li {
  position: relative;
  min-height: 92px;
  padding: 28px 42px 28px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.support-list li::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.closing {
  padding: clamp(90px, 12vw, 148px) 44px;
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
}

.closing .eyebrow {
  color: #a8c9ae;
}

.closing h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.closing > p:not(.eyebrow) {
  max-width: 610px;
  margin: 30px auto 34px;
  color: rgba(253, 251, 247, 0.72);
  font-size: 1.05rem;
}

.button-light {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--forest);
}

.button-light:hover {
  border-color: var(--soft-green);
  background: var(--soft-green);
}

footer {
  width: min(100%, var(--page));
  margin: 0 auto;
  padding: 58px 44px 42px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: end;
  gap: 34px;
}

footer img {
  grid-row: 1 / span 3;
  width: 240px;
}

footer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.74rem;
}

footer .copyright {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: end;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    gap: 54px;
  }

  h1 {
    font-size: clamp(3.45rem, 7vw, 5.2rem);
  }

  footer {
    grid-template-columns: 220px 1fr;
  }

  footer .copyright {
    grid-column: 2;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px 24px;
  }

  .brand {
    width: 200px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link::before {
    content: "Profile";
    font-size: 0.67rem;
  }

  .header-link span {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 76px 24px 96px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  h1 {
    font-size: clamp(3.4rem, 15.5vw, 5rem);
  }

  .hero-intro {
    margin-top: 30px;
  }

  .portrait-block {
    width: min(92%, 480px);
    margin-inline: auto;
  }

  .portrait-block::before {
    inset: -24px -12px 52px 22px;
    transform: none;
  }

  .practice-strip {
    width: calc(100% - 48px);
    padding: 8px 0;
    grid-template-columns: 1fr;
  }

  .practice-strip > div,
  .practice-strip > div:first-child,
  .practice-strip > div:last-child {
    padding: 24px 0;
  }

  .practice-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .approach {
    margin-top: 100px;
    padding: 92px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support {
    padding: 100px 24px 112px;
  }

  .support-list {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 96px 24px;
  }

  footer {
    padding: 48px 24px 38px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer img {
    grid-row: auto;
    width: 210px;
    margin-bottom: 22px;
  }

  footer .copyright {
    grid-column: 1;
    margin-top: 22px;
  }
}

@media (max-width: 440px) {
  .button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .consultation-note {
    margin-inline: 0;
    text-align: center;
  }

  .portrait-block figcaption {
    margin-left: 8%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
