:root {
  --navy: #00255b;
  --navy-deep: #001838;
  --navy-soft: #1b3d7a;
  --gold: #b8901f;
  --gold-soft: #d9b85a;
  --gold-deep: #7e6310;
  --cream: #f2efe6;
  --cream-deep: #e8e3d4;
  --paper: #faf7ee;
  --bone: #ddd7c5;
  --slate-900: #14181f;
  --slate-700: #2e343f;
  --slate-500: #5a6068;
  --slate-300: #a4a8ae;
  --slate-100: #deddd9;
  --rule: rgba(0, 37, 91, 0.2);
  --rule-soft: rgba(0, 37, 91, 0.1);
  --serif: "Bitter", "Roboto Slab", Charter, Georgia, serif;
  --sans: "Carlito", "Calibri", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --maxw: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 124px;
}

body {
  margin: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(0, 37, 91, 0.022) 1px, transparent 1px),
    radial-gradient(rgba(0, 37, 91, 0.014) 1px, transparent 1px);
  background-position: 0 0, 1px 1px;
  background-size: 3px 3px, 7px 7px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  max-width: 690px;
}

h1 span,
h2 span {
  color: var(--gold-deep);
  display: block;
  font-style: italic;
}

h2 {
  font-size: 58px;
}

h3 {
  font-size: 26px;
}

p {
  color: var(--slate-700);
}

.section {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 112px 32px;
}

.site-header {
  align-items: center;
  background: rgba(242, 239, 230, 0.94);
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 98px;
  padding: 24px 52px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0;
}

.brand-wordmark {
  height: 44px;
  width: auto;
}

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

.site-nav a,
.nav-cta,
.criteria-strip span,
.fit-strip span,
.criteria-list span,
.contact-form span,
.footer-grid h2,
.process-timeline > article > span,
.video-meta {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  color: var(--navy);
  padding-bottom: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: var(--cream);
  padding: 12px 22px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent;
  color: var(--navy);
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 690px;
  padding-bottom: 86px;
  padding-top: 48px;
}

.hero-copy {
  max-width: 650px;
  padding-top: 0;
}

.hero-copy > p:not(.eyebrow):not(.lede) {
  font-size: 19px;
  line-height: 1.68;
  max-width: 590px;
}

.eyebrow {
  color: var(--gold-deep);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.lede {
  color: var(--slate-700);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
  margin: 32px 0 22px;
  max-width: 650px;
}

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

.btn {
  align-items: center;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: var(--cream);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 56px;
  padding: 17px 26px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--navy);
  transform: translateY(-1px);
}

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

.btn-gold:hover,
.btn-gold:focus-visible {
  background: transparent;
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--navy);
  color: var(--cream);
}

.video-card {
  align-self: center;
  min-width: 0;
  padding-top: 62px;
}

.video-frame {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0a1f4a 0%, #001e48 48%, #0a1f4a 100%);
  border: 1.5px solid var(--navy);
  box-shadow: 0 28px 80px -28px rgba(1, 30, 72, 0.45);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-frame-button {
  border-radius: 0;
  cursor: pointer;
  display: block;
  padding: 0;
  text-align: left;
}

.video-frame-button:hover .video-poster,
.video-frame-button:focus-visible .video-poster {
  transform: scale(1.025);
}

.video-poster {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 240ms ease;
  width: 100%;
}

.video-frame::after {
  background:
    linear-gradient(180deg, rgba(0, 24, 56, 0.2), rgba(0, 24, 56, 0.02) 45%, rgba(0, 24, 56, 0.26)),
    linear-gradient(90deg, rgba(0, 24, 56, 0.16), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.play-button {
  align-items: center;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(184, 144, 31, 0.16);
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  height: 68px;
  justify-content: center;
  left: 24px;
  padding: 0;
  position: absolute;
  top: auto;
  bottom: 24px;
  transform: none;
  width: 68px;
  z-index: 3;
}

.play-button:hover,
.play-button:focus-visible {
  transform: scale(1.04);
}

.play-button svg {
  fill: currentColor;
  height: 25px;
  width: 24px;
}

.video-meta {
  color: var(--slate-500);
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.criteria-strip {
  align-items: center;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  color: var(--slate-500);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: center;
  padding: 28px 32px;
}

.criteria-strip span::before {
  color: var(--gold-deep);
  content: "o";
  margin-right: 10px;
}

.page-hero {
  align-items: end;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  max-width: var(--maxw);
  min-height: 560px;
  padding: 112px 32px 88px;
}

.page-single {
  min-height: 100vh;
}

.page-hero h1 {
  font-size: 64px;
}

.page-hero .lede {
  max-width: 760px;
}

.page-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 30px;
}

.page-card h2,
.page-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.page-card p + p,
.page-card p + .btn {
  margin-top: 18px;
}

.fit-strip {
  background: var(--navy);
  color: var(--cream);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fit-strip span {
  border-right: 1px solid rgba(242, 239, 230, 0.14);
  color: rgba(242, 239, 230, 0.86);
  padding: 24px 28px;
}

.fit-strip span:last-child {
  border-right: 0;
}

.fit-strip strong {
  color: var(--gold-soft);
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin-top: 8px;
  text-transform: none;
}

.split-section {
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 72px;
  grid-template-columns: 0.82fr 1.18fr;
}

.split-section h2 {
  max-width: 580px;
}

.detail-list {
  border-top: 5px double var(--rule);
}

.detail-list article {
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: 190px minmax(0, 1fr);
  padding: 30px 0;
}

.detail-list span {
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.detail-list p {
  margin-top: 10px;
}

.note-panel {
  border-left: 2.5px solid var(--gold);
  padding-left: 30px;
}

.note-panel p {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.note-panel p + p {
  margin-top: 22px;
}

.cta-band {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  max-width: var(--maxw);
}

.cta-band h2 {
  font-size: 46px;
  max-width: 820px;
}

.media-plate {
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}

.media-plate img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-plate-portrait img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.bio-proof {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bio-proof article {
  border-top: 1.5px solid var(--rule);
  padding-top: 18px;
}

.bio-proof h3 {
  margin-top: 14px;
}

.bio-proof p {
  margin-top: 10px;
}

.bio-proof strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.thesis,
.owner-letter,
.etl-meaning {
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 72px;
  grid-template-columns: 260px 1fr;
}

.section-index {
  align-self: start;
  padding-top: 4px;
}

.section-index .eyebrow {
  margin-bottom: 24px;
  width: 100%;
}

.thesis h2,
.owner-letter h2,
.etl-meaning h2 {
  font-size: 48px;
  max-width: 900px;
}

.thesis p:not(.eyebrow),
.owner-letter p:not(.eyebrow),
.etl-meaning p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.48;
  margin-top: 26px;
  max-width: 920px;
}

.etl-logo-plate {
  background: var(--paper);
  border: 1px solid var(--rule);
  margin-top: 30px;
  padding: 28px 22px;
}

.etl-logo-plate img {
  margin: 0 auto;
  width: min(180px, 100%);
}

.owner-letter {
  background: rgba(250, 247, 238, 0.54);
}

.owner-letter article {
  border-left: 2.5px solid var(--gold);
  padding-left: 36px;
}

.rule-double {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-top: 1.5px solid var(--navy);
  height: 5px;
  margin: 0;
  width: 84px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate-700);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  max-width: 370px;
}

.criteria {
  border-bottom: 1px solid var(--rule);
}

.criteria-list {
  border-top: 5px double var(--rule);
}

.criteria-list article {
  align-items: baseline;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: 170px minmax(0, 1fr) 280px;
  padding: 32px 0;
}

.criteria-list span {
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.18;
  padding-left: 14px;
  text-transform: none;
}

.criteria-list p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.paper-navy {
  background-color: var(--navy);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(rgba(184, 144, 31, 0.03) 1px, transparent 1px);
  background-position: 0 0, 1px 1px;
  background-size: 3px 3px, 7px 7px;
  color: var(--cream);
}

.process {
  max-width: none;
  padding-left: max(32px, calc((100vw - var(--maxw)) / 2 + 32px));
  padding-right: max(32px, calc((100vw - var(--maxw)) / 2 + 32px));
}

.paper-navy h2,
.paper-navy h3 {
  color: var(--cream);
}

.paper-navy p {
  color: rgba(242, 239, 230, 0.82);
}

.paper-navy .eyebrow,
.paper-navy .section-heading p {
  color: var(--gold-soft);
}

.process-timeline {
  border-top: 1.5px solid rgba(242, 239, 230, 0.3);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-timeline article {
  border-right: 1px solid rgba(242, 239, 230, 0.18);
  padding: 42px 26px 10px 0;
}

.process-timeline article + article {
  padding-left: 26px;
}

.process-timeline article:last-child {
  border-right: 0;
}

.process-timeline span {
  color: var(--gold-soft);
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 28px;
}

.process-timeline h3 {
  font-size: 25px;
}

.process-timeline p {
  font-size: 16px;
  margin-top: 14px;
}

.jeremy {
  align-items: start;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 72px;
  grid-template-columns: 260px 1fr;
}

.jeremy .portrait-plate {
  margin-top: 30px;
}

.jeremy > div:last-child > p:not(.eyebrow):not(.lede) {
  margin-top: 18px;
  max-width: 720px;
}

.change-list {
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 72px;
  grid-template-columns: 0.8fr 1.2fr;
}

.change-list h2 {
  max-width: 480px;
}

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

.change-columns article {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 30px;
}

.change-columns h3 {
  border-bottom: 1.5px solid var(--rule);
  margin-bottom: 20px;
  padding-bottom: 18px;
}

.change-columns ul {
  color: var(--slate-700);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.change-columns li::marker {
  color: var(--gold-deep);
}

.portrait-plate {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bone), var(--cream-deep));
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}

.portrait-photo {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  width: 100%;
}

.portrait-plate::after {
  background: linear-gradient(180deg, rgba(0, 37, 91, 0.06), rgba(0, 37, 91, 0.24));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.portrait-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.portrait-inner .eyebrow {
  left: 18px;
  position: absolute;
  top: 18px;
}

.portrait-inner svg {
  color: var(--navy);
  height: 122px;
  opacity: 0.35;
  stroke: currentColor;
  stroke-width: 1;
  width: 122px;
}

.portrait-inner strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  margin-top: 14px;
}

.portrait-inner em {
  bottom: 18px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  position: absolute;
  right: 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.proof-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.proof-grid article {
  border-top: 1.5px solid var(--rule);
  padding-top: 20px;
}

.proof-grid p {
  margin-top: 10px;
}

.pull-quote {
  border-bottom: 1px solid var(--rule);
  padding: 116px 32px;
  text-align: center;
}

.pull-quote .eyebrow {
  margin-bottom: 30px;
}

.pull-quote blockquote {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 1040px;
}

.pull-quote cite {
  color: var(--slate-500);
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  margin-top: 32px;
  text-transform: uppercase;
}

.contact {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-copy h2 {
  font-size: 68px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 8px;
  margin-top: 34px;
}

.contact-lines a {
  color: var(--navy);
}

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

.bot-field {
  display: none;
}

.text-link {
  border-bottom: 1.5px solid var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.contact-form label {
  display: block;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--slate-500);
  display: block;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--rule);
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  outline: none;
  padding: 13px 0;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-footer {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.form-footer em {
  color: var(--slate-500);
  font-family: var(--serif);
  font-size: 16px;
}

.site-footer {
  padding: 78px max(32px, calc((100vw - var(--maxw)) / 2 + 32px)) 34px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 2.15fr repeat(3, 0.9fr);
  margin-bottom: 54px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.footer-brand img:first-child {
  height: 126px;
  width: auto;
}

.footer-brand img:last-child {
  height: 126px;
  width: auto;
}

.footer-grid h2 {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(242, 239, 230, 0.86);
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(242, 239, 230, 0.18);
  color: rgba(242, 239, 230, 0.68);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: space-between;
  padding-top: 26px;
  text-transform: uppercase;
}

.footer-bottom span:last-child {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}

.video-dialog {
  background: transparent;
  border: 0;
  max-width: 1080px;
  padding: 18px;
  width: min(1080px, calc(100vw - 24px));
}

.video-dialog::backdrop {
  background: rgba(20, 24, 31, 0.66);
  backdrop-filter: blur(10px);
}

.dialog-panel {
  background: var(--paper);
  border: 1.5px solid var(--navy);
  box-shadow: 0 30px 90px rgba(0, 24, 56, 0.34);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  padding: 28px;
  position: relative;
}

.dialog-video {
  background: var(--navy-deep);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dialog-video video {
  display: block;
  height: 100%;
  width: 100%;
}

.dialog-copy {
  align-self: center;
  padding: 8px 20px 8px 0;
}

.dialog-panel h2 {
  font-size: 40px;
  margin-bottom: 22px;
}

.dialog-panel p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-top: 16px;
}

.dialog-close {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--cream);
  cursor: pointer;
  font-size: 16px;
  height: 34px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  z-index: 2;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: transparent;
  color: var(--navy);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 48px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 28px;
  }

  .site-nav {
    flex: 1 1 100%;
    gap: 22px;
    order: 3;
    overflow-x: auto;
    padding-top: 10px;
  }

  .hero,
  .page-hero,
  .jeremy,
  .contact,
  .thesis,
  .owner-letter,
  .change-list,
  .etl-meaning,
  .split-section {
    grid-template-columns: 1fr;
  }

  .page-hero {
    align-items: start;
    gap: 42px;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 64px;
  }

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

  .hero {
    min-height: auto;
  }

  .video-card {
    padding-top: 0;
  }

  .criteria-list article {
    grid-template-columns: 150px 1fr;
  }

  .criteria-list article p {
    grid-column: 2;
  }

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

  .process-timeline article,
  .process-timeline article + article {
    border-bottom: 1px solid rgba(242, 239, 230, 0.18);
    border-right: 0;
    padding: 28px 0;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 17px;
    overflow-x: hidden;
  }

  h1 {
    font-size: 42px;
    max-width: 346px;
    overflow-wrap: break-word;
    width: min(100%, 346px);
  }

  h2,
  .page-hero h1,
  .contact-copy h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 23px;
  }

  .section,
  .process,
  .page-hero {
    max-width: 100vw;
    padding: 76px 22px;
  }

  .section > *,
  .hero > *,
  .page-hero > *,
  .split-section > *,
  .contact > *,
  .jeremy > * {
    min-width: 0;
  }

  .site-header {
    gap: 14px 18px;
    min-height: 0;
    padding: 16px 18px;
  }

  .brand-wordmark {
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
    overflow: visible;
    width: min(100%, 346px);
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero {
    gap: 42px;
    padding-top: 62px;
  }

  .hero-copy,
  .hero-copy > p:not(.eyebrow):not(.lede),
  .lede {
    width: min(100%, 346px);
    max-width: 346px;
  }

  .hero-actions {
    width: min(100%, 346px);
  }

  .hero-actions,
  .form-footer,
  .footer-bottom,
  .section-heading,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

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

  .fit-strip span {
    border-bottom: 1px solid rgba(242, 239, 230, 0.14);
    border-right: 0;
  }

  .fit-strip span:last-child {
    border-bottom: 0;
  }

  .detail-list article {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }

  .note-panel {
    padding-left: 20px;
  }

  .note-panel p {
    font-size: 21px;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .btn {
    width: 100%;
  }

  .video-caption strong {
    font-size: 19px;
  }

  .play-button {
    bottom: 18px;
    height: 58px;
    left: 18px;
    width: 58px;
  }

  .play-button svg {
    height: 22px;
    width: 21px;
  }

  .video-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .criteria-list article {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }

  .criteria-list article p {
    grid-column: auto;
  }

  .proof-grid,
  .contact-form,
  .change-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pull-quote {
    padding: 82px 22px;
  }

  .pull-quote blockquote {
    font-size: 32px;
  }

  .dialog-panel {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .dialog-copy {
    padding: 26px 0 0;
  }

  .dialog-panel h2 {
    font-size: 32px;
  }

  .footer-brand img:first-child,
  .footer-brand img:last-child {
    height: 92px;
  }
}
