:root {
  --ink: #202033;
  --muted: #6f6a76;
  --paper: #f8f4ef;
  --warm-white: #fffdf9;
  --blush: #ead9df;
  --lilac: #d8d1eb;
  --rose: #b83f64;
  --plum: #58324f;
  --sage: #cad6c7;
  --line: rgb(32 32 51 / 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 5rem;
}

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

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--warm-white);
  background: var(--rose);
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--warm-white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgb(248 244 239 / 0.88);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  width: min(100%, 96rem);
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4.25rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid currentcolor;
  border-radius: 50%;
  place-items: center;
  color: var(--rose);
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.79rem;
  font-weight: 600;
}

.brand small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.49rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.67rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-cta span {
  color: var(--rose);
}

.nav-cta:hover {
  color: var(--warm-white);
  background: var(--ink);
}

.menu-button {
  display: none;
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.menu-button span {
  position: absolute;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: currentcolor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translate(-50%, -3px);
}
.menu-button span:last-child {
  transform: translate(-50%, 3px);
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  margin: 0 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.mobile-link:last-child {
  border-bottom: 0;
  color: var(--warm-white);
  background: var(--plum);
}

.mobile-link span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(24rem, 0.92fr) minmax(0, 1.08fr);
  padding-top: 5rem;
  border-bottom: 1px solid var(--line);
}

.hero-photo-wrap {
  position: relative;
  min-height: calc(100svh - 5rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--lilac);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(0.98);
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgb(32 32 51 / 0.24));
  content: "";
  pointer-events: none;
}

.photo-note {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
}

.note-one {
  left: 1.4rem;
}
.note-two {
  right: 1.4rem;
}

.hero-copy {
  display: flex;
  min-height: calc(100svh - 5rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.5rem, 0.65vw, 0.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-meta span:first-child {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-meta i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgb(184 63 100 / 0.12);
}

.hero-heading {
  margin-block: auto;
  padding-block: 4rem 2rem;
}

.hero-intro {
  margin-bottom: 1.2rem;
  color: var(--rose);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.hero h1 em,
.section-heading h2 em,
.credentials-copy h2 em,
.footer-cta em {
  color: var(--rose);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-bottom > p {
  max-width: 29rem;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.75;
}

.hero-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.hero-links a:hover {
  color: var(--rose);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-start;
  margin-top: 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 2rem;
  transition: transform 180ms ease;
}

.scroll-cue:hover svg {
  transform: translateY(0.25rem);
}

.section-shell {
  width: min(100%, 96rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4.25rem);
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  padding-block: clamp(6rem, 11vw, 10rem);
  background: var(--blush);
}

.about-section::before {
  position: absolute;
  top: 0;
  right: 8vw;
  width: min(20vw, 17rem);
  height: 1px;
  background: var(--rose);
  content: "";
  transform: rotate(-28deg);
  transform-origin: right;
}

.about-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.about-aside {
  color: rgb(32 32 51 / 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  line-height: 1.6;
  text-align: right;
}

.about-statement {
  max-width: 82rem;
  margin-top: clamp(3.5rem, 8vw, 7.5rem);
  font-size: clamp(2.65rem, 6.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.about-statement em {
  color: var(--rose);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

.about-details {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr);
  gap: clamp(3rem, 10vw, 10rem);
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-details > p {
  max-width: 29rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.focus-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.focus-list article:first-child {
  padding-top: 0;
}
.focus-list article > span {
  color: var(--rose);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.57rem;
}
.focus-list h3 {
  font-size: 0.94rem;
  font-weight: 600;
}
.focus-list p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.projects-section {
  padding-block: clamp(6rem, 11vw, 10rem);
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.credentials-copy h2 {
  margin-top: 1.4rem;
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.section-heading > p {
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
}

.projects-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.content-skeleton,
.certificate-skeleton {
  overflow: hidden;
  background: linear-gradient(100deg, #e1dcd6 30%, #f2ece6 50%, #e1dcd6 70%);
  background-size: 300% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.content-skeleton {
  height: 34rem;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.project-card {
  position: relative;
  display: grid;
  min-height: 38rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.55fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--warm-white);
}

.project-card:nth-child(even) {
  grid-template-columns: minmax(20rem, 0.55fr) minmax(0, 1.45fr);
}

.project-card:nth-child(even) .project-image-wrap {
  order: 2;
}
.project-card:nth-child(even) .project-content {
  order: 1;
}

.project-index {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  left: 1.2rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgb(255 255 255 / 0.75);
  border-radius: 50%;
  place-items: center;
  color: white;
  background: rgb(32 32 51 / 0.28);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  backdrop-filter: blur(8px);
}

.project-card:nth-child(even) .project-index {
  right: 1.2rem;
  left: auto;
}

.project-image-wrap {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--lilac);
}

.project-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgb(32 32 51 / 0.18));
  content: "";
  pointer-events: none;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition:
    filter 500ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-image {
  filter: saturate(1);
  transform: scale(1.025);
}

.project-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  color: var(--plum);
  background-color: var(--lilac);
  background-image:
    linear-gradient(rgb(88 50 79 / 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgb(88 50 79 / 0.09) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

.project-card:nth-child(even) .project-placeholder {
  color: var(--rose);
  background-color: var(--sage);
}

.project-placeholder::before,
.project-placeholder::after {
  position: absolute;
  border: 1px solid currentcolor;
  border-radius: 50%;
  content: "";
}

.project-placeholder::before {
  width: min(55vw, 31rem);
  height: min(55vw, 31rem);
  opacity: 0.35;
}
.project-placeholder::after {
  width: min(32vw, 18rem);
  height: min(32vw, 18rem);
  border-style: dashed;
}
.project-placeholder svg {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 5rem;
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.project-kicker {
  color: var(--rose);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-title {
  margin-top: 1rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.project-description {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
}

.project-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid currentcolor;
  padding-bottom: 0.15rem;
  font-size: 0.65rem;
  font-weight: 600;
}

.project-link:hover {
  color: var(--rose);
}
.project-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.credentials-section {
  padding-block: clamp(6rem, 11vw, 10rem);
  border-top: 1px solid var(--line);
  background: var(--lilac);
}

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.credentials-copy h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 0.92;
}

.credentials-copy > p:not(.eyebrow) {
  max-width: 25rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.credential-stamp {
  display: grid;
  width: 7rem;
  height: 7rem;
  margin-top: 3rem;
  border: 1px solid var(--rose);
  border-radius: 50%;
  place-items: center;
  color: var(--rose);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  line-height: 1.55;
  text-align: center;
  transform: rotate(-8deg);
}

.certificates-list {
  border-top: 1px solid var(--ink);
}

.certificate-skeleton {
  height: 7rem;
  border-bottom: 1px solid var(--line);
}

.certificate-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  transition: padding 200ms ease;
}

.certificate-item:hover {
  padding-left: 0.6rem;
}

.certificate-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  background: rgb(255 255 255 / 0.25);
}

.certificate-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.certificate-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.certificate-meta {
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
}

.certificate-link {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.certificate-link svg {
  width: 1rem;
  height: 1rem;
}
.certificate-link:hover {
  color: white;
  background: var(--plum);
}

.empty-state {
  padding-block: 2.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  padding-block: clamp(5rem, 10vw, 8rem) 2rem;
  color: var(--warm-white);
  background: var(--plum);
}

.footer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.25);
}

.footer-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-heading > span {
  color: #f2a7bd;
}

.footer-cta {
  display: block;
  margin-top: clamp(3rem, 6vw, 5rem);
  font-size: clamp(3.5rem, 9.8vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.footer-cta em {
  color: #f2a7bd;
}

.footer-cta > span {
  display: inline-block;
  color: #f2a7bd;
  font-size: 0.5em;
  transition: transform 200ms ease;
}

.footer-cta:hover > span {
  transform: translate(0.15em, -0.15em);
}

.footer-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(5rem, 10vw, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.25);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.footer-meta div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-meta a:hover {
  color: #f2a7bd;
}

.noscript-message {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.8rem 1rem;
  color: white;
  background: var(--rose);
  font-size: 0.75rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  }
  .hero h1 {
    font-size: clamp(3.8rem, 8vw, 6.5rem);
  }
  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }
  .about-details {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .credentials-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
  }
  .credentials-copy .eyebrow {
    grid-column: 1 / -1;
  }
  .credential-stamp {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin: 0;
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    height: 4.6rem;
  }
  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 4.6rem;
  }
  .hero-photo-wrap {
    min-height: 70svh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-copy {
    min-height: 78svh;
    padding-block: 2rem;
  }
  .hero h1 {
    font-size: clamp(4rem, 18vw, 6.6rem);
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 2rem;
  }
  .about-details {
    grid-template-columns: 1fr;
  }
  .project-card,
  .project-card:nth-child(even) {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }
  .project-card:nth-child(even) .project-image-wrap {
    order: 1;
  }
  .project-card:nth-child(even) .project-content {
    order: 2;
  }
  .project-card:nth-child(even) .project-index {
    right: auto;
    left: 1.2rem;
  }
  .project-image-wrap {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
  .project-content {
    min-height: 23rem;
  }
  .credentials-copy {
    display: block;
  }
  .credential-stamp {
    margin-top: 2.5rem;
  }
  .footer-meta {
    display: block;
  }
  .footer-meta div {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }
  .hero-photo-wrap {
    min-height: 62svh;
  }
  .hero-copy {
    min-height: 72svh;
  }
  .hero-meta span:last-child {
    display: none;
  }
  .hero h1 {
    font-size: 17.5vw;
  }
  .about-aside {
    display: none;
  }
  .about-statement {
    font-size: 2.6rem;
  }
  .section-heading h2 {
    font-size: 3.25rem;
  }
  .project-content {
    min-height: 21rem;
  }
  .certificate-item {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .certificate-link {
    display: none;
  }
  .footer-cta {
    font-size: 16.5vw;
    line-height: 0.86;
  }
}

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

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