@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Newsreader:ital,opsz,wght@1,6..72,400;1,6..72,500&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --cream: #f7f1e7;
  --paper: #fcf9f4;
  --plum: #3d2d43;
  --deep-plum: #2d2032;
  --lilac: #cbbbd8;
  --pale-lilac: #e7deec;
  --rose: #b87868;
  --ink: #332f32;
  --muted: #726b70;
  --line: rgba(61, 45, 67, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--paper);
  background: var(--rose);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 80px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.02em;
}

.brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
}

.brand strong {
  font-size: 14px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
  font-size: 13px;
  font-weight: 500;
}

nav a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  border-color: currentColor;
}

nav .nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--plum);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 112px) 90px;
  background:
    radial-gradient(circle at 78% 34%, rgba(203, 187, 216, 0.64) 0 20%, transparent 47%),
    linear-gradient(113deg, var(--paper) 0 62%, #e2d6e8 62% 100%);
}

.hero::before {
  position: absolute;
  top: 18%;
  left: 45%;
  width: 1px;
  height: 66%;
  background: linear-gradient(transparent, var(--rose), transparent);
  content: "";
  transform: rotate(18deg);
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(62px, 7.7vw, 118px);
}

h1 em,
h2 em {
  color: var(--rose);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 36px;
  color: #5a5358;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 26px rgba(61, 45, 67, 0.2);
  transform: translateY(-2px);
}

.button.primary {
  color: var(--paper);
  background: var(--plum);
}

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.portrait-halo {
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 120, 104, 0.45);
  border-radius: 50%;
}

.portrait-halo::before,
.portrait-halo::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(61, 45, 67, 0.16);
  border-radius: inherit;
  content: "";
}

.portrait-halo::after {
  inset: 22%;
}

.portrait-frame {
  position: relative;
  width: min(30vw, 390px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 9px solid rgba(252, 249, 244, 0.75);
  border-radius: 47% 47% 46% 46% / 38% 38% 55% 55%;
  box-shadow: 0 28px 70px rgba(61, 45, 67, 0.24);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.05);
}

.portrait-note {
  position: absolute;
  right: -5%;
  bottom: 4%;
  margin: 0;
  padding: 16px 20px;
  border-left: 2px solid var(--rose);
  color: var(--plum);
  background: rgba(247, 241, 231, 0.9);
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

.portrait-note span {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-side-note {
  position: absolute;
  right: 25px;
  bottom: 45px;
  margin: 0;
  color: rgba(61, 45, 67, 0.58);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.belief-band {
  padding: 38px clamp(24px, 7vw, 112px);
  color: var(--cream);
  background: var(--plum);
  text-align: center;
}

.belief-band p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.belief-band span {
  color: var(--lilac);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}

.section {
  padding: 120px clamp(24px, 7vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.7vw, 82px);
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

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

.focus-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.focus-card:hover {
  color: var(--cream);
  background: var(--plum);
}

.card-number {
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.card-mark {
  margin: 48px 0 42px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 31px;
}

.focus-card h3 {
  max-width: 220px;
  margin-bottom: 18px;
  color: inherit;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

.focus-card:hover p {
  color: rgba(247, 241, 231, 0.72);
}

.expertise {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(60px, 9vw, 150px);
  color: var(--cream);
  background: var(--deep-plum);
}

.eyebrow.light {
  color: var(--lilac);
}

.expertise h2 {
  margin-bottom: 38px;
  color: var(--cream);
  font-size: clamp(46px, 5.5vw, 78px);
}

.expertise-intro > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(247, 241, 231, 0.7);
  font-size: 16px;
  line-height: 1.85;
}

blockquote {
  max-width: 580px;
  margin: 58px 0 0;
  padding: 28px 0 0 28px;
  border-top: 1px solid rgba(203, 187, 216, 0.35);
  border-left: 1px solid var(--rose);
  color: var(--lilac);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(23px, 2.3vw, 34px);
  font-style: italic;
  line-height: 1.35;
}

.list-label {
  margin-bottom: 22px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.expertise-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(247, 241, 231, 0.14);
}

.expertise-row > span {
  color: rgba(203, 187, 216, 0.62);
  font-size: 10px;
}

.expertise-row strong {
  font-size: 15px;
  font-weight: 500;
}

.journey {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(61, 45, 67, 0.07) 50%, transparent 50.05%),
    var(--cream);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 38px;
}

.timeline::before {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  padding-right: clamp(22px, 3vw, 48px);
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose);
  background: var(--cream);
  font-size: 10px;
}

.timeline-years {
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.timeline h3 {
  min-height: 64px;
  margin-bottom: 20px;
  color: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

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

.next-chapter {
  display: grid;
  grid-template-columns: 0.3fr 0.8fr 1fr;
  gap: 50px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #e5d9e8;
}

.chapter-number {
  color: rgba(61, 45, 67, 0.14);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(100px, 13vw, 190px);
  line-height: 1;
}

.next-chapter h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
}

.next-chapter > p {
  margin: 0;
  color: #5e5361;
  font-size: 16px;
  line-height: 1.9;
}

.connect {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 50%, rgba(184, 120, 104, 0.3), transparent 34%),
    var(--plum);
}

.connect::after {
  position: absolute;
  top: -18%;
  right: -6%;
  width: min(55vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(203, 187, 216, 0.23);
  border-radius: 50%;
  content: "";
}

.connect-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.connect h2 {
  margin-bottom: 34px;
  color: var(--cream);
  font-size: clamp(58px, 7vw, 104px);
}

.connect-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(247, 241, 231, 0.7);
  font-size: 16px;
}

.button.cream {
  color: var(--plum);
  background: var(--cream);
}

.connect-orbit {
  position: absolute;
  z-index: 1;
  top: 11%;
  right: 2%;
  display: grid;
  width: min(43vw, 560px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(203, 187, 216, 0.28);
  border-radius: 50%;
}

.connect-orbit::before,
.connect-orbit::after {
  position: absolute;
  border: 1px solid rgba(184, 120, 104, 0.3);
  border-radius: 50%;
  content: "";
}

.connect-orbit::before {
  inset: 14%;
}

.connect-orbit::after {
  inset: 30%;
  background: rgba(203, 187, 216, 0.08);
}

.connect-orbit span {
  color: var(--lilac);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.08em;
  transform: rotate(-18deg);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(24px, 5vw, 80px);
  color: rgba(247, 241, 231, 0.72);
  background: var(--deep-plum);
  font-size: 11px;
}

.footer-brand > span {
  color: var(--plum);
  background: var(--lilac);
}

footer p {
  margin: 0;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

footer > a:last-child {
  justify-self: end;
  border-bottom: 1px solid rgba(247, 241, 231, 0.28);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    padding-inline: 50px;
  }

  .portrait-frame {
    width: 320px;
  }

  .portrait-note {
    right: -12%;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .next-chapter {
    grid-template-columns: 0.3fr 1fr;
  }

  .next-chapter > p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    padding: 22px 20px;
    background: var(--paper);
  }

  .brand strong {
    font-size: 12px;
  }

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

  nav .nav-cta {
    padding: 8px 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 72px 22px 80px;
    background:
      radial-gradient(circle at 50% 80%, rgba(203, 187, 216, 0.6), transparent 42%),
      var(--paper);
  }

  .hero::before,
  .hero-side-note {
    display: none;
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .portrait-frame {
    width: min(76vw, 360px);
  }

  .portrait-halo {
    width: 90vw;
  }

  .portrait-note {
    right: 0;
    bottom: -5%;
  }

  .belief-band {
    padding: 32px 22px;
  }

  .section {
    padding: 88px 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

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

  .focus-card {
    min-height: 330px;
  }

  .expertise {
    gap: 72px;
  }

  .expertise h2 {
    font-size: 48px;
  }

  .timeline {
    display: block;
    padding: 0;
  }

  .timeline::before {
    top: 0;
    left: 19px;
    width: 1px;
    height: 100%;
  }

  .timeline-item {
    min-height: 210px;
    padding: 0 0 30px 68px;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
  }

  .timeline h3 {
    min-height: 0;
  }

  .next-chapter {
    display: block;
  }

  .chapter-number {
    margin-bottom: 18px;
    font-size: 96px;
  }

  .next-chapter h2 {
    margin-bottom: 32px;
    font-size: 50px;
  }

  .connect {
    min-height: 650px;
  }

  .connect h2 {
    font-size: 58px;
  }

  .connect-orbit {
    right: -34%;
    bottom: -10%;
    top: auto;
    width: 108vw;
    opacity: 0.55;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer p {
    text-align: left;
  }

  footer > a:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
