:root {
  --intl-sky: #79cfde;
  --intl-blue: #009fb3;
  --intl-green: #82c83f;
  --intl-deep-green: #07984a;
  --intl-lime: #cfe31a;
  --charcoal: #4f5b5c;
  --ink: #101b21;
  --ink-soft: #53646b;
  --paper: #f7faf8;
  --white: #ffffff;
  --mint: #ecf8f1;
  --blue-wash: #e9f8fb;
  --rule: rgba(16, 27, 33, 0.14);
  --rule-light: rgba(255, 255, 255, 0.22);
  --ufg-navy: #17243d;
  --ufg-panel: #26384f;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --nav-h: 58px;
  --container: 1180px;
  --gutter: 56px;
  --shadow: 0 28px 90px -56px rgba(16, 27, 33, 0.38);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
}

body.index-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

.deck-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: var(--nav-h);
  padding: 9px 22px;
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid rgba(16, 27, 33, 0.14);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  text-decoration: none;
}

.nav-brand img:first-child {
  width: 190px;
  height: auto;
}

.nav-brand img:last-child {
  width: 96px;
  height: auto;
}

.nav-brand span {
  width: 1px;
  height: 26px;
  flex: 0 0 auto;
  background: linear-gradient(var(--intl-sky), var(--intl-lime), var(--intl-green));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--intl-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(16, 27, 33, 0.18);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: 900 0.75rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
}

.nav-actions button:hover,
.button.secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.progress {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--intl-sky), var(--intl-lime), var(--intl-green), var(--intl-blue));
  transition: width 220ms ease;
}

.folio-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 16;
  display: grid;
  gap: 8px;
  transform: translateY(-50%) rotate(180deg);
  color: rgba(16, 27, 33, 0.46);
  writing-mode: vertical-rl;
  pointer-events: none;
}

.folio-rail span {
  font: 700 0.72rem/1 var(--font-mono);
}

.folio-rail strong {
  font: 900 0.78rem/1 var(--font-body);
}

.slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 36px) var(--gutter) 46px;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 1061px) {
  .slide {
    height: 100vh;
    max-height: 100vh;
  }
}

.slide-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  max-width: calc(100vw - (var(--gutter) * 2));
  min-width: 0;
  margin: 0 auto;
}

.light {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(236, 248, 241, 0.72)),
    var(--mint);
}

.paper {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.84), rgba(233, 248, 251, 0.52)),
    var(--paper);
}

.white {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 1), rgba(233, 248, 251, 0.62));
}

.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, #0b3c46, #084d60 56%, #0a6f70);
}

.navy {
  color: var(--white);
  background:
    linear-gradient(135deg, #101b2f, var(--ufg-navy) 62%, #203a4e);
}

.slide-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.94), rgba(247, 250, 248, 0.78) 42%, rgba(247, 250, 248, 0.18)),
    linear-gradient(0deg, rgba(16, 27, 33, 0.28), transparent 48%);
}

.intl-mark,
.module-mark {
  position: absolute;
  z-index: 1;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(0, 159, 179, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.intl-mark::before,
.intl-mark::after,
.module-mark::before,
.module-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.intl-mark {
  right: 34px;
  top: 26px;
}

.intl-mark::before {
  inset: 70px;
  border: 1px solid rgba(207, 227, 26, 0.34);
}

.intl-mark::after {
  inset: 138px;
  border: 1px solid rgba(130, 200, 63, 0.28);
}

.module-mark {
  left: 30px;
  bottom: 28px;
  border-color: rgba(255, 255, 255, 0.18);
}

.module-mark::before {
  inset: 70px;
  border: 1px solid rgba(207, 227, 26, 0.28);
}

.module-mark::after {
  inset: 140px;
  border: 1px solid rgba(121, 207, 222, 0.24);
}

.color-rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 14px;
  background: linear-gradient(var(--intl-sky), var(--intl-lime), var(--intl-green), var(--intl-blue));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--intl-blue);
  font: 900 0.78rem/1.35 var(--font-mono);
  text-transform: uppercase;
}

.dark .eyebrow,
.navy .eyebrow,
.light-header .eyebrow {
  color: var(--intl-lime);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: 4.85rem;
}

h2 {
  margin-bottom: 26px;
  font-size: 3.95rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

p,
li,
dd,
dt,
a,
span {
  font-size: 1rem;
  line-height: 1.66;
}

.lead {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 1.23rem;
  line-height: 1.58;
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - var(--nav-h) - 96px);
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
}

.cover-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  padding: 15px 18px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.cover-lockup img:first-child {
  width: 235px;
}

.cover-lockup img:last-child {
  width: 118px;
}

.cover-lockup span,
.contact-lockup span {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(var(--intl-sky), var(--intl-lime), var(--intl-green));
}

.cover-copy {
  align-self: center;
  min-width: 0;
  max-width: 100%;
}

.cover h1 {
  max-width: 800px;
  font-size: 4.22rem;
}

.cover-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 880px);
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cover-pills li {
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.cover-contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.cover-contact span,
.cover-contact a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-decoration: none;
}

.cover-contact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 520;
}

.note-layout {
  display: grid;
  max-width: 930px;
  gap: 28px;
}

.note-card {
  padding: 58px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.note-card h2 {
  margin-bottom: 28px;
}

.note-card p {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.note-card footer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.note-card footer span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.note-card footer strong {
  display: block;
  margin-top: 6px;
  color: var(--intl-deep-green);
}

.split-layout,
.two-column,
.strategy-layout,
.safety-layout,
.visibility-layout,
.proof-layout,
.contact-layout,
.walkthrough-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.split-copy p:not(.eyebrow),
.strategy-copy p,
.partner-headline p,
.safety-copy p,
.visibility-copy p,
.proof-copy p,
.walkthrough-copy p,
.contact-card p,
.office-card p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.campus-panels {
  display: grid;
  gap: 18px;
}

.campus-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 222px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.campus-panel img {
  width: 100%;
  height: 100%;
  min-height: 222px;
  object-fit: cover;
}

.campus-panel div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.campus-panel span,
.person-card span {
  color: var(--intl-blue);
  font: 900 0.78rem/1.3 var(--font-mono);
  text-transform: uppercase;
}

.campus-panel p,
.service-grid p,
.safety-grid span,
.credential-card p,
.walkthrough-steps span,
.qa-list dd {
  color: var(--ink-soft);
}

.strategy-layout {
  grid-template-columns: 0.95fr 0.8fr;
}

.pillar-figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.pillar-figure img {
  width: min(470px, 100%);
}

.partner-headline p,
.dark .commitment-grid li {
  color: rgba(255, 255, 255, 0.78);
}

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

.commitment-grid article {
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--rule-light);
  background: rgba(255, 255, 255, 0.09);
}

.commitment-grid h3 {
  color: var(--intl-lime);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 520;
}

.commitment-grid ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.commitment-grid li {
  position: relative;
  padding-left: 20px;
}

.commitment-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--intl-lime);
}

.section-header {
  display: grid;
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-grid article,
.safety-grid article,
.credential-card,
.office-card,
.contact-card {
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 218px;
  padding: 28px;
}

.service-grid article > span {
  display: block;
  width: 48px;
  height: 5px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--intl-sky), var(--intl-lime), var(--intl-green));
}

.safety-layout {
  grid-template-columns: 0.76fr 1.24fr;
}

.safety-grid article {
  min-height: 154px;
  padding: 24px;
}

.safety-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--intl-deep-green);
}

.safety-grid span {
  display: block;
  font-size: 0.95rem;
}

.visibility-photo {
  height: 540px;
  margin: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visibility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qa-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.qa-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.qa-list dt {
  color: var(--intl-deep-green);
  font-family: var(--font-mono);
  font-weight: 900;
}

.qa-list dd {
  margin: 0;
}

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

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-tags span {
  padding: 10px 13px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-weight: 900;
}

.credential-card {
  padding: 34px;
}

.credential-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin: 30px 0;
}

.credential-logos img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--rule);
}

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

.person-card {
  display: grid;
  grid-template-rows: 310px 1fr;
  min-height: 560px;
  border: 1px solid var(--rule-light);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.person-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.9) contrast(1.03);
}

.people-grid .person-card:nth-child(1) img {
  object-position: center 31%;
}

.people-grid .person-card:nth-child(2) img {
  object-position: center 29%;
}

.people-grid .person-card:nth-child(3) img {
  object-position: 52% 18%;
}

.person-card div {
  padding: 28px;
}

.person-card span {
  color: var(--intl-lime);
}

.person-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 520;
}

.person-card p {
  color: rgba(255, 255, 255, 0.74);
}

.person-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--intl-lime);
  font-weight: 900;
  text-decoration: none;
}

.person-card-featured {
  border-color: rgba(207, 227, 26, 0.58);
}

.walkthrough-layout {
  grid-template-columns: 1fr 0.92fr;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  padding: 0 22px;
}

.button.primary {
  border-color: var(--intl-deep-green);
  color: var(--white);
  background: var(--intl-deep-green);
}

.button.primary:hover {
  background: var(--intl-blue);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.walkthrough-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.walkthrough-steps li {
  position: relative;
  min-height: 156px;
  padding: 28px 28px 28px 86px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  counter-increment: step;
}

.walkthrough-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 28px;
  top: 31px;
  color: var(--intl-blue);
  font: 900 1.05rem/1 var(--font-mono);
}

.walkthrough-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--intl-deep-green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 520;
}

.contact-layout {
  grid-template-columns: 1fr 0.78fr;
}

.contact-card,
.office-card {
  padding: 44px;
}

.contact-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.contact-lockup img:first-child {
  width: 275px;
}

.contact-lockup img:last-child {
  width: 114px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-methods a {
  width: fit-content;
  color: var(--intl-deep-green);
  font-weight: 900;
  text-decoration-color: rgba(0, 159, 179, 0.26);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.office-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 520;
}

.office-card dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.office-card dt {
  color: var(--intl-deep-green);
  font-weight: 900;
}

.office-card dd {
  margin: 0;
  color: var(--ink-soft);
}

.prepared {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.slide-index[hidden] {
  display: none;
}

.slide-index {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 27, 33, 0.7);
  backdrop-filter: blur(18px);
}

.index-panel {
  width: min(720px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 90px -40px rgba(0, 0, 0, 0.4);
}

.index-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.index-panel header span {
  color: var(--intl-deep-green);
  font-weight: 900;
}

.index-panel button {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.index-panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-panel a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
}

.index-panel a:hover,
.index-panel a.is-active {
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.78);
}

.index-panel small {
  color: var(--intl-blue);
  font-family: var(--font-mono);
  font-weight: 900;
}

.index-panel strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 520;
}

.slide .slide-inner,
.slide .cover-lockup,
.slide .cover-pills,
.slide .cover-contact {
  transform: none;
  opacity: 1;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 34px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .nav-links {
    display: none;
  }

  .deck-nav {
    grid-template-columns: 1fr auto;
  }

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

@media (max-width: 900px) {
  :root {
    --nav-h: 70px;
    --gutter: 22px;
  }

  .deck-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-brand img:first-child {
    width: 158px;
  }

  .nav-brand img:last-child {
    width: 78px;
  }

  .nav-actions {
    justify-content: space-between;
  }

  .nav-actions button {
    min-height: 32px;
    padding: 0 10px;
  }

  .folio-rail,
  .intl-mark,
  .module-mark {
    display: none;
  }

  .slide {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 34px;
    overflow: visible;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .lead,
  .note-card p {
    font-size: 1.08rem;
  }

  .cover-grid {
    min-height: 720px;
  }

  .cover-lockup {
    gap: 14px;
    padding: 12px;
  }

  .cover-lockup img:first-child {
    width: 204px;
  }

  .cover-lockup img:last-child {
    width: 92px;
  }

  .cover-pills,
  .split-layout,
  .two-column,
  .strategy-layout,
  .safety-layout,
  .visibility-layout,
  .proof-layout,
  .contact-layout,
  .walkthrough-layout {
    grid-template-columns: 1fr;
  }

  .cover-contact {
    align-items: start;
    flex-direction: column;
  }

  .note-card,
  .contact-card,
  .office-card,
  .credential-card {
    padding: 30px;
  }

  .campus-panel {
    grid-template-columns: 1fr;
  }

  .campus-panel img {
    height: 240px;
  }

  .service-grid,
  .safety-grid,
  .commitment-grid,
  .people-grid,
  .credential-logos {
    grid-template-columns: 1fr;
  }

  .commitment-grid article,
  .person-card {
    min-height: auto;
  }

  .person-card {
    grid-template-rows: 260px auto;
  }

  .person-card img {
    height: 260px;
  }

  .visibility-photo {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .cover-grid {
    gap: 22px;
  }

  .cover-lockup,
  .contact-lockup {
    flex-wrap: wrap;
  }

  .cover-lockup span,
  .contact-lockup span {
    display: none;
  }

  .cover-lockup img:first-child,
  .contact-lockup img:first-child {
    width: 188px;
  }

  .cover-lockup img:last-child,
  .contact-lockup img:last-child {
    width: 86px;
  }

  .campus-panel div,
  .service-grid article,
  .safety-grid article,
  .walkthrough-steps li,
  .person-card div {
    padding: 22px;
  }

  .walkthrough-steps li {
    padding-left: 58px;
  }

  .walkthrough-steps li::before {
    left: 22px;
  }

  .qa-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@media print {
  @page {
    size: landscape;
    margin: 0;
  }

  body {
    background: white;
  }

  .deck-nav,
  .folio-rail,
  .slide-index,
  .skip-link {
    display: none !important;
  }

  .slide {
    min-height: 100vh;
    height: 100vh;
    page-break-after: always;
    break-after: page;
    padding: 42px 58px;
    overflow: hidden;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.1rem;
  }
}
