:root {
  --lime: #c6ff17;
  --glass: rgba(63, 85, 101, 0.56);
  --glass-line: rgba(255, 255, 255, 0.25);
  --text: #ffffff;
  --frame-width: min(92.5vw, 1680px);
  --section-width: min(92.5vw, 1680px);
  --frame-gutter: 70px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #18232a;
  color: var(--text);
  font-family:
    "Arial",
    "Microsoft YaHei",
    "PingFang SC",
    sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./hero-bg.png");
  background-position: center 47%;
  background-size: cover;
  opacity: 0.68;
  transform: scale(1.055);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 20, 29, 0.6) 0%, rgba(6, 20, 29, 0.18) 41%, rgba(6, 20, 29, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 15, 19, 0.2) 0%, rgba(7, 15, 19, 0.04) 52%, rgba(7, 15, 19, 0.64) 100%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 5;
  width: var(--frame-width);
  min-height: 88px;
  margin: 18px auto 0;
  padding: 12px 26px;
  display: grid;
  grid-template-columns: minmax(210px, 300px) 1fr minmax(150px, 210px);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: var(--glass);
  box-shadow:
    inset 0 1px 10px rgba(255, 255, 255, 0.1),
    0 18px 50px rgba(8, 18, 25, 0.18);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  height: 60px;
  min-width: 220px;
  padding: 0 28px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #111817;
  background: var(--lime);
  border-radius: 999px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__mark {
  position: relative;
  width: 48px;
  height: 41px;
  flex: 0 0 auto;
  transform: scale(1);
  transform-origin: center;
}

.brand__hair {
  position: absolute;
  left: 4px;
  top: 0;
  width: 31px;
  height: 23px;
  background: #0c1512;
  border-radius: 60% 60% 45% 45%;
}

.brand__hair::before,
.brand__hair::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 13px;
  height: 13px;
  background: #0c1512;
  border-radius: 50%;
}

.brand__hair::before {
  left: -4px;
}

.brand__hair::after {
  right: -4px;
}

.brand__face {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 29px;
  height: 20px;
  border: 4px solid #0c1512;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.brand__face span {
  position: absolute;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #0c1512;
  border-radius: 50%;
}

.brand__face span:first-child {
  left: 5px;
}

.brand__face span:last-child {
  right: 5px;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 900;
}

.nav__links a {
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.contact {
  position: relative;
  justify-self: end;
}

.contact__trigger {
  min-width: 142px;
  height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
  cursor: default;
  outline: none;
}

.contact__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(31, 45, 54, 0.78);
  box-shadow: 0 18px 45px rgba(6, 14, 18, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: 180ms ease;
}

.contact__panel::before {
  content: "";
  position: absolute;
  inset: -15px 0 auto 0;
  height: 16px;
}

.contact__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 700;
}

.contact:hover .contact__panel,
.contact:focus-within .contact__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: var(--frame-width);
  margin: clamp(72px, 11vh, 138px) auto 0;
  pointer-events: none;
}

.hero__copy h1 {
  max-width: min(650px, 50vw);
  margin: 0;
  font-size: clamp(58px, 5.9vw, 112px);
  line-height: 0.94;
  font-weight: 1000;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 4px 0 rgba(32, 39, 42, 0.3),
    0 18px 34px rgba(0, 0, 0, 0.28);
}

.hero__copy h1 span {
  display: inline-block;
}

.hero__copy p {
  width: min(500px, 40vw);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.2vw, 23px);
  line-height: 1.55;
  font-weight: 800;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.45);
}

.gallery {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: clamp(22px, 4vh, 54px);
  overflow: hidden;
  padding: 0 0 10px;
  cursor: grab;
  touch-action: pan-y;
}

.gallery:active {
  cursor: grabbing;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(36px, 7vw, 140px);
  pointer-events: none;
}

.gallery::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 21, 27, 0.36), rgba(10, 21, 27, 0));
}

.gallery::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 21, 27, 0.36), rgba(10, 21, 27, 0));
}

.gallery__track {
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 1.7vw, 32px);
  width: max-content;
  padding-inline: clamp(28px, 5vw, 92px);
  will-change: transform;
}

.gallery__item {
  flex: 0 0 auto;
  width: clamp(155px, 10.8vw, 230px);
  aspect-ratio: 0.72;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.gallery__item:hover {
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.32);
  filter: saturate(1.08);
  transform: translateY(-8px) translateZ(0);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 72px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.experience-screen {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(37, 143, 255, 0.15), transparent 28%),
    radial-gradient(circle at 76% 42%, rgba(198, 255, 23, 0.07), transparent 24%),
    linear-gradient(115deg, #030810 0%, #06131e 46%, #082231 100%);
  color: #f4f8fb;
}

.experience-screen__grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  pointer-events: none;
}

.experience-screen__inner {
  position: relative;
  z-index: 1;
  width: var(--section-width);
  margin: 0 auto;
  padding: 48px 0 54px;
}

.experience-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}

.experience-title h2 {
  margin: 0;
  color: #f6f8fb;
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.035em;
}

.experience-title p {
  margin: 8px 0 0;
  color: rgba(244, 248, 251, 0.58);
  font-size: 16px;
  font-weight: 700;
}

.experience-title__arrow {
  margin-top: 8px;
  color: var(--lime);
  font-size: 30px;
  line-height: 1;
}

.experience-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

.profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-card__image {
  width: 280px;
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  border-radius: 25px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(153, 213, 255, 0.72));
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 56%;
}

.profile-card__image--photo {
  background: linear-gradient(155deg, #f7f8fa, #d9e7f5);
}

.profile-card__image--photo img {
  object-fit: cover;
  object-position: 50% 18%;
}

.profile-card__badge {
  position: static;
  margin: 14px 0 0 19px;
  padding: 8px 14px;
  border: 1px solid rgba(198, 255, 23, 0.55);
  border-radius: 999px;
  color: var(--lime);
  background: transparent;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-kicker {
  margin: 4px 0 14px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.profile-intro h3 {
  margin: 0;
  color: #f6f8fb;
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: 1.05;
  font-weight: 300;
}

.profile-intro__copy {
  max-width: none;
  margin: 18px 0 18px;
  color: rgba(244, 248, 251, 0.64);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight-card {
  min-height: 74px;
  padding: 16px 0 14px;
}

.highlight-card:nth-child(odd) {
  padding-right: 42px;
}

.highlight-card:nth-child(even) {
  padding-left: 42px;
}

.highlight-card:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.highlight-card strong {
  display: block;
  color: #f6f8fb;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.campus-block {
  display: block;
  margin-top: 25px;
  min-height: 74px;
  padding: 16px 0 14px;
  border-top: 0;
}

.campus-block .block-heading {
  display: block;
  margin-bottom: 8px;
}

.campus-block .block-heading span,
.campus-block .block-heading em {
  display: none;
}

.campus-block .block-heading h4 {
  margin: 0;
  color: var(--lime);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.block-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
}

.block-heading span {
  width: 8px;
  height: 48px;
  flex: 0 0 auto;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(198, 255, 23, 0.36);
}

.block-heading h4 {
  margin: 0;
  color: #f6f8fb;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 1000;
}

.block-heading em {
  display: block;
  margin-top: 7px;
  color: rgba(244, 248, 251, 0.5);
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.campus-block p {
  max-width: none;
  margin: 0;
  padding-left: 0;
  border-left: 0;
  color: #f6f8fb;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.internship-block {
  position: relative;
  margin-top: 44px;
  padding-top: 0;
  border-top: 0;
}

.internship-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.internship-heading span {
  margin-top: 16px;
  color: var(--lime);
  font-size: 17px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.internship-heading h4 {
  margin: 0;
  color: rgba(244, 248, 251, 0.74);
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1;
  font-weight: 1000;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 8vw, 160px);
  padding-top: 54px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.timeline-item {
  position: relative;
  min-width: 0;
  padding: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -43px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--lime);
  transform: rotate(45deg);
  box-shadow: 0 0 26px rgba(198, 255, 23, 0.75);
}

.timeline-item__date {
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 900;
}

.timeline-item h5 {
  margin: 0 0 8px;
  color: #f6f8fb;
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.25;
  font-weight: 1000;
}

.timeline-item strong {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 11px;
  border: 1px solid rgba(198, 255, 23, 0.55);
  border-radius: 999px;
  color: var(--lime);
  font-size: 13px;
  line-height: 1;
}

.timeline-item p {
  margin: 0;
  color: rgba(244, 248, 251, 0.58);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 800;
}

.work-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.work-modal__dialog {
  position: relative;
  width: min(76vw, 1540px);
  height: min(78vh, 880px);
  display: grid;
  grid-template-columns: minmax(240px, 29%) 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #010101;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.58);
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms ease;
}

.work-modal.is-open .work-modal__dialog {
  transform: translateY(0) scale(1);
}

.work-modal__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(32px, 4vw, 66px);
  background: #010101;
  box-shadow: 34px 0 60px rgba(0, 0, 0, 0.42);
}

.work-modal__eyebrow {
  margin: 0;
  color: var(--lime);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 1000;
  letter-spacing: 0.06em;
}

.work-modal__meta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.6vw, 52px);
  line-height: 1.08;
  font-weight: 1000;
}

.work-modal__tagline,
.work-modal__file {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.work-modal__tagline {
  font-size: clamp(13px, 1vw, 18px);
}

.work-modal__file {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(12px, 0.85vw, 15px);
  letter-spacing: 0;
}

.work-modal__stage {
  --stage-pad-x: clamp(46px, 5vw, 110px);
  --stage-pad-top: 0px;
  --stage-pad-bottom: 0px;
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 38%),
    #010101;
}

.work-modal__image {
  position: absolute;
  top: var(--stage-pad-top);
  left: var(--stage-pad-x);
  display: block;
  width: calc(100% - var(--stage-pad-x) - var(--stage-pad-x));
  height: calc(100% - var(--stage-pad-top) - var(--stage-pad-bottom));
  object-fit: contain;
}

.work-modal__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 23, 0.48);
  border-radius: 50%;
  background: rgba(198, 255, 23, 0.12);
  cursor: pointer;
}

.work-modal__close span {
  position: absolute;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.work-modal__close span:first-child {
  transform: rotate(45deg);
}

.work-modal__close span:last-child {
  transform: rotate(-45deg);
}

.work-modal__close:hover {
  background: rgba(198, 255, 23, 0.22);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    background-position: 34% center;
    opacity: 0.6;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 15, 19, 0.36) 0%, rgba(7, 15, 19, 0.08) 45%, rgba(7, 15, 19, 0.68) 100%),
      linear-gradient(90deg, rgba(6, 20, 29, 0.62) 0%, rgba(6, 20, 29, 0.1) 100%);
  }

  .nav {
    width: var(--frame-width);
    min-height: 76px;
    margin-top: 14px;
    padding: 10px 14px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    height: 56px;
    padding: 0 17px;
    gap: 11px;
    font-size: 18px;
  }

  .brand__mark {
    width: 36px;
    height: 31px;
    transform: scale(0.94);
  }

  .nav__links {
    justify-content: center;
    gap: clamp(10px, 2.8vw, 24px);
    font-size: 15px;
    font-weight: 900;
  }

  .contact__trigger {
    min-width: auto;
    height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }

  .contact__panel {
    min-width: 220px;
    right: -4px;
  }

  .hero__copy {
    width: var(--frame-width);
    margin-top: clamp(76px, 12vh, 128px);
  }

  .hero__copy h1 {
    max-width: 70vw;
    font-size: clamp(50px, 13vw, 84px);
  }

  .hero__copy p {
    width: min(68vw, 430px);
    margin-top: 18px;
    font-size: clamp(16px, 4.2vw, 22px);
  }

  .gallery {
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .gallery__track {
    gap: 16px;
    padding-inline: 22px;
  }

  .gallery__item {
    width: clamp(126px, 33vw, 176px);
    border-radius: 18px;
  }

  .experience-screen__inner {
    width: var(--frame-width);
    padding-top: 52px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .profile-card__image {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .profile-intro h3 {
    font-size: clamp(42px, 10vw, 66px);
  }

  .internship-block {
    margin-top: 32px;
    padding-top: 0;
  }

  .internship-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .internship-heading span {
    margin-top: 10px;
    font-size: 14px;
  }

  .internship-heading h4 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 18px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline-item {
    padding-left: 32px;
  }

  .timeline-item::before {
    top: 0;
    left: 0;
  }

  .work-modal {
    padding: 18px;
  }

  .work-modal__dialog {
    width: min(94vw, 720px);
    height: min(82vh, 760px);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    border-radius: 24px;
  }

  .work-modal__meta {
    order: 2;
    padding: 22px 24px 26px;
    gap: 8px;
  }

  .work-modal__stage {
    --stage-pad-x: 18px;
    --stage-pad-top: 68px;
    --stage-pad-bottom: 18px;
    order: 1;
  }

  .work-modal__close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .work-modal__close span {
    width: 19px;
    height: 3px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 108px;
    display: block !important;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
  }

  .brand {
    position: absolute;
    top: 10px;
    left: 14px;
    max-width: 154px;
    padding-inline: 14px;
    gap: 9px;
    font-size: 17px;
  }

  .nav__links {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: auto !important;
    min-width: 0;
    max-width: 100%;
    padding: 0 8px 4px;
    gap: 8px;
    font-size: 12px;
  }

  .nav__links a {
    min-width: 0;
    text-align: center;
  }

  .contact {
    position: absolute;
    top: 10px;
    right: 14px;
    min-width: 0;
  }

  .contact__trigger {
    min-width: 76px;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero__copy {
    width: calc(100vw - 36px);
    margin-top: clamp(62px, 9vh, 90px);
  }

  .hero__copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 56px);
    line-height: 0.96;
  }

  .hero__copy p {
    width: 100%;
    max-width: 320px;
    margin-top: 16px;
    font-size: 15px;
  }

  .experience-title {
    gap: 10px;
  }

  .experience-title h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .experience-title__arrow {
    margin-top: 6px;
  }

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

  .highlight-card,
  .highlight-card:nth-child(odd),
  .highlight-card:nth-child(even) {
    min-height: 80px;
    padding: 18px 0;
  }

  .highlight-card:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .block-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .block-heading span {
    height: 36px;
  }

  .campus-block {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .campus-block p {
    margin: 0;
    padding: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track {
    will-change: auto;
  }
}

.portfolio-section {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 18px;
  overflow: hidden;
  color: #eef5f7;
  background:
    linear-gradient(135deg, rgba(3, 9, 20, 0.98), rgba(6, 19, 33, 0.98) 54%, rgba(7, 27, 39, 0.98));
}

.portfolio-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(176, 211, 225, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 211, 225, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.portfolio-section__inner {
  position: relative;
  z-index: 1;
  width: var(--section-width);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(72px, 8vh, 108px) 0 clamp(62px, 7vh, 90px);
}

.works-section .portfolio-section__inner {
  display: flex;
  flex-direction: column;
  padding: clamp(92px, 10vh, 132px) 0 clamp(70px, 8vh, 104px);
}

.works-section .portfolio-section__heading {
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0;
  margin-bottom: clamp(34px, 5vh, 56px);
}

.works-section .portfolio-section__heading h2 {
  color: #f7fbfc;
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.works-section .portfolio-section__heading p {
  margin: 8px 0 0;
  color: rgba(238, 245, 247, 0.62);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.portfolio-section__heading {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  margin-bottom: clamp(34px, 5vh, 56px);
}

.portfolio-section__heading,
.work-case,
.strength-card,
.contact-intro > p,
.contact-intro h2,
.contact-brand,
.contact-panel-large {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section__heading.is-visible,
.work-case.is-visible,
.strength-card.is-visible,
.contact-intro > p.is-visible,
.contact-intro h2.is-visible,
.contact-brand.is-visible,
.contact-panel-large.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-section__heading p {
  margin: 7px 0 0;
  color: rgba(238, 245, 247, 0.62);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.portfolio-section__heading h2 {
  margin: 0;
  color: #f7fbfc;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.035em;
}

.portfolio-section__heading h2 span {
  margin-left: 10px;
  color: var(--lime);
  font-size: 0.48em;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 0%;
  gap: clamp(18px, 2vw, 32px);
  min-height: 0;
}

.work-case {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.work-case__cover {
  position: relative;
  min-height: clamp(300px, 43vh, 560px);
  overflow: hidden;
  background: #0c1822;
  border: 1px solid rgba(214, 232, 238, 0.16);
  border-radius: 20px;
}

.work-case__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(2, 8, 13, 0.48));
}

.work-case__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.62) contrast(0.96);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease,
    opacity 360ms ease,
    filter 360ms ease;
}

.work-case__cover span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.work-case__copy {
  position: relative;
  padding: 18px 2px 20px;
  border-bottom: 1px solid rgba(203, 224, 232, 0.2);
  opacity: 0.68;
  transition: opacity 280ms ease;
}

.work-case__copy::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transition: right 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-case__copy > p {
  margin: 0 0 9px;
  color: var(--lime);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.work-case__copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.work-case__copy h3 {
  margin: 0;
  color: rgba(248, 252, 253, 0.96);
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-case__copy > div > span {
  color: var(--lime);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 18px;
  transition: transform 280ms ease;
  transform: translate(0);
}

.work-case__copy small {
  display: block;
  margin-top: 10px;
  color: rgba(225, 237, 241, 0.56);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.work-case:hover .work-case__cover img,
.work-case:focus-visible .work-case__cover img {
  opacity: 1;
  filter: saturate(1) contrast(1.05);
  transform: scale(1.035);
}

.work-case:hover .work-case__copy,
.work-case:focus-visible .work-case__copy {
  opacity: 1;
}

.work-case:hover .work-case__copy::after,
.work-case:focus-visible .work-case__copy::after {
  right: 0;
}

.work-case:hover .work-case__copy > div > span,
.work-case:focus-visible .work-case__copy > div > span {
  transform: translate(3px, -3px);
}

.strengths-section {
  background: linear-gradient(135deg, #030914, #061321 58%, #071b27);
}

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

.strength-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  grid-column: span 2;
  overflow: hidden;
  padding: clamp(24px, 2vw, 34px);
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 82%, rgba(198, 255, 23, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(16, 35, 48, 0.88), rgba(4, 14, 23, 0.96));
  border: 1px solid rgba(195, 222, 232, 0.16);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--spot-x, 50%) var(--spot-y, 50%),
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.12) 18%,
      transparent 42%
    );
  transition: opacity 260ms ease;
  pointer-events: none;
}

.strength-card--wide {
  grid-column: span 3;
  min-height: 410px;
}

.strength-card:hover,
.strength-card:focus-visible {
  border-color: rgba(201, 255, 26, 0.58);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(198, 255, 23, 0.98), rgba(171, 239, 12, 0.92));
  box-shadow: 0 28px 70px rgba(198, 255, 23, 0.12);
  outline: none;
  transform: translateY(-5px);
}

.strength-card:hover::before,
.strength-card:focus-visible::before {
  opacity: 1;
}

.strength-card__meta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(201, 255, 26, 0.82);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.strength-card__meta small {
  color: rgba(234, 243, 246, 0.56);
  font-size: 10px;
  transition: color 240ms ease;
}

.strength-card h3 {
  position: relative;
  z-index: 4;
  max-width: 82%;
  margin: clamp(38px, 4vh, 56px) 0 0;
  color: #f2f8f8;
  font-size: clamp(22px, 1.95vw, 34px);
  line-height: 1.18;
  transition: color 240ms ease, transform 240ms ease;
}

.strength-card h3 span {
  color: var(--lime);
  margin-left: 6px;
}

.strength-card > img {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: -2%;
  width: 53%;
  max-height: 68%;
  object-fit: contain;
  opacity: 0.75;
  filter: saturate(0.82);
  transition: opacity 260ms ease, transform 320ms ease, filter 260ms ease;
}

.strength-card__details {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 2.2vw, 38px);
  bottom: clamp(26px, 3vh, 42px);
  left: clamp(22px, 2.2vw, 38px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.strength-card__details p {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.strength-card__details ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strength-card__details li {
  position: relative;
  display: table;
  min-width: min(100%, 245px);
  margin: 0 0 -2px;
  padding: 14px 22px;
  border: 1px solid rgba(9, 20, 24, 0.14);
  border-radius: 22px;
  color: #10191a;
  background: rgba(246, 255, 231, 0.88);
  box-shadow: 0 12px 30px rgba(18, 28, 24, 0.12);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.15;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px) rotate(-2deg);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-card__details li:nth-child(2) {
  margin-top: 10px;
  margin-left: clamp(34px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(18px) rotate(2.5deg);
}

.strength-card__details li:nth-child(3) {
  margin-top: 10px;
  margin-left: clamp(12px, 2vw, 38px);
  background: rgba(235, 251, 210, 0.92);
  transform: translateY(18px) rotate(-1deg);
}

.strength-card--wide .strength-card__details li {
  min-width: min(100%, 310px);
  padding-inline: 26px;
}

.strength-card:hover > img,
.strength-card:focus-visible > img {
  opacity: 0;
  filter: saturate(0.5) blur(2px);
  transform: scale(1.12) translateY(12px);
}

.strength-card:hover .strength-card__details,
.strength-card:focus-visible .strength-card__details {
  opacity: 1;
  transform: translateY(0);
}

.strength-card:hover .strength-card__details li,
.strength-card:focus-visible .strength-card__details li {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}

.strength-card:hover .strength-card__details li:nth-child(2),
.strength-card:focus-visible .strength-card__details li:nth-child(2) {
  transform: translateY(0) rotate(2.5deg);
}

.strength-card:hover .strength-card__details li:nth-child(3),
.strength-card:focus-visible .strength-card__details li:nth-child(3) {
  transform: translateY(0) rotate(-1deg);
}

.strength-card:hover .strength-card__details li:nth-child(2),
.strength-card:focus-visible .strength-card__details li:nth-child(2) {
  transition-delay: 70ms;
}

.strength-card:hover .strength-card__details li:nth-child(3),
.strength-card:focus-visible .strength-card__details li:nth-child(3) {
  transition-delay: 140ms;
}

.strength-card:hover .strength-card__meta,
.strength-card:focus-visible .strength-card__meta,
.strength-card:hover .strength-card__meta small,
.strength-card:focus-visible .strength-card__meta small,
.strength-card:hover h3,
.strength-card:focus-visible h3,
.strength-card:hover h3 span,
.strength-card:focus-visible h3 span,
.strength-card:hover .strength-card__details p,
.strength-card:focus-visible .strength-card__details p {
  color: #10191a;
}

.strength-card:hover h3,
.strength-card:focus-visible h3 {
  transform: translateY(-4px);
}

.contact-section {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 18px;
  overflow: hidden;
  color: #eef5f7;
  background:
    radial-gradient(circle at 18% 78%, rgba(5, 68, 80, 0.3), transparent 34%),
    radial-gradient(circle at 83% 20%, rgba(116, 143, 26, 0.2), transparent 28%),
    radial-gradient(circle at 82% 86%, rgba(94, 113, 16, 0.13), transparent 25%),
    linear-gradient(118deg, #020709 0%, #07070b 54%, #080508 100%);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent 58%, rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.02) 58.1%, transparent 58.1%),
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
  mask-image: linear-gradient(transparent 6%, #000 35%, #000 84%, transparent);
  pointer-events: none;
}

.contact-section-glow {
  position: absolute;
  z-index: 0;
  top: 13%;
  right: 8%;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(172, 220, 38, 0.09);
  filter: blur(100px);
  pointer-events: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(80px, 10vw, 170px);
  align-items: center;
  width: var(--section-width);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(112px, 13vh, 156px) 0 clamp(76px, 9vh, 110px);
}

.contact-intro {
  align-self: center;
}

.contact-section-kicker {
  margin: 0 0 14px;
  color: rgba(237, 244, 245, 0.64);
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.12em;
}

.contact-intro h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  color: #f5fafb;
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: clamp(62px, 6.6vw, 112px);
  line-height: 0.84;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-line {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  transform: translateY(0);
}

.contact-line {
  opacity: 0;
  transform: translateY(0.85em) skewY(3deg);
  transform-origin: left bottom;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-intro h2.is-visible .contact-line {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

.contact-intro h2.is-visible .contact-line:nth-child(2) {
  transition-delay: 90ms;
}

.contact-intro h2.is-visible .contact-line:nth-child(3) {
  transition-delay: 180ms;
}

.contact-intro h2 .contact-accent {
  color: var(--lime);
}

.text-pressure-segment {
  display: inline-flex;
}

.text-pressure-segment.is-accent {
  color: var(--lime);
}

.text-pressure-segment.is-arrow {
  margin-left: 12px;
  color: rgba(246, 248, 245, 0.9);
  font-size: 0.56em;
  transform: translateY(-0.07em);
}

.text-pressure-char {
  display: inline-block;
  transform-origin: 50% center;
  will-change: transform, font-weight, letter-spacing;
  transition:
    transform 180ms ease,
    font-weight 180ms ease,
    letter-spacing 180ms ease;
}

.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 132px;
  height: 40px;
  margin-top: clamp(28px, 4vh, 42px);
  color: #0c1519;
  background: var(--lime);
  padding: 0 18px 0 8px;
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease;
}

.contact-brand:hover,
.contact-brand:focus-visible {
  background: #e4ff78;
  box-shadow: 0 13px 38px rgba(201, 255, 26, 0.3);
  transform: translateY(-2px) scale(1.025);
  outline: none;
}

.contact-brand-mark,
.contact-brand__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
}

.contact-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.contact-panel-large {
  position: relative;
  min-height: 460px;
  padding: clamp(26px, 2.5vw, 36px);
  border: 1px solid rgba(222, 235, 226, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(19, 25, 24, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.08);
}

.contact-panel-large::before {
  display: none;
}

.contact-panel-large__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--lime);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-panel-large__topline small {
  display: grid;
  place-items: center;
  width: 30px;
  height: 22px;
  border: 1px solid rgba(201, 255, 26, 0.25);
  border-radius: 999px;
  font-size: 9px;
}

.contact-panel-large dl {
  margin: 0;
}

.contact-panel-large dl > div {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(231, 240, 234, 0.1);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 220ms ease,
    border-color 220ms ease;
}

.contact-panel-large.is-visible dl > div {
  opacity: 1;
  transform: translateY(0);
}

.contact-panel-large.is-visible dl > div:nth-child(2) {
  transition-delay: 120ms;
}

.contact-panel-large.is-visible dl > div:nth-child(3) {
  transition-delay: 210ms;
}

.contact-panel-large dl > div::before {
  display: none;
}

.contact-panel-large dl > div:hover {
  border-color: rgba(198, 255, 23, 0.34);
}

.contact-panel-large dt {
  color: rgba(239, 245, 241, 0.5);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-panel-large dd {
  min-width: 0;
  margin: 0;
  color: rgba(249, 251, 249, 0.94);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.015em;
  overflow-wrap: anywhere;
}

.contact-panel-large a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-panel-large a:hover,
.contact-panel-large a:focus-visible {
  color: var(--lime);
}

.contact-qr {
  display: block;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 280ms,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 280ms;
}

.contact-panel-large.is-visible .contact-qr {
  opacity: 1;
  transform: translateY(0);
}

.contact-qr p {
  margin: 0 0 13px;
  color: rgba(229, 239, 243, 0.55);
  font-family: "DIN Pro", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.contact-qr-frame {
  width: 148px;
  padding: 8px;
  border: 1px solid rgba(201, 255, 26, 0.2);
  border-radius: 16px;
  background: #f7f8f3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-qr-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
}

.contact-qr-frame:hover {
  box-shadow: 0 18px 45px rgba(198, 255, 23, 0.14);
  transform: rotate(-2deg) scale(1.04);
}

@media (max-width: 1200px) and (min-width: 901px) {
  :root {
    --frame-width: 92.5vw;
    --section-width: 92.5vw;
  }

  .nav {
    grid-template-columns: minmax(190px, 260px) 1fr minmax(140px, 190px);
    gap: 16px;
    padding-inline: 24px;
  }

  .brand {
    min-width: 0;
    padding-inline: 20px;
    font-size: 22px;
  }

  .nav__links {
    gap: clamp(22px, 4vw, 54px);
    font-size: 18px;
  }

  .contact__trigger {
    min-width: 132px;
    height: 54px;
    padding-inline: 22px;
    font-size: 18px;
  }

  .hero__copy h1 {
    font-size: clamp(58px, 6.4vw, 88px);
  }

  .hero__copy p {
    font-size: clamp(16px, 1.35vw, 21px);
  }

  .experience-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
  }

  .profile-card__image {
    width: 220px;
  }

  .profile-intro h3 {
    font-size: clamp(38px, 3.8vw, 50px);
  }

  .profile-intro__copy {
    font-size: 14px;
  }

  .campus-block p {
    font-size: 19px;
  }

  .highlight-card:nth-child(odd) {
    padding-right: 24px;
  }

  .highlight-card:nth-child(even) {
    padding-left: 24px;
  }

  .portfolio-section__inner,
  .contact-section__inner {
    padding-top: 82px;
  }

  .strength-card {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  :root {
    --frame-width: calc(100% - 36px);
    --section-width: calc(100% - 36px);
  }

  .portfolio-section__inner,
  .contact-section__inner {
    width: var(--frame-width);
  }

  .works-grid,
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strength-card,
  .strength-card--wide {
    grid-column: auto;
    min-height: 330px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 64px;
  }

  .contact-intro h2 {
    font-size: clamp(52px, 15vw, 86px);
  }

  .contact-panel-large dd {
    font-size: 18px;
  }
}
