@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  --blue: #005bac;
  --white: #ffffff;
  --shadow: rgba(0, 28, 62, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

html.home-page {
  scroll-snap-type: y proximity;
}

html.home-page body {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}

body {
  margin: 0;
  color: #101827;
  font-family: "Pretendard", "Malgun Gothic", sans-serif;
  background: #ffffff;
}

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

.landing {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.background-slider,
.slide {
  position: absolute;
  inset: 0;
}

.background-slider {
  z-index: -2;
}

.slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 6500ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide--pull-right {
  background-position: 38% center;
}

.landing::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 28, 62, 0.66) 0%, rgba(0, 28, 62, 0.34) 42%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.48));
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 5vw, 72px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 21vw, 360px);
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.social-nav {
  position: absolute;
  top: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  transform: translateX(-50%);
  pointer-events: auto;
}

.social-link {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  transition: transform 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  display: block;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.social-link img.facebook-icon {
  width: 38px;
  height: 38px;
  max-width: none;
  max-height: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1180px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 160px 0 clamp(150px, 17vh, 210px);
}

.eyebrow {
  margin: 0;
  font-size: clamp(23px, 3.1vw, 45px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 22px var(--shadow);
  transform: translateY(0);
}

.sentence-slider {
  position: relative;
  height: 7.35em;
  overflow: hidden;
  width: min(780px, calc(100vw - 72px));
  margin: 0;
  line-height: 1.22;
  padding-left: clamp(18px, 2vw, 30px);
  transform: translateY(126px);
}

.sentence-slider::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 5px;
  height: 3.15em;
  border-radius: 999px;
  content: "";
  background: #00A0E2;
  box-shadow: 0 0 18px rgba(0, 160, 226, 0.45);
}

.sentence-slider__item {
  position: absolute;
  inset: 0 auto auto clamp(18px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  opacity: 0;
  word-break: keep-all;
  text-shadow: 0 5px 20px rgba(0, 20, 45, 0.78);
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 680ms ease;
}

.sentence-slider__title {
  color: #00A0E2;
  font-size: 0.94em;
  font-weight: 1000;
  margin-bottom: 0.28em;
  letter-spacing: -0.02em;
  text-shadow: 0 5px 20px rgba(0, 20, 45, 0.68);
}

.sentence-slider__content {
  color: #ffffff;
  font-size: 0.5em;
  font-weight: 800;
  padding-left: 0.9em;
  line-height: 1.36;
}

.sentence-slider__title-note {
  font-size: 0.72em;
}

.sentence-slider__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.sentence-slider__item.is-exiting {
  opacity: 0;
  transform: translateY(-14px);
}

h1 {
  margin: 0;
}

.slogan-row {
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2.2vw, 28px);
  min-height: 0;
}

.menu-button {
  position: absolute;
  top: 32px;
  right: clamp(10px, 2vw, 24px);
  z-index: 30;
  display: grid;
  pointer-events: auto;
  width: 44px;
  height: 38px;
  margin: 0;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: transform 160ms ease;
}

.menu-button:hover {
  transform: translateY(-2px);
}

.menu-button span {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 3px 9px rgba(0, 28, 62, 0.4);
  transition: transform 180ms ease, opacity 160ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.banner-menu {
  position: absolute;
  top: 82px;
  right: clamp(10px, 2vw, 24px);
  z-index: 29;
  display: grid;
  width: min(260px, calc(100vw - 44px));
  pointer-events: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  filter: drop-shadow(0 10px 18px rgba(0, 20, 45, 0.55));
}

.banner-menu[hidden] {
  display: none;
}

.banner-menu__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 0 4px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  transition: padding-right 160ms ease, border-color 160ms ease;
}

.banner-menu__item:last-child {
  border-bottom: 0;
}

.banner-menu__item span {
  color: #ffffff;
  font-size: 21px;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow:
    0 2px 6px rgba(0, 20, 45, 0.95),
    0 0 18px rgba(0, 20, 45, 0.72);
}

.banner-menu__item:hover {
  padding-right: 12px;
  border-color: #ffffff;
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  width: min(1180px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(96px, 14vh, 150px) 0;
  color: #ffffff;
  background: #071421;
  box-shadow: 0 0 0 100vmax #071421;
  clip-path: inset(0 -100vmax);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.info-column {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.info-section.is-visible .info-column {
  opacity: 1;
  transform: translateY(0);
}

.info-section.is-visible .info-column:nth-child(2) {
  transition-delay: 120ms;
}

.info-column h2 {
  margin: 0;
  color: #8ccfed;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.career-list {
  display: grid;
  gap: 10px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.career-list li {
  display: flex;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.career-list li::before {
  flex: 0 0 auto;
  content: "-";
}

.empty-space {
  min-height: 520px;
}

.profile-photo {
  position: relative;
  width: min(388px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f8;
  box-shadow: 0 26px 60px rgba(7, 20, 33, 0.14);
}

.profile-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  transition: opacity 900ms ease;
}

.profile-slide.is-active {
  opacity: 1;
}

.contact-section {
  padding: 30px 0;
  color: #ffffff;
  background: #071421;
  scroll-snap-align: end;
}

html.home-page .contact-section {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  padding: 16px 0;
  box-shadow: 0 -18px 38px rgba(0, 20, 45, 0.24);
  scroll-snap-align: none;
}

html.home-page .contact-section.is-at-page-end {
  position: absolute;
  top: auto;
  bottom: 0;
}

.contact-inner {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  min-height: 36px;
  margin: 0 auto;
}

.contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  white-space: nowrap;
}

.contact-row dt {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
  border-right: 0;
  color: #8ccfed;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-row dt strong {
  color: inherit;
  font-weight: 1000;
}

.contact-row dd {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.contact-row + .contact-row::before {
  width: 2px;
  height: 26px;
  margin-right: 10px;
  content: "";
  background: rgba(255, 255, 255, 0.52);
}

.pledges-page {
  position: relative;
  min-height: 100%;
  background: #071421;
}

.pledges-page::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 28, 62, 0.82) 0%, rgba(0, 28, 62, 0.5) 48%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62));
}

.pledges-page > .background-slider {
  position: fixed;
  z-index: 0;
}

.pledge-header {
  position: absolute;
  z-index: 40;
  color: #ffffff;
}

.pledges-page .social-nav {
  display: none;
}

.page-brand {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  pointer-events: auto;
}

.page-brand .brand {
  width: 128px;
}

.pledge-brand-logo {
  width: 128px;
  margin-left: 0;
  background: transparent;
}

.page-title {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-shadow: 0 8px 20px rgba(0, 28, 62, 0.52);
}

span.pledge-brand-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  color: #ffffff;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.pledges-main {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 128px 0 96px;
}

.pledges-page .contact-section {
  position: relative;
  z-index: 2;
}

.gallery-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.gallery-page .pledges-main {
  flex: 1;
}

.profile-main {
  min-height: auto;
}

.profile-page .info-section {
  gap: clamp(20px, 3.5vw, 48px);
  width: 100%;
  min-height: auto;
  padding: clamp(76px, 10vh, 96px) 0 clamp(24px, 4vh, 42px);
  background: transparent;
  box-shadow: none;
  clip-path: none;
  scroll-snap-align: none;
  transform: translateX(96px);
}

.profile-page .profile-photo {
  margin-left: 0;
  box-shadow: 0 30px 68px rgba(0, 20, 45, 0.34);
}

.pledges-hero {
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.pledges-eyebrow {
  margin: 0 0 8px;
  color: #26e6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 18px rgba(0, 28, 62, 0.52);
}

.pledges-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 30px rgba(0, 28, 62, 0.58);
}

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.pledge-item {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 44px rgba(0, 28, 62, 0.18);
  backdrop-filter: blur(10px);
}

.pledge-item span {
  display: inline-block;
  margin-bottom: 38px;
  color: #26aee8;
  font-size: 14px;
  font-weight: 1000;
}

.pledge-item h2 {
  margin: 0 0 16px;
  color: #071421;
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.pledge-item p {
  margin: 0;
  color: #34485b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

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

.photo-feed__item {
  display: grid;
}

.photo-feed__link {
  display: grid;
  gap: 10px;
  min-width: 0;
  transition: transform 160ms ease;
}

a.photo-feed__link {
  cursor: zoom-in;
}

a.photo-feed__link:hover {
  transform: translateY(-3px);
}

.photo-feed__date {
  color: #26e6ff;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 18px rgba(0, 28, 62, 0.48);
}

.photo-feed__frame {
  display: grid;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 44px rgba(0, 28, 62, 0.18);
  backdrop-filter: blur(10px);
}

.photo-feed__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

.schedule-page .photo-feed__frame {
  aspect-ratio: 9 / 10;
}

.schedule-page .photo-feed__frame img {
  object-fit: contain;
}

.schedule-page .photo-feed__image--align-top {
  object-position: center top;
}

.card-news-page .photo-feed__frame {
  aspect-ratio: 9 / 10;
}

.card-news-page .photo-feed__frame img {
  object-fit: contain;
}

.photo-feed__frame--empty {
  color: #34485b;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 28px;
  overflow: auto;
  place-items: center;
  background: rgba(0, 10, 22, 0.86);
  overscroll-behavior: contain;
  touch-action: none;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox__image {
  display: block;
  --zoom-x: 0px;
  --zoom-y: 0px;
  max-width: min(100%, 1120px);
  max-height: calc(100svh - 96px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
  transition: transform 180ms ease;
  transform-origin: center center;
}

.photo-lightbox__image.is-zoomed {
  transform: translate(var(--zoom-x), var(--zoom-y)) scale(2);
  cursor: zoom-out;
}

.photo-lightbox__image.is-dragging {
  cursor: grabbing;
  transition: none;
}

.photo-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: block;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: #ffffff;
  font: inherit;
  font-size: 0;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-tap-highlight-color: transparent;
}

.photo-lightbox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform-origin: center;
}

.photo-lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.58);
  transform: translateY(-50%) scale(1.04);
}

.photo-lightbox__nav[hidden] {
  display: none;
}

.photo-lightbox__nav--prev {
  left: clamp(14px, 4vw, 56px);
}

.photo-lightbox__nav--prev::before {
  transform: translate(-38%, -50%) rotate(-45deg);
}

.photo-lightbox__nav--next {
  right: clamp(14px, 4vw, 56px);
}

.photo-lightbox__nav--next::before {
  transform: translate(-62%, -50%) rotate(135deg);
}

.photo-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: #ffffff;
  font: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.74);
}

.photo-lightbox__close:hover {
  transform: scale(1.08);
}

body.is-lightbox-open {
  overflow: hidden;
}

.schedule-template {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.schedule-template__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 44px rgba(0, 28, 62, 0.18);
  backdrop-filter: blur(10px);
}

.schedule-template__date {
  color: #26aee8;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.schedule-template__content {
  display: grid;
  gap: 10px;
}

.schedule-template__content h2 {
  margin: 0;
  color: #071421;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.schedule-template__content p {
  margin: 0;
  color: #34485b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.04em;
}

@media (max-width: 720px) {
  .site-header {
    padding: 20px;
  }

  html.home-page body {
    padding-bottom: 0;
  }

  .brand {
    width: min(230px, 58vw);
    height: auto;
    transform: translateX(-32px);
  }

  .brand-logo {
    width: 100%;
    margin-left: 0;
  }

  .pledge-header .brand {
    width: 118px;
    transform: translateX(0);
  }

  .pledge-brand-logo {
    width: 118px;
    margin-left: 0;
  }

  .page-brand {
    gap: 20px;
  }

  .page-title {
    min-height: 28px;
    padding-left: 16px;
    font-size: 18px;
  }

  .social-nav {
    top: 78px;
    gap: 10px;
  }

  html.home-page .social-nav {
    position: fixed;
    top: auto;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
  }

  body.is-menu-open .social-nav {
    opacity: 0;
    pointer-events: none;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link img {
    max-width: 22px;
    max-height: 22px;
  }

  .social-link img.facebook-icon {
    width: 34px;
    height: 34px;
  }

  .field-slide {
    background-position: 78% center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-bottom: 116px;
  }

  .sentence-slider {
    width: min(100%, 680px);
    margin-left: 0;
    padding-left: 14px;
    height: 8.1em;
    font-size: clamp(18px, 5.4vw, 29px);
    line-height: 1.25;
    transform: translateY(38px);
  }

  .sentence-slider__content {
    font-size: 14px;
  }

  .sentence-slider::before {
    width: 4px;
    height: 3.3em;
  }

  .sentence-slider__item {
    left: 14px;
  }

  .slogan-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu-button {
    top: 24px;
    right: 8px;
    width: 42px;
    height: 36px;
    padding: 7px 4px;
  }

  .menu-button:hover {
    transform: translateY(-2px);
  }

  .menu-button span {
    width: 32px;
  }

  .banner-menu {
    top: 72px;
    right: 8px;
    width: min(240px, calc(100vw - 32px));
  }

  .banner-menu__item {
    min-height: 54px;
    padding-left: 14px;
  }

  .banner-menu__item span {
    font-size: 19px;
  }

  .info-section {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    min-height: auto;
    padding: 82px 0;
  }

  .profile-page .info-section {
    width: 100%;
    padding: 72px 0 24px;
    transform: none;
  }

  .profile-page .info-column:first-child {
    width: min(330px, 100%);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .profile-page .career-list {
    width: auto;
    max-width: none;
    justify-items: stretch;
  }

  .profile-page .career-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .profile-page .info-column:nth-child(2) {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .empty-space {
    min-height: 320px;
  }

  .profile-photo {
    width: min(330px, 100%);
    margin: 8px auto 0;
  }

  .profile-page .profile-photo {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-section {
    padding: 18px 0 16px;
  }

  html.home-page .contact-section {
    padding: 10px 0;
  }

  .contact-inner {
    width: calc(100% - 32px);
    min-height: 0;
  }

  .contact-list {
    display: grid;
    justify-content: flex-start;
    gap: 2px;
  }

  .contact-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 20px;
    align-items: center;
    gap: 8px;
    white-space: normal;
  }

  .contact-row dt {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    color: #8ccfed;
  }

  .contact-row dd {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .contact-row + .contact-row::before {
    display: none;
  }

  .pledges-main {
    width: calc(100% - 32px);
    padding: 126px 0 72px;
  }

  .pledges-hero {
    padding: 14px 0 18px;
  }

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

  .photo-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pledge-item {
    min-height: 210px;
    padding: 24px;
  }

  .photo-feed__date {
    font-size: 13px;
  }

  .photo-lightbox {
    padding: 18px;
  }

  .photo-lightbox__nav {
    width: 56px;
    height: 56px;
  }

  .photo-lightbox__nav::before {
    width: 15px;
    height: 15px;
    border-width: 3px 0 0 3px;
  }

  .photo-lightbox__nav--prev {
    left: 8px;
  }

  .photo-lightbox__nav--next {
    right: 8px;
  }

  .schedule-template__item {
    grid-template-columns: 1fr;
    min-height: 128px;
    padding: 22px;
  }

  .schedule-template__content h2 {
    font-size: 24px;
  }
}

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

  html.home-page {
    scroll-snap-type: none;
  }

  .info-column {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sentence-slider__item {
    transition: none;
  }
}
