:root {
  --black: #070707;
  --ink: #101010;
  --panel: #151515;
  --ivory: #f4f0e7;
  --paper: #e9e4da;
  --muted: #a7a49e;
  --gold: #d6aa57;
  --gold-bright: #f0c975;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 7, 7, 0.18);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold-bright);
  color: var(--black);
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.topline {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 24px;
  background: var(--gold);
  color: var(--black);
  text-align: center;
}

.topline p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.08em;
}

.brand-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #d2cfc8;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-bright);
}

.site-nav .nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.99) 0%, rgba(7, 7, 7, 0.92) 34%, rgba(7, 7, 7, 0.35) 66%, rgba(7, 7, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.72) 0%, transparent 35%);
}

.hero-grid,
.closing-grid {
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(214, 170, 87, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 170, 87, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-inner {
  display: grid;
  width: var(--shell);
  min-height: calc(100svh - 190px);
  align-items: center;
  margin: 0 auto;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: 64px;
  padding: 72px 0 110px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  max-width: 600px;
  align-items: center;
  gap: 14px;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.4vw, 7.2rem);
}

h1 em {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
}

h2 {
  font-size: clamp(2.55rem, 5.2vw, 5.5rem);
}

h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.hero-lede {
  max-width: 620px;
  margin: 0 0 36px;
  color: #d4d0c8;
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--gold-bright);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffdc8a;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(7, 7, 7, 0.4);
  color: var(--ivory);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero-seal {
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  justify-self: end;
  align-content: center;
  border: 1px solid rgba(240, 201, 117, 0.72);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.46);
  box-shadow: 0 0 0 12px rgba(7, 7, 7, 0.32), 0 0 70px rgba(214, 170, 87, 0.14);
  backdrop-filter: blur(10px);
}

.hero-seal strong {
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2.55rem;
  line-height: 1;
}

.hero-seal span {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-foot {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  width: var(--shell);
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
  transform: translateX(-50%);
}

.hero-foot span {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(0.73rem, 1.2vw, 0.92rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-foot .gold {
  color: var(--gold-bright);
}

.section-pad {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.two-col {
  display: grid;
  align-items: start;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
}

.tension {
  background: var(--paper);
  color: var(--black);
}

.tension h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.tension .kicker {
  color: #88651f;
}

.tension-copy {
  padding-top: 42px;
}

.tension-copy p {
  margin: 0 0 22px;
  color: #34312d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  background: var(--gold);
  color: var(--black);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: grid;
  min-height: 184px;
  place-content: center;
  padding: 32px;
  border-right: 1px solid rgba(7, 7, 7, 0.24);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 1;
}

.proof-item span {
  margin-top: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system {
  background: var(--black);
}

.system-intro {
  display: grid;
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 90px);
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 8vw, 110px);
}

.system-intro .section-heading {
  margin-bottom: 0;
}

.system-stage {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  width: min(100%, 470px);
  justify-self: end;
  aspect-ratio: 16 / 9;
  border-top: 3px solid var(--gold);
  background: var(--panel);
  box-shadow: 24px 24px 0 rgba(214, 170, 87, 0.08);
}

.system-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 7, 7, 0.94) 100%);
  content: "";
  pointer-events: none;
}

.system-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.system-stage figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--ivory);
}

.system-stage figcaption strong,
.system-stage figcaption span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-stage figcaption span {
  color: var(--gold-bright);
  text-align: right;
}

.section-heading {
  display: grid;
  max-width: 810px;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.force-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.force-card {
  min-height: 360px;
  padding: clamp(30px, 4vw, 50px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.force-card h3 {
  margin-bottom: 18px;
}

.force-card p {
  margin: 0;
  color: var(--muted);
}

.card-rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 30px 0 16px;
  background: var(--gold);
}

.force-card small {
  color: #d8d3c9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pathway-heading {
  width: min(100%, 1100px);
  margin: clamp(72px, 9vw, 118px) auto 0;
  text-align: center;
}

.pathway-heading h3 {
  margin-bottom: 0;
}

.pathway-heading .approach-line,
.pathway-heading .transformation-line {
  display: block;
}

.pathway-heading .approach-line {
  color: var(--ivory);
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.pathway-heading .transformation-line {
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: clamp(2rem, 7.7vw, 5.3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.code-diagram {
  display: grid;
  align-items: center;
  margin-top: clamp(36px, 5vw, 58px);
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
}

.code-step {
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(214, 170, 87, 0.38);
  background: rgba(214, 170, 87, 0.04);
}

.code-step span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
}

.code-step strong {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.code-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.code-diagram i {
  position: relative;
  height: 1px;
  background: var(--gold);
}

.code-diagram i::after {
  position: absolute;
  top: -4px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.speaking {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.speaking::before {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(123, 90, 24, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(214, 170, 87, 0.06), 0 0 0 140px rgba(214, 170, 87, 0.03);
}

.speaking-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(56px, 9vw, 130px);
}

.speaking .kicker,
.story .kicker,
.engage .kicker {
  color: #88651f;
}

.speaking-intro h2 {
  margin-bottom: 26px;
}

.speaking-intro .statement {
  max-width: 560px;
  margin: 0 0 20px;
  color: #1f1e1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
}

.speaking-intro > p:not(.kicker):not(.statement) {
  max-width: 590px;
  margin-bottom: 0;
  color: #45413b;
}

.audience-block {
  max-width: 590px;
  margin: 28px 0 34px;
  padding: 20px 0;
  border-top: 1px solid rgba(7, 7, 7, 0.2);
  border-bottom: 1px solid rgba(7, 7, 7, 0.2);
}

.audience-label {
  margin: 0 0 14px;
  color: #88651f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
}

.audience-grid li {
  padding-left: 12px;
  border-left: 2px solid #a87925;
  color: #292620;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.outcome-panel {
  border-top: 4px solid var(--black);
}

.panel-label {
  margin: 20px 0 6px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.outcome-panel ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.outcome-panel li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--dark-line);
}

.outcome-panel li > span {
  color: #88651f;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
}

.outcome-panel strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.outcome-panel li p {
  margin: 6px 0 0;
  color: #59544c;
  line-height: 1.5;
}

.home-keynote-summary {
  align-self: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.22);
}

.home-keynote-summary h3 {
  max-width: 570px;
  margin: 34px 0 22px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.home-keynote-summary > p:not(.panel-label) {
  max-width: 600px;
  margin: 0 0 28px;
  color: #514c45;
  font-size: 1.06rem;
}

.story {
  background: #0e0e0e;
}

.story-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
}

.story-pull {
  position: relative;
  padding: 48px 36px 42px;
  border: 1px solid rgba(214, 170, 87, 0.42);
}

.story-pull::before {
  position: absolute;
  top: -28px;
  left: 28px;
  color: var(--gold-bright);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
}

.story-pull p {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-style: italic;
  line-height: 1.25;
}

.story-pull span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.story-copy > p:not(.kicker):not(.story-close) {
  color: #aaa69e;
}

.story-close {
  margin-top: 28px;
  color: var(--ivory);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engage {
  background: #ded8ce;
  color: var(--black);
}

.engage .section-heading > p:last-child {
  color: #4d4942;
}

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

.engagement-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(7, 7, 7, 0.2);
  background: rgba(244, 240, 231, 0.45);
}

.engagement-card.featured {
  background: var(--black);
  color: var(--ivory);
}

.tag {
  align-self: flex-start;
  margin-bottom: 72px;
  color: #76591c;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .tag {
  color: var(--gold-bright);
}

.engagement-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.engagement-card p {
  margin: 0 0 26px;
  color: #504c45;
}

.featured p {
  color: var(--muted);
}

.engagement-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(105px, 13vw, 180px) 0;
  background: var(--gold);
  color: var(--black);
  isolation: isolate;
}

.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-size: 60px 60px;
  mask-image: none;
}

.closing-inner {
  width: min(950px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.closing .kicker {
  color: #44320d;
}

.closing h2 {
  margin-bottom: 24px;
}

.closing-inner > p:not(.kicker) {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 1.12rem;
}

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

.button-light {
  background: var(--black);
  color: var(--ivory);
}

.button-outline-light {
  border-color: rgba(7, 7, 7, 0.62);
  color: var(--black);
}

.closing-mantra {
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 110%;
  margin: 0;
  color: rgba(7, 7, 7, 0.08);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(3.2rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 70px 0 28px;
}

.footer-main {
  display: grid;
  align-items: end;
  grid-template-columns: 0.7fr 1.3fr auto;
  gap: 40px;
  padding-bottom: 58px;
}

.footer-main p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #898681;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--ivory);
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-lines::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 26px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.98);
    flex-direction: column;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    padding: 15px;
    border: 1px solid var(--gold);
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 720px);
  }

  .hero-seal {
    display: none;
  }

  .two-col,
  .system-intro,
  .speaking-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .system-intro {
    gap: 44px;
  }

  .system-stage {
    width: min(100%, 720px);
    justify-self: start;
  }

  .tension-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .force-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .force-card,
  .engagement-card {
    min-height: auto;
  }

  .card-number,
  .tag {
    margin-bottom: 42px;
  }

  .code-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .code-diagram i {
    width: 1px;
    height: 34px;
    justify-self: center;
  }

  .code-diagram i::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 7, 7, 0.24);
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .topline {
    padding-inline: 16px;
  }

  .topline p {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .nav-shell {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.86) 58%, rgba(7, 7, 7, 0.55) 100%),
      linear-gradient(0deg, rgba(7, 7, 7, 0.92) 0%, transparent 48%);
  }

  .hero-inner {
    min-height: 680px;
    align-items: start;
    padding: 78px 0 110px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-actions,
  .hero-actions .button,
  .closing-actions,
  .closing-actions .button {
    width: 100%;
  }

  .hero-foot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-foot span:nth-child(even) {
    text-align: right;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    min-height: 136px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.24);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-heading h2 {
    max-width: 100%;
  }

  .force-card,
  .engagement-card {
    padding: 28px;
  }

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

  .system-stage {
    aspect-ratio: 16 / 9;
    box-shadow: 12px 12px 0 rgba(214, 170, 87, 0.08);
  }

  .system-stage figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .system-stage figcaption span {
    text-align: left;
  }

  .outcome-panel li {
    grid-template-columns: 40px 1fr;
  }

  .story-pull {
    padding: 50px 28px 34px;
  }

  .closing-inner {
    width: min(100% - 32px, 950px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Booking page */
.booking-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 112px));
  overflow: hidden;
  isolation: isolate;
}

.booking-hero-image,
.booking-hero-scrim,
.booking-hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.booking-hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: center;
}

.booking-hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.78) 38%, rgba(7, 7, 7, 0.18) 68%, rgba(7, 7, 7, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.4) 0%, transparent 42%);
}

.booking-hero-grid {
  z-index: -2;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(214, 170, 87, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 170, 87, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.booking-hero-inner {
  display: grid;
  min-height: min(860px, calc(100svh - 112px));
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.55fr);
  gap: clamp(46px, 7vw, 100px);
  padding: clamp(72px, 9vw, 118px) 0;
}

.booking-hero-copy h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 7.2vw, 7.4rem);
}

.booking-hero-lede {
  max-width: 650px;
  margin: 0 0 36px;
  color: #d6d2ca;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.booking-hero-card {
  align-self: end;
  margin-bottom: 4px;
  padding: 30px;
  border: 1px solid rgba(240, 201, 117, 0.55);
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(15px);
}

.booking-hero-card .panel-label {
  margin: 0 0 24px;
  color: var(--gold-bright);
}

.booking-hero-card ul {
  display: grid;
  padding: 0;
  margin: 0 0 28px;
  gap: 14px;
  list-style: none;
}

.booking-hero-card li {
  padding: 0 0 14px 18px;
  border-bottom: 1px solid var(--line);
  color: #e2ded5;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.booking-hero-card li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 12px 2px -18px;
  border: 1px solid var(--gold-bright);
  content: "";
  transform: rotate(45deg);
}

.booking-hero-card > a {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.booking-intro {
  background: var(--paper);
  color: var(--black);
}

.booking-intro-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(54px, 8vw, 116px);
}

.booking-intro h2 {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.7vw, 4.9rem);
  overflow-wrap: normal;
  text-wrap: balance;
}

.booking-intro .kicker,
.booking-process .kicker,
.booking-inquiry .kicker {
  color: #765819;
}

.booking-intro-lede {
  max-width: 610px;
  margin: 0;
  color: #48443d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.booking-format-grid {
  display: grid;
  border-top: 1px solid rgba(7, 7, 7, 0.22);
}

.booking-format-card {
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 34px;
  border-right: 1px solid rgba(7, 7, 7, 0.22);
  border-bottom: 1px solid rgba(7, 7, 7, 0.22);
  border-left: 1px solid rgba(7, 7, 7, 0.22);
  background: rgba(244, 240, 231, 0.56);
  grid-template-columns: 52px 1fr;
  column-gap: 20px;
}

.booking-format-card.featured {
  background: var(--black);
  color: var(--ivory);
}

.booking-format-card > span {
  grid-row: 1 / 3;
  color: #88651f;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
}

.booking-format-card.featured > span {
  color: var(--gold-bright);
}

.booking-format-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.booking-format-card p {
  margin: 0;
  color: #555047;
}

.booking-format-card.featured p {
  color: var(--muted);
}

.booking-keynote {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}

.booking-keynote::before {
  position: absolute;
  top: -180px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 170, 87, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 74px rgba(214, 170, 87, 0.035), 0 0 0 148px rgba(214, 170, 87, 0.02);
}

.booking-keynote-layout {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(58px, 9vw, 132px);
}

.booking-keynote-copy h2 {
  margin-bottom: 26px;
}

.booking-keynote-statement {
  max-width: 600px;
  margin: 0 0 20px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
}

.booking-keynote-copy > p:not(.kicker):not(.booking-keynote-statement) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.booking-audiences {
  display: grid;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
}

.booking-audiences span {
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  color: #d8d3ca;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.booking-outcomes {
  border-top: 4px solid var(--gold);
}

.booking-outcomes .panel-label {
  margin: 20px 0 6px;
  color: var(--gold-bright);
}

.booking-outcomes ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-outcomes li {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.booking-outcomes li > span {
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
}

.booking-outcomes strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.booking-outcomes li p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-process {
  background: var(--gold);
  color: var(--black);
}

.booking-process-heading {
  display: grid;
  max-width: 850px;
  margin: 0 auto clamp(48px, 7vw, 82px);
  text-align: center;
}

.booking-process-heading h2 {
  margin-bottom: 0;
}

.booking-process-grid {
  display: grid;
  border-top: 1px solid rgba(7, 7, 7, 0.3);
  border-left: 1px solid rgba(7, 7, 7, 0.3);
  grid-template-columns: repeat(3, 1fr);
}

.booking-process-grid article {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid rgba(7, 7, 7, 0.3);
  border-bottom: 1px solid rgba(7, 7, 7, 0.3);
}

.booking-process-grid article > span {
  display: block;
  margin-bottom: 72px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
}

.booking-process-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
}

.booking-process-grid p {
  margin: 0;
  color: #3f3011;
}

.booking-inquiry {
  background: #ded8ce;
  color: var(--black);
}

.booking-inquiry-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 116px);
}

.booking-inquiry-copy {
  position: sticky;
  top: 120px;
}

.booking-inquiry-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.booking-inquiry-copy > p:not(.kicker) {
  margin: 0;
  color: #4b473f;
  font-size: 1.05rem;
  line-height: 1.7;
}

.booking-contact-card {
  margin-top: 34px;
  padding: 28px;
  background: var(--black);
  color: var(--ivory);
}

.booking-contact-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-contact-card a {
  color: var(--ivory);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.booking-contact-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.booking-form {
  padding: clamp(30px, 5vw, 58px);
  border-top: 5px solid var(--black);
  background: var(--ivory);
  box-shadow: 18px 18px 0 rgba(7, 7, 7, 0.08);
}

.booking-form fieldset {
  padding: 0;
  margin: 0 0 48px;
  border: 0;
}

.booking-form legend {
  width: 100%;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.24);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: #302c26;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.form-field label span {
  color: #8b6418;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 7, 7, 0.32);
  border-radius: 0;
  background: #fffdf8;
  color: var(--black);
  font: inherit;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #817b71;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #8b6418;
  outline: 3px solid rgba(214, 170, 87, 0.28);
  outline-offset: 0;
}

.form-consent {
  display: grid;
  align-items: start;
  margin: -4px 0 28px;
  color: #49443c;
  font-size: 0.86rem;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.booking-submit {
  width: 100%;
  cursor: pointer;
}

.booking-form-note {
  margin: 14px 0 0;
  color: #686158;
  font-size: 0.78rem;
  text-align: center;
}

.booking-form-status {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(118, 88, 25, 0.45);
  background: rgba(214, 170, 87, 0.14);
}

.booking-form-status p {
  margin: 0;
  color: #352b18;
  font-size: 0.9rem;
}

.booking-status-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  gap: 14px;
}

.booking-copy-button {
  padding: 9px 12px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-status-actions a {
  color: #5f4410;
  font-size: 0.8rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.booking-closing {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 165px) 0;
  background: var(--gold);
  color: var(--black);
  isolation: isolate;
}

.booking-closing .closing-grid {
  z-index: -1;
}

.booking-closing .kicker {
  color: #46330d;
}

.booking-closing h2 {
  margin-bottom: 34px;
}

@media (max-width: 980px) {
  .booking-hero,
  .booking-hero-inner {
    min-height: auto;
  }

  .booking-hero-inner,
  .booking-intro-layout,
  .booking-keynote-layout,
  .booking-inquiry-layout {
    grid-template-columns: 1fr;
  }

  .booking-hero-inner {
    padding: 90px 0;
  }

  .booking-hero-card {
    width: min(100%, 600px);
    align-self: auto;
    margin: 0;
  }

  .booking-format-grid {
    width: min(100%, 760px);
  }

  .booking-process-grid {
    grid-template-columns: 1fr;
  }

  .booking-process-grid article {
    min-height: auto;
  }

  .booking-process-grid article > span {
    margin-bottom: 36px;
  }

  .booking-inquiry-copy {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .booking-hero-image {
    object-position: 61% center;
  }

  .booking-hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.74) 72%, rgba(7, 7, 7, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 7, 7, 0.42) 0%, transparent 56%);
  }

  .booking-hero-inner {
    padding: 74px 0;
  }

  .booking-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .booking-hero-card,
  .booking-format-card,
  .booking-form,
  .booking-contact-card {
    padding: 26px;
  }

  .booking-format-card {
    grid-template-columns: 38px 1fr;
  }

  .booking-audiences,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .booking-outcomes li {
    grid-template-columns: 40px 1fr;
  }

  .booking-form {
    box-shadow: 10px 10px 0 rgba(7, 7, 7, 0.08);
  }
}

/* Connected inner pages: BITBI, About, and Insights */

.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.inner-page h1,
.inner-page h2,
.inner-page h3 {
  text-wrap: balance;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 170, 87, 0.13), transparent 30%),
    #0b0b0b;
  isolation: isolate;
}

.inner-hero::after {
  position: absolute;
  top: 0;
  right: 7vw;
  bottom: 0;
  z-index: -1;
  width: 1px;
  background: linear-gradient(transparent, rgba(214, 170, 87, 0.7), transparent);
  content: "";
}

.inner-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent 3%, black 60%, transparent 100%);
}

.inner-hero-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 7vw, 104px);
}

.inner-hero-copy {
  position: relative;
  z-index: 1;
}

.inner-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.4vw, 6.65rem);
  overflow-wrap: normal;
}

.inner-hero-copy h1 em {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
}

.inner-hero-lede {
  max-width: 650px;
  margin: 0 0 36px;
  color: #d0ccc3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.inner-hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  background: var(--panel);
  box-shadow: 24px 24px 0 rgba(214, 170, 87, 0.08);
}

.inner-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 7, 7, 0.9) 100%);
  content: "";
  pointer-events: none;
}

.inner-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ivory);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inner-hero-visual figcaption span {
  color: var(--gold-bright);
}

.bitbi-hero-visual {
  aspect-ratio: 16 / 10;
}

.bitbi-hero-visual img {
  object-position: center top;
}

.inner-intro {
  background: var(--paper);
  color: var(--black);
}

.inner-intro-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(58px, 9vw, 132px);
}

.inner-intro h2,
.about-origin h2,
.about-today h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.inner-intro .kicker,
.about-origin .kicker,
.about-today .kicker,
.epes-section .kicker,
.insights-index .kicker,
.insight-article.light .insight-article-meta p {
  color: #765819;
}

.inner-intro-copy,
.about-story-copy,
.about-today-copy {
  color: #3f3b35;
  font-size: 1.06rem;
  line-height: 1.75;
}

.inner-intro-copy p,
.about-story-copy p,
.about-today-copy > p {
  margin: 0 0 22px;
}

.lead-large {
  color: #1f1d19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  line-height: 1.48;
}

.bitbi-pillars {
  background: #0d0d0d;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 60%);
}

.pillar-card.featured {
  border-color: rgba(240, 201, 117, 0.42);
  background: #45151d;
  color: var(--ivory);
}

.pillar-number {
  margin-bottom: 54px;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
}

.pillar-label {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar-card.featured .pillar-label,
.pillar-card.featured > p {
  color: #e7d9c1;
}

.pillar-card h3 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.pillar-card > p:not(.pillar-label) {
  margin: 0 0 32px;
  color: var(--muted);
}

.pillar-card strong {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 170, 87, 0.34);
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-transform: uppercase;
}

.proof-action-band {
  position: relative;
  overflow: hidden;
  background: #531720;
}

.proof-action-band::before {
  position: absolute;
  top: -210px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240, 201, 117, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(240, 201, 117, 0.05), 0 0 0 144px rgba(240, 201, 117, 0.025);
  content: "";
}

.proof-action-heading {
  position: relative;
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 74px);
  text-align: center;
}

.proof-action-heading .kicker {
  color: var(--gold-bright);
}

.proof-action-heading h2 {
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
}

.proof-action-heading > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: #d8c8c9;
}

.bitbi-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(240, 201, 117, 0.44);
  border-left: 1px solid rgba(240, 201, 117, 0.44);
}

.bitbi-flow article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid rgba(240, 201, 117, 0.44);
  border-bottom: 1px solid rgba(240, 201, 117, 0.44);
  background: rgba(7, 7, 7, 0.14);
}

.bitbi-flow span,
.epes-grid span,
.belief-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.bitbi-flow h3 {
  margin-bottom: 15px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.bitbi-flow p {
  margin: 0;
  color: #d3c5c6;
}

.epes-section {
  background: var(--paper);
  color: var(--black);
}

.epes-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 8vw, 112px);
}

.epes-intro {
  position: sticky;
  top: 130px;
}

.epes-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.epes-intro > p:last-child {
  margin: 0;
  color: #514d46;
}

.epes-grid {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  list-style: none;
}

.epes-grid li {
  min-height: 290px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.24);
}

.epes-grid span {
  color: #765819;
}

.epes-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.epes-grid p {
  margin: 0;
  color: #514d46;
}

.standard-section {
  background: #0d0d0d;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.standard-card {
  min-height: 360px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(214, 170, 87, 0.08), transparent 58%);
}

.standard-card > span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.standard-card h3 {
  max-width: 470px;
  margin: 56px 0 28px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.standard-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.standard-card li {
  padding: 16px 0 16px 20px;
  border-top: 1px solid var(--line);
  color: #c1bdb5;
  position: relative;
}

.standard-card li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.about-hero-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-hero-visual {
  width: min(100%, 530px);
  aspect-ratio: 4 / 5;
}

.about-hero-visual img {
  object-position: 54% center;
}

.about-hero-visual figcaption {
  align-items: end;
}

.about-hero-visual figcaption strong,
.about-hero-visual figcaption span {
  display: block;
}

.about-hero-visual figcaption strong {
  color: var(--ivory);
}

.about-origin,
.about-today {
  background: var(--paper);
  color: var(--black);
}

.about-story-grid,
.about-today-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(58px, 9vw, 132px);
}

.about-build {
  background: #0d0d0d;
}

.about-build-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 140px);
}

.about-quote {
  position: relative;
  padding: 54px 38px 42px;
  border: 1px solid rgba(214, 170, 87, 0.45);
  background: rgba(214, 170, 87, 0.03);
}

.about-quote::before {
  position: absolute;
  top: -30px;
  left: 28px;
  color: var(--gold-bright);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  line-height: 1;
}

.about-quote p {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.3vw, 2.9rem);
  font-style: italic;
  line-height: 1.28;
}

.about-quote span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-build-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
}

.about-build-copy > p:not(.kicker) {
  color: #aaa69e;
}

.about-build-copy .text-link {
  margin-top: 14px;
}

.about-beliefs {
  position: relative;
  overflow: hidden;
  background: #531720;
}

.about-beliefs .section-heading > p:last-child {
  color: #d7c7c8;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(240, 201, 117, 0.35);
  border-left: 1px solid rgba(240, 201, 117, 0.35);
}

.belief-card {
  min-height: 340px;
  padding: clamp(26px, 3.3vw, 40px);
  border-right: 1px solid rgba(240, 201, 117, 0.35);
  border-bottom: 1px solid rgba(240, 201, 117, 0.35);
  background: rgba(7, 7, 7, 0.1);
}

.belief-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.belief-card p {
  margin: 0;
  color: #d8c8c9;
}

.about-today-copy {
  padding-top: 28px;
}

.about-audience-list {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.about-audience-list span {
  padding: 17px 18px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  color: #27241f;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-signature {
  color: #765819;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 112px));
  align-items: center;
  overflow: hidden;
  padding: clamp(84px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 82% 38%, rgba(214, 170, 87, 0.15), transparent 28%),
    #090909;
  isolation: isolate;
}

.insights-hero-inner {
  position: relative;
  z-index: 2;
}

.insights-hero h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 8vw, 8.2rem);
  overflow-wrap: normal;
}

.insights-hero h1 em {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
}

.insights-hero-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 38px;
  color: #c9c5bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.insights-watermark {
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  z-index: 0;
  color: rgba(240, 201, 117, 0.055);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(15rem, 38vw, 38rem);
  line-height: 1;
  pointer-events: none;
}

.insights-index {
  background: var(--paper);
  color: var(--black);
}

.insights-index-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.insights-index-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.insights-index-heading > p {
  max-width: 480px;
  margin: 0 0 6px;
  color: #4b4740;
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 42px);
  border: 1px solid rgba(7, 7, 7, 0.2);
  background: rgba(255, 255, 255, 0.28);
}

.insight-card.featured {
  background: var(--black);
  color: var(--ivory);
}

.insight-category,
.insight-number {
  color: #765819;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card.featured .insight-category,
.insight-card.featured .insight-number {
  color: var(--gold-bright);
}

.insight-number {
  margin: 48px 0 26px;
}

.insight-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  overflow-wrap: normal;
  word-break: normal;
}

.insight-card h3.insight-card-title-long {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.insight-card p {
  margin: 0 0 28px;
  color: #4f4a43;
}

.insight-card.featured p {
  color: var(--muted);
}

.insight-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-stream {
  background: #0d0d0d;
}

.insight-article {
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--line);
}

.insight-article.light {
  background: var(--paper);
  color: var(--black);
}

.insight-article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.34fr 1.66fr;
  gap: clamp(50px, 8vw, 110px);
}

.insight-article-meta {
  position: sticky;
  top: 130px;
}

.insight-article-meta > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 1;
}

.insight-article-meta p {
  margin: 0 0 30px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-article-meta a {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.insight-article-copy {
  max-width: 840px;
}

.insight-article-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.insight-article-copy > p {
  color: #aaa69e;
  font-size: 1.06rem;
  line-height: 1.78;
}

.insight-article.light .insight-article-copy > p {
  color: #46423c;
}

.insight-article-copy .article-lede {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.5;
}

.insight-article.light .insight-article-copy .article-lede {
  color: #1e1c19;
}

.insight-application {
  margin-top: 44px;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  background: rgba(214, 170, 87, 0.08);
}

.insight-application span {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-article.light .insight-application span {
  color: #765819;
}

.insight-application p {
  margin: 10px 0 0;
  color: var(--ivory);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

.insight-article.light .insight-application p {
  color: #27241f;
}

@media (max-width: 980px) {
  .inner-hero-layout,
  .inner-intro-layout,
  .epes-layout,
  .about-story-grid,
  .about-build-layout,
  .about-today-layout,
  .insights-index-heading,
  .insight-article-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero-visual {
    width: min(100%, 760px);
    justify-self: start;
  }

  .about-hero-visual {
    width: min(100%, 620px);
  }

  .pillar-grid,
  .bitbi-flow,
  .insight-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .insight-card {
    min-height: auto;
  }

  .pillar-number,
  .insight-number {
    margin-bottom: 34px;
  }

  .epes-intro,
  .insight-article-meta {
    position: static;
  }

  .belief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-index-heading {
    align-items: start;
    gap: 26px;
  }

  .insight-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 24px;
    border-bottom: 1px solid currentColor;
  }

  .insight-article-meta > span,
  .insight-article-meta p {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    padding: 70px 0 82px;
  }

  .inner-hero-copy h1,
  .insights-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .inner-hero-visual {
    box-shadow: 12px 12px 0 rgba(214, 170, 87, 0.08);
  }

  .inner-hero-visual figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .bitbi-hero-visual {
    aspect-ratio: 4 / 3;
  }

  .about-hero-visual {
    aspect-ratio: 4 / 5;
  }

  .epes-grid,
  .standard-grid,
  .belief-grid,
  .about-audience-list {
    grid-template-columns: 1fr;
  }

  .bitbi-flow article,
  .epes-grid li,
  .belief-card,
  .standard-card {
    min-height: auto;
  }

  .standard-card h3 {
    margin-top: 38px;
  }

  .insights-hero {
    min-height: auto;
    padding: 82px 0 96px;
  }

  .insights-watermark {
    right: -0.16em;
    bottom: -0.16em;
  }

  .insight-article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .insight-article-meta a {
    grid-column: 1 / -1;
  }

  .insight-application {
    padding: 24px;
  }
}

/* Legal center */

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-page .site-header,
.legal-page .site-footer {
  color: var(--ivory);
}

.legal-page .site-footer {
  width: 100%;
  background: #070707;
}

.legal-page .site-footer > .footer-main,
.legal-page .site-footer > .footer-bottom {
  width: var(--shell);
  margin-inline: auto;
}

.legal-hero {
  padding: clamp(76px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--dark-line);
  background:
    linear-gradient(115deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.87)),
    var(--black);
  color: var(--ivory);
}

.legal-hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
}

.legal-hero > .section-shell > p:not(.kicker):not(.legal-updated) {
  max-width: 760px;
  margin: 0;
  color: #d4d0c8;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.legal-updated {
  margin: 26px 0 0;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(44px, 7vw, 104px);
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(80px, 11vw, 150px);
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-top: 3px solid var(--gold);
  background: var(--black);
  color: var(--ivory);
}

.legal-nav strong {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav a {
  color: #d4d0c8;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--gold-bright);
}

.legal-content {
  min-width: 0;
}

.legal-policy {
  scroll-margin-top: 120px;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.legal-policy + .legal-policy {
  padding-top: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--dark-line);
}

.legal-policy h2 {
  max-width: 900px;
  margin-bottom: 52px;
  font-size: clamp(2.7rem, 5.5vw, 5.6rem);
}

.legal-policy h3 {
  margin: 42px 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.legal-policy p,
.legal-policy li {
  color: #34322f;
  font-size: 1rem;
  line-height: 1.78;
}

.legal-policy p {
  margin: 0 0 18px;
}

.legal-policy ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.legal-policy li + li {
  margin-top: 12px;
}

.legal-policy a {
  color: #765316;
  font-weight: 800;
}

.legal-review-note {
  padding: 30px;
  border: 1px solid rgba(118, 83, 22, 0.36);
  border-left: 5px solid var(--gold);
  background: #f7f2e7;
}

.legal-review-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-review-note p {
  margin: 0;
  color: #4b4740;
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

/* Shared footer navigation */

.footer-main {
  align-items: start;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.75fr) auto;
  gap: clamp(32px, 5vw, 72px);
}

.footer-identity .footer-brand {
  margin-bottom: 22px;
}

.footer-identity > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
}

.footer-menu-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1.3fr;
  gap: clamp(24px, 3vw, 46px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: #c6c2ba;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--gold-bright);
}

.footer-main > .text-link {
  justify-self: end;
  margin-top: 3px;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    width: 100%;
  }

  .footer-main > .text-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .footer-menu {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Signature quote moments */

.quote-break {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.quote-break-bitbi {
  padding: clamp(74px, 10vw, 132px) 0;
  border-top: 1px solid rgba(240, 201, 117, 0.34);
  border-bottom: 1px solid rgba(240, 201, 117, 0.34);
  background: #531720;
}

.quote-break-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(240, 201, 117, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 201, 117, 0.32) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
}

.quote-card {
  position: relative;
  margin: 0;
}

.quote-card::before {
  position: absolute;
  color: var(--gold-bright);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.quote-card p,
.quote-card cite {
  position: relative;
  z-index: 1;
}

.quote-card cite {
  display: block;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-card-bitbi {
  text-align: center;
}

.quote-card-bitbi::before {
  top: -0.34em;
  left: 0;
  font-size: clamp(8rem, 18vw, 16rem);
  opacity: 0.17;
}

.quote-card-bitbi p {
  margin: 0 0 30px;
  color: var(--ivory);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(3.5rem, 8.2vw, 8.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.quote-card-bitbi span,
.quote-card-bitbi em {
  display: block;
}

.quote-card-bitbi em {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78em;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: none;
}

.insights-quote-break {
  padding: 0 0 clamp(78px, 10vw, 132px);
  background: var(--paper);
}

.quote-card-insights {
  max-width: 1040px;
  padding: clamp(50px, 7vw, 86px);
  border: 1px solid rgba(240, 201, 117, 0.55);
  margin: 0 auto;
  background: #531720;
  box-shadow: 18px 18px 0 rgba(7, 7, 7, 0.08);
}

.quote-card-insights::before {
  top: 0.12em;
  right: 0.18em;
  font-size: clamp(8rem, 17vw, 15rem);
  opacity: 0.16;
}

.quote-card-insights p {
  margin: 0 0 34px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.3vw, 5.25rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.quote-card-insights span,
.quote-card-insights em {
  display: block;
}

.quote-card-insights em {
  color: var(--gold-bright);
  font-style: italic;
}

.belief-card h3.belief-card-title-normalized {
  font-size: clamp(1.25rem, 1.75vw, 1.45rem);
  line-height: 1.2;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.belief-card-title-normalized .word-intact {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .belief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-break-bitbi {
    padding: 70px 0 78px;
  }

  .quote-break-grid {
    background-size: 48px 48px;
  }

  .quote-card-bitbi p {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .quote-card-insights {
    padding: 42px 26px;
    box-shadow: 10px 10px 0 rgba(7, 7, 7, 0.08);
  }

  .quote-card-insights p {
    font-size: clamp(2rem, 10.6vw, 3.2rem);
    line-height: 1.08;
  }

  .belief-card h3.belief-card-title-normalized {
    font-size: 1.4rem;
  }

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

/* Supplied speaker imagery */

.speaking-proof,
.booking-room-card,
.bitbi-books-visual,
.about-community-visual,
.about-closing-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
}

.speaking-proof img,
.booking-room-card img,
.bitbi-books-visual img,
.about-community-visual img,
.about-closing-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaking-proof {
  width: min(100%, 860px);
  margin-top: clamp(58px, 8vw, 106px);
  margin-inline: auto;
  border: 1px solid rgba(123, 90, 24, 0.34);
  box-shadow: 20px 20px 0 rgba(123, 90, 24, 0.1);
}

.speaking-proof img {
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.booking-room-gallery {
  padding: 0 0 clamp(84px, 10vw, 138px);
  background: var(--paper);
}

.booking-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.booking-room-card {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 7, 7, 0.22);
  box-shadow: 12px 12px 0 rgba(123, 90, 24, 0.09);
}

.booking-room-card:first-child img {
  object-position: center 42%;
}

.booking-room-card:last-child img {
  object-position: center;
}

.bitbi-books-visual {
  width: min(100%, 470px);
  aspect-ratio: 1159 / 1358;
  margin-top: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(123, 90, 24, 0.34);
  box-shadow: 18px 18px 0 rgba(123, 90, 24, 0.1);
}

.bitbi-books-visual img {
  object-position: center top;
}

.about-community-visual {
  aspect-ratio: 4 / 3;
  margin-top: clamp(34px, 5vw, 52px);
  border: 1px solid rgba(7, 7, 7, 0.22);
  box-shadow: 16px 16px 0 rgba(123, 90, 24, 0.1);
}

.about-community-visual img {
  object-position: center;
}

.about-closing-photo {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 11vw, 154px) 0;
  background: var(--gold);
  color: var(--black);
  isolation: isolate;
}

.about-closing-photo-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 112px);
}

.about-closing-photo-copy .kicker {
  color: #44320d;
}

.about-closing-photo-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.9vw, 5.1rem);
}

.about-closing-photo-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 0 0 36px;
  font-size: 1.12rem;
}

.about-closing-stage {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(7, 7, 7, 0.35);
  box-shadow: 20px 20px 0 rgba(7, 7, 7, 0.12);
}

.about-closing-stage img {
  object-position: center 30%;
}

.about-closing-photo .closing-mantra {
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .booking-room-grid,
  .about-closing-photo-layout {
    grid-template-columns: 1fr;
  }

  .booking-room-card,
  .speaking-proof {
    width: min(100%, 760px);
  }

  .bitbi-books-visual,
  .about-community-visual {
    width: min(100%, 620px);
  }

  .about-closing-photo-copy {
    max-width: 720px;
  }

  .about-closing-stage {
    width: min(100%, 820px);
  }
}

@media (max-width: 640px) {
  .booking-room-card {
    aspect-ratio: 4 / 3;
  }

  .speaking-proof,
  .booking-room-card {
    box-shadow: 10px 10px 0 rgba(123, 90, 24, 0.09);
  }

  .booking-room-card:first-child img {
    object-position: 52% center;
  }

  .bitbi-books-visual,
  .about-community-visual,
  .about-closing-stage {
    box-shadow: 10px 10px 0 rgba(7, 7, 7, 0.1);
  }

  .about-closing-photo {
    padding: 82px 0 110px;
  }

  .about-closing-photo-copy h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .about-closing-stage {
    aspect-ratio: 4 / 3;
  }

  .about-closing-stage img {
    object-position: center 20%;
  }
}

/* Courses and training page */

.site-nav {
  gap: clamp(16px, 2vw, 28px);
}

.courses-hero-layout {
  grid-template-columns: 1.04fr 0.96fr;
}

.courses-hero-visual {
  width: min(100%, 500px);
  aspect-ratio: 1159 / 1358;
}

.courses-hero-visual img {
  object-position: center top;
}

.course-paths,
.course-catalog,
.learning-tools {
  background: var(--paper);
  color: var(--black);
}

.course-paths .kicker,
.course-catalog .kicker,
.learning-tools .kicker {
  color: #765819;
}

.course-paths .section-heading > p:last-child,
.course-catalog .section-heading > p:last-child {
  color: #514d46;
}

.course-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.course-path-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.26);
}

.course-path-card.featured {
  background: #531720;
  color: var(--ivory);
}

.course-path-card > span:first-child {
  margin-bottom: 42px;
  color: #765819;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.course-path-card.featured > span:first-child,
.course-path-card.featured .course-path-label,
.course-path-card.featured a {
  color: var(--gold-bright);
}

.course-path-label {
  margin: 0 0 10px;
  color: #765819;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.course-path-card h3 {
  margin-bottom: 20px;
  color: #17140f;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.course-path-card h3.course-path-title-compact {
  font-size: clamp(1.75rem, 2.55vw, 2.25rem);
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.course-path-card.featured h3 {
  color: var(--ivory);
}

.course-path-card > p:not(.course-path-label) {
  margin: 0 0 28px;
  color: #514d46;
}

.course-path-card.featured > p:not(.course-path-label) {
  color: #d7c7c8;
}

.course-path-card a {
  width: fit-content;
  margin-top: auto;
  color: #5d4514;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.course-feature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 170, 87, 0.14), transparent 28%),
    #0d0d0d;
}

.course-feature::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240, 201, 117, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(240, 201, 117, 0.04), 0 0 0 140px rgba(240, 201, 117, 0.02);
  content: "";
}

.course-feature-layout {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(54px, 8vw, 112px);
}

.course-feature-copy {
  position: sticky;
  top: 130px;
}

.course-feature-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5.1vw, 5.25rem);
}

.course-feature-lede {
  max-width: 590px;
  margin: 0 0 30px;
  color: #c8c3ba;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.38rem);
  line-height: 1.6;
}

.course-format-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.course-format-line span {
  padding: 9px 12px;
  border: 1px solid rgba(214, 170, 87, 0.34);
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.course-status {
  max-width: 520px;
  margin: 0;
  color: #918d86;
  font-size: 0.88rem;
}

.course-progression-panel {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(214, 170, 87, 0.38);
  background: rgba(214, 170, 87, 0.035);
}

.course-progression-panel .panel-label {
  display: block;
  margin-bottom: 36px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.course-progression li {
  display: grid;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.course-progression li:last-child {
  padding-bottom: 0;
}

.course-progression li > span {
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.course-progression strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ivory);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.course-progression p {
  margin: 0;
  color: #aaa69e;
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.course-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(30px, 4.5vw, 50px);
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 12px 12px 0 rgba(123, 90, 24, 0.055);
}

.course-card.featured {
  border-color: #531720;
  background: #531720;
  color: var(--ivory);
  box-shadow: 12px 12px 0 rgba(83, 23, 32, 0.12);
}

.course-card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 18px;
  color: #765819;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.course-card.featured .course-card-topline {
  color: var(--gold-bright);
}

.course-card h3 {
  max-width: 520px;
  margin-bottom: 22px;
  color: #17140f;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.03;
}

.course-card.featured h3 {
  color: var(--ivory);
}

.course-card > p:not(.course-card-fit) {
  margin: 0 0 32px;
  color: #514d46;
}

.course-card.featured > p:not(.course-card-fit) {
  color: #d7c7c8;
}

.course-card-fit {
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: #5a554d;
  font-size: 0.86rem;
}

.course-card.featured .course-card-fit {
  border-color: rgba(240, 201, 117, 0.3);
  color: #d7c7c8;
}

.course-card-fit span {
  display: block;
  margin-bottom: 7px;
  color: #765819;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.course-card.featured .course-card-fit span {
  color: var(--gold-bright);
}

.guided-learning {
  background: #0d0d0d;
}

.guided-learning-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
}

.guided-learning-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.guided-learning-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.guided-learning-heading > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.guided-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guided-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(214, 170, 87, 0.07), transparent 62%);
}

.guided-card.future {
  background: linear-gradient(150deg, rgba(83, 23, 32, 0.68), rgba(83, 23, 32, 0.18));
}

.guided-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guided-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.05;
}

.guided-card p {
  margin: 0;
  color: #aaa69e;
}

.organization-training {
  position: relative;
  overflow: hidden;
  background: #531720;
}

.organization-training-layout {
  display: grid;
  align-items: center;
  margin-bottom: clamp(52px, 8vw, 92px);
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(52px, 8vw, 110px);
}

.organization-training-copy h2 {
  margin-bottom: 26px;
  color: var(--gold-bright);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.organization-training-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 0 0 34px;
  color: #dbcacc;
}

.organization-training-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 117, 0.4);
  box-shadow: 18px 18px 0 rgba(7, 7, 7, 0.13);
}

.organization-training-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.organization-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(240, 201, 117, 0.36);
  border-left: 1px solid rgba(240, 201, 117, 0.36);
}

.organization-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid rgba(240, 201, 117, 0.36);
  border-bottom: 1px solid rgba(240, 201, 117, 0.36);
  background: rgba(7, 7, 7, 0.12);
}

.organization-card > span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.organization-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.06;
}

.organization-card p {
  margin: 0;
  color: #d9c9cb;
}

.learning-tools-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(58px, 9vw, 132px);
}

.learning-tools h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
}

.learning-tools-copy > p {
  max-width: 650px;
  margin: 0 0 34px;
  color: #514d46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.6;
}

.learning-tool-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.learning-tool-list li {
  display: grid;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-line);
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.learning-tool-list strong {
  color: #1e1b16;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.learning-tool-list span {
  color: #625d54;
  font-size: 0.9rem;
}

.courses-closing {
  background: var(--gold);
}

@media (max-width: 980px) {
  .site-nav {
    gap: 0;
  }

  .courses-hero-layout,
  .course-feature-layout,
  .guided-learning-heading,
  .organization-training-layout,
  .learning-tools-layout {
    grid-template-columns: 1fr;
  }

  .courses-hero-visual {
    width: min(100%, 620px);
    justify-self: start;
  }

  .course-path-grid,
  .guided-card-grid,
  .organization-card-grid {
    grid-template-columns: 1fr;
  }

  .course-path-card,
  .guided-card,
  .organization-card {
    min-height: auto;
  }

  .course-feature-copy {
    position: static;
    max-width: 720px;
  }

  .guided-learning-heading .kicker {
    grid-column: auto;
  }

  .guided-learning-heading h2 {
    margin-bottom: 12px;
  }

  .organization-training-copy {
    max-width: 720px;
  }

  .organization-training-visual {
    width: min(100%, 820px);
  }
}

@media (max-width: 640px) {
  .courses-hero-visual {
    aspect-ratio: 4 / 5;
    box-shadow: 10px 10px 0 rgba(214, 170, 87, 0.08);
  }

  .course-path-card,
  .course-card,
  .guided-card,
  .organization-card,
  .course-progression-panel {
    padding: 28px;
  }

  .course-card-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    min-height: auto;
    box-shadow: 8px 8px 0 rgba(123, 90, 24, 0.055);
  }

  .course-card-topline {
    margin-bottom: 34px;
  }

  .course-progression li {
    grid-template-columns: 38px 1fr;
  }

  .organization-training-visual {
    aspect-ratio: 4 / 3;
    box-shadow: 10px 10px 0 rgba(7, 7, 7, 0.13);
  }

  .learning-tool-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Audience qualification page */

.audiences-hero-layout {
  grid-template-columns: 0.94fr 1.06fr;
}

.audiences-hero-visual {
  width: min(100%, 620px);
  aspect-ratio: 16 / 10;
}

.audiences-hero-visual img {
  object-position: center;
}

.audience-selector,
.audience-profile-light,
.fit-standard {
  background: var(--paper);
  color: var(--black);
}

.audience-selector .kicker,
.audience-profile-light .kicker,
.fit-standard .kicker {
  color: #765819;
}

.audience-selector .section-heading > p:last-child {
  color: #514d46;
}

.audience-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.audience-selector-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 38px);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.25);
  color: var(--black);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.audience-selector-card:hover,
.audience-selector-card:focus-visible {
  background: #531720;
  color: var(--ivory);
  transform: translateY(-4px);
}

.audience-selector-card > span {
  margin-bottom: 54px;
  color: #765819;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.audience-selector-card:hover > span,
.audience-selector-card:focus-visible > span {
  color: var(--gold-bright);
}

.audience-selector-card strong {
  margin-bottom: 18px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.audience-selector-card small {
  margin-top: auto;
  color: #5d5850;
  font-size: 0.88rem;
  line-height: 1.5;
}

.audience-selector-card:hover small,
.audience-selector-card:focus-visible small {
  color: #d7c7c8;
}

.ithos-architecture {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(214, 170, 87, 0.12), transparent 26%),
    #0d0d0d;
}

.ithos-architecture::after {
  position: absolute;
  top: -220px;
  left: -200px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240, 201, 117, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(240, 201, 117, 0.035), 0 0 0 140px rgba(240, 201, 117, 0.018);
  content: "";
}

.ithos-architecture-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  margin-bottom: clamp(58px, 8vw, 96px);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 8vw, 112px);
}

.ithos-intro {
  position: sticky;
  top: 130px;
}

.ithos-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.ithos-initial {
  color: var(--gold-bright);
}

.ithos-intro > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.ithos-loop {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(214, 170, 87, 0.38);
  background: rgba(214, 170, 87, 0.035);
}

.ithos-loop .panel-label {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ithos-loop ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ithos-loop li {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 44px minmax(110px, 0.42fr) 1fr;
  gap: 18px;
}

.ithos-loop li > span {
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.ithos-loop strong {
  color: var(--ivory);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ithos-loop p {
  margin: 0;
  color: #aaa69e;
  font-size: 0.94rem;
}

.shared-values {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(214, 170, 87, 0.38);
}

.shared-values-heading {
  display: grid;
  align-items: end;
  padding: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid rgba(214, 170, 87, 0.3);
  grid-template-columns: 0.6fr 1.4fr;
  gap: 28px;
}

.shared-values-heading .kicker {
  margin: 0;
}

.shared-values-heading h3 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.shared-values-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.shared-values-list li {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid rgba(214, 170, 87, 0.24);
}

.shared-values-list li:last-child {
  border-right: 0;
}

.shared-values-list strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.shared-values-list span {
  color: #aaa69e;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ithos-system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ithos-system-grid article {
  min-height: 290px;
  padding: clamp(26px, 3.2vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(214, 170, 87, 0.06), transparent 62%);
}

.ithos-system-grid article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ithos-system-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.ithos-system-grid p {
  margin: 0;
  color: var(--muted);
}

.audience-profile {
  scroll-margin-top: 104px;
}

.audience-profile-dark {
  background: #0d0d0d;
  color: var(--ivory);
}

.audience-profile-wine {
  background: #531720;
  color: var(--ivory);
}

.audience-profile-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 84px);
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(44px, 7vw, 104px);
}

.audience-profile-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
}

.audience-profile-heading > p {
  max-width: 590px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.audience-profile-light .audience-profile-heading > p {
  color: #514d46;
}

.audience-profile-dark .audience-profile-heading > p {
  color: var(--muted);
}

.audience-profile-wine .audience-profile-heading > p {
  color: #dbcacc;
}

.audience-alignment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.audience-profile-light .audience-alignment-grid {
  border-color: var(--dark-line);
}

.audience-profile-dark .audience-alignment-grid {
  border-color: var(--line);
}

.audience-profile-wine .audience-alignment-grid {
  border-color: rgba(240, 201, 117, 0.36);
}

.audience-alignment-card {
  min-height: 460px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.audience-profile-light .audience-alignment-card {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.24);
}

.audience-profile-dark .audience-alignment-card {
  border-color: var(--line);
  background: linear-gradient(150deg, rgba(214, 170, 87, 0.05), transparent 62%);
}

.audience-profile-wine .audience-alignment-card {
  border-color: rgba(240, 201, 117, 0.36);
  background: rgba(7, 7, 7, 0.11);
}

.audience-profile-light .audience-alignment-card-accent {
  background: #531720;
  color: var(--ivory);
}

.audience-profile-dark .audience-alignment-card-accent {
  border-color: rgba(240, 201, 117, 0.38);
  background: #531720;
}

.audience-profile-wine .audience-alignment-card-accent {
  background: rgba(7, 7, 7, 0.36);
}

.audience-alignment-card > span {
  display: block;
  margin-bottom: 42px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-profile-light .audience-alignment-card > span {
  color: #765819;
}

.audience-profile-dark .audience-alignment-card > span,
.audience-profile-wine .audience-alignment-card > span,
.audience-alignment-card-accent > span {
  color: var(--gold-bright);
}

.value-shift-list,
.plateau-list,
.breakthrough-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.value-shift-list li {
  display: grid;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.audience-profile-light .value-shift-list li {
  border-color: var(--dark-line);
}

.audience-profile-dark .value-shift-list li,
.audience-profile-wine .value-shift-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.value-shift-list strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.value-shift-list em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  line-height: 1.45;
}

.audience-profile-light .value-shift-list em {
  color: #625d54;
}

.audience-profile-dark .value-shift-list em,
.audience-profile-wine .value-shift-list em {
  color: #c9c4bb;
}

.plateau-list li,
.breakthrough-list li {
  position: relative;
  padding: 17px 0 17px 22px;
  border-top: 1px solid;
}

.audience-profile-light .plateau-list li {
  border-color: var(--dark-line);
  color: #514d46;
}

.audience-profile-dark .plateau-list li,
.audience-profile-wine .plateau-list li {
  border-color: rgba(255, 255, 255, 0.16);
  color: #c9c4bb;
}

.plateau-list li::before,
.breakthrough-list li::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.breakthrough-list li {
  border-color: rgba(240, 201, 117, 0.28);
  color: #ddd0d1;
}

.breakthrough-list b {
  color: var(--gold-bright);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-fit-strip {
  display: grid;
  align-items: center;
  padding: 28px clamp(26px, 4vw, 44px);
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-left: 1px solid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
}

.audience-profile-light .audience-fit-strip {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.42);
}

.audience-profile-dark .audience-fit-strip {
  border-color: var(--line);
  background: rgba(214, 170, 87, 0.035);
}

.audience-profile-wine .audience-fit-strip {
  border-color: rgba(240, 201, 117, 0.36);
  background: rgba(7, 7, 7, 0.18);
}

.audience-fit-strip > span {
  color: #765819;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-profile-dark .audience-fit-strip > span,
.audience-profile-wine .audience-fit-strip > span {
  color: var(--gold-bright);
}

.audience-fit-strip p {
  margin: 0;
}

.audience-profile-light .audience-fit-strip p {
  color: #4f4a43;
}

.audience-profile-dark .audience-fit-strip p,
.audience-profile-wine .audience-fit-strip p {
  color: #c9c4bb;
}

.audience-fit-strip a {
  color: #765819;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.audience-profile-dark .audience-fit-strip a,
.audience-profile-wine .audience-fit-strip a {
  color: var(--gold-bright);
}

.fit-standard-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(58px, 9vw, 132px);
}

.fit-standard-intro {
  position: sticky;
  top: 130px;
}

.fit-standard-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
}

.fit-standard-intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #514d46;
}

.fit-comparison {
  display: grid;
  gap: 18px;
}

.fit-card {
  padding: clamp(30px, 4.5vw, 48px);
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.28);
}

.fit-card-positive {
  border-color: #531720;
  background: #531720;
  color: var(--ivory);
}

.fit-card > span {
  display: block;
  margin-bottom: 28px;
  color: #765819;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fit-card-positive > span {
  color: var(--gold-bright);
}

.fit-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-top: 1px solid var(--dark-line);
  color: #514d46;
}

.fit-card-positive li {
  border-color: rgba(240, 201, 117, 0.28);
  color: #ddd0d1;
}

.fit-card li::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 7px;
  height: 2px;
  background: #765819;
  content: "";
}

.fit-card-positive li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.audiences-closing {
  background: var(--gold);
}

.speaking-intro .audience-profile-link {
  display: flex;
  width: fit-content;
  margin: -10px 0 28px;
  color: #765819;
}

.audience-conversation {
  background: var(--ivory);
  color: var(--black);
}

.audience-conversation .section-heading h2,
.audience-conversation-card h3 {
  color: var(--black);
}

.audience-conversation .section-heading > p:last-child {
  color: #655f56;
}

.audience-conversation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  border-left: 1px solid rgba(20, 20, 20, 0.18);
}

.audience-conversation-card {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: clamp(34px, 5vw, 60px);
  flex-direction: column;
  border-right: 1px solid rgba(20, 20, 20, 0.18);
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
  background: linear-gradient(145deg, rgba(214, 170, 87, 0.1), transparent 58%);
}

.audience-conversation-card .card-number {
  margin-bottom: 34px;
  color: #8a641d;
}

.audience-conversation-card .kicker {
  margin-bottom: 16px;
  color: #765819;
}

.audience-conversation-card h3 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.audience-conversation-card > p:not(.kicker) {
  max-width: 650px;
  margin: 0 0 30px;
  color: #514c45;
  font-size: 1.03rem;
  line-height: 1.75;
}

.audience-conversation-card > a {
  width: fit-content;
  margin-top: auto;
  color: #765819;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-conversation-card > a:hover,
.audience-conversation-card > a:focus-visible {
  color: var(--black);
}

.audience-bitbi-frame {
  background: var(--black);
}

.audience-bitbi-frame .section-heading {
  max-width: 980px;
}

.audience-bitbi-frame .section-heading > p:last-child {
  max-width: 790px;
}

.audience-force-grid .force-card {
  min-height: 300px;
}

.audience-force-grid .card-number {
  margin-bottom: 48px;
}

.section-benefit {
  display: grid;
  max-width: 960px;
  margin: clamp(44px, 7vw, 76px) auto 0;
  padding: clamp(28px, 4vw, 46px);
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 20px 40px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
}

.section-benefit strong {
  color: var(--gold-bright);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-benefit p {
  margin: 0;
  color: #d7d1c8;
  font-size: 1.06rem;
}

.section-benefit .text-link {
  grid-column: 2;
}

.framework-benefit {
  max-width: 900px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 170, 87, 0.34);
  color: #d7d1c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.55;
  text-align: center;
}

.epes-layout .framework-benefit {
  grid-column: 1 / -1;
}

.booking-intro-layout .framework-benefit,
.booking-keynote-layout .framework-benefit,
.course-feature-layout .framework-benefit {
  grid-column: 1 / -1;
}

.framework-benefit-light {
  border-color: rgba(20, 20, 20, 0.22);
  color: #3f3a33;
}

.framework-benefit-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.framework-benefit-actions .button {
  min-width: 180px;
}

.button-about-contrast {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--black);
}

.button-about-contrast:hover,
.button-about-contrast:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--black);
}

@media (max-width: 1100px) {
  .audience-selector-grid,
  .ithos-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shared-values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shared-values-list li {
    min-height: 190px;
    border-right: 1px solid rgba(214, 170, 87, 0.24);
    border-bottom: 1px solid rgba(214, 170, 87, 0.24);
  }

  .shared-values-list li:nth-child(even) {
    border-right: 0;
  }

  .shared-values-list li:last-child {
    border-bottom: 0;
  }

  .audience-selector-card,
  .ithos-system-grid article {
    min-height: 270px;
  }
}

@media (max-width: 980px) {
  .audience-conversation-grid {
    grid-template-columns: 1fr;
  }

  .audience-conversation-card {
    min-height: auto;
  }

  .audiences-hero-layout,
  .ithos-architecture-layout,
  .audience-profile-heading,
  .shared-values-heading,
  .fit-standard-layout {
    grid-template-columns: 1fr;
  }

  .audiences-hero-visual {
    width: min(100%, 820px);
    justify-self: start;
  }

  .ithos-intro,
  .fit-standard-intro {
    position: static;
  }

  .audience-alignment-grid {
    grid-template-columns: 1fr;
  }

  .audience-alignment-card {
    min-height: auto;
  }

  .audience-fit-strip {
    align-items: start;
    grid-template-columns: 150px 1fr;
  }

  .audience-fit-strip a {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .section-benefit {
    grid-template-columns: 1fr;
  }

  .section-benefit .text-link {
    grid-column: auto;
  }

  .audiences-hero-visual {
    aspect-ratio: 4 / 3;
    box-shadow: 10px 10px 0 rgba(214, 170, 87, 0.08);
  }

  .audiences-hero-visual img {
    object-position: center;
  }

  .audience-selector-grid,
  .ithos-system-grid,
  .shared-values-list {
    grid-template-columns: 1fr;
  }

  .audience-selector-card,
  .ithos-system-grid article,
  .shared-values-list li {
    min-height: auto;
    padding: 28px;
  }

  .shared-values-list li,
  .shared-values-list li:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 170, 87, 0.24);
  }

  .shared-values-list li:last-child {
    border-bottom: 0;
  }

  .audience-selector-card > span,
  .ithos-system-grid article > span {
    margin-bottom: 36px;
  }

  .ithos-loop,
  .audience-alignment-card,
  .fit-card {
    padding: 28px;
  }

  .ithos-loop li {
    grid-template-columns: 36px 1fr;
  }

  .ithos-loop li p {
    grid-column: 2;
  }

  .value-shift-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audience-fit-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-fit-strip a {
    grid-column: auto;
    margin-top: 8px;
  }
}

/* Launch copy and restored navigation. */
.hero-copy #hero-title { font-size: clamp(2.1rem, 4.2vw, 4rem); line-height: 1.08; text-wrap: balance; overflow-wrap: normal; word-break: normal; }
.hero-copy #hero-title .headline-word { white-space: nowrap; }
.pathway-heading { text-align: center; }
.pathway-heading .approach-line, .pathway-heading .transformation-line { display: block; }
.code-step strong, .bitbi-flow h3 { overflow-wrap: normal; word-break: normal; line-height: 1.12; }
.keynote-audiences { padding-left: 1.25rem; line-height: 1.7; margin-bottom: 1.75rem; }
.speaking-intro h2, .booking-keynote h2 { text-wrap: balance; }
@media (min-width: 981px) { .site-nav { gap: clamp(10px, 1.25vw, 20px); } .site-nav a { white-space: nowrap; } }
@media (max-width: 640px) { .hero-copy #hero-title { font-size: clamp(1.5rem, 6.8vw, 2.7rem); } }

/* Keep the BITBI pathway heading readable without splitting Transformation. */
.bitbi-page #path-title {
  font-size: clamp(1.65rem, 5.2vw, 4.6rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.bitbi-page #path-title .transformation-word { white-space: nowrap; }
@media (max-width: 640px) {
  .bitbi-page #path-title { font-size: clamp(1.5rem, 6.6vw, 2.6rem); }
}

/* Fit the About-page heading within its column without splitting words. */
.about-page #today-title {
  font-size: clamp(1.65rem, 3.1vw, 2.8rem);
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.about-page #today-title .transformation-word { white-space: nowrap; }
@media (max-width: 640px) {
  .about-page #today-title { font-size: clamp(1.5rem, 6.6vw, 2.6rem); }
}

/* Fit the guided implementation heading without splitting accountability. */
.courses-page #guided-title {
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.courses-page #guided-title .accountability-word { white-space: nowrap; }
@media (max-width: 640px) {
  .courses-page #guided-title { font-size: clamp(1.5rem, 6.6vw, 2.6rem); }
}

/* Keep long program and booking headings inside their columns. */
.courses-page .guided-card.future h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.booking-intro-layout > div { min-width: 0; }
.booking-intro #experience-title {
  font-size: clamp(1.6rem, 3.1vw, 2.65rem);
  line-height: 1.12;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
@media (max-width: 640px) {
  .booking-intro #experience-title { font-size: clamp(1.5rem, 6.6vw, 2.6rem); }
}

/* Prominent booking invitation below the homepage video. */
.homepage-promo .homepage-video-cta {
  width: min(100%, 640px);
  min-height: 88px;
  padding: 24px 32px;
  font-size: clamp(1.125rem, 2.2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.3;
  box-shadow: 0 8px 28px rgba(213, 170, 83, 0.2);
}
.homepage-promo .homepage-video-cta:focus-visible {
  outline: 3px solid var(--ivory);
  outline-offset: 5px;
}
@media (max-width: 600px) {
  .homepage-promo .homepage-video-cta {
    padding: 22px 18px;
    min-height: 80px;
  }
}
