:root {
  --ink: #101820;
  --ink-2: #18242e;
  --paper: #fffdf8;
  --cream: #f4efe7;
  --mist: #eeedf4;
  --mist-2: #e6e7ef;
  --white: #ffffff;
  --text: #1b232a;
  --muted: #606b73;
  --line: rgba(16, 24, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #dc7441;
  --accent-dark: #a94f28;
  --aqua: #8fcfd2;
  --sage: #a9c1b4;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
  --shadow-soft: 0 14px 36px rgba(16, 24, 32, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.35rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

h4 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--accent-dark);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow,
.mini-label,
.topic-type {
  margin-bottom: 1rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--aqua);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 25px rgba(220, 116, 65, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: #e48150;
  box-shadow: 0 14px 30px rgba(220, 116, 65, 0.29);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.social-link:focus-visible,
.site-nav a:focus-visible,
.topic-tab:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.button-dark {
  background: var(--ink);
  box-shadow: 0 10px 25px rgba(16, 24, 32, 0.18);
}

.button-dark:hover {
  background: #263540;
}

.button-small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
}

.button-block {
  width: 100%;
}

.button-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 850;
  text-underline-offset: 0.25em;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(16, 24, 32, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(16, 24, 32, 0.95);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 45px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

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

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

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: calc(var(--header-height) + clamp(4.5rem, 8vw, 7rem)) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(143, 207, 210, 0.13), transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(220, 116, 65, 0.13), transparent 28%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  margin-bottom: 1.8rem;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.07rem, 2vw, 1.28rem);
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  margin: 2.2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.79rem;
  font-weight: 750;
  list-style: none;
}

.service-line li {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.service-line li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.hero-orbit-one {
  width: 430px;
  height: 430px;
}

.hero-orbit-two {
  width: 530px;
  height: 310px;
  border-color: rgba(143, 207, 210, 0.25);
  transform: translate(-50%, -50%) rotate(21deg);
}

.hero-center-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 250px;
  min-height: 300px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.hero-center-card span {
  max-width: 190px;
  color: var(--aqua);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
}

.hero-center-card strong {
  color: var(--white);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-center-card i {
  color: var(--accent);
  font-size: 1.4rem;
  font-style: normal;
  transform: rotate(90deg);
}

.hero-topic-card {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 24, 32, 0.82);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-topic-one { top: 8%; left: 2%; }
.hero-topic-two { top: 18%; right: -3%; }
.hero-topic-three { right: -5%; bottom: 14%; }
.hero-topic-four { bottom: 6%; left: -2%; }

.promise-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.85rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
}

.promise-grid > div:last-child {
  border-right: 0;
}

.promise-grid span {
  grid-row: 1 / 3;
  color: var(--accent-dark);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
}

.promise-grid strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.promise-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > p {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-dark .section-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.speaking-section {
  background: var(--mist);
}

.topic-explorer {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.72fr);
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.topic-rail {
  display: flex;
  flex-direction: column;
  min-height: 790px;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.4rem);
  background: #e7e6ef;
  border-right: 1px solid rgba(16, 24, 32, 0.08);
}

.topic-rail-heading {
  padding-right: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 1.6rem;
}

.topic-rail-heading .mini-label {
  display: block;
  margin-bottom: 0.55rem;
}

.topic-rail-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  text-transform: uppercase;
}

.topic-tablist {
  display: grid;
  gap: 0.15rem;
}

.topic-tab {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 0.75rem;
  width: 100%;
  padding: 1.05rem clamp(1.25rem, 3vw, 2.2rem) 1.05rem 0;
  border: 0;
  color: #4c6970;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topic-tab::before {
  position: absolute;
  top: 50%;
  left: -2.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topic-tab:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.topic-tab.is-active {
  color: var(--accent-dark);
}

.topic-tab.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.topic-tab-number {
  padding-top: 0.22rem;
  color: currentColor;
  font-size: 0.63rem;
  font-weight: 900;
}

.topic-tab > span:last-child {
  display: grid;
  gap: 0.2rem;
}

.topic-tab strong {
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.28;
}

.topic-tab small {
  color: #76858a;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.topic-rail-footer {
  margin-top: auto;
  padding-top: 2rem;
  padding-right: clamp(1.5rem, 3vw, 2.4rem);
}

.topic-rail-footer p {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.topic-stage {
  min-width: 0;
  padding: clamp(2.2rem, 5vw, 4.4rem);
  background: var(--white);
}

.topic-select-wrap {
  display: none;
  margin-bottom: 1.5rem;
}

.topic-select-wrap label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.topic-panel {
  animation: panel-in 0.32s ease both;
}

html.js .topic-panel[aria-hidden="true"] {
  display: none;
}

html:not(.js) .topic-panel + .topic-panel {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.topic-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.topic-header h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
}

.topic-subtitle {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-style: italic;
  line-height: 1.45;
}

.topic-number {
  color: rgba(16, 24, 32, 0.09);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
}

.topic-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.65rem 0;
}

.topic-meta-grid > div {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fbfaf7;
}

.topic-meta-grid span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic-meta-grid p {
  margin-bottom: 0;
  color: #475159;
  font-size: 0.9rem;
  line-height: 1.55;
}

.topic-description {
  padding: 1.5rem 0 1.8rem;
}

.topic-description p {
  margin-bottom: 0;
  color: #2d383f;
  font-size: 1.03rem;
  line-height: 1.78;
}

.topic-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.topic-content-grid h4 {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.topic-takeaways ol {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-takeaways li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 0.8rem;
}

.topic-takeaways li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(220, 116, 65, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
}

.topic-takeaways p {
  margin: 0.15rem 0 0;
  color: #3f4a51;
  font-size: 0.9rem;
  line-height: 1.55;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4b575e;
  background: #f7f6f2;
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.25;
}

.topic-close {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding: 1.15rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: rgba(220, 116, 65, 0.07);
}

.topic-close p {
  margin: 0;
  color: #364149;
  font-size: 0.9rem;
  line-height: 1.62;
}

.topic-presentation-note {
  color: var(--muted) !important;
  font-size: 0.78rem !important;
}

.topic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

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

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

.outcome-card {
  min-height: 290px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.outcome-card > span {
  display: block;
  margin-bottom: 4.4rem;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.outcome-card h3 {
  margin-bottom: 0.8rem;
}

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

.audience-section {
  background:
    radial-gradient(circle at 5% 95%, rgba(220, 116, 65, 0.12), transparent 26%),
    radial-gradient(circle at 90% 5%, rgba(143, 207, 210, 0.1), transparent 22%),
    var(--ink);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience-card {
  min-height: 265px;
  padding: 1.6rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.audience-card > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--aqua);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.audience-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.portrait-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 35%, rgba(143, 207, 210, 0.3), transparent 30%),
    linear-gradient(145deg, #17232d, #0d151c);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.portrait-monogram-image {
  position: relative;
  z-index: 2;
  width: min(62%, 310px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(16, 24, 32, 0.68);
  backdrop-filter: blur(12px);
}

.portrait-caption small {
  color: var(--aqua);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.portrait-caption strong {
  margin-top: 0.2rem;
  color: var(--white);
}

.about-copy h2 {
  margin-bottom: 1.5rem;
}

.about-copy p:not(.eyebrow) {
  color: #4e585f;
  font-size: 1.03rem;
}

.about-copy .button-row {
  margin-top: 2rem;
}

.social-connect {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.social-connect > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.collaboration-section {
  background:
    radial-gradient(circle at 95% 5%, rgba(143, 207, 210, 0.22), transparent 28%),
    var(--paper);
}

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

.collaboration-card {
  display: flex;
  min-height: 300px;
  padding: clamp(1.35rem, 3vw, 2rem);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.collaboration-kicker {
  margin-bottom: auto;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.collaboration-card h3 {
  margin-top: 2.7rem;
  margin-bottom: 0.8rem;
}

.collaboration-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.collaboration-card .text-link {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.82rem;
}

.notes-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--sage);
}

.notes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.notes-grid h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.notes-grid p:not(.eyebrow) {
  margin-bottom: 0;
  color: #34443c;
}

.notes-form label,
.request-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.field-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.25);
  border-radius: 0.78rem;
  color: var(--ink);
  background: var(--white);
  padding: 0.84rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220, 116, 65, 0.13);
}

.notes-form small,
.request-form small {
  display: block;
  margin-top: 0.7rem;
  color: #3f5148;
  font-size: 0.72rem;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 3rem;
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(220, 116, 65, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.request-section {
  background:
    radial-gradient(circle at 0 100%, rgba(169, 193, 180, 0.14), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(220, 116, 65, 0.1), transparent 23%),
    var(--ink);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.request-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.request-copy h2 {
  margin-bottom: 1.4rem;
}

.request-copy > p:not(.eyebrow):not(.selected-topic) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.03rem;
}

.request-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.request-note span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-note strong {
  color: var(--white);
  font-size: 0.92rem;
}

.selected-topic {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(143, 207, 210, 0.28);
  border-radius: var(--radius-small);
  color: var(--aqua);
  background: rgba(143, 207, 210, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.request-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.request-form > label {
  margin-bottom: 1rem;
}

.request-form small {
  color: var(--muted);
}

.request-form small a {
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.27rem;
  right: 0;
  color: var(--accent-dark);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 800px;
  padding: 0 2.5rem 1.35rem 0;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  color: var(--white);
  background: #090f14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-grid > div > strong {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid p {
  max-width: 430px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.site-footer .social-connect {
  margin-top: 1rem;
}

.site-footer .social-connect > span {
  color: rgba(255, 255, 255, 0.44);
}

.site-footer .social-link {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer .social-link:hover {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.footer-grid > div > a:not(.brand) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-grid > div > a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: inherit;
  text-underline-offset: 0.25em;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

/* Supporting pages */
.simple-page {
  min-height: 100vh;
  color: var(--text);
  background: var(--cream);
}

.simple-header {
  position: static;
  height: auto;
  padding: 1rem 0;
  background: var(--ink);
}

.simple-main {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.simple-card {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.simple-card h1 {
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.simple-card h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.45rem;
}

.simple-card p,
.simple-card li {
  color: var(--muted);
}

.simple-card .button-row {
  margin-top: 2rem;
}

.policy-card {
  max-width: 940px;
}

.policy-effective {
  margin-bottom: 1.5rem;
}

.policy-card > p,
.policy-section > p {
  line-height: 1.75;
}

.policy-summary {
  margin: 2.25rem 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(143, 207, 210, 0.55);
  border-left: 5px solid var(--aqua);
  border-radius: var(--radius-small);
  background: rgba(143, 207, 210, 0.12);
}

.policy-summary h2,
.policy-nav h2 {
  margin-top: 0;
}

.policy-checklist {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.policy-checklist li {
  position: relative;
  padding-left: 1.7rem;
}

.policy-checklist li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  color: var(--accent-dark);
  content: "✓";
  font-weight: 900;
}

.policy-nav {
  margin: 2.25rem 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--cream);
}

.policy-nav ol {
  columns: 2;
  column-gap: 2.5rem;
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
}

.policy-nav li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.policy-nav a {
  color: var(--ink);
  text-underline-offset: 0.22em;
}

.policy-section {
  scroll-margin-top: 1.5rem;
}

.policy-section h3 {
  margin: 1.4rem 0 0.5rem;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.policy-section ul {
  margin: 0.7rem 0 1rem;
  padding-left: 1.35rem;
}

.policy-section li + li {
  margin-top: 0.45rem;
}

.policy-note,
.policy-contact {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.policy-note {
  border-left: 4px solid var(--accent);
}

.policy-note h3,
.policy-contact h2 {
  margin-top: 0;
}

.policy-contact {
  border: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 3rem;
  }

  .hero-visual {
    transform: scale(0.88);
  }

  .topic-explorer {
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  }

  .topic-stage {
    padding: 2.5rem;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 0.9rem 1rem 1.2rem;
    background: rgba(16, 24, 32, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .site-nav > a:not(.button) {
    padding: 0.9rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .site-nav .button {
    margin-top: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .request-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 520px;
    transform: none;
  }

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

  .promise-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .topic-explorer {
    grid-template-columns: 1fr;
  }

  .topic-rail {
    display: none;
  }

  .topic-stage {
    padding: clamp(1.35rem, 5vw, 3rem);
  }

  html.js .topic-select-wrap {
    display: block;
  }

  .topic-meta-grid,
  .topic-content-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card-grid,
  .collaboration-grid {
    grid-template-columns: 1fr;
  }

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

  .outcome-card > span {
    margin-bottom: 2.8rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .portrait-card {
    min-height: 520px;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .request-copy {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3.8rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    align-self: flex-start;
  }

  .service-line {
    display: grid;
    gap: 0.45rem;
  }

  .service-line li::after {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    margin-inline: -0.4rem;
  }

  .hero-orbit-one {
    width: 300px;
    height: 300px;
  }

  .hero-orbit-two {
    width: 360px;
    height: 220px;
  }

  .hero-center-card {
    width: 205px;
    min-height: 250px;
    padding: 1.4rem;
  }

  .hero-center-card strong {
    font-size: 1.2rem;
  }

  .hero-topic-card {
    max-width: 145px;
    padding: 0.6rem 0.7rem;
    font-size: 0.64rem;
  }

  .hero-topic-one { top: 5%; left: 0; }
  .hero-topic-two { top: 15%; right: 0; }
  .hero-topic-three { right: 0; bottom: 12%; }
  .hero-topic-four { bottom: 4%; left: 0; }

  .topic-stage {
    padding: 1.15rem;
  }

  .topic-header {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-bottom: 1.4rem;
  }

  .topic-number {
    display: none;
  }

  .topic-header h3 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .topic-meta-grid {
    margin: 1.1rem 0;
  }

  .topic-meta-grid > div {
    padding: 1rem;
  }

  .topic-description {
    padding: 1rem 0 1.3rem;
  }

  .topic-description p {
    font-size: 0.95rem;
  }

  .topic-content-grid {
    gap: 1.6rem;
  }

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

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

  .topic-actions .text-link {
    align-self: flex-start;
  }

  .audience-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .audience-card > span {
    margin-bottom: 2.8rem;
  }

  .portrait-card {
    min-height: 440px;
  }

  .portrait-monogram-image {
    width: min(70%, 270px);
  }

  .collaboration-card {
    min-height: 270px;
  }

  .field-button {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 1rem;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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


@media (max-width: 640px) {
  .policy-nav ol {
    columns: 1;
  }
}
