:root {
  --ink: #16211f;
  --muted: #5a6662;
  --line: #d9e4df;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --forest: #0d5c4a;
  --forest-dark: #07382f;
  --teal: #008a83;
  --gold: #d49a2a;
  --clay: #b95d45;
  --sky: #dceef0;
  --cream: #fff8e6;
  --ring: rgba(212, 154, 42, 0.34);
  --shadow: 0 18px 46px rgba(8, 35, 31, 0.14);
  --shadow-strong: 0 24px 64px rgba(8, 35, 31, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
  "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(212, 154, 42, 0.32);
}

body.nav-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(251, 252, 247, 0.96);
  box-shadow: 0 10px 26px rgba(8, 35, 31, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  max-width: min(330px, 68vw);
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(5, 31, 27, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  color: currentColor;
  font-size: 0.98rem;
  white-space: nowrap;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-header.is-scrolled .brand-text small,
.site-header.nav-active .brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  box-shadow: 0 12px 28px rgba(5, 31, 27, 0.24);
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand-logo {
  box-shadow: 0 8px 18px rgba(5, 31, 27, 0.12);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 0 18px;
  background: var(--gold);
  color: #17130b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-header.nav-active .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-active .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-active .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 70vh;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 72px) 44px;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 28, 25, 0.64), rgba(5, 28, 25, 0.1)),
    url("assets/images/hero-gedung-lsm.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 23, 20, 0.58) 0%, rgba(6, 23, 20, 0.2) 42%, rgba(6, 23, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 35, 31, 0.82), rgba(6, 35, 31, 0.12) 65%);
}

.hero-content {
  position: relative;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.ppdb h2 {
  margin: 0;
  font-family:
    "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.04;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions,
.ppdb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(8, 35, 31, 0.1);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #17130b;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e3ab3f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.light:hover,
.button.light:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.54);
  color: #ffffff;
}

.button.neutral {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-facts div {
  position: relative;
  padding: 26px clamp(20px, 4vw, 52px);
  background: var(--surface);
  overflow: hidden;
}

.quick-facts div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  content: "";
}

.quick-facts strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: clamp(1.24rem, 2vw, 1.68rem);
}

.quick-facts span,
.intro-copy p,
.path-card p,
.program-grid p,
.ppdb p,
.steps p,
.life-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.ppdb h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-copy {
  max-width: 640px;
  font-size: 1.04rem;
}

.identity-strip {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.identity-strip article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 35, 31, 0.06);
}

.identity-strip img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.identity-strip .transparent-logo {
  padding: 7px;
  background: #eef8df;
}

.identity-strip strong {
  display: block;
  margin-bottom: 5px;
}

.identity-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.values,
.program-grid {
  display: grid;
  gap: 16px;
}

.values {
  grid-template-columns: repeat(3, 1fr);
}

.values article,
.program-grid article,
.path-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 35, 31, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.values article:hover,
.program-grid article:hover,
.path-card:hover,
.identity-strip article:hover {
  border-color: rgba(212, 154, 42, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.values article {
  padding: 24px;
}

.values span,
.program-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.values h3,
.path-card h3,
.program-grid h3,
.life-copy h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
}

.program-paths {
  background: var(--sky);
}

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

.path-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 270px;
  overflow: hidden;
}

.path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.path-card:hover img {
  transform: scale(1.04);
}

.path-card div {
  padding: 28px;
  align-self: center;
}

.programs {
  background: var(--paper);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-grid article {
  min-height: 190px;
  padding: 24px;
}

.program-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e6f3ef;
  color: var(--forest);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.program-grid article:hover span {
  background: var(--forest);
  color: #ffffff;
  transform: rotate(-3deg) scale(1.04);
}

.ppdb {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(72px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(7, 56, 47, 0.98), rgba(13, 92, 74, 0.92)),
    url("assets/images/ppdb-background.jpg") center / cover no-repeat;
  color: #ffffff;
}

.ppdb .eyebrow {
  color: #f3c465;
}

.ppdb p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

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

.steps li {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.steps li:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: #17130b;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-top: 16px;
  font-size: 1.08rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.form-section {
  background: var(--surface);
}

.form-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.68;
}

.ppdb-form {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.ppdb-form fieldset {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf7;
  box-shadow: 0 12px 32px rgba(8, 35, 31, 0.05);
}

.ppdb-form legend {
  padding: 0 10px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 800;
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.field-grid label,
.ppdb-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.field-grid .wide {
  grid-column: 1 / -1;
}

.ppdb-form input,
.ppdb-form select,
.ppdb-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdcd6;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 10px 12px;
}

.ppdb-form textarea {
  resize: vertical;
}

.ppdb-form input:focus,
.ppdb-form select:focus,
.ppdb-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(13, 92, 74, 0.14);
  outline: none;
}

.ppdb-form input:hover,
.ppdb-form select:hover,
.ppdb-form textarea:hover {
  border-color: #aabdb5;
}

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

.checkbox-group label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 600;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.checkbox-group label:hover {
  border-color: rgba(13, 92, 74, 0.32);
  box-shadow: 0 10px 22px rgba(8, 35, 31, 0.08);
  transform: translateY(-1px);
}

.checkbox-group input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--forest);
}

.attachment-list {
  margin-top: 0;
}

.form-tail {
  margin-top: 18px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.consent-check span {
  color: var(--muted);
  line-height: 1.6;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.life-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.life-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.life-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(8, 35, 31, 0.12);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.life-gallery img:hover {
  box-shadow: var(--shadow-strong);
  transform: scale(1.015);
}

.life-gallery img:first-child {
  grid-row: span 2;
}

.life-copy {
  display: grid;
  gap: 18px;
}

.life-copy article {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.life-copy article:hover {
  border-color: var(--forest);
  transform: translateX(4px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 52px clamp(20px, 5vw, 72px);
  background: var(--forest-dark);
  color: #ffffff;
}

.site-footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  max-width: 210px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: var(--shadow);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold);
  color: #17130b;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .reveal.is-visible {
  animation: reveal-up 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.js .reveal.delay-1.is-visible {
  animation-delay: 90ms;
}

.js .reveal.delay-2.is-visible {
  animation-delay: 180ms;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions {
  animation: hero-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content h1 {
  animation-delay: 100ms;
}

.hero-copy {
  animation-delay: 190ms;
}

.hero-actions {
  animation-delay: 280ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .values,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-card {
    grid-template-columns: 1fr;
  }

  .path-card img {
    height: 220px;
  }

  .ppdb,
  .intro-grid,
  .life-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.nav-active .nav-toggle {
    border-color: var(--line);
    background: #ffffff;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    gap: 16px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .nav-cta {
    width: 100%;
    padding: 0 16px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 118px;
  }

  .quick-facts,
  .path-grid,
  .steps,
  .site-footer,
  .field-grid,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .life-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .life-gallery img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .hero h1 {
    font-size: 2.74rem;
  }

  .hero-copy {
    line-height: 1.62;
  }

  .hero-actions,
  .ppdb-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .values,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .path-card div,
  .values article,
  .program-grid article,
  .steps li {
    padding: 22px;
  }

  .identity-strip article {
    grid-template-columns: 64px 1fr;
  }

  .identity-strip img {
    width: 64px;
    height: 64px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero,
  .quick-facts,
  .intro,
  .program-paths,
  .programs,
  .ppdb,
  .life,
  .site-footer,
  .form-actions {
    display: none !important;
  }

  body {
    background: #ffffff;
  }

  .section {
    padding: 0;
  }

  .ppdb-form fieldset {
    break-inside: avoid;
    background: #ffffff;
    box-shadow: none;
  }
}
