:root {
  --pacific: #0e3a52;
  --pacific-deep: #08293b;
  --crest-blue: #2f98b7;
  --sea-glass: #7fa8a0;
  --fog: #eaf0f3;
  --fog-soft: #f5f8f8;
  --sand: #e6d9c2;
  --sand-light: #f4ecde;
  --crest-gold: #bfa15c;
  --gold-deep: #8f6c2d;
  --ink: #0f1a22;
  --ink-soft: #465a66;
  --white: #ffffff;
  --rule: rgba(14, 58, 82, 0.18);
  --rule-light: rgba(255, 255, 255, 0.24);
  --ufg-navy: #1b2a44;
  --ufg-warm: #a8702f;
  --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 -54px rgba(8, 41, 59, 0.48);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--fog-soft);
  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(--pacific-deep);
  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(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: var(--nav-h);
  padding: 10px 22px;
  background: rgba(245, 248, 248, 0.86);
  border-bottom: 1px solid rgba(14, 58, 82, 0.14);
  backdrop-filter: blur(18px);
}

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

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

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

.nav-brand span {
  width: 1px;
  height: 24px;
  flex: 0 0 auto;
  background: var(--crest-gold);
}

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

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

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

.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(14, 58, 82, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--pacific);
  background: rgba(255, 255, 255, 0.68);
  font: 800 0.75rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
}

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

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

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--crest-blue), var(--crest-gold), var(--sea-glass));
  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(14, 58, 82, 0.58);
  writing-mode: vertical-rl;
  pointer-events: none;
}

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

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

.deck {
  width: 100%;
}

.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));
  margin: 0 auto;
}

.fog {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(234, 240, 243, 0.2)),
    var(--fog);
}

.paper {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(244, 236, 222, 0.34)),
    var(--fog-soft);
}

.sand {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5), rgba(230, 217, 194, 0.72)),
    var(--sand);
}

.pacific {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--pacific-deep), var(--pacific) 66%, #15566a);
}

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

.dark-photo {
  color: var(--white);
  background: var(--pacific-deep);
}

.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(5, 25, 36, 0.88), rgba(5, 25, 36, 0.48) 46%, rgba(5, 25, 36, 0.22)),
    linear-gradient(0deg, rgba(5, 25, 36, 0.35), transparent 42%);
}

.photo-wash.coastal {
  background:
    linear-gradient(90deg, rgba(5, 25, 36, 0.9), rgba(5, 25, 36, 0.52) 52%, rgba(5, 25, 36, 0.12)),
    linear-gradient(0deg, rgba(5, 25, 36, 0.6), transparent 48%);
}

.photo-wash.soft {
  background:
    linear-gradient(90deg, rgba(5, 25, 36, 0.74), rgba(5, 25, 36, 0.28)),
    linear-gradient(0deg, rgba(5, 25, 36, 0.52), transparent 50%);
}

.wave-mark {
  position: absolute;
  z-index: 1;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(191, 161, 92, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.wave-mark::before,
.wave-mark::after {
  content: "";
  position: absolute;
  inset: 66px;
  border: 1px solid rgba(191, 161, 92, 0.18);
  border-radius: 50%;
}

.wave-mark::after {
  inset: 132px;
}

.wave-mark-a {
  right: 34px;
  top: 24px;
}

.wave-mark-b {
  left: 28px;
  bottom: 26px;
}

.horizon-line {
  position: absolute;
  left: 8%;
  top: 28%;
  z-index: 0;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 161, 92, 0.58), transparent);
}

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

.dark-photo .eyebrow,
.pacific .eyebrow,
.navy .eyebrow,
.section-header.light .eyebrow {
  color: var(--sand);
}

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

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

h1 {
  max-width: 870px;
  margin-bottom: 26px;
  font-size: 5rem;
}

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

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

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

.lead {
  max-width: 720px;
  font-size: 1.25rem;
  line-height: 1.6;
}

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

.cover-topline {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid var(--rule-light);
  background: rgba(5, 25, 36, 0.24);
  backdrop-filter: blur(12px);
}

.cover-topline img:first-child {
  width: 225px;
}

.cover-topline img:last-child {
  width: 118px;
  filter: brightness(0) invert(1);
}

.cover-topline span {
  width: 1px;
  align-self: stretch;
  background: var(--crest-gold);
}

.cover-copy {
  align-self: center;
}

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

.cover-pills li {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--rule-light);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

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

.cover-contact span,
.cover-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.letter-layout {
  display: grid;
  max-width: 920px;
  gap: 28px;
}

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

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

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

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

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

.letter-card footer strong {
  display: block;
  margin-top: 6px;
  color: var(--pacific);
}

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

.split-copy p:not(.eyebrow),
.partner-headline p,
.stewardship-intro 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.76);
  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(--crest-blue);
  font: 800 0.78rem/1.3 var(--font-mono);
  text-transform: uppercase;
}

.campus-panel p {
  color: var(--ink-soft);
}

.coast-layout {
  display: grid;
  align-content: end;
  min-height: calc(100vh - var(--nav-h) - 110px);
  gap: 34px;
}

.coast-layout article {
  width: min(760px, 100%);
}

.coast-layout p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.condition-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--rule-light);
  background: rgba(5, 25, 36, 0.32);
  backdrop-filter: blur(14px);
}

.condition-strip div {
  min-height: 152px;
  padding: 22px;
  border-right: 1px solid var(--rule-light);
}

.condition-strip div:last-child {
  border-right: 0;
}

.condition-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 520;
}

.condition-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.partner-headline p,
.pacific .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(--sand);
  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 {
  padding-left: 20px;
  position: relative;
}

.commitment-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--crest-gold);
  transform: rotate(45deg);
}

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

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

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

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

.service-grid article > span,
.stewardship-notes article > span {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--crest-gold);
}

.service-grid p,
.stewardship-notes p {
  color: var(--ink-soft);
}

.rhythm-layout {
  display: grid;
  grid-template-columns: 0.78fr 0.95fr 0.7fr;
  gap: 34px;
  align-items: center;
}

.rhythm-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.timeline strong {
  color: var(--pacific);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.timeline span {
  color: var(--ink-soft);
}

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

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

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

.stewardship-notes article {
  min-height: 210px;
  padding: 28px;
}

.accreditation-card {
  display: grid;
  align-content: center;
  gap: 18px;
}

.accreditation-card img {
  width: 270px;
  max-width: 100%;
}

.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.84) contrast(1.04);
}

.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(--sand);
}

.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(--sand);
  font-weight: 800;
  text-decoration: none;
}

.person-card-featured {
  border-color: rgba(191, 161, 92, 0.55);
}

.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(--pacific);
  color: var(--white);
  background: var(--pacific);
}

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

.button.secondary {
  color: var(--pacific);
  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.76);
  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(--crest-gold);
  font: 800 1.05rem/1 var(--font-mono);
}

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

.walkthrough-steps span {
  color: var(--ink-soft);
}

.quiet-layout {
  display: grid;
  align-content: end;
  min-height: calc(100vh - var(--nav-h) - 110px);
  max-width: 960px;
}

.quiet-layout h2 {
  max-width: 900px;
}

.quiet-layout p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.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: 210px;
}

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

.contact-lockup span {
  width: 1px;
  height: 34px;
  background: var(--crest-gold);
}

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

.contact-methods a {
  width: fit-content;
  color: var(--pacific);
  font-weight: 800;
  text-decoration-color: rgba(47, 152, 183, 0.28);
  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(--pacific);
  font-weight: 800;
}

.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(8, 41, 59, 0.72);
  backdrop-filter: blur(18px);
}

.index-panel {
  width: min(720px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: 30px;
  color: var(--ink);
  background: var(--fog-soft);
  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(--pacific);
  font-weight: 800;
}

.index-panel button {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--pacific);
  background: transparent;
  font-weight: 800;
  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.7);
}

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

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

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

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

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

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .nav-links {
    display: none;
  }

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

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

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

  .rhythm-photo {
    display: none;
  }
}

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

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

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

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

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

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

  .folio-rail {
    display: none;
  }

  .wave-mark {
    display: none;
  }

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

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .lead,
  .letter-card p,
  .coast-layout p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .cover-grid,
  .coast-layout,
  .quiet-layout {
    min-height: 720px;
  }

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

  .cover-topline img:first-child {
    width: 166px;
  }

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

  .cover-pills,
  .split-layout,
  .two-column,
  .stewardship-layout,
  .contact-layout,
  .walkthrough-layout,
  .rhythm-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .condition-strip,
  .service-grid,
  .commitment-grid,
  .stewardship-notes,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .condition-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .condition-strip div:last-child {
    border-bottom: 0;
  }

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

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

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

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

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .cover-grid {
    gap: 22px;
  }

  .cover-topline {
    flex-wrap: wrap;
  }

  .cover-topline span {
    display: none;
  }

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

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

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

  .contact-lockup span {
    display: none;
  }

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

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

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

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

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.1rem;
  }
}
