
:root {
  --ink: #09070c;
  --ink-soft: #100b12;
  --aubergine: #24111f;
  --aubergine-light: #3a1b2f;
  --ivory: #f3eee5;
  --ivory-muted: #cfc4b8;
  --copper: #b96f50;
  --copper-light: #e09a77;
  --refract-cyan: #76dce5;
  --refract-lavender: #b99bf2;
  --line: rgba(217, 155, 122, 0.24);
  --glass: rgba(22, 12, 20, 0.46);
  --champagne: #d6c8bf;
  --champagne-soft: #c8b6b0;
  --champagne-deep: #a88e92;
  --champagne-ink: #21141d;
  --pointer-x: 0;
  --pointer-y: 0;
  --journey-progress: 0;
}

@property --edge-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes edge-run {
  to { --edge-angle: 360deg; }
}

@keyframes seam-travel {
  0% { transform: translateY(-115%); opacity: 0; }
  18%, 78% { opacity: 1; }
  100% { transform: translateY(115%); opacity: 0; }
}

@keyframes interface-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.9; }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::selection {
  background: var(--copper);
  color: var(--ink);
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--copper-light);
  outline-offset: 5px;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 15%, rgba(111, 45, 64, 0.16), transparent 28rem),
    var(--ink);
}

/* One persistent doorway for every internal page transition */
.route-transition {
  position: fixed;
  z-index: 1200;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  perspective: 1800px;
}

.route-transition--leaving,
.route-transition--covered,
.route-transition--arriving {
  visibility: visible;
}

.route-transition--leaving,
.route-transition--covered {
  pointer-events: auto;
}

.route-transition__veil {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(117, 47, 78, 0.34), transparent 34rem),
    rgba(6, 4, 7, 0.82);
  backdrop-filter: blur(16px) saturate(122%);
  transition: opacity 0.62s ease;
}

.route-transition--leaving .route-transition__veil,
.route-transition--covered .route-transition__veil {
  opacity: 1;
}

.route-transition--arriving .route-transition__veil {
  opacity: 0;
  transition-duration: 0.9s;
}

.route-transition__door {
  position: absolute;
  top: -3%;
  bottom: -3%;
  width: 50.15%;
  overflow: hidden;
  border-color: rgba(224, 154, 119, 0.34);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 18%, rgba(112, 220, 229, 0.035) 48%, rgba(185, 155, 242, 0.055) 68%, rgba(224, 154, 119, 0.08)),
    rgba(18, 10, 17, 0.78);
  backdrop-filter: blur(30px) saturate(145%);
  box-shadow: inset 0 0 5rem rgba(224, 154, 119, 0.055), 0 0 4rem rgba(0, 0, 0, 0.45);
  transition: transform 0.78s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.route-transition__door--left {
  left: 0;
  border-right: 1px solid rgba(232, 183, 152, 0.38);
  border-radius: 0 48% 48% 0 / 0 9% 9% 0;
  transform: translateX(-102%);
}

.route-transition__door--right {
  right: 0;
  border-left: 1px solid rgba(232, 183, 152, 0.38);
  border-radius: 48% 0 0 48% / 9% 0 0 9%;
  transform: translateX(102%);
}

.route-transition--leaving .route-transition__door,
.route-transition--covered .route-transition__door {
  transform: translateX(0);
}

.route-transition--arriving .route-transition__door--left {
  transform: translateX(-102%);
  transition-delay: 0.12s;
}

.route-transition--arriving .route-transition__door--right {
  transform: translateX(102%);
  transition-delay: 0.12s;
}

.route-transition__glass {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(241, 204, 179, 0.15);
  border-radius: inherit;
  background:
    radial-gradient(circle at 26% 22%, rgba(118, 220, 229, 0.08), transparent 19rem),
    radial-gradient(circle at 78% 72%, rgba(185, 155, 242, 0.08), transparent 20rem);
}

.route-transition__door i {
  position: absolute;
  top: 50%;
  width: 0.22rem;
  height: 3rem;
  border-radius: 2rem;
  background: linear-gradient(var(--refract-cyan), var(--copper-light), var(--refract-lavender));
  box-shadow: 0 0 1.4rem rgba(224, 154, 119, 0.54);
}

.route-transition__door--left i { right: 1.1rem; }
.route-transition__door--right i { left: 1.1rem; }

.route-transition__destination {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  width: min(80vw, 42rem);
  opacity: 0;
  text-align: center;
  transform: translate(-50%, -42%);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.route-transition--leaving .route-transition__destination,
.route-transition--covered .route-transition__destination {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition-delay: 0.38s;
}

.route-transition__destination span {
  color: var(--copper-light);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.route-transition__destination strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.route-transition__seam {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0;
  overflow: hidden;
  background: linear-gradient(transparent, rgba(118, 220, 229, 0.85), var(--copper-light), rgba(185, 155, 242, 0.82), transparent);
  box-shadow: 0 0 1.2rem rgba(160, 179, 221, 0.6), 0 0 3.5rem rgba(224, 154, 119, 0.38);
}

.route-transition--covered .route-transition__seam,
.route-transition--leaving .route-transition__seam {
  opacity: 1;
  animation: seam-travel 1.2s ease-in-out infinite;
  animation-delay: 0.4s;
}

.preloader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(92, 40, 61, 0.22), transparent 30rem),
    #070509;
  overflow: hidden;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  inset: 7.5%;
  border: 1px solid rgba(206, 133, 98, 0.13);
  border-radius: 50% 50% 44% 44% / 20% 20% 12% 12%;
  transform: scale(1.35);
}

.preloader::after {
  inset: 13%;
  border-color: rgba(206, 133, 98, 0.07);
  transform: scale(1.1);
}

.loader-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.loader-word {
  display: flex;
  overflow: hidden;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.loader-word span {
  display: inline-block;
}

.loader-line {
  width: 15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
  transform-origin: center;
}

.loader-inner small {
  color: rgba(243, 238, 229, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
}

.brand-word {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand--compact .brand-word {
  font-size: 1.8rem;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 0.42rem);
  gap: 0.08rem;
  width: 0.92rem;
  height: 0.92rem;
  transform: rotate(45deg);
}

.brand-mark i {
  display: block;
  border: 1px solid var(--copper-light);
}

.loader-mark {
  grid-template-columns: repeat(2, 0.62rem);
  gap: 0.12rem;
  width: 1.36rem;
  height: 1.36rem;
  margin-bottom: 0.4rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 1.2vw;
  width: calc(100% - 2.4vw);
  height: 4.8rem;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  padding: 0 3.2vw;
  border: 1px solid rgba(224, 154, 119, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 26%, rgba(118, 220, 229, 0.025) 54%, rgba(185, 155, 242, 0.035)),
    rgba(11, 7, 11, 0.58);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 1.2rem 4rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(26px) saturate(145%);
}

.nav {
  position: relative;
  display: flex;
  gap: clamp(1.4rem, 2.8vw, 3rem);
  align-items: center;
  padding: 0.7rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(224, 154, 119, 0.14);
  border-radius: 999px;
  background: rgba(34, 18, 30, 0.28);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 0.7rem 2.4rem rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(22px) saturate(140%);
}

.nav a,
.header-contact {
  position: relative;
  color: rgba(243, 238, 229, 0.74);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav a {
  padding: 0.28rem 0.22rem;
  border-radius: 999px;
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover,
.nav a.is-current {
  color: var(--ivory);
  text-shadow: 0 0 1.2rem rgba(118, 220, 229, 0.35), 0 0 1.8rem rgba(185, 155, 242, 0.22);
  transform: translateY(-1px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 100%;
  height: 1px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper-light);
}

.arrow {
  display: inline-block;
  font-family: sans-serif;
  font-size: 0.95em;
  font-weight: 300;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover .arrow {
  transform: translate(0.2rem, -0.2rem);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.45rem 0;
  background: var(--ivory);
}

/* Smoked-glass title plaques */
.hero-copy,
.chapter-copy,
.inner-hero__copy {
  isolation: isolate;
  overflow: visible;
  padding: clamp(1.3rem, 2.2vw, 2.25rem);
  border: 1px solid rgba(224, 154, 119, 0.17);
  border-radius: 1.25rem;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.07), transparent 29%, rgba(118, 220, 229, 0.025) 58%, rgba(185, 155, 242, 0.035)),
    rgba(15, 8, 14, 0.31);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 1.5rem 4.5rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(17px) saturate(132%);
}

/* Keep all editorial copy above glass/refraction decoration in every browser. */
.hero-copy > *,
.chapter-copy > *,
.inner-hero__copy > * {
  position: relative;
  z-index: 2;
}

.hero-copy::after,
.chapter-copy::after,
.inner-hero__copy::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  right: 0.85rem;
  width: 1.15rem;
  height: 1.15rem;
  border-top: 1px solid rgba(118, 220, 229, 0.56);
  border-right: 1px solid rgba(185, 155, 242, 0.5);
  pointer-events: none;
}

.chapter-copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chapter--expertise {
  background:
    linear-gradient(128deg, rgba(46, 20, 40, 0.88), rgba(118, 220, 229, 0.07) 56%, rgba(224, 154, 119, 0.16)),
    rgba(10, 6, 10, 0.62);
}

.chapter--experience {
  background:
    linear-gradient(128deg, rgba(35, 17, 33, 0.9), rgba(185, 155, 242, 0.1) 54%, rgba(185, 95, 74, 0.16)),
    rgba(10, 6, 10, 0.62);
}

.chapter--partnership {
  background:
    linear-gradient(128deg, rgba(40, 18, 34, 0.9), rgba(224, 154, 119, 0.13) 52%, rgba(118, 220, 229, 0.06)),
    rgba(10, 6, 10, 0.62);
}

.chapter-copy .chapter-title {
  color: var(--ivory);
  background: linear-gradient(108deg, #f3eee5 6%, #e8c4ac 52%, #c98669 84%, #b99bf2 112%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy:hover,
.chapter-copy:hover,
.inner-hero__copy:hover {
  border-color: rgba(224, 154, 119, 0.32);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1.8rem 5.5rem rgba(0, 0, 0, 0.3), 0 0 3rem rgba(118, 220, 229, 0.035);
}

/* A restrained cyan → lavender → copper light travels around interactive edges. */
.nav::before,
.button::after,
.expertise-card::after,
.management-ledger span::after,
.advisory-copy li::after,
.principle-list article::after,
.insight-card::before,
.inner-list__item::after,
.inner-intro__aside::after,
.inner-next::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  opacity: 0.42;
  background: conic-gradient(from var(--edge-angle), transparent 0 65%, rgba(118, 220, 229, 0.92) 72%, rgba(185, 155, 242, 0.9) 77%, rgba(224, 154, 119, 0.95) 82%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: edge-run 5.5s linear infinite;
}

.nav:hover::before,
.button:hover::after,
.expertise-card:hover::after,
.management-ledger span:hover::after,
.advisory-copy li:hover::after,
.principle-list article:hover::after,
.insight-card:hover::before,
.inner-list__item:hover::after,
.inner-intro__aside:hover::after,
.inner-next:hover::after {
  opacity: 1;
  animation-duration: 2.8s;
}

.journey {
  position: relative;
  height: 500svh;
  background: var(--ink);
}

.journey-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: #08060a;
}

.scene,
.scene-vignette,
.ambient-light {
  position: absolute;
  inset: 0;
}

.scene {
  z-index: -4;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(calc(1.035 + (var(--pointer-y) * 0.005))) translate(calc(var(--pointer-x) * -0.35rem), calc(var(--pointer-y) * -0.22rem));
  will-change: transform, opacity, filter;
}

.scene--arrival {
  background-image:
    linear-gradient(90deg, rgba(7, 5, 9, 0.88) 0%, rgba(7, 5, 9, 0.45) 38%, rgba(7, 5, 9, 0.06) 78%),
    url("../images/arrival-hall.png");
}

.scene--expertise {
  opacity: 0;
  transform: scale(1.075);
  background-image:
    linear-gradient(90deg, rgba(7, 5, 9, 0.91) 0%, rgba(14, 8, 13, 0.56) 42%, rgba(7, 5, 9, 0.04) 80%),
    url("../images/expertise-salon.webp");
}

.scene--experience {
  opacity: 0;
  transform: scale(1.075);
  background-image:
    linear-gradient(90deg, rgba(7, 5, 9, 0.9) 0%, rgba(14, 8, 13, 0.52) 40%, rgba(7, 5, 9, 0.04) 82%),
    url("../images/experience-suite.webp");
}

.scene--partnership {
  opacity: 0;
  transform: scale(1.07);
  background-image:
    linear-gradient(90deg, rgba(7, 5, 9, 0.94) 0%, rgba(21, 11, 19, 0.63) 48%, rgba(7, 5, 9, 0.16) 100%),
    radial-gradient(ellipse at 72% 42%, rgba(190, 101, 70, 0.28), transparent 25%),
    url("../images/contact-lounge.webp");
  filter: saturate(0.72) contrast(1.08);
}

.scene-vignette {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 4, 8, 0.75), transparent 18%, transparent 75%, rgba(6, 4, 8, 0.76)),
    radial-gradient(ellipse at center, transparent 45%, rgba(5, 3, 7, 0.45));
  pointer-events: none;
}

.ambient-light {
  z-index: -2;
  background: radial-gradient(circle at calc(72% + (var(--pointer-x) * 2%)) calc(46% + (var(--pointer-y) * 2%)), rgba(213, 122, 83, 0.15), transparent 26rem);
  mix-blend-mode: screen;
  pointer-events: none;
}

.portal-wrap {
  position: absolute;
  z-index: 2;
  top: 6.8rem;
  right: 1.2vw;
  width: min(58vw, 940px);
  height: calc(100svh - 8.8rem);
  perspective: 1700px;
  pointer-events: none;
  transform: translate(calc(var(--pointer-x) * 0.55rem), calc(var(--pointer-y) * 0.35rem));
  transition: transform 0.3s ease-out;
}

.portal {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  will-change: transform;
}

.portal-depth {
  position: absolute;
  inset: 4% 7% 5%;
  border-radius: 44% 44% 2.2rem 2.2rem / 25% 25% 2.2rem 2.2rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 10%, transparent 90%, rgba(0, 0, 0, 0.65));
  box-shadow: inset 0 0 6rem rgba(0, 0, 0, 0.72), 0 2rem 5rem rgba(0, 0, 0, 0.32);
}

.portal-frame {
  position: absolute;
  pointer-events: none;
}

.portal-frame--outer {
  inset: 0 3% 1%;
  border: 1px solid rgba(225, 159, 121, 0.42);
  border-width: 1px 2px 0;
  border-radius: 42% 42% 2rem 2rem / 24% 24% 2rem 2rem;
  box-shadow:
    inset 1.5rem 0 3rem rgba(30, 11, 22, 0.2),
    0 0 2.5rem rgba(183, 100, 68, 0.08);
}

.portal-frame--inner {
  inset: 4.3% 7.2% 7%;
  border: 1px solid rgba(239, 182, 147, 0.32);
  border-radius: 40% 40% 1.2rem 1.2rem / 22% 22% 1.2rem 1.2rem;
}

.door {
  position: absolute;
  z-index: 5;
  top: 5%;
  bottom: 8%;
  width: 42.8%;
  overflow: hidden;
  border: 1px solid rgba(236, 192, 164, 0.34);
  background:
    linear-gradient(100deg, rgba(223, 173, 146, 0.12), transparent 18%, rgba(4, 8, 14, 0.12) 52%, rgba(222, 165, 129, 0.09)),
    rgba(13, 17, 24, 0.25);
  backdrop-filter: blur(2px) saturate(112%);
  box-shadow: inset 0 0 2rem rgba(237, 171, 132, 0.05);
  transform-style: preserve-3d;
  will-change: transform;
}

.door--left {
  left: 7.1%;
  border-radius: 48% 0 0 0 / 23% 0 0 0;
  transform-origin: left center;
}

.door--right {
  right: 7.1%;
  border-radius: 0 48% 0 0 / 0 23% 0 0;
  transform-origin: right center;
}

.door span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(237, 185, 151, 0.52), transparent);
}

.door--left span { right: 8%; }
.door--right span { left: 8%; }

.door i {
  position: absolute;
  top: 50%;
  width: 0.22rem;
  height: 2rem;
  border-radius: 2rem;
  background: var(--copper-light);
  box-shadow: 0 0 1.2rem rgba(224, 154, 119, 0.45);
}

.door--left i { right: 1rem; }
.door--right i { left: 1rem; }

.portal-step {
  position: absolute;
  z-index: 7;
  left: 4%;
  right: 4%;
  height: 4.5%;
  bottom: 4%;
  border-top: 1px solid rgba(240, 188, 154, 0.42);
  background: linear-gradient(180deg, rgba(61, 42, 46, 0.72), rgba(5, 4, 7, 0.82));
  transform: perspective(800px) rotateX(68deg);
  transform-origin: bottom;
  box-shadow: 0 -0.25rem 1.1rem rgba(219, 136, 91, 0.13);
}

.portal-step--2 { left: 9%; right: 9%; bottom: 7%; opacity: 0.8; }
.portal-step--3 { left: 14%; right: 14%; bottom: 10%; opacity: 0.6; }

.expertise-orbits,
.experience-rings,
.partner-beam {
  position: absolute;
  z-index: 8;
  pointer-events: none;
}

.expertise-orbits {
  top: 20%;
  right: 9%;
  display: grid;
  gap: 0.55rem;
}

.expertise-orbits span {
  display: block;
  width: 8.5rem;
  height: 3.2rem;
  border: 1px solid rgba(224, 154, 119, 0.38);
  border-radius: 0.6rem;
  background: rgba(26, 16, 24, 0.28);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform-origin: right;
}

.expertise-orbits span:nth-child(2) { margin-left: -2.6rem; }
.expertise-orbits span:nth-child(3) { margin-left: -5.2rem; }

.experience-rings {
  inset: 15% 9% 18%;
}

.experience-rings span {
  position: absolute;
  border: 1px solid rgba(224, 154, 119, 0.32);
  border-radius: 48% 48% 1.2rem 1.2rem / 32% 32% 1.2rem 1.2rem;
  opacity: 0;
}

.experience-rings span:first-child { inset: 5%; }
.experience-rings span:last-child { inset: 15%; }

.partner-beam {
  top: 12%;
  bottom: 14%;
  left: 50%;
  width: 1px;
  opacity: 0;
  transform-origin: bottom;
  background: linear-gradient(transparent, rgba(255, 216, 184, 0.8), transparent);
  box-shadow: 0 0 2rem rgba(224, 154, 119, 0.8), 0 0 7rem rgba(224, 154, 119, 0.45);
}

.hero-copy,
.chapter-copy {
  position: absolute;
  z-index: 10;
  left: clamp(1.8rem, 6.9vw, 8rem);
  width: min(41rem, 45vw);
}

.hero-copy {
  top: 50%;
  width: min(38rem, 40vw);
  padding: clamp(1.25rem, 1.8vw, 1.85rem);
  border-color: rgba(224, 154, 119, 0.2);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.055), transparent 30%, rgba(118, 220, 229, 0.018) 63%, rgba(185, 155, 242, 0.026)),
    rgba(12, 7, 12, 0.34);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 1.25rem 3.5rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(11px) saturate(125%);
  transform: translateY(-43%);
}

.eyebrow,
.chapter-eyebrow,
.section-kicker {
  margin: 0;
  color: var(--copper-light);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 1;
}

.hero-kicker span:last-child {
  color: rgba(243, 238, 229, 0.48);
}

.hero-kicker span:last-child::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  margin-right: 1rem;
  vertical-align: middle;
  background: rgba(224, 154, 119, 0.42);
}

.hero-title {
  margin: 1.2rem 0 1.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.9rem, 6.7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.73;
  letter-spacing: -0.067em;
}

.hero-title .line {
  display: block;
  padding-bottom: 0.11em;
  overflow: visible;
}

.hero-title .line span {
  display: inline-block;
  opacity: 1;
}

.hero-title .line:last-child {
  margin-left: 0.34em;
  font-style: italic;
}

.hero-summary {
  max-width: 35rem;
  margin: 0 0 2.15rem;
  color: rgba(243, 238, 229, 0.72);
  font-size: clamp(0.92rem, 1.15vw, 1.12rem);
  line-height: 1.8;
  opacity: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  opacity: 1;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 3.8rem;
  padding: 0.2rem 1.65rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--copper), var(--copper-light));
  transform: translateX(-102%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

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

.button:hover::before {
  transform: translateX(0);
}

.button--solid {
  color: #150c11;
  background: linear-gradient(115deg, var(--copper-light), #c87959);
  box-shadow: 0 1rem 3.5rem rgba(169, 84, 54, 0.16);
}

.button--solid::before {
  background: linear-gradient(115deg, #f0bb99, var(--copper-light));
}

.button--outline {
  border-color: rgba(224, 154, 119, 0.46);
  color: var(--ivory);
}

.text-link,
.chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--copper);
  color: var(--copper-light);
  font-size: 0.72rem;
  font-weight: 400;
}

.chapter-copy {
  top: 50%;
  transform: translateY(-47%);
  pointer-events: none;
}

.chapter-copy > * {
  opacity: 1;
}

.chapter-title {
  margin: 0.9rem 0 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.8rem, 10vw, 11rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.068em;
  font-style: italic;
}

.chapter-text {
  max-width: 33rem;
  color: rgba(243, 238, 229, 0.72);
  font-size: clamp(0.9rem, 1.05vw, 1.06rem);
  line-height: 1.8;
}

.chapter-link {
  margin-top: 1.4rem;
  pointer-events: auto;
}

.chapter-index {
  position: absolute;
  z-index: 15;
  left: 3.2vw;
  bottom: 2.35rem;
  display: flex;
  gap: 1.4rem;
}

.chapter-index span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(243, 238, 229, 0.27);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.5s ease;
}

.chapter-index span i {
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter-index span b {
  font-weight: 400;
}

.chapter-index span.is-active {
  color: var(--ivory);
}

.chapter-index span.is-active i {
  width: 1.8rem;
}

.scroll-cue {
  position: absolute;
  z-index: 12;
  right: 3.2vw;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(243, 238, 229, 0.5);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 2.8rem;
  overflow: hidden;
  background: rgba(243, 238, 229, 0.18);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--copper-light);
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.section-pad {
  padding: clamp(6rem, 11vw, 11rem) clamp(1.5rem, 6vw, 7rem);
}

.section-label {
  width: max-content;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(224, 154, 119, 0.16);
  border-radius: 999px;
  background: rgba(28, 14, 24, 0.24);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px) saturate(132%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--copper);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-label i {
  width: 4rem;
  height: 1px;
  background: var(--copper);
}

.manifesto {
  position: relative;
  background:
    radial-gradient(circle at 15% 35%, rgba(146, 66, 74, 0.12), transparent 27rem),
    var(--ink-soft);
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  right: 6vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(224, 154, 119, 0.16), transparent);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3.2fr;
  gap: 8vw;
  align-items: start;
  margin-top: 7rem;
}

.manifesto-aside {
  max-width: 17rem;
  margin: 0;
  color: rgba(243, 238, 229, 0.46);
  font-size: 0.8rem;
  line-height: 1.8;
}

.display-copy {
  max-width: 72rem;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 6.8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

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

.manifesto-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
  margin-top: 7rem;
  color: rgba(243, 238, 229, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto-foot i {
  width: 0.22rem;
  height: 0.22rem;
  border: 1px solid var(--copper-light);
  transform: rotate(45deg);
}

.expertise-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(97, 44, 71, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 86%, rgba(224, 154, 119, 0.2), transparent 30rem),
    linear-gradient(135deg, var(--champagne) 0%, var(--champagne-soft) 58%, var(--champagne-deep) 135%);
  color: var(--champagne-ink);
}

.expertise-section .section-head h2,
.advisory-section .display-copy,
.insights-section .section-head h2 {
  color: var(--aubergine);
  background: linear-gradient(108deg, #21141d 4%, #5d2948 46%, #a85859 76%, #b96f50 103%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 5.5rem;
}

.section-head h2,
.principle-intro h2 {
  max-width: 50rem;
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.section-head > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(24, 16, 22, 0.62);
  font-size: 0.86rem;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
  perspective: 1200px;
}

.expertise-card {
  --rx: 0deg;
  --ry: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 28rem;
  padding: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(75, 36, 60, 0.2);
  border-radius: 0.95rem;
  background: rgba(246, 234, 225, 0.28);
  box-shadow: inset 0 1px rgba(255, 246, 239, 0.52), 0 1.2rem 3rem rgba(63, 34, 50, 0.11);
  backdrop-filter: blur(20px) saturate(125%);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.22s ease-out, background 0.45s ease, color 0.45s ease;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(104, 48, 71, 0.98), rgba(17, 10, 15, 0.98));
  transform: translateY(101%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover {
  z-index: 2;
  color: var(--ivory);
  transform: translateY(-0.55rem) rotateX(var(--rx)) rotateY(var(--ry)) scale(1.012);
  box-shadow: 0 1.8rem 4rem rgba(38, 17, 29, 0.2);
}

.expertise-card:hover::before {
  transform: translateY(0);
}

.card-shine {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(243, 192, 161, 0.2), transparent 13rem);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.expertise-card:hover .card-shine { opacity: 1; }

.expertise-card > *:not(.card-shine) {
  position: relative;
  z-index: 2;
  transform: translateZ(24px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: var(--copper);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expertise-card h3 {
  max-width: 17rem;
  margin: 8rem 0 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.expertise-card p {
  max-width: 22rem;
  margin: 0;
  color: rgba(24, 16, 22, 0.56);
  font-size: 0.72rem;
  line-height: 1.75;
  transition: color 0.4s ease;
}

.expertise-card:hover p { color: rgba(243, 238, 229, 0.62); }

.expertise-card a {
  position: absolute !important;
  bottom: 2.2rem;
  left: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--copper-light);
  font-size: 0.68rem;
}

.management-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 48%, rgba(140, 56, 83, 0.2), transparent 31rem),
    #0d080d;
}

.management-copy {
  position: relative;
  z-index: 3;
  min-height: 88svh;
}

.giant-number {
  margin: 4rem 0 0;
  color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(12rem, 28vw, 32rem);
  line-height: 0.6;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(224, 154, 119, 0.25);
}

.management-statement {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 8vw;
  align-items: end;
  margin-top: 6rem;
  margin-left: 23vw;
}

.management-statement h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.management-statement p {
  margin: 0 0 2rem;
  color: rgba(243, 238, 229, 0.58);
  font-size: 0.78rem;
  line-height: 1.8;
}

.management-orb {
  position: absolute;
  top: 18%;
  right: -7vw;
  width: min(47vw, 48rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(224, 154, 119, 0.18);
  background: radial-gradient(circle at 34% 29%, rgba(232, 151, 109, 0.24), rgba(86, 27, 51, 0.08) 24%, rgba(3, 2, 4, 0.92) 69%);
  box-shadow: inset -4rem -3rem 8rem #030204, 0 0 6rem rgba(156, 53, 84, 0.12);
}

.management-orb span {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(224, 154, 119, 0.14);
  border-radius: 50%;
}

.management-orb span:nth-child(2) { inset: 22%; }
.management-orb span:nth-child(3) { inset: 38%; background: radial-gradient(circle at 40% 35%, rgba(245, 183, 147, 0.22), transparent 60%); }

.management-ledger {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.management-ledger span {
  position: relative;
  overflow: hidden;
  min-height: 7.5rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  background: rgba(37, 18, 32, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  color: var(--copper);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.management-ledger span:hover {
  background: rgba(78, 34, 61, 0.36);
  transform: translateY(-0.3rem);
}

.management-ledger b {
  display: block;
  margin-top: 2.3rem;
  color: var(--ivory);
  font-size: 0.67rem;
  font-weight: 400;
}

.advisory-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(224, 154, 119, 0.19), transparent 25rem),
    radial-gradient(circle at 90% 75%, rgba(72, 30, 58, 0.2), transparent 28rem),
    linear-gradient(145deg, #d3c4bb, #bea9a7 64%, #a7898f 120%);
  color: var(--champagne-ink);
}

.advisory-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10vw;
  margin-top: 7rem;
}

.advisory-copy {
  padding-top: 0.6rem;
}

.advisory-copy > p {
  margin: 0 0 3.5rem;
  color: rgba(23, 16, 22, 0.64);
  font-size: 0.8rem;
  line-height: 1.85;
}

.advisory-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisory-copy li {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
  padding: 1.25rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(91, 48, 70, 0.12);
  border-radius: 0.65rem;
  background: rgba(246, 234, 226, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  font-size: 0.73rem;
}

.advisory-copy li:hover {
  background: rgba(246, 234, 226, 0.43);
  transform: translateX(0.45rem);
}

.advisory-copy li span {
  color: var(--copper);
  font-size: 0.58rem;
}

.principles {
  background: var(--aubergine);
}

.principle-intro {
  max-width: 65rem;
  margin-bottom: 6rem;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 0;
}

.principle-list article {
  position: relative;
  min-height: 18rem;
  padding: 1.7rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(224, 154, 119, 0.14);
  border-radius: 0.85rem;
  background: rgba(14, 8, 13, 0.3);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.principle-list article:hover {
  background: rgba(52, 24, 43, 0.58);
  transform: translateY(-0.55rem);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.2);
}

.principle-list span {
  color: var(--copper-light);
  font-size: 0.56rem;
}

.principle-list h3 {
  margin: 7rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.principle-list p {
  margin: 0;
  color: rgba(243, 238, 229, 0.5);
  font-size: 0.68rem;
  line-height: 1.7;
}

.insights-section {
  background:
    radial-gradient(circle at 76% 16%, rgba(80, 34, 65, 0.18), transparent 26rem),
    linear-gradient(125deg, #d8cbc1, #c5b2ad 62%, #ac9195 125%);
  color: var(--champagne-ink);
}

.insights-section .text-link {
  justify-self: end;
  border-image: linear-gradient(90deg, #6b3150, #b96f50, #8c5f78) 1;
  color: #6b3150;
  background: linear-gradient(102deg, #542440, #a85859 63%, #7b4966);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.insight-card {
  position: relative;
  padding: 0.9rem 0.9rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(91, 48, 70, 0.12);
  border-radius: 0.95rem;
  background: rgba(246, 234, 226, 0.25);
  box-shadow: inset 0 1px rgba(255, 246, 239, 0.5), 0 1.2rem 3rem rgba(63, 34, 50, 0.1);
  backdrop-filter: blur(18px) saturate(125%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.insight-card:hover {
  transform: translateY(-0.65rem);
  box-shadow: 0 1.8rem 4rem rgba(63, 34, 50, 0.16);
}

.insight-visual {
  position: relative;
  height: clamp(21rem, 36vw, 35rem);
  margin-bottom: 1.7rem;
  overflow: hidden;
  background-color: var(--aubergine);
}

.insight-visual::before,
.insight-visual::after {
  content: "";
  position: absolute;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-visual--1 {
  background:
    linear-gradient(145deg, rgba(19, 11, 18, 0.28), rgba(61, 29, 50, 0.58)),
    url("../images/insights-gallery.webp") center / cover no-repeat;
}

.insight-visual--1::before {
  inset: 18% -18% -30% 33%;
  border: 1px solid rgba(240, 179, 142, 0.52);
  border-radius: 50% 50% 0 0;
  box-shadow: inset 0 0 5rem rgba(238, 139, 99, 0.14);
}

.insight-visual--2 {
  background:
    linear-gradient(135deg, rgba(33, 18, 30, 0.32), rgba(11, 7, 11, 0.64)),
    url("../images/arrival-hall.png") center / cover no-repeat;
}

.insight-visual--2::before {
  inset: 13% 18%;
  border: 1px solid rgba(240, 179, 142, 0.4);
  transform: rotate(45deg);
  box-shadow: inset 0 0 4rem rgba(187, 89, 72, 0.2);
}

.insight-visual--2::after {
  inset: 28% 33%;
  border: 1px solid rgba(240, 179, 142, 0.3);
  transform: rotate(45deg);
}

.insight-visual--3 {
  background:
    radial-gradient(circle at 50% 65%, rgba(224, 154, 119, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(13, 9, 13, 0.32), rgba(84, 38, 63, 0.62)),
    url("../images/about-salon.webp") center / cover no-repeat;
}

.insight-visual--3::before {
  width: 1px;
  height: 84%;
  left: 50%;
  bottom: 0;
  background: linear-gradient(transparent, #e9b38f);
  box-shadow: 0 0 3rem rgba(224, 154, 119, 0.75);
}

.insight-card:hover .insight-visual::before { transform: scale(1.08) rotate(1deg); }
.insight-card:hover .insight-visual--2::before,
.insight-card:hover .insight-visual--2::after { transform: scale(1.08) rotate(50deg); }

.insight-visual > span {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  color: var(--copper-light);
  font-size: 0.58rem;
}

.insight-card > p {
  margin: 0 0 0.8rem;
  color: var(--copper);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insight-card h3 {
  max-width: 27rem;
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.insight-card > span {
  display: block;
  max-width: 26rem;
  color: rgba(24, 16, 22, 0.55);
  font-size: 0.68rem;
  line-height: 1.65;
}

.insight-card > a {
  position: absolute;
  right: 0.7rem;
  bottom: 2rem;
  color: var(--copper);
}

.contact-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88svh;
  padding: 8rem 1.5rem;
  overflow: hidden;
  text-align: center;
  background: #09060a;
}

.contact-section h2 {
  position: relative;
  z-index: 2;
  max-width: 68rem;
  margin: 1.4rem auto 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 9vw, 10rem);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: -0.065em;
}

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

.contact-section > p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: rgba(243, 238, 229, 0.5);
  font-size: 0.78rem;
  line-height: 1.8;
}

.contact-section .button {
  position: relative;
  z-index: 2;
}

.contact-glow {
  position: absolute;
  width: min(56vw, 50rem);
  aspect-ratio: 1;
  border: 1px solid rgba(224, 154, 119, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 42, 67, 0.38), transparent 60%);
  box-shadow: 0 0 8rem rgba(130, 46, 72, 0.18);
}

.contact-glow::before,
.contact-glow::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(224, 154, 119, 0.1);
  border-radius: 50%;
}

.contact-glow::after { inset: 24%; }

.site-footer {
  padding: 5rem 6vw 2rem;
  border-top: 1px solid var(--line);
  background: #070508;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: 5rem;
}

.footer-main > p {
  max-width: 26rem;
  margin: 0;
  color: rgba(243, 238, 229, 0.42);
  font-size: 0.7rem;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.footer-links a {
  color: rgba(243, 238, 229, 0.66);
  font-size: 0.7rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(224, 154, 119, 0.12);
  color: rgba(243, 238, 229, 0.3);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom > div {
  justify-self: end;
  display: flex;
  gap: 1.6rem;
}

/* Interior pages */
.interior-page {
  min-height: 100vh;
  background: var(--ink);
}

.nav a.is-current { color: var(--copper-light); }

.inner-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #080509;
}

.inner-scene {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.76) contrast(1.08);
}

.interior-page--expertise .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.95), rgba(7, 5, 9, 0.55) 48%, rgba(7, 5, 9, 0.14)), url("../images/expertise-salon.webp");
}

.interior-page--management .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.95), rgba(7, 5, 9, 0.57) 48%, rgba(7, 5, 9, 0.13)), url("../images/experience-suite.webp");
}

.interior-page--advisory .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.56) 50%, rgba(7, 5, 9, 0.15)), url("../images/arrival-hall.png");
}

.interior-page--about .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.57) 49%, rgba(7, 5, 9, 0.13)), url("../images/about-salon.webp");
}

.interior-page--insights .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.56) 48%, rgba(7, 5, 9, 0.12)), url("../images/insights-gallery.webp");
}

.interior-page--contact .inner-scene {
  background-image: linear-gradient(90deg, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.58) 48%, rgba(7, 5, 9, 0.13)), url("../images/contact-lounge.webp");
}

.inner-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 7, 0.52), transparent 25%, transparent 72%, #080509), radial-gradient(ellipse at center, transparent 40%, rgba(4, 2, 5, 0.45));
}

/* Futuristic page shell: the two rails arrive only after the glass doors open. */
.inner-interface {
  position: absolute;
  z-index: 0;
  inset: 6.4rem 1.2vw 1.6rem;
  overflow: hidden;
  pointer-events: none;
}

.inner-interface__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.9rem, 5vw, 4.8rem);
  overflow: hidden;
  border: 1px solid rgba(224, 154, 119, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(118, 220, 229, 0.025) 64%, rgba(185, 155, 242, 0.04)),
    rgba(15, 8, 14, 0.12);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 1.6rem 5rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px) saturate(112%);
  will-change: transform, opacity;
}

.inner-interface__panel::before,
.inner-interface__panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.inner-interface__panel::before {
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(224, 154, 119, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 154, 119, 0.055) 1px, transparent 1px);
  background-size: 3.2rem 3.2rem;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.inner-interface__panel::after {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--copper-light);
  transform: rotate(45deg);
  animation: interface-pulse 2.2s ease-in-out infinite;
}

.inner-interface__panel--left {
  left: 0;
  border-radius: 1.2rem 5rem 1.2rem 1.2rem;
  clip-path: polygon(0 0, 88% 0, 100% 8%, 100% 92%, 88% 100%, 0 100%);
}

.inner-interface__panel--left::after { left: 1.4rem; bottom: 1.4rem; }

.inner-interface__panel--right {
  right: 0;
  border-radius: 5rem 1.2rem 1.2rem 1.2rem;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 92%, 0 8%);
}

.inner-interface__panel--right::after { right: 1.4rem; top: 1.4rem; }

.inner-interface__panel small,
.inner-interface__panel b {
  position: absolute;
  z-index: 2;
  color: rgba(243, 238, 229, 0.35);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: none;
}

.inner-interface__panel--left small { top: 1.35rem; left: 1.4rem; }
.inner-interface__panel--left b { right: 2.4rem; bottom: 1.35rem; }
.inner-interface__panel--right small { top: 1.35rem; left: 2.4rem; }
.inner-interface__panel--right b { right: 1.4rem; bottom: 1.35rem; }

.inner-interface__scan {
  position: absolute;
  z-index: 3;
  top: 9%;
  bottom: 9%;
  width: 1px;
  transform-origin: top;
  background: linear-gradient(transparent, rgba(118, 220, 229, 0.78), var(--copper-light), rgba(185, 155, 242, 0.72), transparent);
  box-shadow: 0 0 1.4rem rgba(159, 179, 221, 0.42);
}

.inner-interface__panel--left .inner-interface__scan { right: 1.3rem; }
.inner-interface__panel--right .inner-interface__scan { left: 1.3rem; }

.inner-hero__copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(1.6rem, 7vw, 8rem);
  width: min(54rem, 61vw);
  transform: translateY(-42%);
  will-change: transform, opacity;
}

.inner-hero__eyebrow {
  margin: 0 0 1.5rem;
  color: var(--copper-light);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  opacity: 1;
}

.inner-hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.8rem, 10vw, 11.5rem);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: -0.067em;
}

.inner-hero__title span {
  display: block;
  opacity: 1;
}

.inner-hero__title span:last-child {
  margin-left: 0.22em;
  color: var(--copper-light);
  font-style: italic;
}

.inner-hero__summary {
  max-width: 38rem;
  margin: 2.2rem 0 0;
  color: rgba(243, 238, 229, 0.63);
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 1;
}

.inner-counter {
  position: absolute;
  z-index: 5;
  right: 3vw;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(243, 238, 229, 0.34);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inner-counter i { width: 3rem; height: 1px; background: var(--copper); }

.inner-portal {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: -2vw;
  width: min(49vw, 47rem);
  height: 78%;
  transform-style: preserve-3d;
  perspective: 1400px;
  will-change: transform, opacity;
}

.inner-portal__frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(224, 154, 119, 0.34);
  border-radius: 45% 45% 1rem 1rem / 25% 25% 1rem 1rem;
  box-shadow: inset 0 0 5rem rgba(40, 10, 28, 0.32), 0 0 4rem rgba(184, 92, 61, 0.08);
}

.inner-portal__door {
  position: absolute;
  z-index: 4;
  top: 5%;
  bottom: 7%;
  width: 43%;
  overflow: hidden;
  border: 1px solid rgba(236, 192, 164, 0.3);
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.08), transparent 24%, rgba(118, 220, 229, 0.035) 56%, rgba(224, 154, 119, 0.09)),
    rgba(18, 12, 18, 0.25);
  box-shadow: inset 0 0 2.5rem rgba(224, 154, 119, 0.06);
  backdrop-filter: blur(3px) saturate(118%);
  transform-style: preserve-3d;
  will-change: transform;
}

.inner-portal__door--left {
  left: 6.5%;
  border-radius: 48% 0 0 0 / 24% 0 0 0;
  transform-origin: left center;
}

.inner-portal__door--right {
  right: 6.5%;
  border-radius: 0 48% 0 0 / 0 24% 0 0;
  transform-origin: right center;
}

.inner-portal__door i {
  position: absolute;
  top: 50%;
  width: 0.2rem;
  height: 2.2rem;
  border-radius: 2rem;
  background: linear-gradient(var(--refract-cyan), var(--copper-light), var(--refract-lavender));
  box-shadow: 0 0 1.2rem rgba(224, 154, 119, 0.5);
}

.inner-portal__door--left i { right: 0.9rem; }
.inner-portal__door--right i { left: 0.9rem; }

.inner-portal__plane {
  position: absolute;
  border: 1px solid rgba(224, 154, 119, 0.2);
  background: rgba(37, 19, 31, 0.14);
  backdrop-filter: blur(2px);
}

.inner-portal__plane--one {
  inset: 12% 22% 11% 3%;
  border-radius: 48% 0 0 0 / 25% 0 0 0;
  transform: translateZ(60px) rotateY(8deg);
}

.inner-portal__plane--two {
  inset: 5% 5% 7% 45%;
  border-radius: 0 48% 0 0 / 0 25% 0 0;
  transform: translateZ(120px) rotateY(-10deg);
}

.inner-portal__line {
  position: absolute;
  top: 10%;
  bottom: 5%;
  left: 52%;
  width: 1px;
  background: linear-gradient(transparent, rgba(239, 187, 154, 0.72), transparent);
  box-shadow: 0 0 2rem rgba(224, 154, 119, 0.34);
}

.inner-intro {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) 1.32fr;
  gap: 10vw;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(83, 36, 66, 0.2), transparent 28rem),
    radial-gradient(circle at 8% 84%, rgba(224, 154, 119, 0.2), transparent 26rem),
    linear-gradient(135deg, var(--champagne) 0%, var(--champagne-soft) 62%, var(--champagne-deep) 135%);
  color: var(--champagne-ink);
}

.inner-intro__aside {
  position: relative;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(224, 154, 119, 0.24);
  border-radius: 1.15rem 4rem 1.15rem 1.15rem;
  background:
    radial-gradient(circle at 72% 22%, rgba(118, 220, 229, 0.07), transparent 10rem),
    linear-gradient(145deg, rgba(48, 22, 41, 0.96), rgba(13, 8, 12, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 1.8rem 4.8rem rgba(51, 25, 41, 0.18);
  color: var(--ivory);
}

.inner-intro__aside::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1rem;
  border: 1px solid rgba(224, 154, 119, 0.08);
  border-radius: 0.65rem 3rem 0.65rem 0.65rem;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(224, 154, 119, 0.08) 50%, transparent 50.2%);
}

.inner-intro__aside > * { position: relative; z-index: 2; }
.inner-intro__aside .section-label { color: var(--copper-light); }

.inner-intro__index {
  display: block;
  margin-top: auto;
  color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 12vw, 12rem);
  line-height: 0.68;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(224, 154, 119, 0.32);
}

.inner-intro__aside strong {
  max-width: 18rem;
  margin-top: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.05;
}

.inner-intro__aside small {
  margin-top: 1.8rem;
  color: rgba(243, 238, 229, 0.38);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inner-intro__copy {
  max-width: 67rem;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.inner-capabilities {
  background: #120b11;
}

.inner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  background: transparent;
  perspective: 1200px;
}

.inner-list__item {
  --irx: 0deg;
  --iry: 0deg;
  --isx: 50%;
  --isy: 50%;
  position: relative;
  min-height: 24rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(224, 154, 119, 0.13);
  border-radius: 0.9rem;
  background: rgba(25, 13, 22, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 1.3rem 3rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(132%);
  transform: rotateX(var(--irx)) rotateY(var(--iry));
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out, background 0.45s ease;
}

.inner-list__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--isx) var(--isy), rgba(118, 220, 229, 0.11), transparent 11rem), radial-gradient(circle at 80% 20%, rgba(179, 88, 70, 0.2), transparent 16rem), linear-gradient(145deg, #2a1324, #0b070a);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.inner-list__item:hover::before { opacity: 1; }
.inner-list__item:hover {
  transform: translateY(-0.5rem) rotateX(var(--irx)) rotateY(var(--iry)) scale(1.01);
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.24);
}
.inner-list__item > * { position: relative; z-index: 2; transform: translateZ(22px); }
.inner-list__item > span { color: var(--copper-light); font-size: 0.55rem; }

.inner-list__item h2 {
  max-width: 24rem;
  margin: 7rem 0 1.1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.inner-list__item p {
  max-width: 29rem;
  margin: 0;
  color: rgba(243, 238, 229, 0.47);
  font-size: 0.7rem;
  line-height: 1.7;
}

.inner-list__item > i {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  color: var(--copper-light);
  font-family: sans-serif;
  font-style: normal;
}

.inner-statement {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--aubergine);
}

.inner-statement h2 {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  margin: 1.7rem auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.inner-statement > p:last-child {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(243, 238, 229, 0.52);
  font-size: 0.76rem;
  line-height: 1.8;
}

.statement-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 58rem);
  aspect-ratio: 1;
  border: 1px solid rgba(224, 154, 119, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(115, 43, 70, 0.38), transparent 62%);
}

.statement-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(224, 154, 119, 0.1);
  border-radius: 50%;
}

.statement-orbit span:nth-child(2) { inset: 25%; }
.statement-orbit span:nth-child(3) { inset: 40%; box-shadow: 0 0 5rem rgba(224, 154, 119, 0.13); }

.inner-next {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 48svh;
  padding: 6rem 6vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 28%, rgba(80, 34, 64, 0.2), transparent 24rem),
    linear-gradient(130deg, #d6c8bf, #bea9a7 68%, #a88c91 125%);
  color: var(--champagne-ink);
}

.inner-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #6c304e, #160d15);
  transform: translateY(101%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.inner-next:hover { color: var(--ivory); }
.inner-next:hover::before { transform: translateY(0); }

.inner-next span,
.inner-next strong,
.inner-next i { position: relative; z-index: 2; }
.inner-next span { align-self: start; color: var(--copper); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }

.inner-next strong {
  grid-column: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.3rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.06em;
}

.inner-next i {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-size: 3rem;
  font-style: normal;
}

.interior-footer { background: #080508; }

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 1.5rem;
  }

  .header-contact { display: none; }
  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 5.9rem 1rem auto;
    display: grid;
    gap: 0;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(224, 154, 119, 0.2);
    border-radius: 1.2rem;
    background: rgba(8, 5, 9, 0.84);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(30px) saturate(145%);
    transform: translateY(-125%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 1rem 0; font-size: 0.85rem; }

  .hero-copy,
  .chapter-copy {
    left: 2.2rem;
    width: min(42rem, 58vw);
  }

  .portal-wrap {
    right: -9vw;
    width: 67vw;
  }

  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .management-statement { margin-left: 10vw; }
  .advisory-grid { grid-template-columns: 1fr 0.75fr; gap: 7vw; }
  .principle-list { grid-template-columns: repeat(2, 1fr); }

  .inner-hero__copy { width: min(45rem, 67vw); }
  .inner-portal { right: -13vw; width: 62vw; opacity: 0.72; }
  .inner-interface__panel { width: clamp(6rem, 14vw, 9rem); }
}

@media (max-width: 720px) {
  .site-header { height: 4.7rem; }
  .brand--compact .brand-word { font-size: 1.58rem; }
  .brand--compact .brand-mark { transform: rotate(45deg) scale(0.82); }
  .nav { top: 5.55rem; }
  .journey { height: 440svh; }
  .journey-stage { min-height: 620px; }

  .scene {
    background-position: 62% center;
  }

  .scene--arrival,
  .scene--expertise,
  .scene--experience,
  .scene--partnership {
    background-image:
      linear-gradient(180deg, rgba(7, 5, 9, 0.28) 22%, rgba(7, 5, 9, 0.88) 70%, rgba(7, 5, 9, 0.98)),
      var(--mobile-image, none);
  }

  .scene--arrival { --mobile-image: url("../images/arrival-hall.png"); }
  .scene--expertise { --mobile-image: url("../images/expertise-salon.webp"); }
  .scene--experience { --mobile-image: url("../images/experience-suite.webp"); }
  .scene--partnership { --mobile-image: url("../images/contact-lounge.webp"); }

  .portal-wrap {
    top: 5.2rem;
    right: -5vw;
    width: 110vw;
    height: 58svh;
    opacity: 0.68;
  }

  .hero-copy,
  .chapter-copy {
    top: auto;
    bottom: 7.2rem;
    left: 1.45rem;
    width: calc(100vw - 2.9rem);
    transform: none;
  }

  .hero-kicker span:last-child { display: none; }
  .hero-title { font-size: clamp(4.5rem, 22vw, 6.6rem); line-height: 0.76; margin: 0.9rem 0 1rem; }
  .hero-title .line:last-child { margin-left: 0; }
  .hero-summary { max-width: 26rem; font-size: 0.78rem; line-height: 1.65; margin-bottom: 1.3rem; }
  .hero-actions { gap: 1.1rem; align-items: stretch; }
  .button { min-height: 3.4rem; padding: 0.2rem 1.1rem; font-size: 0.64rem; }
  .text-link { font-size: 0.64rem; }

  .chapter-title { font-size: clamp(4.7rem, 22vw, 7rem); margin-bottom: 0.65rem; }
  .chapter-text { max-width: 28rem; font-size: 0.75rem; line-height: 1.6; }
  .chapter-index { left: 1.45rem; right: 1.45rem; bottom: 2.1rem; gap: 0; justify-content: space-between; }
  .chapter-index span { font-size: 0; gap: 0.25rem; }
  .chapter-index span b { font-size: 0.5rem; }
  .chapter-index span.is-active i { width: 1.2rem; }
  .scroll-cue { display: none; }

  .section-pad { padding: 6rem 1.5rem; }
  .manifesto-grid,
  .section-head,
  .advisory-grid,
  .management-statement,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .manifesto-grid { gap: 3rem; margin-top: 4rem; }
  .display-copy { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .manifesto-foot { flex-wrap: wrap; justify-content: flex-start; margin-top: 4rem; }
  .section-head { gap: 2rem; margin-bottom: 3rem; }
  .section-head h2, .principle-intro h2 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 23rem; padding: 1.6rem; }
  .expertise-card h3 { margin-top: 5.8rem; }
  .expertise-card a { left: 1.6rem; bottom: 1.6rem; }

  .giant-number { font-size: 48vw; margin-top: 2.5rem; }
  .management-orb { top: 14%; right: -40vw; width: 90vw; }
  .management-statement { margin: 5rem 0 0; gap: 2rem; }
  .management-statement h2 { font-size: 15vw; }
  .management-ledger { grid-template-columns: 1fr; }
  .management-ledger span { min-height: 4.2rem; padding: 1rem 1.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .management-ledger b { display: inline-block; margin: 0 0 0 2rem; }

  .advisory-grid { gap: 3rem; margin-top: 4rem; }
  .principle-intro { margin-bottom: 3rem; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list article { min-height: 13rem; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-list h3 { margin-top: 3.7rem; }
  .insight-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .insight-visual { height: 110vw; max-height: 34rem; }

  .contact-section { min-height: 78svh; }
  .contact-section h2 { font-size: clamp(4.1rem, 19vw, 7rem); }
  .contact-glow { width: 100vw; }
  .footer-main { gap: 2.5rem; padding-bottom: 3rem; }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
  .footer-bottom > div { justify-self: start; }

  .inner-hero { min-height: 94svh; }
  .inner-hero__copy { top: auto; bottom: 6rem; left: 1.5rem; width: calc(100% - 3rem); transform: none; }
  .inner-hero__title { font-size: clamp(4.6rem, 21vw, 7rem); }
  .inner-hero__title span:last-child { margin-left: 0; }
  .inner-hero__summary { font-size: 0.75rem; line-height: 1.65; margin-top: 1.4rem; }
  .inner-portal { top: 7rem; right: -22vw; width: 115vw; height: 58%; opacity: 0.5; }
  .inner-interface { inset: 5.8rem 0.8rem 1rem; }
  .inner-interface__panel {
    width: 2.65rem;
    background: rgba(15, 8, 14, 0.08);
    backdrop-filter: blur(3px);
  }
  .inner-interface__panel--left { border-radius: 0.9rem 2.6rem 0.9rem 0.9rem; }
  .inner-interface__panel--right { border-radius: 2.6rem 0.9rem 0.9rem 0.9rem; }
  .inner-interface__panel small,
  .inner-interface__panel b { display: none; }
  .inner-counter { right: 1.5rem; left: 1.5rem; justify-content: space-between; }
  .inner-counter i { flex: 1; }
  .inner-intro { grid-template-columns: 1fr; gap: 3.5rem; }
  .inner-intro__aside { min-height: 21rem; padding: 1.5rem; }
  .inner-intro__index { font-size: 8rem; }
  .inner-intro__copy { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .inner-list { grid-template-columns: 1fr; }
  .inner-list__item { min-height: 20rem; padding: 1.5rem; }
  .inner-list__item h2 { margin-top: 5.5rem; }
  .inner-list__item > i { right: 1.5rem; bottom: 1.5rem; }
  .statement-orbit { width: 120vw; }
  .inner-statement h2 { font-size: clamp(3.7rem, 17vw, 6.2rem); }
  .inner-next { min-height: 38svh; padding: 4rem 1.5rem; }
  .inner-next strong { font-size: clamp(3.5rem, 17vw, 6rem); }
  .inner-next i { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .chapter--expertise,
  .chapter--experience,
  .chapter--partnership,
  .expertise-orbits,
  .experience-rings,
  .partner-beam {
    display: none;
  }
}

/* WordPress and Elementor integration */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(11rem, 100%);
}

.custom-logo-link img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 2.8rem;
}

.brand .itq-custom-logo {
  display: block;
  width: auto;
  max-width: min(11rem, 100%);
  max-height: 2.8rem;
}

.nav .itq-nav-list,
.footer-links .itq-footer-list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li,
.footer-links li {
  display: contents;
  margin: 0;
  padding: 0;
}

.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--ivory);
  text-shadow: 0 0 1.2rem rgba(118, 220, 229, 0.35), 0 0 1.8rem rgba(185, 155, 242, 0.22);
}

.site-header,
.nav,
.hero-copy,
.chapter-copy,
.inner-hero__copy,
.inner-interface__panel,
.expertise-card,
.insight-card,
.principle-list article {
  -webkit-backdrop-filter: blur(var(--glass-blur, 20px)) saturate(135%);
  backdrop-filter: blur(var(--glass-blur, 20px)) saturate(135%);
}

.itq-no-door-transitions .route-transition {
  display: none !important;
}

.itq-no-edge-rails .inner-interface {
  display: none !important;
}

.admin-bar .site-header {
  top: calc(0.8rem + 32px);
}

.itq-content-page {
  min-height: 70svh;
  padding: clamp(10rem, 16vw, 14rem) clamp(1.5rem, 7vw, 8rem) clamp(6rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(97, 44, 71, 0.22), transparent 28rem),
    linear-gradient(145deg, #0b070c, #1b0e18 62%, #26121f);
}

.itq-entry,
.itq-post-grid {
  width: min(100%, 82rem);
  margin-inline: auto;
}

.itq-entry__header {
  max-width: 72rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.itq-entry__header h1 {
  margin: 0.8rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.062em;
}

.itq-entry__content {
  color: rgba(243, 238, 229, 0.76);
  font-size: 1rem;
  line-height: 1.9;
}

.itq-entry__content > * {
  max-width: 760px;
  margin-inline: auto;
}

.itq-entry__content > .alignwide {
  max-width: 1320px;
}

.itq-entry__content > .alignfull {
  max-width: none;
}

.itq-entry__content h2,
.itq-entry__content h3 {
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1;
}

.itq-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.itq-post-card {
  min-height: 25rem;
  padding: 2rem;
  border: 1px solid rgba(224, 154, 119, 0.17);
  border-radius: 1rem;
  background: rgba(32, 16, 28, 0.46);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}

.itq-post-card:hover {
  border-color: rgba(224, 154, 119, 0.38);
  transform: translateY(-0.5rem);
}

.itq-post-card > p {
  color: var(--copper-light);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.itq-post-card h2 {
  margin: 5rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.96;
}

.itq-post-card div {
  color: rgba(243, 238, 229, 0.56);
  font-size: 0.75rem;
  line-height: 1.75;
}

.itq-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}

.itq-elementor-page {
  min-height: 70svh;
  overflow: hidden;
  background: var(--ink);
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: calc(0.8rem + 46px); }
}

@media (max-width: 760px) {
  .itq-post-grid { grid-template-columns: 1fr; }
  .custom-logo-link { width: 8.5rem; }
}
