/* CINEMATIC INSTITUTIONAL HERO */

.hero-institutional {
  position: relative;
  min-height: 108vh;
  min-height: 108svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 clamp(64px, 8vw, 110px);
  background:
    linear-gradient(180deg, #11161d 0%, #171d25 48%, #0c1015 100%);
  isolation: isolate;
  will-change: transform, opacity;
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.hero-copy,
.hero-brief {
  position: relative;
  z-index: 5;
}

.hero-atmosphere {
  position: absolute;
  width: 70vw;
  height: 70vw;
  top: -20%;
  right: -10%;
  background:
    radial-gradient(
      circle,
      rgba(180,145,82,0.08) 0%,
      rgba(180,145,82,0.03) 28%,
      transparent 70%
    );
  z-index: 1;
  animation: ambientGlow 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 68% 44%, black 0%, transparent 70%);
}

.hero-document-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.document-plane {
  position: absolute;
  display: block;
  border: 1px solid rgba(179, 188, 200, 0.055);
  background:
    linear-gradient(180deg, rgba(243,244,246,0.045), rgba(243,244,246,0.008)),
    repeating-linear-gradient(
      to bottom,
      rgba(243,244,246,0.055) 0,
      rgba(243,244,246,0.055) 1px,
      transparent 1px,
      transparent 18px
    );
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.22);
  opacity: 0.18;
  filter: blur(0.2px);
  transform-origin: center;
  animation: documentDrift 22s ease-in-out infinite alternate;
}

.document-plane-one {
  width: clamp(260px, 28vw, 470px);
  height: clamp(360px, 42vw, 680px);
  right: 9%;
  top: 18%;
  transform: rotate(-8deg) translate3d(0, 0, 0);
}

.document-plane-two {
  width: clamp(220px, 24vw, 420px);
  height: clamp(310px, 36vw, 600px);
  right: 26%;
  top: 26%;
  opacity: 0.11;
  transform: rotate(8deg) translate3d(0, 0, 0);
  animation-delay: 2.2s;
}

.document-plane-three {
  width: clamp(190px, 18vw, 320px);
  height: clamp(240px, 28vw, 480px);
  right: -3%;
  top: 34%;
  opacity: 0.09;
  transform: rotate(14deg) translate3d(0, 0, 0);
  animation-delay: 3.6s;
}

.hero-architecture-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 0 56%, rgba(179,188,200,0.08) 56%, transparent calc(56% + 1px)),
    linear-gradient(90deg, transparent 0 72%, rgba(199,163,90,0.12) 72%, transparent calc(72% + 1px)),
    linear-gradient(180deg, transparent 0 78%, rgba(179,188,200,0.08) 78%, transparent calc(78% + 1px));
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 86%, transparent 100%);
}

.hero-institutional-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 410px);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.hero-copy {
  max-width: 940px;
}

.hero-copy h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-copy p {
  color: rgba(179, 188, 200, 0.82);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  letter-spacing: 0.04em;
}

.hero-brief {
  position: relative;
  max-width: 410px;
  padding: clamp(1.4rem, 2.4vw, 2rem) 0 0 clamp(1.4rem, 2vw, 2.2rem);
  border-left: 1px solid rgba(199, 163, 90, 0.26);
}

.hero-brief::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 38%;
  background: rgba(243, 244, 246, 0.22);
}

.hero-brief span {
  display: block;
  margin-bottom: 1rem;
  color: rgba(199, 163, 90, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-brief p {
  color: rgba(243, 244, 246, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.25vw, 1.45rem);
  line-height: 1.45;
  margin-bottom: 1.7rem;
}

.hero-floorline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 4vw, 54px);
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 188, 200, 0.18), rgba(199, 163, 90, 0.18), transparent);
}

@keyframes heroAtmosphereDrift {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.4%, 1%, 0) scale(1.035);
  }
}

@keyframes documentDrift {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -18px;
  }
}

@keyframes focalBreath {
  from {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0.68;
    transform: translate3d(-12px, -8px, 0) scale(1.04);
  }
}

@media (max-width: 1080px) {
  .hero-institutional-grid {
    grid-template-columns: 1fr;
  }

  .hero-institutional {
    min-height: 960px;
  }

  .hero-brief {
    max-width: 620px;
  }

  .document-plane-one {
    right: 5%;
    top: 24%;
  }

  .document-plane-two {
    right: 30%;
    top: 32%;
  }
}

@media (max-width: 760px) {
  .hero-institutional {
    min-height: 100svh;
    padding: 124px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-brief {
    padding-left: 1.15rem;
  }

  .hero-brief p {
    font-size: 1.32rem;
  }

  .document-plane {
    opacity: 0.1;
  }

  .document-plane-one {
    width: 280px;
    height: 420px;
    right: -10%;
    top: 26%;
  }

  .document-plane-two {
    width: 230px;
    height: 360px;
    right: 22%;
    top: 34%;
  }

  .document-plane-three {
    display: none;
  }

  .hero-focal-haze {
    right: -18%;
    width: 80vw;
    height: 70vh;
  }
}

/* ======================================== */
/* HERO ATMOSPHERIC FOCAL ELEMENT */
/* ======================================== */

.hero-focal-haze {

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(66vw, 980px);
  height: 100%;
  
  background:
    linear-gradient(
      90deg,
      rgba(5,10,18,0.18) 0%,
      rgba(5,10,18,0.04) 44%,
      rgba(5,10,18,0.32) 100%
    ),
    
    url("../images/hero-atmosphere.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  opacity: 0.11;

  mix-blend-mode: screen;

  filter:
    blur(1px)
    saturate(0.78)
    contrast(1.05);

  z-index: 0;

  animation: atmosphereFloat 22s ease-in-out infinite alternate;

  pointer-events: none;
}

/* ======================================== */
/* HERO CONTENT ABOVE ATMOSPHERE */
/* ======================================== */

.hero-content,
.hero-navbar,
.hero-overlay {
  position: relative;
  z-index: 5;
}


/* ======================================== */
/* ATMOSPHERIC FLOAT */
/* ======================================== */

@keyframes atmosphereFloat {

  0% {
    transform:
      scale(1)
      translate3d(0,0,0);
  }

  100% {
    transform:
      scale(1.04)
      translate3d(-20px,-10px,0);
  }

}


/* ======================================== */
/* AMBIENT GOLD GLOW */
/* ======================================== */

@keyframes ambientGlow {

  0% {
    transform:
      translate3d(0,0,0)
      scale(1);
    opacity: 0.7;
  }

  100% {
    transform:
      translate3d(-40px,20px,0)
      scale(1.08);
    opacity: 1;
  }

}

/* ======================================================= */
/* RESTICE CINEMATIC MONOGRAM */
/* ======================================================= */

.restice-monogram-wrap {

  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 1;
}

.restice-monogram {

  position: absolute;

  width: 68vw;

  top: 6%;
  right: -8%;

  opacity: 0.06;

  filter:
    blur(0.2px)
    saturate(0.9)
    contrast(1.08);

  mix-blend-mode: screen;

  transform:
    translate3d(0,0,0)
    scale(1.02)
    rotate(-2deg);

  transform-origin: center;

  will-change: transform;

  transition:
    transform 0.2s linear,
    opacity 0.6s ease;
}


/* SUBTLE HERO DEPTH */

.hero-institutional::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 34%,
      rgba(199,163,90,0.08),
      transparent 34rem
    );
  pointer-events: none;
  z-index: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 58px;
}

.split-grid,
.statement-grid,
.quote-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.split-statement h2,
.section-heading h2,
.leadership-content h2,
.contact-copy h2 {
  font-size: clamp(2.65rem, 5.4vw, 6.6rem);
  line-height: 0.98;
}

.split-copy {
  max-width: 660px;
  padding-top: clamp(0.6rem, 4vw, 4rem);
}

.split-copy p {
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
}

.institutional-statement {
  background:
    linear-gradient(rgba(17, 22, 29, 0.84), rgba(12, 16, 21, 0.9)),
    url("images/hero-disputes.jpg") center / cover fixed;
  border-block: 1px solid var(--line);
}

.statement-kicker {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.statement-grid h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5.1vw, 6rem);
  line-height: 1.02;
}
/* PRACTICE TERRAIN */

.practice-terrain {
  position: relative;
  overflow: hidden;
  padding-top: clamp(130px, 15vw, 230px);
  padding-bottom: clamp(130px, 15vw, 230px);
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.98), rgba(23, 29, 37, 0.94) 46%, rgba(12, 16, 21, 0.98));
}

.practice-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(199, 163, 90, 0.07), transparent 28rem),
    radial-gradient(circle at 82% 68%, rgba(179, 188, 200, 0.06), transparent 30rem),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 96px 100%;
  opacity: 0.72;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 84%, transparent);
}

.practice-terrain .container {
  position: relative;
  z-index: 2;
}

.practice-terrain-header {
  max-width: 1040px;
  margin-bottom: clamp(72px, 9vw, 132px);
}

.practice-terrain-header h2 {
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--ink);
}

.practice-terrain-header p {
  max-width: 660px;
  margin-top: clamp(1.7rem, 3vw, 2.8rem);
  margin-left: clamp(0px, 20vw, 280px);
  color: rgba(245, 241, 232, 0.62);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.85;
}

.practice-terrain-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.practice-landscape {
  position: relative;
  min-height: clamp(620px, 64vw, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}

.practice-landscape::before {
  content: "";
  position: absolute;
  inset: 8% -10% -8% 18%;
  z-index: -1;
  background: radial-gradient(circle, rgba(199, 163, 90, 0.22), transparent 62%);
  filter: blur(24px);
  opacity: 0.65;
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(.19, 1, .22, 1);
}

.practice-landscape-image {
  position: absolute;
  inset: 0;
  background:
    url("images/hero-restructuring.jpg") center / cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.04);
  transition:
    transform 1.8s cubic-bezier(.19, 1, .22, 1),
    filter 1.2s cubic-bezier(.19, 1, .22, 1);
}

.practice-landscape-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(199, 163, 90, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.38) 38%, rgba(6, 8, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 8, 12, 0.68), transparent 64%);
}

.practice-landscape-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(2rem, 4vw, 4.4rem);
}

.practice-landscape-copy span {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.practice-landscape-copy h3 {
  max-width: 600px;
  font-size: clamp(2.55rem, 4.8vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--ink);
}

.practice-landscape-copy p {
  max-width: 500px;
  margin-top: 1.5rem;
  color: rgba(245, 241, 232, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.practice-landscape-meta {
  position: absolute;
  top: clamp(1.4rem, 2.6vw, 2.5rem);
  right: clamp(1.4rem, 2.6vw, 2.5rem);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  max-width: 280px;
}

.practice-landscape-meta span {
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(8, 11, 15, 0.32);
  backdrop-filter: blur(10px);
  color: rgba(245, 241, 232, 0.62);
  padding: 0.5rem 0.68rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-landscape:hover::before {
  opacity: 0.88;
  transform: translate3d(-4%, -2%, 0) scale(1.05);
}

.practice-landscape:hover .practice-landscape-image {
  transform: scale(1.085);
  filter: saturate(0.92) contrast(1.08);
}

.practice-corridor {
  position: relative;
  padding-top: clamp(2rem, 5vw, 6rem);
  padding-bottom: clamp(2rem, 5vw, 6rem);
}

.practice-corridor::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(199, 163, 90, 0.34), rgba(245, 241, 232, 0.08), transparent);
}

.practice-corridor-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: clamp(1.55rem, 2.5vw, 2.45rem) 0 clamp(1.55rem, 2.5vw, 2.45rem) clamp(0.4rem, 1vw, 1rem);
  color: var(--ink);
  isolation: isolate;
}

.practice-corridor-item::before {
  content: "";
  position: absolute;
  inset: 0 -2rem 0 -1rem;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(199, 163, 90, 0.13), transparent 18rem),
    linear-gradient(90deg, rgba(245, 241, 232, 0.045), transparent);
  transform: translateX(-18px);
  transition:
    opacity 0.75s cubic-bezier(.19, 1, .22, 1),
    transform 0.75s cubic-bezier(.19, 1, .22, 1);
}

.practice-corridor-item::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(199, 163, 90, 0.7);
  background: #0b0f14;
  transform: translateY(-50%) rotate(45deg);
  transition:
    background 0.45s ease,
    transform 0.45s cubic-bezier(.19, 1, .22, 1);
}

.practice-index {
  color: rgba(199, 163, 90, 0.86);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  padding-top: 0.32rem;
}

.practice-corridor-item strong {
  display: block;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  color: rgba(245, 241, 232, 0.94);
  transition:
    color 0.45s ease,
    transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

.practice-corridor-item em {
  display: block;
  max-width: 520px;
  margin-top: 0.7rem;
  color: rgba(245, 241, 232, 0.48);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.7;
  transition:
    color 0.45s ease,
    transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

.practice-corridor-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.practice-corridor-item:hover::after {
  background: rgba(199, 163, 90, 0.14);
  transform: translateY(-50%) rotate(45deg) scale(1.18);
}

.practice-corridor-item:hover strong,
.practice-corridor-item:hover em {
  transform: translateX(10px);
}

.practice-corridor-item:hover em {
  color: rgba(245, 241, 232, 0.68);
}

@media (max-width: 1080px) {
  .practice-terrain-grid {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 7vw, 5rem);
  }

  .practice-terrain-header p {
    margin-left: 0;
  }

  .practice-landscape {
    min-height: 620px;
  }
}

@media (max-width: 680px) {
  .practice-terrain {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .practice-terrain-header {
    margin-bottom: 56px;
  }

  .practice-terrain-header h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .practice-landscape {
    min-height: 560px;
  }

  .practice-landscape-copy {
    padding: 1.5rem;
  }

  .practice-landscape-copy h3 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .practice-landscape-meta {
    left: 1.2rem;
    right: 1.2rem;
    justify-content: flex-start;
  }

  .practice-corridor::before {
    left: 17px;
  }

  .practice-corridor-item {
    grid-template-columns: 38px 1fr;
    padding-left: 0;
  }

  .practice-corridor-item::after {
    left: 13px;
  }

  .practice-index {
    font-size: 1.1rem;
  }

  .practice-corridor-item strong {
    font-size: clamp(1.48rem, 8vw, 2.2rem);
  }
}

/* LEADERSHIP ARCHITECTURE */

.leadership-architecture {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.98), rgba(23, 29, 37, 0.96) 52%, rgba(12, 16, 21, 0.98));
  border-block: 1px solid var(--line);
}

.leadership-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(199, 163, 90, 0.06), transparent 28rem),
    radial-gradient(circle at 78% 64%, rgba(179, 188, 200, 0.06), transparent 32rem);
}

.leadership-bg-type {
  position: absolute;
  left: -0.04em;
  bottom: 4%;
  color: rgba(243, 244, 246, 0.035);
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.leadership-architecture-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.leadership-stage {
  position: relative;
  min-height: clamp(660px, 70vw, 860px);
  overflow: hidden;
  background: rgba(12, 16, 21, 0.42);
}

.leadership-portrait {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s cubic-bezier(.19, 1, .22, 1),
    transform 1.6s cubic-bezier(.19, 1, .22, 1);
}

.leadership-portrait.active {
  opacity: 1;
  transform: scale(1);
}

.leadership-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.76) contrast(1.04);
}

.leadership-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(199, 163, 90, 0.12), transparent 18rem),
    linear-gradient(180deg, transparent 22%, rgba(12, 16, 21, 0.32) 54%, rgba(12, 16, 21, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 16, 21, 0.7), transparent 58%);
}

.leadership-stage-copy {
  position: absolute;
  left: clamp(1.6rem, 4vw, 4rem);
  right: clamp(1.6rem, 4vw, 4rem);
  bottom: clamp(1.8rem, 4vw, 4rem);
  z-index: 2;
  max-width: 620px;
}

.leadership-stage-copy span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.leadership-stage-copy h3 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.leadership-stage-copy p {
  max-width: 520px;
  margin: 1.2rem 0 1.7rem;
  color: rgba(179, 188, 200, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
}

.leadership-section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 4.2rem);
}

.leadership-section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 3.8vw, 4.4rem);
  line-height: 1.04;
  max-width: 620px;
}

.leader-list {
  display: grid;
}

.leader-item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.4rem;
  padding: clamp(1.3rem, 2.4vw, 2.25rem) 0;
  border: 0;
  border-bottom: 1px solid rgba(179, 188, 200, 0.13);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.leader-item::before {
  content: "";
  position: absolute;
  inset: 0 -2rem;
  opacity: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(199, 163, 90, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(243, 244, 246, 0.035), transparent);
  transform: translateX(-16px);
  transition:
    opacity 0.65s cubic-bezier(.19, 1, .22, 1),
    transform 0.65s cubic-bezier(.19, 1, .22, 1);
}

.leader-index {
  color: rgba(199, 163, 90, 0.75);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  padding-top: 0.4rem;
}

.leader-name {
  display: block;
  color: rgba(243, 244, 246, 0.78);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 5.2rem);
  line-height: 0.95;
  transition:
    color 0.45s ease,
    transform 0.65s cubic-bezier(.19, 1, .22, 1);
}

.leader-practice {
  display: block;
  margin-top: 0.75rem;
  color: rgba(179, 188, 200, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.45s ease,
    transform 0.65s cubic-bezier(.19, 1, .22, 1);
}

.leader-list:hover .leader-item:not(:hover):not(.active) .leader-name,
.leader-list:hover .leader-item:not(:hover):not(.active) .leader-practice {
  color: rgba(179, 188, 200, 0.34);
}

.leader-item:hover::before,
.leader-item.active::before {
  opacity: 1;
  transform: translateX(0);
}

.leader-item:hover .leader-name,
.leader-item.active .leader-name {
  color: var(--ink);
  transform: translateX(10px);
}

.leader-item:hover .leader-practice,
.leader-item.active .leader-practice {
  color: rgba(179, 188, 200, 0.78);
  transform: translateX(10px);
}

@media (max-width: 1080px) {
  .leadership-architecture-grid {
    grid-template-columns: 1fr;
  }

  .leadership-stage {
    min-height: 720px;
  }
}

@media (max-width: 680px) {
  .leadership-stage {
    min-height: 590px;
  }

  .leadership-section-heading {
    margin-bottom: 2.6rem;
  }

  .leader-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .leader-name {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .leadership-stage-copy h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

.leadership-content p {
  max-width: 650px;
  margin: 1.8rem 0 2.2rem;
}



.capability-strip {
  overflow: hidden;
  padding: 1.15rem 0;
  border-block: 1px solid var(--line);
  background: rgba(199, 163, 90, 0.08);
}

.strip-track {
  width: max-content;
  display: flex;
  gap: 2.3rem;
  animation: stripMove 34s linear infinite;
}

.strip-track span {
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes stripMove {
  from { transform: translateX(4vw); }
  to { transform: translateX(-50%); }
}

.strategic-quote blockquote {
  grid-column: 2;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.2vw, 6.4rem);
  line-height: 1.02;
}

.quote-grid .eyebrow {
  padding-top: 0.8rem;
}

.contact-editorial {
  background: linear-gradient(180deg, #171d25, #11161d);
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  margin-bottom: 2rem;
}

.contact-lines {
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.contact-lines a {
  width: fit-content;
  color: var(--ink);
  border-bottom: 1px solid var(--gold-soft);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(245, 241, 232, 0.035);
  color: var(--ink);
  outline: none;
  padding: 1.05rem 1.1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.inquiry-form textarea {
  min-height: 172px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(199, 163, 90, 0.58);
  background: rgba(245, 241, 232, 0.055);
}

.inquiry-form button {
  width: fit-content;
  border: 1px solid rgba(199, 163, 90, 0.42);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  padding: 0.95rem 1.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.inquiry-form button:hover {
  background: var(--gold);
  color: #080b0f;
}


/* HOME PAGE MOBILE OVERLAP FIX */

@media (max-width: 860px) {
  .page-home .split-grid,
  .page-home .statement-grid,
  .page-home .quote-grid,
  .page-home .contact-grid,
  .page-home .practice-terrain-grid,
  .page-home .leadership-architecture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-home .split-copy,
  .page-home .contact-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .page-home .split-statement h2,
  .page-home .statement-grid h2,
  .page-home .quote-grid blockquote,
  .page-home .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .page-home .contact-editorial {
    overflow: hidden;
  }

  .page-home .contact-grid {
    align-items: start;
  }

  .page-home .inquiry-form,
  .page-home form {
    width: 100%;
    max-width: 100%;
  }

  .page-home input,
  .page-home textarea {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-home .split-grid,
  .page-home .statement-grid,
  .page-home .quote-grid,
  .page-home .contact-grid {
    gap: 2rem;
  }

  .page-home .split-statement h2,
  .page-home .statement-grid h2,
  .page-home .quote-grid blockquote,
  .page-home .contact-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
    line-height: 1.04;
  }

  .page-home .section-pad {
    padding: 72px 0;
  }
}

.hero-institutional.hero-background-only .hero-focal-haze {
  display: none;
}

.hero-institutional.hero-image-layer .hero-focal-haze {
  display: block;
}

@media (max-width: 760px) {
  .hero-focal-haze {
  top: 0;
  right: -42vw;
  bottom: 0;
  width: 145vw;
  height: 100%;
    opacity: 0.13;
    background-size: cover;
    background-position: center right;
  }
}

/* HOME LEADERSHIP FLOATING COMPOSITION */

.leadership-composition-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #10161d 0%, #0c1015 100%);
  border-block: 1px solid var(--line);
}

.leadership-composition-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(199, 163, 90, 0.065), transparent 30rem),
    radial-gradient(circle at 82% 42%, rgba(179, 188, 200, 0.05), transparent 34rem);
  opacity: 0.92;
  animation: atmosphereFloat 24s ease-in-out infinite alternate;
}

.leadership-composition-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
  min-height: 860px;
}

.leadership-active-stage {
  position: relative;
  width: min(36vw, 500px);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(179,188,200,0.1);
  background: rgba(12,16,21,0.72);
}

.leadership-active-portrait {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.44s ease;
}

.leadership-active-portrait.active {
  opacity: 1;
}

.leadership-active-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,16,21,0.04), rgba(12,16,21,0.5)),
    linear-gradient(90deg, rgba(12,16,21,0.22), transparent 48%, rgba(12,16,21,0.28));
}

.leadership-active-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.78) saturate(0.5) contrast(1.06) brightness(0.78);
}

.leadership-floating-field {
  position: relative;
  min-height: 820px;
}

.floating-leader {
  position: absolute;
  z-index: 4;
  width: clamp(134px, 10.8vw, 187px);
  color: rgba(243,244,246,0.56);
  text-align: left;
  transition: color 0.36s ease, opacity 0.36s ease, transform 0.36s ease;
}

.floating-leader img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(179,188,200,0.1);
  filter: grayscale(0.86) saturate(0.45) contrast(1.04) brightness(0.72);
  opacity: 0.66;
  transition: opacity 0.36s ease, filter 0.36s ease, border-color 0.36s ease;
}

.floating-leader span {
  display: block;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-leader:hover,
.floating-leader:focus-visible,
.floating-leader.active {
  color: var(--gold);
  transform: translateY(-5px);
}

.floating-leader:hover img,
.floating-leader:focus-visible img,
.floating-leader.active img {
  opacity: 1;
  border-color: rgba(199,163,90,0.34);
  filter: grayscale(0.66) saturate(0.58) contrast(1.08) brightness(0.84);
}

.floating-leader-vivek {
  right: 27%;
  top: 13%;
}

.floating-leader-pradnya {
  top: 19%;
  left: 10%;
}

.floating-leader-rigved {
  left: 75%;
  top: 45%;
}

.floating-leader-vikranti {
  left: 48%;
  bottom: 10%;
}

.leadership-central-message {
  position: absolute;
  left: 32%;
  top: 39%;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

.leadership-central-message h1 {
  color: rgba(243,244,246,0.94);
  font-size: clamp(2.1rem, 3.1vw, 3.8rem);
  line-height: 1;
}

.leadership-central-message span {
  position: relative;
  color: var(--ink);
}

.leadership-central-message span::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.05em;
  height: 0.12em;
  z-index: -1;
  background: rgba(199,163,90,0.16);
}

.leadership-detail-panel {
  position: absolute;
  left: 3%;
  bottom: 5%;
  z-index: 5;
  width: min(360px, 42%);
  padding-left: 1.5rem;
  border-left: 1px solid rgba(199,163,90,0.24);
  background: linear-gradient(90deg, rgba(12,16,21,0.82), rgba(12,16,21,0));
  transition: opacity 0.34s ease;
}

.leadership-detail-panel.is-changing {
  opacity: 0.25;
}

.leadership-detail-panel h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.partner-position {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.leader-focus-list {
  margin-bottom: 1.35rem;
  color: rgba(243,244,246,0.84);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.45vw, 1.65rem);
  line-height: 1.14;
}

.leadership-detail-panel p {
  margin-bottom: 1.5rem;
  color: rgba(243,244,246,0.66);
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .leadership-composition-grid {
    grid-template-columns: 1fr;
  }

  .leadership-active-stage {
    width: min(78vw, 460px);
  }

  .leadership-floating-field {
    min-height: 760px;
  }
}

@media (max-width: 760px) {
  .leadership-composition-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .leadership-active-stage {
    width: min(82vw, 360px);
    margin-inline: auto;
  }

  .leadership-floating-field {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1rem;
    padding-top: 1rem;
  }

  .leadership-central-message {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    order: -1;
    white-space: normal;
    margin-bottom: 1.6rem;
  }

  .leadership-central-message h1 {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    line-height: 0.96;
  }

  .floating-leader {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .floating-leader:hover,
  .floating-leader:focus-visible,
  .floating-leader.active {
    transform: none;
  }

  .floating-leader-rigved,
  .floating-leader-pradnya,
  .floating-leader-vivek,
  .floating-leader-vikranti {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .leadership-detail-panel {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 1.4rem;
    padding-left: 1.2rem;
    background: transparent;
  }
}

/* PRACTICE TRANSITION */

.practice-transition {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0c1015 0%, #11161d 48%, #171d25 100%);
  border-top: 1px solid rgba(179, 188, 200, 0.08);
}

.practice-transition-inner {
  transform: translateY(calc(var(--practice-transition-progress, 0) * -36px));
  opacity: calc(1 - (var(--practice-transition-progress, 0) * 0.28));
  transition: opacity 0.18s linear, transform 0.18s linear;
}

.practice-transition h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(5.6rem, 13vw, 15rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0;
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}

.practice-transition-line {
  display: block;
  width: min(42vw, 560px);
  height: 1px;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  background: rgba(199, 163, 90, 0.8);
  transform: scaleX(0);
  transform-origin: left;
}

.practice-transition.visible .practice-transition-line {
  animation: practiceLineGrow 720ms ease forwards 260ms;
}

.practice-transition p {
  max-width: 680px;
  color: rgba(243,244,246,0.78);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.04;
  opacity: 0;
  transform: translateY(28px);
}

.practice-transition.visible p {
  animation: practiceStatementReveal 720ms ease forwards 980ms;
}

@keyframes practiceLineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes practiceStatementReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .practice-transition {
    min-height: 68vh;
  }

  .practice-transition h2 {
    font-size: clamp(4.6rem, 22vw, 8rem);
  }

  .practice-transition-line {
    width: 72vw;
  }

  .practice-transition p {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }
}

/* PRACTICE SCROLL TRANSITION */

.practice-scroll-transition {
  position: relative;
  height: 220vh;
  margin-bottom: -18vh;
  background:
    linear-gradient(180deg, #0c1015 0%, #11161d 46%, #171d25 100%);
  border-top: 1px solid rgba(179, 188, 200, 0.08);
  z-index: 1;
}

.practice-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.practice-scroll-panel {
  opacity: var(--practice-panel-opacity, 1);
  transform: translateY(var(--practice-panel-y, 0px));
  transition: opacity 0.08s linear, transform 0.08s linear;
}

.practice-scroll-panel h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(5.8rem, 13vw, 15rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
  opacity: var(--practice-word-opacity, 1);
}

.practice-scroll-line {
  display: block;
  width: min(42vw, 560px);
  height: 3px;
  margin-bottom: clamp(2.2rem, 4vw, 3.8rem);
  background: rgba(199, 163, 90, 0.82);
  transform: scaleX(var(--practice-line-scale, 0));
  transform-origin: left;
}

.practice-scroll-panel p {
  max-width: 720px;
  color: rgba(243,244,246,0.78);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  line-height: 1.03;
  opacity: var(--practice-statement-opacity, 0);
  transform: translateY(var(--practice-statement-y, 28px));
}

.practice-scroll-panel p span {
  color: var(--ink);
}

.practice-terrain {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .practice-scroll-transition {
    height: 200vh;
    margin-bottom: -10vh;
  }

  .practice-scroll-panel h2 {
    font-size: clamp(4.8rem, 22vw, 8.5rem);
  }

  .practice-scroll-line {
    width: 72vw;
  }

  .practice-scroll-panel p {
    font-size: clamp(2.1rem, 10vw, 3.8rem);
  }
}