:root {
  --navy: #071f40;
  --navy-deep: #03142d;
  --navy-mid: #12365f;
  --ink: #091a36;
  --gold: #ba6f08;
  --gold-bright: #d69221;
  --paper: #fbfbfa;
  --paper-blue: #f1f5f8;
  --line: #d9dfe7;
  --muted: #526076;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 30px 70px rgba(4, 20, 45, 0.18);
  --shell: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(90deg, rgba(7, 31, 64, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(7, 31, 64, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

a {
  color: inherit;
}

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

h1,
h2,
.lead-serif,
.wordmark-city,
.investment {
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(7, 31, 64, 0.11);
  background: rgba(251, 251, 250, 0.94);
  backdrop-filter: blur(14px);
}

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

.official-brand {
  display: block;
  flex: 0 0 170px;
  width: 170px;
}

.official-brand img {
  width: 100%;
  height: auto;
}

.wordmark {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 15px 32px;
  align-items: end;
  min-width: 184px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}

.wordmark::before {
  content: "♛";
  position: absolute;
  top: -8px;
  left: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  transform: translateX(-65%);
}

.wordmark-top {
  grid-column: 1 / -1;
  padding-left: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.wordmark-city {
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark-year {
  align-self: end;
  margin: 0 0 4px 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 31, 64, 0.15);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--navy-mid);
  box-shadow: 0 15px 34px rgba(7, 31, 64, 0.22);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.button-small {
  min-height: 46px;
  padding: 11px 17px;
  font-size: 0.72rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 128, 24, 0.09), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #fbfbfa 62%, #f2f6f9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -340px;
  width: 900px;
  height: 430px;
  border: 3px solid rgba(186, 111, 8, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 700ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rule {
  display: inline-block;
  width: 62px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lining-numerals,
.core-stats strong.lining-numerals {
  font-family: "Times New Roman", Times, serif;
  font-variant-numeric: lining-nums;
}

.hero h1 .lining-numerals {
  color: inherit;
}

.hero h1 span,
.centerpiece-heading h2 span,
.closing-copy h2 span {
  color: var(--gold);
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-support {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 42px;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

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

.hero-facts div {
  min-width: 0;
  padding: 20px 18px 20px 0;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 485px);
  padding: 34px 30px 26px;
  border: 1px solid rgba(7, 31, 64, 0.15);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  animation: rise-in 780ms 110ms ease both;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px -17px -16px 17px;
  border: 1px solid rgba(186, 111, 8, 0.45);
}

.hero-visual::after {
  inset: 31px -32px -30px 31px;
  border-color: rgba(7, 31, 64, 0.12);
}

.overview-card {
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(5, 22, 46, 0.24);
  transform: rotate(1.2deg);
  transition: transform 350ms ease;
}

.hero-visual:hover .overview-card {
  transform: rotate(0deg) translateY(-4px);
}

.overview-card img {
  width: 100%;
  height: auto;
}

.crown-mark {
  position: absolute;
  z-index: 2;
  top: -27px;
  left: 50%;
  color: var(--gold);
  font-size: 2.1rem;
  transform: translateX(-50%);
}

.visual-caption {
  margin: 24px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.visual-caption span {
  color: var(--gold);
}

.leadership-band {
  position: relative;
  color: var(--white);
  background: var(--navy);
  border-top: 3px solid var(--gold);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.4fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  min-height: 170px;
  padding-block: 36px;
}

.leadership-grid p {
  margin-bottom: 0;
}

.leadership-grid > p:last-child {
  color: #e8edf4;
  font-size: 1.04rem;
}

.band-label {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.18;
}

.section {
  padding: 120px 0;
}

.section-intro {
  max-width: 890px;
  margin: 0 auto 66px;
}

.centered {
  text-align: center;
}

.centered-eyebrow {
  justify-content: center;
}

.section-intro > p:last-child {
  max-width: 670px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.value-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: clamp(54px, 10vw, 150px);
}

.value-copy p {
  max-width: 650px;
  color: var(--muted);
}

.value-copy .lead-serif {
  color: var(--ink);
}

.lead-serif {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.lead-serif.light {
  color: var(--white);
}

.stat-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 55px 40px 45px;
  border: 1px solid var(--gold);
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 64px rgba(7, 31, 64, 0.1);
}

.mini-crown {
  position: absolute;
  top: -25px;
  left: 50%;
  padding: 0 18px;
  color: var(--gold);
  background: var(--paper);
  font-size: 2.25rem;
  transform: translateX(-50%);
}

.stat-card strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.stat-card span {
  max-width: 280px;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.gold-divider {
  width: 68%;
  height: 1px;
  margin: 35px 0;
  background: var(--gold);
}

.equation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 92px;
  padding: 26px 24px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  text-align: center;
  text-transform: uppercase;
}

.equation i {
  color: var(--gold);
  font-style: normal;
}

.equation-note {
  max-width: 790px;
  margin: 24px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
}

.centerpiece-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(49, 97, 144, 0.42), transparent 32%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 60%, #0b315c 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.centerpiece-section::before {
  content: "";
  position: absolute;
  top: -460px;
  left: 48%;
  width: 1100px;
  height: 620px;
  border: 1px solid rgba(214, 146, 33, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
}

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

.centerpiece-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: end;
  margin-bottom: 68px;
}

.centerpiece-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.35rem, 6vw, 6rem);
}

.centerpiece-copy {
  color: #d9e2ed;
}

.centerpiece-copy p:last-child {
  margin-bottom: 0;
}

.kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.centerpiece-copy .kicker {
  color: var(--gold-bright);
}

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

.profile-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.profile-gallery figure:nth-child(2) {
  transform: translateY(18px);
}

.profile-gallery figure:hover {
  box-shadow: 0 32px 52px rgba(0, 0, 0, 0.36);
  transform: translateY(-5px);
}

.profile-gallery figure:nth-child(2):hover {
  transform: translateY(11px);
}

.profile-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-note {
  margin: 52px 0 0;
  color: #aebbc9;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.extension-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(186, 111, 8, 0.055), transparent 24%),
    var(--paper);
}

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

.feature-card {
  overflow: hidden;
  display: grid;
  min-height: 550px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 31, 64, 0.08);
}

.feature-card-photo {
  grid-column: span 7;
  grid-template-columns: 0.82fr 1fr;
}

.feature-card-online {
  grid-column: span 5;
  grid-template-rows: auto 1fr;
}

.playbook-card {
  grid-column: 3 / span 8;
  grid-template-columns: 0.72fr 1fr;
  min-height: 430px;
  margin-top: 0;
}

.feature-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.feature-card-copy h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-card-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-image {
  min-height: 300px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-image {
  background: #171513;
}

.device-image {
  display: flex;
  align-items: center;
  padding: 12px 34px 38px;
  background: #fff;
}

.device-image img {
  height: auto;
  object-fit: contain;
}

.playbook-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 20px;
  background: var(--paper-blue);
}

.playbook-image img {
  width: min(100%, 270px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(7, 31, 64, 0.22));
  transform: rotate(-3deg);
}

.included-panel {
  margin-top: 60px;
  padding: 46px 50px 34px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.included-title {
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  text-align: center;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 21px;
}

.included-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list strong {
  margin-bottom: 3px;
  font-size: 0.97rem;
}

.included-list span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

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

.process-intro {
  margin-bottom: 74px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid #cbd4df;
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.process-grid h3 {
  margin: 3px 0 8px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 138px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 82, 130, 0.7), transparent 30%),
    var(--navy-deep);
  border-top: 3px solid var(--gold);
}

.closing-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -570px;
  width: 1500px;
  height: 700px;
  border: 2px solid rgba(214, 146, 33, 0.48);
  border-radius: 50%;
  transform: translateX(-50%);
}

.closing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(70px, 12vw, 170px);
}

.closing-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(3.7rem, 7vw, 6.7rem);
}

.investment {
  margin-bottom: 0;
  color: var(--gold-bright);
  font-size: clamp(4.2rem, 8vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.closing-details {
  align-self: center;
}

.closing-lede {
  margin-bottom: 34px;
  color: #dbe4ef;
  font-size: 1.08rem;
}

.deadline-card {
  display: grid;
  gap: 2px;
  margin-bottom: 34px;
  padding: 27px 30px;
  border-left: 3px solid var(--gold-bright);
  background: rgba(255, 255, 255, 0.07);
}

.deadline-card p,
.deadline-card span {
  margin: 0;
  color: #bfcbd9;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.deadline-card strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.closing-invite {
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: 1.43rem;
  line-height: 1.42;
}

.button-gold {
  border-color: var(--gold-bright);
  color: var(--navy-deep);
  background: var(--gold-bright);
}

.button-gold:hover {
  color: var(--navy-deep);
  background: #ebb04a;
}

.contact-line {
  margin: 26px 0 0;
  color: #d6dfeb;
  font-size: 0.9rem;
}

.contact-line a {
  color: var(--white);
  text-underline-offset: 3px;
}

.fine-print {
  margin: 22px 0 0;
  color: #91a2b7;
  font-size: 0.73rem;
}

.site-footer {
  padding: 34px 0;
  color: #aab7c7;
  background: #020d1f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-brand {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.site-footer a {
  color: var(--white);
  text-underline-offset: 4px;
}

.socal-footer {
  width: min(100%, 420px);
  margin-inline: auto;
  text-align: center;
}

.socal-logo-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1000 / 360;
  margin: 0 auto 18px;
}

.socal-logo-window img {
  position: absolute;
  width: 206.1%;
  max-width: none;
  height: auto;
  left: -54%;
  top: -37.5%;
}

.socal-footer p {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.core-section { scroll-margin-top: 150px; }
.core-section .section-intro { max-width: 1000px; margin-inline: auto; }
.core-section .section-intro h2 { font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 1.06; }
.core-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 48px 0 64px; }
.core-stats > div { padding: 8px 20px; text-align: center; border-right: 1px solid var(--line); }
.core-stats > div:last-child { border-right: 0; }
.core-stats strong { display: block; color: var(--gold); font: 400 clamp(2.6rem, 6vw, 4.5rem)/1.15 var(--serif); }
.core-stats span { display: block; margin-top: 12px; font-size: 0.875rem; letter-spacing: 0.09em; text-transform: uppercase; }
.core-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--gold); }
.core-heading h3 { margin: 0; font: 400 2.4rem/1.2 var(--serif); }
.core-heading p { margin: 0; color: var(--muted); font-size: 1rem; }
.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 64px; margin-top: 36px; }
.category-group h3 { color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.05rem; border-bottom: 2px solid var(--gold-bright); padding-bottom: 14px; margin-bottom: 18px; }
.category-group ol { padding-left: 2.1em; margin: 0; }
.category-group li { padding-left: 0.35em; margin: 8px 0; font-size: 1rem; line-height: 1.5; }
.category-group li::marker { color: var(--gold); font-weight: 700; }
.core-selection { margin-top: 42px; padding: 28px 32px; background: var(--paper-blue); border-left: 3px solid var(--gold-bright); }
.core-selection .lead-serif { margin-bottom: 8px; font-size: 1.65rem; line-height: 1.25; }
.core-selection p:last-child { margin-bottom: 0; color: var(--muted); }
.position-intro { max-width: 780px; margin: 80px auto 32px; }
.position-intro h3 { font: 400 clamp(2rem, 4vw, 3.5rem)/1.08 var(--serif); letter-spacing: -0.025em; }
.reader-question { padding: clamp(24px, 4vw, 48px); background: var(--navy); color: var(--white); border-top: 3px solid var(--gold-bright); }
.reader-question .lead-serif { max-width: 900px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.2; }
.reader-question p:last-child { margin-bottom: 0; color: #d6dfeb; }
.position-title { margin: 48px 0 28px; text-align: center; font: 400 2rem/1.2 var(--serif); }
.position-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.position-number { display: block; color: var(--gold); font: 400 2.5rem/1.2 var(--serif); margin-bottom: 16px; }
.position-grid h3 { margin-bottom: 12px; }
.position-grid p { color: var(--muted); font-size: 1rem; }
.association-note { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 36px; }
.association-note .lead-serif { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 12px; }
.association-note p:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .official-brand { flex-basis: 135px; width: 135px; }
  .category-grid, .position-grid { grid-template-columns: 1fr; gap: 28px; }
  .core-heading { display: block; }
  .core-heading p { margin-top: 12px; }
  .core-stats { margin: 32px 0 40px; }
  .core-stats > div { padding: 8px; }
  .core-stats strong { font-size: clamp(2rem, 8vw, 3rem); }
  .core-stats span { font-size: 0.875rem; letter-spacing: 0; }
  .core-selection { padding: 24px; }
}

.mobile-cta {
  display: none;
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr minmax(340px, 0.7fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 6.3vw, 5rem);
  }

  .feature-card-photo,
  .feature-card-online,
  .playbook-card {
    grid-column: 1 / -1;
  }

  .feature-card-online {
    grid-template-columns: 1fr 0.85fr;
    grid-template-rows: none;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(calc(100% - 34px), 720px);
  }

  body {
    padding-bottom: 68px;
  }

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

  .site-header .button {
    display: none;
  }

  .hero {
    padding: 66px 0 78px;
  }

  .hero-grid,
  .value-grid,
  .centerpiece-heading,
  .closing-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    width: min(88%, 455px);
    margin-top: 30px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div + div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-left: 0;
  }

  .hero-facts div + div {
    border-top: 1px solid var(--line);
  }

  .hero-facts span {
    margin-top: 0;
  }

  .leadership-grid {
    gap: 18px;
    padding: 42px 0;
  }

  .section,
  .closing-section {
    padding: 88px 0;
  }

  .value-grid {
    gap: 65px;
  }

  .stat-card {
    min-height: 430px;
  }

  .centerpiece-heading {
    gap: 38px;
  }

  .profile-gallery {
    display: flex;
    width: calc(100vw - 17px);
    margin-right: calc(17px - 100vw);
    overflow-x: auto;
    padding: 0 17px 34px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .profile-gallery figure,
  .profile-gallery figure:nth-child(2) {
    flex: 0 0 min(82vw, 600px);
    transform: none;
    scroll-snap-align: start;
  }

  .feature-card-photo,
  .feature-card-online,
  .playbook-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card-photo .feature-image {
    max-height: 560px;
  }

  .feature-card-online .feature-image {
    order: -1;
  }

  .playbook-card {
    margin-top: 0;
  }

  .included-panel {
    padding-inline: 0;
  }

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

  .closing-grid {
    gap: 55px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    color: var(--navy-deep);
    background: var(--gold-bright);
    box-shadow: 0 -10px 30px rgba(3, 20, 45, 0.2);
    font-size: 0.77rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .wordmark {
    min-width: 168px;
  }

  .wordmark-city {
    font-size: 1.82rem;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 14vw, 4.3rem);
  }

  h2,
  .centerpiece-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.4;
  }

  .eyebrow .rule {
    width: 35px;
    margin-top: 0.52em;
  }

  .centered-eyebrow .rule:last-child {
    display: none;
  }

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

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

  .hero-visual {
    width: calc(100% - 24px);
    padding: 24px 19px 20px;
  }

  .hero-visual::before {
    inset: 12px -11px -12px 11px;
  }

  .hero-visual::after {
    display: none;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .equation {
    flex-direction: column;
    gap: 5px;
  }

  .profile-gallery figure,
  .profile-gallery figure:nth-child(2) {
    flex-basis: 88vw;
  }

  .feature-card-copy {
    padding: 34px 26px 38px;
  }

  .feature-card-copy h3 {
    font-size: 2.25rem;
  }

  .device-image {
    padding: 26px 22px 14px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .closing-copy h2 {
    font-size: clamp(3.25rem, 16vw, 4.9rem);
  }

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

  .closing-invite {
    font-size: 1.25rem;
  }

  .closing-details .button {
    width: 100%;
  }

  .contact-line span {
    display: none;
  }

  .contact-line a {
    display: inline-block;
    margin-top: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
