:root {
  --ink: #10100f;
  --ink-soft: #191917;
  --paper: #f1eee6;
  --paper-deep: #e4dfd4;
  --white: #fffdf8;
  --brass: #b9975b;
  --brass-light: #d9c28f;
  --rust: #8d3f2e;
  --muted: #777269;
  --line: rgba(16, 16, 15, 0.18);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  --shell: min(1320px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 2px;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: 150px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  color: var(--white);
  transition: background 300ms ease, color 300ms ease, padding 300ms ease;
}

.site-header.is-scrolled {
  padding-block: 16px;
  background: rgba(16, 16, 15, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.wordmark > span:first-child {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.wordmark-slash {
  color: var(--brass-light);
  font-style: italic;
  margin-inline: 1px 3px;
}

.wordmark-name {
  max-width: 70px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--brass-light);
}

.site-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
}

.site-nav .nav-button {
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-nav .nav-button:hover {
  color: var(--brass-light);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle-mark,
.menu-toggle-mark::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.menu-toggle-mark::after {
  transform: translateY(6px);
}

.concierge-launcher {
  position: fixed;
  z-index: 42;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: auto;
  max-width: calc(100vw - 36px);
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(217, 194, 143, 0.46);
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.9);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  cursor: pointer;
  text-align: left;
  transform: none;
  transition: transform 220ms var(--ease), background 220ms ease, opacity 180ms ease;
}

.concierge-launcher:hover {
  transform: translateY(-2px);
  background: rgba(50, 29, 22, 0.96);
}

.launcher-orb {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(217, 194, 143, 0.52);
  border-radius: 50%;
}

.launcher-orb i {
  width: 2px;
  height: 8px;
  background: var(--brass-light);
  border-radius: 2px;
  animation: launcher-wave 1s ease-in-out infinite alternate;
}

.launcher-orb i:nth-child(2) {
  height: 15px;
  animation-delay: -0.4s;
}

.launcher-orb i:nth-child(3) {
  animation-delay: -0.7s;
}

.launcher-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.launcher-copy strong {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launcher-copy small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.launcher-arrow {
  color: var(--brass-light);
  font-size: 13px;
}

body.dialog-open .concierge-launcher {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-leadership-study.png");
  background-position: center;
  background-size: cover;
  animation: hero-settle 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.94) 0%, rgba(9, 9, 8, 0.73) 36%, rgba(9, 9, 8, 0.05) 72%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.52) 0%, transparent 42%);
}

.hero-grain {
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-block: 150px 70px;
}

.eyebrow,
.section-index,
.offer-kicker,
.brief-label,
.footer-label,
.agent-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: auto;
  padding-top: 6vh;
  color: rgba(255, 253, 248, 0.72);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(80px, 11vw, 178px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.075em;
}

.hero h1 em,
.display-statement em,
.approach-intro h2 em,
.fit-heading h2 em {
  color: var(--brass-light);
  font-weight: 400;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: end;
  gap: 12vw;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: fit-content;
  min-width: 245px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 22px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link-light {
  justify-self: end;
}

.concept-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 94px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

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

.manifesto-grid {
  display: grid;
  grid-template-columns: 2fr 8fr;
  gap: 48px;
}

.section-index {
  color: var(--rust);
  padding-top: 14px;
}

.display-statement {
  max-width: 1010px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.display-statement em {
  color: var(--rust);
}

.manifesto-detail {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 90px;
  max-width: 850px;
  margin: 90px 0 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.manifesto-detail p {
  margin: 0;
  color: #5d5952;
}

.manifesto-detail .manifesto-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.35;
}

.work-section {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 8fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading h2,
.approach-intro h2,
.fit-heading h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.offer-card {
  min-height: 545px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border-top: 3px solid var(--rust);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.offer-card:hover {
  z-index: 2;
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(16, 16, 15, 0.12);
}

.offer-card-dark {
  background: var(--ink-soft);
  color: var(--white);
  border-color: var(--brass);
}

.offer-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.offer-card-brass {
  background: var(--brass);
  border-color: var(--ink);
}

.offer-number {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.8;
  color: rgba(16, 16, 15, 0.15);
}

.offer-card-dark .offer-number {
  color: rgba(255, 255, 255, 0.14);
}

.offer-kicker {
  margin-bottom: 16px;
  color: var(--rust);
}

.offer-card-dark .offer-kicker {
  color: var(--brass-light);
}

.offer-card-brass .offer-kicker {
  color: var(--ink);
}

.offer-card h3 {
  max-width: 300px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(37px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.offer-card p {
  max-width: 360px;
}

.offer-use {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  opacity: 0.72;
  font-size: 13px;
}

.proof-strip {
  overflow: hidden;
  background: var(--rust);
  color: var(--white);
  padding: 16px 0 13px;
}

.proof-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
}

.proof-track i {
  color: var(--brass-light);
  font-size: 14px;
}

.approach {
  background: var(--ink);
  color: var(--white);
}

.approach .page-shell {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 10vw;
}

.approach-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.approach-intro .section-index {
  color: var(--brass-light);
  margin-bottom: 64px;
}

.approach-intro h2 em,
.fit-heading h2 em {
  color: var(--brass-light);
}

.approach-intro > p:last-child {
  max-width: 430px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding-block: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-number {
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.investment {
  position: relative;
  overflow: hidden;
  background: var(--brass);
  color: var(--ink);
  padding-block: 120px;
}

.investment-rule {
  position: absolute;
  top: 0;
  left: 32%;
  width: 1px;
  height: 100%;
  background: rgba(16, 16, 15, 0.2);
}

.investment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 110px;
}

.investment-amount p {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.investment-amount h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(100px, 14vw, 214px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.investment-amount h2 span {
  font-size: 0.36em;
  vertical-align: top;
  position: relative;
  top: 0.08em;
}

.investment-copy .large-copy {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: 33px;
  line-height: 1.15;
}

.investment-copy > p:last-child {
  max-width: 500px;
}

.service-area {
  grid-column: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  margin-top: 22px;
  padding-top: 34px;
  border-top: 1px solid rgba(16, 16, 15, 0.32);
}

.service-area-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.service-area-mark::after {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--rust);
  content: "";
}

.service-area-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.service-area p {
  max-width: 540px;
}

.privacy-note {
  color: rgba(16, 16, 15, 0.62);
  font-size: 12px;
}

.fit-section {
  background: var(--paper);
}

.fit-heading {
  display: grid;
  grid-template-columns: 1.2fr 4fr 2fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 80px;
}

.fit-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.fit-experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.concierge-card,
.brief-card {
  padding: clamp(28px, 4vw, 54px);
}

.concierge-card {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  background: var(--ink-soft);
  color: var(--white);
}

.concierge-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concierge-topline span:last-child {
  margin-left: auto;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 0 5px rgba(217, 194, 143, 0.1);
}

.concierge-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-block: 55px 30px;
}

.concierge-visual span {
  width: 3px;
  height: 55px;
  background: var(--brass-light);
  border-radius: 4px;
  animation: voice-wave 1.25s ease-in-out infinite alternate;
}

.concierge-visual span:nth-child(2),
.concierge-visual span:nth-child(6) { animation-delay: -0.2s; height: 90px; }
.concierge-visual span:nth-child(3),
.concierge-visual span:nth-child(5) { animation-delay: -0.55s; height: 120px; }
.concierge-visual span:nth-child(4) { animation-delay: -0.8s; height: 70px; }

.concierge-card h3 {
  margin: auto 0 20px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.concierge-card > p {
  color: rgba(255, 255, 255, 0.62);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: fit-content;
  border: 1px solid currentColor;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-light {
  margin-top: 20px;
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--brass-light);
}

.concierge-card .microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.brief-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.brief-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.brief-label {
  color: var(--rust);
}

.brief-header h3 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.example-badge {
  border: 1px solid var(--line);
  padding: 7px 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-grid {
  margin: 0;
}

.brief-grid > div {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 24px;
  padding-block: 21px;
  border-bottom: 1px solid var(--line);
}

.brief-grid dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-grid dd {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.35;
}

.brief-grid .brief-fit dd {
  color: #37624c;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-next {
  margin-top: 24px;
  padding: 20px;
  background: var(--paper);
}

.brief-next span {
  display: block;
  margin-bottom: 6px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-next strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.fit-signals {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.fit-signals > p {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
}

.fit-signals ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-signals li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
}

.fit-signals li::before {
  position: absolute;
  left: 0;
  color: var(--rust);
  content: "↗";
}

.closing {
  background: var(--rust);
  color: var(--white);
  padding-block: 120px;
}

.closing-inner {
  text-align: center;
}

.closing .eyebrow {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 34px;
}

.closing h2 {
  font-size: clamp(66px, 10vw, 148px);
}

.closing-button {
  margin-top: 54px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.closing-button:hover {
  background: var(--white);
  color: var(--rust);
}

.site-footer {
  padding-block: 70px 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--display);
  font-size: 20px;
}

.footer-label {
  color: var(--brass-light);
}

.footer-grid > div:not(:first-child) p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.concierge-dialog {
  width: min(790px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.concierge-dialog::backdrop {
  background: rgba(6, 6, 5, 0.84);
  backdrop-filter: blur(6px);
}

.dialog-shell {
  position: relative;
  padding: clamp(28px, 6vw, 68px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.dialog-heading .eyebrow {
  color: var(--rust);
}

.dialog-heading h2 {
  max-width: 600px;
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.dialog-heading > p:last-child {
  max-width: 590px;
  color: var(--muted);
}

.dialog-demo {
  margin-top: 36px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.dialog-agent {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
}

.agent-orb {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 194, 143, 0.55);
  border-radius: 50%;
}

.agent-orb span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 24px var(--brass-light);
}

.agent-label {
  color: var(--brass-light);
}

.dialog-agent p {
  min-height: 50px;
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.3;
}

.dialog-progress {
  height: 2px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.dialog-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brass-light);
  transition: width 600ms var(--ease);
}

.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-quiet {
  background: transparent;
  color: var(--muted);
}

.dialog-boundary {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.dialog-boundary p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease) var(--delay, 0ms), transform 800ms var(--ease) var(--delay, 0ms);
}

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

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes voice-wave {
  from { transform: scaleY(0.35); opacity: 0.42; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes launcher-wave {
  from { transform: scaleY(0.55); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 920px); }
  .section-pad { padding-block: 110px; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 70px 18px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 17px 8px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .site-nav .nav-button { width: 100%; padding: 17px 8px; text-align: left; }
  .site-nav .nav-cta { margin-top: 12px; border: 1px solid rgba(255,255,255,.5); }
  .hero { min-height: 760px; }
  .hero-image { background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,9,8,.92), rgba(9,9,8,.42)), linear-gradient(0deg, rgba(9,9,8,.6), transparent 48%); }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 50px; }
  .manifesto-grid,
  .section-heading { grid-template-columns: 1fr; }
  .manifesto-detail { margin-left: 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 430px; }
  .approach .page-shell { grid-template-columns: 1fr; }
  .approach-intro { position: static; }
  .investment-grid { gap: 60px; }
  .fit-heading { grid-template-columns: 1fr; }
  .fit-heading > p:last-child { max-width: 550px; }
  .fit-experience { grid-template-columns: 1fr; }
  .concierge-card { min-height: 600px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 32px); }
  .section-pad { padding-block: 84px; }
  .site-header { padding: 18px 16px; }
  .wordmark-name { display: none; }
  .site-nav { inset-inline: 10px; }
  .concierge-launcher {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    width: min(226px, calc(100vw - 24px));
    height: auto;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    transform: none;
  }
  .concierge-launcher:hover { transform: translateY(-3px); }
  .launcher-orb { width: 36px; height: 36px; }
  .launcher-copy { display: flex; }
  .launcher-copy small,
  .launcher-arrow { display: none; }
  .hero { min-height: 700px; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,9,8,.84), rgba(9,9,8,.25)), linear-gradient(0deg, rgba(9,9,8,.78), transparent 55%); }
  .hero-content { padding-block: 120px 45px; }
  .hero .eyebrow { padding-top: 2vh; }
  .hero h1 { font-size: clamp(66px, 22vw, 92px); line-height: .82; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; margin-top: 38px; }
  .hero-bottom p { max-width: 370px; }
  .text-link-light { justify-self: start; }
  .concept-label { right: 9px; bottom: 78px; }
  .manifesto-detail { grid-template-columns: 1fr; gap: 28px; margin-top: 55px; }
  .display-statement { font-size: clamp(46px, 14vw, 65px); }
  .section-heading h2,
  .approach-intro h2,
  .fit-heading h2 { font-size: clamp(48px, 14vw, 68px); }
  .offer-card { min-height: 470px; padding: 24px; }
  .offer-number { font-size: 65px; }
  .approach-intro .section-index { margin-bottom: 34px; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; padding-block: 36px; }
  .investment { padding-block: 85px; }
  .investment-rule { display: none; }
  .investment-grid { grid-template-columns: 1fr; gap: 42px; }
  .investment-amount h2 { font-size: 31vw; }
  .service-area { grid-column: 1; }
  .concierge-card, .brief-card { padding: 25px; }
  .concierge-card { min-height: 580px; }
  .brief-header { flex-direction: column; }
  .brief-grid > div { grid-template-columns: 1fr; gap: 6px; }
  .fit-signals { grid-template-columns: 1fr; gap: 25px; }
  .fit-signals ul { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 110px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .dialog-shell { padding: 54px 22px 26px; }
  .dialog-actions { flex-direction: column; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
