:root {
  --deep: #12362f;
  --deep-2: #0a2823;
  --forest: #28574c;
  --mint: #dcebe4;
  --mint-2: #a8d8ca;
  --coral: #d78676;
  --coral-dark: #b96658;
  --sand: #e8ded0;
  --ivory: #f5f1e9;
  --paper: #fdfbf6;
  --ink: #19332e;
  --muted: #60706b;
  --line: rgba(18, 54, 47, 0.16);
  --line-light: rgba(245, 241, 233, 0.22);
  --display: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 5.6rem;
  --scroll-progress: 0;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  background: var(--paper);
  border: 2px solid var(--deep);
  color: var(--deep);
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  background: rgba(18, 54, 47, 0.08);
  height: 2px;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 80;
}

.scroll-progress span {
  background: linear-gradient(90deg, var(--coral-dark), var(--mint-2));
  display: block;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  transition: transform 80ms linear;
  width: 100%;
  will-change: transform;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  left: 0;
  padding: 0 clamp(1rem, 3.8vw, 4.5rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
  z-index: 50;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(245, 241, 233, 0.94);
  box-shadow: 0 1px 0 var(--line);
  height: 4.7rem;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.72rem;
  justify-self: start;
  line-height: 1;
  min-width: 0;
}

.brand img {
  background: var(--deep);
  border: 1px solid rgba(215, 134, 118, 0.42);
  border-radius: 50%;
  box-shadow: 0 0.45rem 1.35rem rgba(10, 40, 35, 0.15);
  flex: 0 0 auto;
  height: 3rem;
  object-fit: contain;
  padding: 0.2rem;
  width: 3rem;
}

.brand span {
  font-family: var(--display);
  font-size: 1rem;
  min-width: 0;
}

.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.43rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-top: 0.42rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.desktop-nav a {
  font-size: 0.72rem;
  position: relative;
}

.desktop-nav a::after {
  background: var(--coral-dark);
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  background: var(--deep);
  border: 1px solid var(--deep);
  border-radius: 99rem;
  color: var(--ivory);
  display: flex;
  font-size: 0.72rem;
  gap: 1.1rem;
  justify-self: end;
  padding: 0.82rem 1rem 0.82rem 1.2rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.header-cta:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 49rem;
  overflow: clip;
  padding: var(--header-height) clamp(1rem, 5.5vw, 6.5rem) 9.5rem;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(245, 241, 233, 0.98) 0%, rgba(245, 241, 233, 0.88) 31%, rgba(245, 241, 233, 0.2) 57%, rgba(245, 241, 233, 0) 78%),
    linear-gradient(0deg, rgba(18, 54, 47, 0.14), transparent 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-media {
  animation: hero-frame-in 1.35s var(--ease) both;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-media img {
  animation: hero-image-in 1.7s var(--ease) both;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 70% center;
  width: 100%;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50rem;
  min-height: calc(100svh - var(--header-height) - 9.5rem);
  padding: clamp(3rem, 9vh, 7rem) 0 3rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.64rem;
  font-weight: 600;
  gap: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  height: 0.42rem;
  width: 0.42rem;
}

.eyebrow.light {
  color: rgba(245, 241, 233, 0.72);
}

.eyebrow.light::before {
  background: var(--mint-2);
}

.hero h1,
.manifesto h2,
.professional h2,
.club h2,
.trajectory h2,
.clinic-note h2,
.closing h2,
blockquote {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4.3rem, min(7vw, 11vh), 7.8rem);
  line-height: 0.89;
  margin: clamp(2rem, 4vh, 3.4rem) 0 2rem;
  max-width: 10.5ch;
}

.hero h1 em,
.manifesto h2 em,
.professional h2 em,
.club h2 em,
.trajectory h2 em {
  color: var(--coral-dark);
  display: block;
  font-style: normal;
}

.hero-intro,
.section-lead {
  font-size: clamp(0.96rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  margin: 0;
  max-width: 40rem;
}

.hero-intro {
  max-width: 39rem;
}

.hero-actions,
.closing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 99rem;
  display: inline-flex;
  font-size: 0.77rem;
  gap: clamp(1.5rem, 3vw, 3.8rem);
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem 0.75rem 1.25rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.button span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  height: 1.9rem;
  justify-content: center;
  transition: transform 0.25s var(--ease);
  width: 1.9rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: rotate(45deg);
}

.button:active,
.header-cta:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 120ms;
}

.button-primary,
.button-deep {
  background: var(--deep);
  color: var(--ivory);
}

.button-primary:hover,
.button-deep:hover {
  background: var(--coral-dark);
}

.button-coral {
  background: var(--coral);
  color: var(--deep-2);
}

.button-coral:hover {
  background: var(--mint-2);
}

.button-outline {
  border-color: rgba(245, 241, 233, 0.48);
  color: var(--ivory);
}

.button-outline:hover {
  background: var(--ivory);
  color: var(--deep);
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  padding-bottom: 0.3rem;
  transition: color 0.25s ease;
}

.text-link:hover {
  color: var(--coral-dark);
}

.hero-signature {
  background: rgba(245, 241, 233, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  bottom: 11rem;
  display: flex;
  flex-direction: column;
  height: 9.5rem;
  justify-content: center;
  padding: 1.2rem;
  position: absolute;
  right: clamp(2rem, 6vw, 7rem);
  text-align: center;
  transform: rotate(4deg);
  width: 9.5rem;
  z-index: 2;
  backdrop-filter: blur(12px);
}

.hero-signature span {
  font-size: 0.52rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-signature strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0.45rem;
}

.hero-credentials {
  align-items: stretch;
  background: rgba(18, 54, 47, 0.94);
  bottom: 0;
  color: var(--ivory);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: 0;
  padding: 0 clamp(1rem, 5.5vw, 6.5rem);
  position: absolute;
  right: 0;
  z-index: 3;
  backdrop-filter: blur(14px);
}

.hero-credentials p {
  align-items: center;
  animation: credential-in 0.85s var(--ease) both;
  border-left: 1px solid var(--line-light);
  display: flex;
  gap: 1rem;
  margin: 0;
  min-height: 7.5rem;
  padding: 1.2rem clamp(1rem, 2vw, 2rem);
}

.hero-credentials p:nth-child(1) { animation-delay: 0.48s; }
.hero-credentials p:nth-child(2) { animation-delay: 0.56s; }
.hero-credentials p:nth-child(3) { animation-delay: 0.64s; }
.hero-credentials p:nth-child(4) { animation-delay: 0.72s; }

.hero-credentials p:last-child {
  border-right: 1px solid var(--line-light);
}

.hero-credentials strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  font-weight: 400;
}

.hero-credentials span {
  color: rgba(245, 241, 233, 0.64);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-pad {
  padding-left: clamp(1.2rem, 6.5vw, 7.5rem);
  padding-right: clamp(1.2rem, 6.5vw, 7.5rem);
}

.manifesto {
  display: grid;
  gap: clamp(2rem, 7vw, 8rem);
  grid-template-columns: 7rem minmax(0, 1fr);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  padding-top: clamp(7rem, 11vw, 11rem);
}

.section-index {
  color: var(--coral-dark);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding-top: 0.45rem;
  text-transform: uppercase;
}

.manifesto-copy {
  min-width: 0;
}

.manifesto h2,
.professional h2,
.club h2,
.trajectory h2,
.clinic-note h2 {
  font-size: clamp(3.5rem, 6.7vw, 7.4rem);
  line-height: 0.93;
}

.manifesto h2 {
  margin: 1.7rem 0 4rem;
  max-width: 12ch;
}

.manifesto-text {
  display: grid;
  gap: clamp(1.5rem, 4vw, 5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 59rem;
}

.manifesto-text p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.professional {
  background: var(--deep-2);
  color: var(--ivory);
  overflow: clip;
  padding-bottom: clamp(6rem, 9vw, 9rem);
  padding-top: clamp(7rem, 10vw, 10rem);
  position: relative;
}

.professional::before {
  border: 1px solid rgba(168, 216, 202, 0.11);
  border-radius: 50%;
  content: "";
  height: 48rem;
  position: absolute;
  right: -16rem;
  top: -23rem;
  width: 48rem;
}

.professional-heading {
  display: grid;
  gap: 2rem clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  position: relative;
  z-index: 1;
}

.professional-heading .eyebrow {
  grid-column: 1 / -1;
}

.professional h2 {
  max-width: 11ch;
}

.professional h2 em {
  color: var(--mint-2);
}

.professional .section-lead {
  align-self: end;
  color: rgba(245, 241, 233, 0.66);
  padding-bottom: 0.6rem;
}

.professional-flow {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 7rem);
  position: relative;
  z-index: 1;
}

.professional-flow article {
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 2rem clamp(1.5rem, 3vw, 3.6rem) 2.5rem;
  transition: background-color 0.45s var(--ease);
}

.professional-flow article:first-child {
  border-left: 1px solid var(--line-light);
}

.professional-flow article > span {
  color: var(--coral);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.professional-flow article > div {
  margin-top: auto;
}

.professional-flow h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.2rem;
}

.professional-flow p {
  color: rgba(245, 241, 233, 0.62);
  line-height: 1.7;
  margin: 0;
  transition: transform 0.45s var(--ease);
}

.professional-cta {
  align-items: center;
  background: var(--forest);
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin: clamp(1.2rem, 2.5vw, 2.4rem) clamp(1.2rem, 6.5vw, 7.5rem) 0;
  padding-bottom: clamp(2rem, 3.5vw, 3.8rem);
  padding-top: clamp(2rem, 3.5vw, 3.8rem);
  position: relative;
  z-index: 1;
}

.professional-cta > div {
  max-width: 47rem;
}

.professional-cta small {
  color: var(--mint-2);
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.professional-cta p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.25;
  margin: 0;
}

.professional-cta .button {
  flex: 0 0 auto;
}

.club {
  align-items: center;
  background: var(--mint);
  display: grid;
  gap: clamp(4rem, 10vw, 12rem);
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  min-height: 58rem;
  overflow: clip;
  padding-bottom: clamp(7rem, 10vw, 10rem);
  padding-top: clamp(7rem, 10vw, 10rem);
  position: relative;
}

.club::after {
  border: 1px solid rgba(18, 54, 47, 0.13);
  border-radius: 50%;
  content: "";
  height: 34rem;
  left: clamp(1rem, 3vw, 4rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34rem;
}

.club-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 27rem;
  position: relative;
  transform: rotate(-5deg);
  width: 100%;
  z-index: 1;
}

.club-mark::before,
.club-mark::after {
  border: 1px solid var(--coral);
  border-radius: 50%;
  content: "";
  inset: 1rem;
  position: absolute;
}

.club-mark::after {
  border-color: rgba(18, 54, 47, 0.18);
  inset: 1.8rem;
}

.club-mark span {
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8.5rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.club-mark i {
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  margin-top: 0.8rem;
}

.club-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.club h2 {
  margin: 1.7rem 0 2.2rem;
  max-width: 12ch;
}

.club h2 em {
  color: var(--coral-dark);
}

.club-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 3rem 0 2.5rem;
  padding: 0;
}

.club-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 2.5rem 1fr;
  padding: 1.25rem 0;
}

.club-list span {
  color: var(--coral-dark);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.club-list strong {
  font-size: 0.92rem;
  font-weight: 500;
}

.trajectory {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
}

.trajectory-photo {
  isolation: isolate;
  min-height: 65rem;
  overflow: hidden;
  position: relative;
}

.trajectory-photo::after {
  background: linear-gradient(0deg, rgba(10, 40, 35, 0.83), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.trajectory-curve {
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: -1px;
  top: 0;
  width: clamp(8rem, 11.5vw, 12rem);
  z-index: 2;
}

.trajectory-curve-fill {
  fill: var(--paper);
}

.trajectory-curve-line {
  fill: none;
  stroke: rgba(215, 134, 118, 0.36);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.trajectory-curve-line-soft {
  opacity: 0.42;
}

.trajectory-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transition: transform 1.1s var(--ease);
  width: 100%;
}

.trajectory-photo > p {
  bottom: clamp(2rem, 4vw, 4.5rem);
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  left: clamp(1.5rem, 4vw, 4.5rem);
  line-height: 1.08;
  margin: 0;
  max-width: 11ch;
  position: absolute;
  z-index: 3;
}

.trajectory-photo > p span {
  color: var(--mint-2);
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.trajectory-copy {
  align-self: center;
  padding-bottom: clamp(6rem, 9vw, 9rem);
  padding-top: clamp(6rem, 9vw, 9rem);
}

.trajectory h2 {
  font-size: clamp(3.2rem, 5.2vw, 5.9rem);
  margin: 1.7rem 0 2.2rem;
  max-width: 12ch;
}

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

.timeline li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 6rem 1fr;
  padding: 1.25rem 0;
}

.timeline time {
  color: var(--coral-dark);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
  text-transform: uppercase;
}

.timeline div {
  display: grid;
  gap: 0.35rem;
}

.timeline strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.timeline span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.quote {
  align-items: center;
  background: var(--deep);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46rem;
  overflow: clip;
  padding: 7rem 1.5rem;
  position: relative;
  text-align: center;
}

.quote-orbit {
  border: 1px solid rgba(168, 216, 202, 0.2);
  border-radius: 50%;
  height: 44rem;
  position: absolute;
  width: 44rem;
}

.quote .orbit-one {
  transform: rotate(28deg) scaleX(1.6);
}

.quote .orbit-two {
  transform: rotate(-28deg) scaleX(1.6);
}

.quote .eyebrow,
.quote blockquote,
.quote-author {
  position: relative;
  z-index: 1;
}

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

blockquote {
  font-size: clamp(3.2rem, 6.8vw, 7.4rem);
  line-height: 0.98;
  margin: 2.5rem auto 2rem;
  max-width: 15ch;
}

.quote-author {
  color: var(--mint-2);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clinic-note {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  padding-bottom: clamp(6rem, 9vw, 9rem);
  padding-top: clamp(6rem, 9vw, 9rem);
}

.clinic-note h2 {
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  margin-top: 1.7rem;
  max-width: 10ch;
}

.clinic-note-copy {
  padding-top: 0.4rem;
}

.clinic-note-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.clinic-note address {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.55;
  margin: 2rem 0;
  padding: 1.5rem 0;
}

.dark-link {
  display: inline-block;
}

.closing {
  align-items: center;
  background: var(--deep-2);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 43rem;
  padding: 7rem 1.5rem;
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  line-height: 0.9;
  margin: 2.4rem auto 0;
}

.closing-actions {
  justify-content: center;
}

footer {
  align-items: center;
  background: var(--ivory);
  display: grid;
  font-size: 0.7rem;
  gap: 2rem;
  grid-template-columns: 1fr auto auto;
  padding: 2.3rem clamp(1.2rem, 5vw, 5.5rem);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.footer-brand img {
  background: var(--deep);
  border: 1px solid rgba(215, 134, 118, 0.42);
  border-radius: 50%;
  box-shadow: 0 0.45rem 1.35rem rgba(10, 40, 35, 0.12);
  height: 3.3rem;
  object-fit: contain;
  padding: 0.22rem;
  width: 3.3rem;
}

.footer-brand p {
  font-family: var(--display);
  font-size: 0.95rem;
  margin: 0;
}

.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

footer nav {
  display: flex;
  gap: 1.4rem;
}

footer nav a,
footer > a {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

footer nav a:hover,
footer > a:hover {
  border-color: currentColor;
}

.footer-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.2rem;
  text-align: center;
}

.floating-cta {
  display: none;
}

.load {
  animation: load-in 1s var(--ease) both;
}

.load-1 {
  animation-delay: 0.08s;
}

.load-2 {
  animation-delay: 0.18s;
}

.load-3 {
  animation-delay: 0.3s;
}

.load-4 {
  animation-delay: 0.42s;
}

.js [data-reveal] {
  --reveal-delay: 0ms;
  --reveal-rest-rotate: 0deg;
  --reveal-rotate: 0deg;
  --reveal-scale: 1;
  opacity: 0;
  transform: translate3d(0, 2rem, 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
  transition:
    opacity 0.9s var(--ease) var(--reveal-delay),
    transform 0.9s var(--ease) var(--reveal-delay),
    clip-path 1.05s var(--ease) var(--reveal-delay);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--reveal-rest-rotate));
}

.js [data-reveal="image"] {
  --reveal-scale: 0.985;
  clip-path: inset(0 0 10% 0 round 0.75rem);
}

.js [data-reveal="image"].is-visible {
  clip-path: inset(0 0 0 0 round 0);
}

.js [data-reveal="seal"] {
  --reveal-rest-rotate: -5deg;
  --reveal-rotate: -11deg;
  --reveal-scale: 0.9;
}

@keyframes load-in {
  from {
    opacity: 0;
    transform: translateY(1.8rem);
  }
}

@keyframes hero-frame-in {
  from {
    clip-path: inset(0 0 16% 0);
    opacity: 0.72;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes hero-image-in {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1);
  }
}

@keyframes credential-in {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .professional-flow article:hover {
    background: rgba(168, 216, 202, 0.07);
  }

  .professional-flow article:hover h3 {
    transform: translateX(0.35rem);
  }

  .trajectory-photo:hover img {
    transform: scale(1.025);
  }
}

@media (min-width: 1500px) {
  .hero {
    min-height: 54rem;
  }

  .hero-copy {
    max-width: 57rem;
  }

  .hero h1 {
    max-width: 11.5ch;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    align-items: center;
    background: var(--deep);
    border: 0;
    border-radius: 99rem;
    color: var(--ivory);
    cursor: pointer;
    display: flex;
    gap: 0.8rem;
    justify-self: end;
    min-height: 2.75rem;
    padding: 0.7rem 0.9rem 0.7rem 1rem;
  }

  .menu-label {
    font-family: var(--sans);
    font-size: 0.65rem;
  }

  .menu-icon {
    display: grid;
    gap: 0.28rem;
    width: 1rem;
  }

  .menu-icon i {
    background: currentColor;
    display: block;
    height: 1px;
    transition: transform 0.3s ease;
    width: 100%;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(0.14rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-0.14rem) rotate(-45deg);
  }

  .mobile-nav {
    align-content: start;
    background: var(--ivory);
    display: grid;
    inset: 4.7rem 0 0;
    opacity: 0;
    padding: clamp(2rem, 8vw, 5rem) clamp(1.2rem, 7vw, 5rem);
    pointer-events: none;
    position: fixed;
    transform: translateY(-1rem);
    transition: opacity 0.3s ease, transform 0.4s var(--ease);
    visibility: hidden;
    z-index: 49;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .mobile-nav > p {
    color: var(--coral-dark);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
  }

  .mobile-nav > a:not(.mobile-nav-cta) {
    align-items: center;
    border-top: 1px solid var(--line);
    display: grid;
    font-family: var(--display);
    font-size: clamp(2.1rem, 6vw, 4rem);
    gap: 1rem;
    grid-template-columns: 2.2rem 1fr;
    padding: 1rem 0;
  }

  .mobile-nav > a:not(.mobile-nav-cta):nth-of-type(4) {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav > a > span:first-child {
    color: var(--coral-dark);
    font-family: var(--sans);
    font-size: 0.6rem;
  }

  .mobile-nav-cta {
    align-items: center;
    background: var(--deep);
    border-radius: 99rem;
    color: var(--ivory);
    display: flex;
    font-size: 0.75rem;
    justify-content: space-between;
    margin-top: 2rem;
    max-width: 25rem;
    padding: 1rem 1.2rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(245, 241, 233, 0.98) 0%, rgba(245, 241, 233, 0.88) 42%, rgba(245, 241, 233, 0.3) 67%, rgba(245, 241, 233, 0) 86%),
      linear-gradient(0deg, rgba(18, 54, 47, 0.14), transparent 26%);
  }

  .professional-heading,
  .club,
  .trajectory,
  .clinic-note {
    grid-template-columns: 1fr;
  }

  .professional-heading .section-lead {
    max-width: 42rem;
  }

  .club {
    gap: 5rem;
  }

  .club::after {
    left: 50%;
    top: 22rem;
    transform: translate(-50%, -50%);
  }

  .club-mark {
    justify-self: center;
  }

  .club-copy {
    max-width: 52rem;
  }

  .trajectory-photo {
    max-height: 58rem;
    min-height: 48rem;
  }

  .trajectory-curve {
    display: none;
  }

  .trajectory-photo img {
    object-position: 50% 35%;
  }

  .clinic-note-copy {
    max-width: 42rem;
  }
}

@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 0 0;
  }

  .hero::before {
    display: none;
  }

  .hero-media {
    border-radius: clamp(3.8rem, 10vw, 6rem) 1.1rem clamp(3.8rem, 10vw, 6rem) 1.1rem;
    box-shadow: 0 1.5rem 4rem rgba(10, 40, 35, 0.14);
    height: clamp(30rem, 76vw, 38rem);
    inset: auto;
    isolation: isolate;
    margin: 0 clamp(0.7rem, 2.4vw, 1.25rem) 1.25rem;
    min-height: 0;
    order: 2;
    overflow: hidden;
    position: relative;
  }

  .hero-media::before {
    border: 1px solid rgba(253, 251, 246, 0.56);
    border-radius: inherit;
    content: "";
    inset: 0.62rem;
    pointer-events: none;
    position: absolute;
    z-index: 2;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(18, 54, 47, 0.3), transparent 42%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
  }

  .hero-media img {
    object-position: 66% center;
    position: relative;
    z-index: 0;
  }

  .hero-copy {
    background: var(--ivory);
    justify-content: flex-start;
    min-height: 0;
    order: 1;
    padding: calc(var(--header-height) + 3.3rem) 1.2rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 12.5vw, 6.6rem);
    max-width: 9.5ch;
  }

  .hero-intro {
    max-width: 35rem;
  }

  .hero-signature {
    display: none;
  }

  .hero-credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    padding: 0 1.2rem;
    position: relative;
  }

  .hero-credentials p {
    min-height: 6.4rem;
  }

  .hero-credentials p:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .hero-credentials p:nth-child(4) {
    border-right: 1px solid var(--line-light);
    border-top: 1px solid var(--line-light);
  }

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

  .section-index {
    display: none;
  }

  .manifesto-text {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .professional-flow {
    grid-template-columns: 1fr;
  }

  .professional-flow article,
  .professional-flow article:first-child {
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
    min-height: 18rem;
  }

  .professional-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trajectory-photo {
    border-radius: 1.1rem clamp(3.8rem, 11vw, 6rem) 1.1rem clamp(3.8rem, 11vw, 6rem);
    box-shadow: 0 1.5rem 4rem rgba(10, 40, 35, 0.13);
    isolation: isolate;
    margin: 0 clamp(0.7rem, 2.4vw, 1.25rem) 1.25rem;
    min-height: 44rem;
  }

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

  footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  footer > a {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 4.8rem;
  }

  .site-header {
    padding: 0 0.8rem;
  }

  .brand img {
    height: 2.75rem;
    padding: 0.16rem;
    width: 2.75rem;
  }

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

  .brand small {
    font-size: 0.35rem;
  }

  .menu-toggle {
    min-height: 2.5rem;
  }

  .hero-media {
    border-radius: 4.6rem 0.9rem 4.6rem 0.9rem;
    height: 30rem;
  }

  .hero-copy {
    min-height: 0;
    padding-bottom: 3rem;
    padding-top: calc(var(--header-height) + 2.6rem);
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.75rem);
    letter-spacing: -0.06em;
    line-height: 0.92;
    margin: 1.8rem 0 1.5rem;
  }

  .hero-intro {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 26rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 1.7rem;
  }

  .hero-credentials {
    padding-inline: 0.7rem;
  }

  .hero-credentials p {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 7.2rem;
    padding: 1rem;
  }

  .hero-credentials strong {
    font-size: 1.65rem;
  }

  .hero-credentials span {
    font-size: 0.5rem;
  }

  .manifesto h2,
  .professional h2,
  .club h2,
  .trajectory h2,
  .clinic-note h2 {
    font-size: clamp(3.1rem, 13.2vw, 4.3rem);
  }

  .manifesto h2 {
    margin-bottom: 2.5rem;
  }

  .professional-heading {
    display: block;
  }

  .professional-heading h2 {
    margin: 1.7rem 0 2rem;
  }

  .professional-flow article,
  .professional-flow article:first-child {
    min-height: 15rem;
    padding-inline: 1.3rem;
  }

  .professional-cta {
    gap: 2rem;
    margin-inline: 0.7rem;
    padding-inline: 1.3rem;
  }

  .professional-cta .button,
  .club .button,
  .closing .button {
    width: 100%;
  }

  .club {
    gap: 4rem;
  }

  .club::after {
    height: 23rem;
    top: 15rem;
    width: 23rem;
  }

  .club-mark {
    max-width: 19rem;
  }

  .club-copy .section-lead {
    font-size: 0.91rem;
  }

  .club-list strong {
    line-height: 1.5;
  }

  .trajectory-photo {
    border-radius: 0.9rem 4.2rem 0.9rem 4.2rem;
    min-height: 40rem;
  }

  .trajectory-photo img {
    object-position: 50% center;
  }

  .timeline li {
    gap: 0.75rem;
    grid-template-columns: 4.6rem 1fr;
  }

  blockquote {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .quote-orbit {
    height: 28rem;
    width: 28rem;
  }

  .clinic-note {
    gap: 3rem;
  }

  .closing {
    min-height: 39rem;
    padding-inline: 1rem;
  }

  .closing h2 {
    font-size: clamp(3.15rem, 14vw, 4.7rem);
    max-width: 10ch;
  }

  .closing-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 25rem;
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 6.5rem;
  }

  footer nav,
  footer > a {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .footer-note {
    text-align: left;
  }

  .floating-cta {
    align-items: center;
    background: var(--coral);
    border: 1px solid rgba(18, 54, 47, 0.2);
    border-radius: 99rem;
    bottom: 1rem;
    box-shadow: 0 0.8rem 2rem rgba(10, 40, 35, 0.22);
    color: var(--deep-2);
    display: flex;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 1.8rem;
    justify-content: space-between;
    min-height: 3.2rem;
    padding: 0.8rem 0.9rem 0.8rem 1.2rem;
    position: fixed;
    right: 1rem;
    z-index: 45;
  }

  .floating-cta span {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    height: 1.75rem;
    justify-content: center;
    width: 1.75rem;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js .club-mark[data-reveal="seal"] {
    transform: rotate(-5deg);
  }
}
