:root {
  --navy-950: #030d18;
  --navy-900: #071727;
  --navy-800: #0d253b;
  --copper: #c96f43;
  --copper-light: #e1a17d;
  --paper: #faf8f3;
  --ink: #101c28;
  --muted: #60707c;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(p, li, blockquote, figcaption, address, label, small) {
  text-wrap: pretty;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(100% - 96px, 1440px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy-950);
  color: white;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  animation: hero-drift 16s ease-out both;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.99) 0%, rgba(3, 13, 24, 0.94) 31%, rgba(3, 13, 24, 0.55) 58%, rgba(3, 13, 24, 0.3) 100%),
    linear-gradient(180deg, rgba(3, 13, 24, 0.68) 0%, transparent 28%, rgba(3, 13, 24, 0.26) 70%, rgba(3, 13, 24, 0.92) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.14;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: calc((100vw - 96px) / 6) 100%;
  background-position: 48px 0;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  height: 116px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header__brand {
  display: block;
  width: 220px;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 2.5vw, 44px);
}

.site-header__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 180ms ease;
}

.site-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: var(--copper-light);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: white;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: space-between;
  width: 156px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  border-color: var(--copper);
  background: var(--copper);
}

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

.hero__content {
  display: grid;
  align-content: center;
  min-height: calc(100svh - 116px);
  padding-top: 48px;
  padding-bottom: 154px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow-line {
  width: 64px;
  height: 1px;
  background: var(--copper-light);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 6.8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.8;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--copper-light);
  font-weight: 400;
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 510px) auto;
  align-items: end;
  gap: 64px;
  margin-top: 42px;
  margin-left: min(8vw, 124px);
}

.hero__intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 27px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--copper {
  background: var(--copper);
  box-shadow: 0 14px 38px rgba(201, 111, 67, 0.2);
  color: white;
}

.button--copper:hover,
.button--copper:focus-visible {
  background: #dc8051;
}

.button__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.button--navy {
  background: var(--navy-900);
  color: white;
}

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--copper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__index {
  position: absolute;
  top: 50%;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  transform: translateY(-42%);
}

.hero__index i {
  width: 1px;
  height: 112px;
  background: linear-gradient(var(--copper-light) 32%, rgba(255, 255, 255, 0.22) 32%);
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 13, 24, 0.64);
  backdrop-filter: blur(14px);
}

.hero__footer-inner {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  min-height: 82px;
  gap: 40px;
}

.hero__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__footer a {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal-up 820ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.reveal--one {
  animation-delay: 180ms;
}

.reveal--two {
  animation-delay: 320ms;
}

.reveal--three {
  animation-delay: 520ms;
}

.experience {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  padding: 152px 0 42px;
  background:
    linear-gradient(90deg, rgba(13, 37, 59, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: calc((100vw - 96px) / 6) 100%;
  background-position: 48px 0;
}

.experience::before {
  position: absolute;
  top: 0;
  left: 48px;
  width: 1px;
  height: 92px;
  background: var(--copper);
  content: '';
}

.experience__mark {
  position: absolute;
  top: 32px;
  right: -50px;
  width: 440px;
  opacity: 0.035;
  filter: invert(1);
  transform: rotate(5deg);
}

.experience__mark img {
  width: 100%;
}

.experience__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 0.76fr);
  align-items: center;
  gap: clamp(72px, 9vw, 150px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-kicker i {
  width: 56px;
  height: 1px;
  background: rgba(201, 111, 67, 0.55);
}

.experience h2 {
  max-width: 720px;
  margin: 34px 0 44px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.4rem, 5.2vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.89;
}

.experience h2 em {
  color: var(--copper);
  font-weight: 400;
}

.experience__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  max-width: 710px;
  margin-bottom: 46px;
}

.experience__text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.84;
}

.experience__text .experience__lead {
  color: var(--navy-800);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.27rem;
  line-height: 1.46;
}

.experience__visual {
  position: relative;
  padding: 0 0 70px 42px;
}

.experience__visual::before {
  position: absolute;
  top: -24px;
  right: -24px;
  bottom: 42px;
  left: 18px;
  border: 1px solid rgba(201, 111, 67, 0.34);
  content: '';
}

.experience__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 0.83;
  background: var(--navy-900);
  box-shadow: 0 30px 70px rgba(7, 23, 39, 0.16);
}

.experience__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 13, 24, 0.38));
  content: '';
}

.experience__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.experience__visual:hover .experience__frame img {
  transform: scale(1.025);
}

.experience__photo-number {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
}

.experience__card {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 0;
  width: min(84%, 390px);
  padding: 32px 36px;
  background: var(--navy-900);
  box-shadow: 0 24px 60px rgba(7, 23, 39, 0.24);
  color: white;
}

.experience__card span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience__card strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.experience__card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience__footnote {
  display: flex;
  justify-content: space-between;
  margin-top: 92px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 37, 59, 0.14);
  color: rgba(13, 37, 59, 0.52);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice {
  position: relative;
  overflow: hidden;
  padding: 150px 0 166px;
  background: var(--navy-950);
  color: white;
}

.practice__media,
.practice__media-layer,
.practice__media-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.practice__media {
  z-index: 1;
}

.practice__media-layer {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.practice__media-layer--active {
  opacity: 0.96;
  transform: scale(1);
}

.practice__media-mask {
  z-index: 2;
  background: radial-gradient(
    ellipse 64% 76% at 53% 49%,
    rgba(1, 14, 27, 0.99) 0%,
    rgba(1, 14, 27, 0.97) 42%,
    rgba(1, 14, 27, 0.68) 70%,
    rgba(1, 14, 27, 0.08) 100%
  );
}

.practice__flare {
  position: absolute;
  top: -360px;
  right: -250px;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 111, 67, 0.18), transparent 67%);
  pointer-events: none;
  z-index: 3;
}

.practice::before {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: calc((100vw - 96px) / 6) 100%;
  background-position: 48px 0;
  content: '';
  pointer-events: none;
  z-index: 3;
}

.section-kicker--light {
  color: var(--copper-light);
}

.practice__header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 0.75fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 104px;
}

.practice__header h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.55rem, 5.15vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.87;
}

.practice__header h2 em {
  display: block;
  color: var(--copper-light);
  font-weight: 400;
}

.practice__header > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.8;
}

.practice__layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(70px, 10vw, 160px);
}

.practice__current {
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 480px;
  padding-top: 10px;
}

.practice__current-label {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice__current strong {
  display: block;
  margin: 24px 0 0;
  color: var(--copper);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(8rem, 13vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.practice__current p {
  max-width: 320px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.practice__current-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 18px;
  background: linear-gradient(90deg, var(--copper), rgba(255, 255, 255, 0.12));
}

.practice__current > span:last-child {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.practice__list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.practice-item button {
  display: grid;
  grid-template-columns: 50px 1fr 42px;
  align-items: center;
  width: 100%;
  min-height: 106px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  text-align: left;
}

.practice-item__number {
  color: var(--copper-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.practice-item__title {
  padding-right: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.15vw, 2.45rem);
  line-height: 1.08;
  transition: color 180ms ease, transform 180ms ease;
}

.practice-item button:hover .practice-item__title,
.practice-item button:focus-visible .practice-item__title,
.practice-item--open .practice-item__title {
  color: var(--copper-light);
  transform: translateX(8px);
}

.practice-item__icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.practice-item__icon::before,
.practice-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: '';
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.practice-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.practice-item--open .practice-item__icon {
  border-color: var(--copper);
  background: var(--copper);
}

.practice-item--open .practice-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.practice-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 380ms ease, opacity 280ms ease;
}

.practice-item__panel > div {
  overflow: hidden;
}

.practice-item__panel p {
  max-width: 720px;
  margin: 0;
  padding: 0 54px 22px 50px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.78;
}

.practice-item__panel a {
  display: inline-flex;
  gap: 10px;
  margin: 0 0 38px 50px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(225, 161, 125, 0.5);
  color: var(--copper-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-item--open .practice-item__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.principles {
  position: relative;
  overflow: hidden;
  padding: 154px 0 170px;
  background: var(--paper);
}

.principles__mark {
  position: absolute;
  top: -130px;
  right: -160px;
  width: 650px;
  opacity: 0.025;
  filter: invert(1);
}

.principles__mark img {
  width: 100%;
}

.principles__heading {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.75fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 92px;
}

.principles__heading h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.45rem, 4.7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.principles__heading h2 em {
  display: block;
  color: var(--copper);
  font-weight: 400;
}

.principles__heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(13, 37, 59, 0.16);
  border-bottom: 1px solid rgba(13, 37, 59, 0.16);
}

.principle-card {
  position: relative;
  min-height: 390px;
  padding: 42px 34px 38px;
  border-right: 1px solid rgba(13, 37, 59, 0.16);
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card:hover {
  z-index: 2;
  background: var(--navy-900);
  color: white;
  transform: translateY(-12px);
}

.principle-card > span {
  color: var(--copper);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
}

.principle-card__icon {
  position: absolute;
  top: 44px;
  right: 34px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(201, 111, 67, 0.34);
  color: var(--copper);
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.principle-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.principle-card:hover .principle-card__icon {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--copper-light);
  transform: translateY(-3px);
}

.principle-card h3 {
  margin: 94px 0 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
  transition: color 240ms ease;
}

.principle-card:hover p {
  color: rgba(255, 255, 255, 0.59);
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  background: var(--copper);
  color: white;
}

.reviews::before {
  position: absolute;
  top: -150px;
  right: -60px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: '';
}

.reviews__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(80px, 12vw, 190px);
}

.reviews__seal {
  display: grid;
  width: min(29vw, 360px);
  min-width: 300px;
  aspect-ratio: 1;
  margin-left: 5vw;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  text-align: center;
}

.reviews__seal span,
.reviews__seal small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews__seal img {
  width: 92px;
  margin: 22px auto;
}

.reviews__seal small {
  color: rgba(255, 255, 255, 0.66);
}

.reviews__copy h2 {
  max-width: 720px;
  margin: 34px 0 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.reviews__copy h2 em {
  color: var(--navy-950);
  font-weight: 500;
}

.reviews__copy > p {
  max-width: 570px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: white;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.journal {
  position: relative;
  overflow: hidden;
  padding: 160px 0 170px;
  background: #eee8de;
}

.journal__word {
  position: absolute;
  right: -26px;
  bottom: -58px;
  color: rgba(13, 37, 59, 0.04);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(10rem, 22vw, 24rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.7;
  white-space: nowrap;
}

.journal__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 120px;
}

.journal__heading h2 {
  max-width: 720px;
  margin: 34px 0 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.7rem, 5.6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.journal__heading h2 em {
  display: block;
  color: var(--copper);
  font-weight: 400;
}

.journal__empty {
  padding: 46px;
  border: 1px solid rgba(13, 37, 59, 0.16);
  background: rgba(250, 248, 243, 0.62);
  backdrop-filter: blur(8px);
}

.journal__status {
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal__empty p {
  margin: 44px 0 46px;
  color: var(--navy-800);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.78rem, 2.3vw, 2.55rem);
  line-height: 1.03;
}

.journal__rule {
  height: 1px;
  margin-bottom: 18px;
  background: rgba(13, 37, 59, 0.16);
}

.journal__empty small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 156px 0;
  background: var(--navy-900);
  color: white;
}

.contact__grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: calc((100vw - 96px) / 6) 100%;
  background-position: 48px 0;
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  align-items: start;
  gap: clamp(80px, 11vw, 180px);
}

.contact__copy h2 {
  max-width: 760px;
  margin: 36px 0 34px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.7rem, 5.75vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.contact__copy h2 em {
  display: block;
  color: var(--copper-light);
  font-weight: 400;
}

.contact__copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.82;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px 44px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact__details > div:last-child {
  grid-column: 1 / -1;
}

.contact__details span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper-light);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__details a,
.contact__details address {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.75;
}

.contact-form {
  padding: 46px 48px 48px;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.contact-cta-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.contact-cta-card__eyebrow {
  margin-bottom: 28px;
  color: var(--copper-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-cta-card h3 {
  max-width: 560px;
  margin: 0;
  color: white;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 3.35vw, 3.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.contact-cta-card p {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.contact-cta-card small {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  line-height: 1.6;
}

.contact-form__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 37, 59, 0.16);
  color: var(--copper);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 27px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(13, 37, 59, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--copper);
}

.form-field textarea::placeholder {
  color: rgba(96, 112, 124, 0.58);
  font-size: 0.78rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.form-consent input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--copper);
}

.form-security {
  margin: 17px 0 28px;
  color: rgba(96, 112, 124, 0.7);
  font-size: 0.65rem;
}

.contact-form__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form__status {
  display: block;
  min-height: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.contact-form__status.is-success {
  color: #2f6b4d;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding: 76px 0 32px;
  background: var(--navy-950);
  color: white;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  align-items: start;
  gap: 80px;
  padding-bottom: 64px;
}

.site-footer__brand {
  width: min(280px, 100%);
}

.site-footer__brand img {
  width: 100%;
}

.site-footer__nav,
.site-footer__social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.site-footer__social {
  grid-template-columns: 1fr;
}

.site-footer__nav a,
.site-footer__social a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  transition: color 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__social a:hover {
  color: var(--copper-light);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.61rem;
  line-height: 1.6;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-footer__credit img {
  width: 126px;
  height: auto;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  color: white;
}

.floating-contact {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 23, 39, 0.94);
  box-shadow: 0 14px 32px rgba(3, 13, 24, 0.25);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.floating-contact > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 0 4px rgba(225, 161, 125, 0.13);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience__visual[data-reveal] {
  transition-delay: 150ms;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 220px 1fr 150px;
    padding-inline: 32px;
  }

  .site-header__brand {
    width: 194px;
  }

  .site-header__nav {
    gap: 22px;
  }

  .hero__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience__layout {
    gap: 66px;
  }

  .experience__text {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 48px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 92px;
    padding: 0 24px;
  }

  .site-header__brand {
    width: 186px;
  }

  .site-header__nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    display: grid;
    z-index: 3;
    width: 46px;
    height: 46px;
    padding: 12px;
    align-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    background: white;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded='true'] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded='true'] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 24px 28px;
    background: rgba(3, 13, 24, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
  }

  .hero__content {
    min-height: calc(100svh - 92px);
    padding-bottom: 120px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(3.7rem, 10vw, 6rem);
  }

  .hero__index {
    display: none;
  }

  .hero__footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .hero__footer a {
    display: none;
  }

  .experience {
    min-height: auto;
    padding-top: 112px;
  }

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

  .experience__copy {
    max-width: 720px;
  }

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

  .experience__visual {
    width: min(86%, 590px);
    margin: 32px auto 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    object-position: 57% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(3, 13, 24, 0.96), rgba(3, 13, 24, 0.56)),
      linear-gradient(180deg, rgba(3, 13, 24, 0.4), transparent 34%, rgba(3, 13, 24, 0.92));
  }

  .hero__grid {
    background-size: calc((100vw - 40px) / 4) 100%;
    background-position: 20px 0;
  }

  .site-header__brand {
    width: 170px;
  }

  .hero__content {
    align-content: end;
    min-height: 690px;
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .hero__eyebrow {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.59rem;
  }

  .hero__eyebrow-line {
    width: 32px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.45rem);
    line-height: 0.83;
  }

  .hero__intro {
    gap: 24px;
    margin-top: 28px;
    margin-left: 0;
  }

  .hero__intro > p {
    max-width: 94%;
    font-size: 0.93rem;
    line-height: 1.66;
  }

  .hero__actions {
    align-items: stretch;
    gap: 20px;
  }

  .button {
    min-height: 54px;
    padding-inline: 20px;
    font-size: 0.67rem;
  }

  .text-link {
    display: none;
  }

  .hero__footer {
    position: relative;
  }

  .hero__footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 0;
  }

  .hero__footer p {
    display: none;
  }

  .hero__footer p:first-child {
    display: block;
    text-align: center;
  }

  .experience {
    padding: 94px 0 32px;
    background-size: calc((100vw - 40px) / 4) 100%;
    background-position: 20px 0;
  }

  .experience::before {
    left: 20px;
    height: 56px;
  }

  .experience__mark {
    top: 60px;
    right: -100px;
    width: 320px;
  }

  .section-kicker {
    font-size: 0.6rem;
  }

  .experience h2 {
    margin: 28px 0 34px;
    font-size: clamp(3rem, 13.4vw, 4.35rem);
    line-height: 0.87;
  }

  .experience__text {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .experience__visual {
    width: calc(100% - 12px);
    margin-top: 42px;
    padding: 0 0 76px;
  }

  .experience__visual::before {
    top: -14px;
    right: -12px;
    bottom: 56px;
    left: 12px;
  }

  .experience__frame {
    aspect-ratio: 0.79;
  }

  .experience__card {
    right: -8px;
    width: 88%;
    padding: 25px 26px;
  }

  .experience__card strong {
    font-size: 1.65rem;
  }

  .experience__footnote {
    margin-top: 52px;
  }

  .experience__footnote span:last-child {
    display: none;
  }
}

@media (max-width: 1180px) {
  .practice__header,
  .principles__heading {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .practice__header .section-kicker,
  .principles__heading .section-kicker {
    grid-column: 1 / -1;
  }

  .practice__layout {
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
    gap: 70px;
  }

  .practice__current strong {
    font-size: 9rem;
  }

  .principle-card {
    padding-inline: 25px;
  }

  .contact__layout {
    gap: 70px;
  }

  .contact-form {
    padding-inline: 36px;
  }
}

@media (max-width: 900px) {
  .practice,
  .principles,
  .journal,
  .contact {
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .practice__header,
  .principles__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 70px;
  }

  .practice__header .section-kicker,
  .principles__heading .section-kicker {
    grid-column: auto;
  }

  .practice__header > p,
  .principles__heading > p {
    max-width: 560px;
  }

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

  .practice__current {
    display: none;
  }

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

  .principle-card {
    min-height: 340px;
    border-bottom: 1px solid rgba(13, 37, 59, 0.16);
  }

  .principle-card:nth-child(2) {
    border-right: 0;
  }

  .principle-card:nth-child(3),
  .principle-card:nth-child(4) {
    border-bottom: 0;
  }

  .reviews {
    padding: 108px 0;
  }

  .reviews__layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 55px;
  }

  .reviews__seal {
    width: 230px;
    min-width: 230px;
    margin-left: 0;
  }

  .reviews__seal img {
    width: 72px;
    margin-block: 16px;
  }

  .journal__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .journal__empty {
    max-width: 640px;
    margin-left: auto;
  }

  .contact__copy {
    max-width: 740px;
  }

  .contact-form {
    max-width: 680px;
    margin-left: auto;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .site-footer__social {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .practice,
  .principles,
  .journal,
  .contact {
    padding-top: 90px;
    padding-bottom: 94px;
  }

  .practice::before,
  .contact__grid {
    background-size: calc((100vw - 40px) / 4) 100%;
    background-position: 20px 0;
  }

  .practice__header,
  .principles__heading {
    margin-bottom: 54px;
  }

  .practice__header h2,
  .principles__heading h2,
  .journal__heading h2,
  .reviews__copy h2,
  .contact__copy h2 {
    font-size: clamp(2.95rem, 13.4vw, 4.25rem);
    line-height: 0.86;
  }

  .practice-item button {
    grid-template-columns: 34px 1fr 34px;
    min-height: 90px;
  }

  .practice-item__title {
    padding-right: 16px;
    font-size: 1.55rem;
  }

  .practice-item__icon {
    width: 32px;
    height: 32px;
  }

  .practice-item__panel p {
    padding: 0 0 20px 34px;
    font-size: 0.82rem;
  }

  .practice-item__panel a {
    margin: 0 0 30px 34px;
    font-size: 0.59rem;
  }

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

  .principle-card,
  .principle-card:nth-child(2),
  .principle-card:nth-child(3) {
    min-height: auto;
    padding: 34px 25px 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 37, 59, 0.16);
  }

  .principle-card:nth-child(4) {
    border-bottom: 0;
  }

  .principle-card h3 {
    margin: 46px 0 18px;
  }

  .principle-card__icon {
    top: 34px;
    right: 25px;
  }

  .reviews {
    padding: 90px 0 96px;
  }

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

  .reviews__seal {
    width: 200px;
    min-width: 200px;
  }

  .reviews__seal img {
    width: 64px;
  }

  .journal__layout,
  .contact__layout {
    gap: 50px;
  }

  .journal__empty {
    padding: 30px 26px;
  }

  .journal__empty p {
    margin: 34px 0 38px;
    font-size: 1.75rem;
  }

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

  .contact__details > div:last-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__brand {
    width: 220px;
  }

  .site-footer__social {
    grid-column: auto;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 22px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__credit {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

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