:root {
  --ink: #071415;
  --ink-soft: #102324;
  --paper: #f3efe6;
  --paper-deep: #e8e1d4;
  --white: #ffffff;
  --wine: #a1113c;
  --wine-dark: #76102f;
  --gold: #c3a56c;
  --muted: #52605c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
main { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.section { padding-block: 128px; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.72) contrast(1.06);
  transform: scale(1.01);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,17,18,.98) 0%, rgba(4,17,18,.9) 36%, rgba(4,17,18,.35) 69%, rgba(4,17,18,.28) 100%),
    linear-gradient(0deg, rgba(4,17,18,.87) 0%, transparent 42%);
}
.site-header {
  position: relative;
  z-index: 2;
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand {
  display: flex;
  align-items: center;
  width: 200px;
  height: 110px;
  overflow: visible;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
nav { display: flex; align-items: center; gap: 31px; font-size: 14px; }
nav a { color: rgba(255,255,255,.82); transition: color .2s ease, border-color .2s ease; }
nav a:hover, nav a:focus-visible { color: white; }
.nav-contact { border: 1px solid rgba(255,255,255,.48); padding: 13px 18px; }
.nav-contact:hover { border-color: white; }

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(82px, 14vh, 145px);
}
.eyebrow, .section-kicker {
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero__lede {
  max-width: 630px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 37px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { background: white; color: var(--ink); }
.button--dark { background: var(--ink); color: white; }
.text-link { color: white; font-size: 14px; }
.text-link span, .button span { color: var(--gold); margin-left: 5px; }
.hero__foot {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 38px;
  color: rgba(255,255,255,.63);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__foot span + span::before { content: "•"; color: var(--wine); margin-right: 38px; }

.story { display: grid; grid-template-columns: 1fr .78fr; gap: 11vw; }
.story h2, .section-heading h2, .approach h2, .succession h2, .patient h2, .conversation h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.04;
}
.story h2 { font-size: clamp(48px, 6vw, 80px); }
.story .section-kicker, .fit .section-kicker { color: var(--wine); }
.story__body { padding-top: 36px; }
.lead { font-family: Georgia, "Times New Roman", serif; font-size: 25px; line-height: 1.46; color: var(--ink); }
.story__body > p:not(.lead) { color: var(--muted); font-size: 17px; line-height: 1.75; }
.story__marker { margin-top: 44px; padding-top: 23px; border-top: 1px solid #b9b5aa; display: flex; align-items: baseline; gap: 25px; }
.story__marker strong { color: var(--wine); font: 400 38px Georgia, serif; }
.story__marker span { color: var(--muted); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

.thesis { background: var(--wine); color: white; padding-block: 110px; }
.thesis__inner { display: grid; grid-template-columns: .45fr 1.15fr .6fr; gap: 7vw; align-items: end; }
.thesis blockquote { margin: 0; font: 400 clamp(40px, 5vw, 70px)/1.08 Georgia, serif; letter-spacing: -.035em; }
.thesis > div > p:last-child { margin: 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.7; }

.approach { background: var(--ink); color: white; }
.approach__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.approach__image-wrap { position: sticky; top: 35px; }
.approach__image-wrap img { width: 100%; height: 680px; object-fit: cover; filter: saturate(.7); }
.approach__image-wrap > p { margin: 20px 0 0; max-width: 390px; color: rgba(255,255,255,.55); font: italic 18px/1.5 Georgia, serif; }
.approach h2 { max-width: 680px; font-size: clamp(48px, 5.6vw, 74px); }
.approach .lead { margin: 30px 0 56px; color: rgba(255,255,255,.78); }
.principle { display: grid; grid-template-columns: 50px 1fr; gap: 23px; padding: 29px 0; border-top: 1px solid rgba(255,255,255,.16); }
.principle:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.principle > span { color: var(--wine); font-size: 12px; letter-spacing: .1em; }
.principle h3 { margin: 0 0 10px; font: 400 26px Georgia, serif; }
.principle p { margin: 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.65; }

.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 10vw; align-items: end; }
.section-heading h2 { font-size: clamp(48px, 6vw, 76px); }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.fit__grid { margin-top: 78px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #aaa69d; border-bottom: 1px solid #aaa69d; }
.fit-card { padding: 34px 30px 40px; min-height: 295px; }
.fit-card + .fit-card { border-left: 1px solid #aaa69d; }
.fit-card > span { color: var(--wine); font-size: 11px; letter-spacing: .16em; }
.fit-card h3 { margin: 58px 0 15px; font: 400 25px/1.15 Georgia, serif; }
.fit-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
.fit__note { margin: 30px 0 0 auto; max-width: 560px; color: var(--wine); font: italic 19px/1.55 Georgia, serif; }

.succession { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-deep); }
.succession__image { min-height: 760px; }
.succession__image img { width: 100%; height: 100%; object-fit: cover; }
.succession__content { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(48px, 7vw, 120px); }
.succession__content .section-kicker { color: var(--wine); }
.succession h2 { font-size: clamp(45px, 5.2vw, 72px); }
.succession__content > p:not(.section-kicker) { color: var(--muted); font-size: 17px; line-height: 1.72; }
.succession blockquote { margin: 42px 0 0; padding: 30px 0 0 26px; border-top: 1px solid #aaa69d; border-left: 3px solid var(--wine); color: var(--ink); font: italic 22px/1.5 Georgia, serif; }

.patient { background: #fbfaf6; }
.patient__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; align-items: center; }
.patient .section-kicker { color: var(--wine); }
.patient h2 { font-size: clamp(48px, 5vw, 70px); }
.patient .lead { margin: 30px 0 16px; }
.patient__content > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.75; }
.patient img { width: 100%; height: 620px; object-fit: cover; }

.conversation { background: var(--wine); color: white; }
.conversation__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; }
.conversation h2 { max-width: 760px; font-size: clamp(48px, 6vw, 79px); }
.conversation__aside { padding-top: 38px; }
.conversation__aside > p { color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.7; }
.conversation ul { list-style: none; margin: 32px 0 41px; padding: 0; border-top: 1px solid rgba(255,255,255,.25); }
.conversation li { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.83); font-size: 14px; }

footer { background: var(--ink); color: white; padding-block: 58px 32px; }
.footer__inner { display: grid; grid-template-columns: 250px 1fr auto; gap: 45px; align-items: center; }
.brand--footer { width: 210px; height: 122px; }
.footer__inner > p { margin: 0; max-width: 400px; color: rgba(255,255,255,.55); font: italic 17px/1.5 Georgia, serif; }
.footer__links { display: flex; gap: 27px; color: rgba(255,255,255,.68); font-size: 13px; }
footer small { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.36); font-size: 11px; letter-spacing: .07em; }

@media (max-width: 980px) {
  .story, .thesis__inner, .approach__grid, .section-heading, .patient__grid, .conversation__grid { grid-template-columns: 1fr; }
  .story, .approach__grid, .patient__grid, .conversation__grid { gap: 60px; }
  .thesis__inner { gap: 30px; }
  .thesis__inner .section-kicker { margin-bottom: 0; }
  .approach__image-wrap { position: static; }
  .approach__image-wrap img { height: min(75vw, 620px); }
  .fit__grid { grid-template-columns: 1fr 1fr; }
  .fit-card:nth-child(3) { border-left: 0; border-top: 1px solid #aaa69d; }
  .fit-card:nth-child(4) { border-top: 1px solid #aaa69d; }
  .succession { grid-template-columns: 1fr; }
  .succession__image { min-height: 560px; max-height: 720px; }
  .patient img { order: -1; height: min(75vw, 620px); }
  .footer__inner { grid-template-columns: 250px 1fr; }
  .footer__links { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 36px, 1280px); }
  .section { padding-block: 84px; }
  .site-header { min-height: 92px; }
  .brand { width: 145px; height: 84px; }
  nav a:not(.nav-contact) { display: none; }
  .nav-contact {
    min-height: 44px;
    padding: 11px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
  }
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding-bottom: 22px;
  }
  .hero__content { flex: 0 0 auto; padding-top: 80px; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .hero__foot {
    position: relative;
    left: auto;
    bottom: auto;
    flex: 0 0 auto;
    width: calc(100% - 36px);
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    transform: none;
    gap: 11px;
    font-size: 8px;
    letter-spacing: .07em;
  }
  .hero__foot span + span::before { margin-right: 11px; }
  .story__body { padding-top: 0; }
  .story__marker { align-items: flex-start; flex-direction: column; gap: 8px; }
  .thesis { padding-block: 82px; }
  .fit__grid { grid-template-columns: 1fr; margin-top: 55px; }
  .fit-card { min-height: 0; }
  .fit-card + .fit-card { border-left: 0; border-top: 1px solid #aaa69d; }
  .fit-card h3 { margin-top: 28px; }
  .succession__image { min-height: 460px; }
  .succession__content { padding: 80px 24px; }
  .patient img { height: 460px; }
  .footer__inner { display: block; }
  .brand--footer { width: 190px; height: 110px; margin-bottom: 25px; }
  .footer__inner > p { margin-bottom: 30px; }
  .footer__links { margin-bottom: 30px; }
  .footer__links a { min-height: 44px; display: inline-flex; align-items: center; }
  footer small { display: block; }
}

@media (max-width: 480px) {
  .section { padding-block: 72px; }
  .hero__content { padding-top: 64px; }
  .hero h1 { font-size: clamp(42px, 13vw, 54px); line-height: 1.02; }
  .hero__lede { margin-top: 24px; }
  .hero__actions { margin-top: 28px; }
  .hero__foot { display: grid; grid-template-columns: 1fr; gap: 8px; font-size: 9px; }
  .hero__foot span + span::before { content: none; }
}

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