:root {
  --ink: #102031;
  --navy: #0b1728;
  --navy-soft: #12243a;
  --paper: #f7f5ef;
  --paper-warm: #eee9df;
  --white: #ffffff;
  --accent: #ad7443;
  --accent-dark: #855126;
  --accent-pale: #ead8c5;
  --sage: #758e83;
  --muted: #647080;
  --line: rgba(16, 32, 49, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(4, 13, 25, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
ul,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.2vw, 6.6rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 500;
}

h3 {
  font-size: 1.45rem;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 920px;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy);
}

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

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

.section-accent {
  color: var(--white);
  background: var(--accent-dark);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(11, 23, 40, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(11, 23, 40, 0.96);
  border-bottom-color: var(--line-light);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--accent-pale);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.2;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(173, 116, 67, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #bc8150;
  border-color: #bc8150;
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.88rem;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--navy);
  background: var(--paper-warm);
  border-color: var(--paper-warm);
}

.text-link {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 164px 0 104px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
}

.hero-orb-one {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle at center, rgba(173, 116, 67, 0.34), rgba(173, 116, 67, 0));
}

.hero-orb-two {
  width: 600px;
  height: 600px;
  bottom: -360px;
  left: -180px;
  background: radial-gradient(circle at center, rgba(117, 142, 131, 0.25), rgba(117, 142, 131, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 28px;
}

.eyebrow,
.section-label {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent-pale);
}

.capacity {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.setting-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.88rem;
}

.setting-note svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.hero-card {
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-kicker {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-word {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 8px;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
}

.focus-word span {
  grid-row: span 2;
  color: var(--accent-pale);
  font-size: 0.72rem;
  font-weight: 800;
}

.focus-word strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.focus-word small {
  color: rgba(255, 255, 255, 0.58);
}

.lead-stack {
  color: var(--muted);
  font-size: 1.18rem;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0;
}

.question-grid p {
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.recognition-callout {
  margin-top: 36px;
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 16px 42px rgba(16, 32, 49, 0.07);
}

.recognition-callout strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(52px, 9vw, 120px);
}

.align-center {
  align-items: center;
}

.section-heading > p:last-child,
.large-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.source-list {
  padding: 34px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.source-list > p:first-child {
  font-weight: 800;
}

.source-list ul,
.facilitator-card ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.source-list li,
.facilitator-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line);
}

.source-list li::before,
.facilitator-card li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.truth-card {
  max-width: 960px;
  margin: clamp(62px, 9vw, 110px) auto 0;
  padding: clamp(34px, 6vw, 62px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.truth-card span {
  color: var(--accent-pale);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.truth-card p {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.compact-dark {
  background: linear-gradient(135deg, var(--navy), #132841);
}

.section-label-light {
  color: var(--accent-pale);
}

.muted-light {
  color: rgba(255, 255, 255, 0.62) !important;
}

.pressure-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.pressure-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.pressure-list span {
  color: var(--accent-pale);
  font-size: 0.72rem;
  font-weight: 800;
}

.pressure-list p {
  margin: 0;
  font-size: 1.05rem;
}

.pressure-list .pressure-conclusion {
  display: block;
  padding-top: 30px;
  color: var(--accent-pale);
  border-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.outcome-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 42px rgba(16, 32, 49, 0.055);
}

.outcome-number {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.outcome-card h3 {
  margin-top: 56px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.outcome-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.leave-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 110px);
}

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

.deliverable-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 1.12rem;
}

.deliverable-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--accent-pale);
  stroke-width: 2;
}

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

.facilitator-card {
  padding: clamp(30px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.facilitator-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.initials {
  width: 62px;
  height: 62px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.facilitator-identity h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.facilitator-identity p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.facilitator-card > p {
  color: var(--muted);
}

.facilitator-card h4 {
  margin: 30px 0 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.facilitator-card li {
  font-size: 0.95rem;
}

.pairing-card {
  max-width: 950px;
  margin: 28px auto 0;
  padding: 32px 36px;
  text-align: center;
}

.pairing-card > p:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}

.closing-section {
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -280px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(173, 116, 67, 0.3), rgba(173, 116, 67, 0));
  border-radius: 50%;
}

.closing-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(56px, 9vw, 120px);
}

.closing-grid > div:first-child > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.closing-capacity {
  display: inline-flex;
  margin-top: 24px;
}

.closing-action {
  padding: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.closing-action p {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.closing-action .button {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.64);
  background: #07111f;
  font-size: 0.82rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.footer-inner strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.footer-inner p {
  margin: 5px 0 0;
}

.footer-message {
  max-width: 490px;
}

.copyright {
  text-align: right;
}

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

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 20px;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line-light);
    font-size: 1.05rem;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .two-column,
  .leave-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 620px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    text-align: center;
  }

  .question-grid,
  .outcome-grid,
  .facilitator-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 230px;
  }

  .setting-note {
    align-items: flex-start;
  }

  .recognition-callout,
  .source-list,
  .closing-action,
  .pairing-card {
    padding: 26px;
  }

  .facilitator-card {
    padding: 28px 24px;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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