:root {
  --bg: #10110f;
  --bg-deep: #0c0d0b;
  --surface: #181a17;
  --surface-soft: #1d201c;
  --line: rgba(232, 239, 221, 0.14);
  --line-strong: rgba(232, 239, 221, 0.28);
  --text: #eef3e8;
  --muted: #a1a99b;
  --dim: #727a6e;
  --accent: #d3ff55;
  --accent-dark: #a1ce28;
  --warm: #e9e0cf;
  --font-main: "Manrope", Arial, sans-serif;
  --font-mono: "DM Mono", Consolas, monospace;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 82% 9%, rgba(211, 255, 85, 0.08), transparent 23rem),
    radial-gradient(circle at 12% 52%, rgba(211, 255, 85, 0.035), transparent 25rem);
}

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

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
  background: radial-gradient(circle, rgba(211, 255, 85, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(16, 17, 15, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--bg);
  background: var(--accent);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
  place-items: center;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-name span,
.section-heading h2 span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(211, 255, 85, 0.1);
  animation: pulse 2s infinite;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 52px 0 82px;
}

.eyebrow,
.section-index,
.card-label,
.project-category {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 6px;
  color: var(--dim);
}

.hero-title {
  max-width: 810px;
  margin: 22px 0 24px;
  font-size: clamp(48px, 6.3vw, 86px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
}

.hero-title .outlined {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--text);
}

em {
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-description {
  max-width: 590px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-description strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button-primary {
  color: #11120f;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--text);
  transform: translateY(-3px);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(238, 243, 232, 0.025);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.text-link {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.text-link span,
.card-link span {
  color: var(--accent);
}

.text-link:hover {
  color: var(--text);
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.art-card {
  position: relative;
  width: min(355px, 82vw);
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #1b1e19;
  transform: rotate(3deg);
}

.art-grid,
.photo-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 23px 23px;
}

.art-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-one {
  width: 460px;
  height: 460px;
}

.orbit-two {
  width: 580px;
  height: 580px;
  border-style: dashed;
  animation: spin 24s linear infinite;
}

.art-sticker {
  position: absolute;
  top: 30px;
  right: 28px;
  z-index: 2;
  padding: 12px 14px;
  color: var(--bg);
  background: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  transform: rotate(4deg);
}

.art-sticker span {
  font-size: 15px;
  font-weight: 700;
}

.art-code {
  position: absolute;
  top: 82px;
  left: 118px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
}

.art-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-lime {
  right: -70px;
  bottom: 88px;
  width: 235px;
  height: 235px;
  background: var(--accent);
}

.shape-outline {
  bottom: -35px;
  left: -40px;
  width: 185px;
  height: 185px;
  border: 1px solid var(--accent);
}

.art-face {
  position: absolute;
  top: 168px;
  left: 44px;
  width: 176px;
  height: 176px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(16, 17, 15, 0.88);
}

.art-face span {
  position: absolute;
  top: 66px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.art-face span:first-child {
  left: 48px;
}

.art-face span:nth-child(2) {
  right: 48px;
}

.art-face i {
  position: absolute;
  bottom: 44px;
  left: 63px;
  width: 48px;
  height: 22px;
  border-bottom: 2px solid var(--accent);
  border-radius: 50%;
}

.art-caption {
  position: absolute;
  right: 21px;
  bottom: 21px;
  margin: 0;
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: right;
}

.art-caption strong {
  font-size: 13px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: rgba(16, 17, 15, 0.88);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.note-top {
  top: 93px;
  left: 5px;
}

.note-bottom {
  right: -5px;
  bottom: 79px;
}

.note-bottom span {
  margin-right: 7px;
  color: var(--accent);
}

.hero-bottom {
  position: absolute;
  bottom: 22px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.hero-bottom p,
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-bottom p span,
.section-index span {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--line-strong);
  vertical-align: middle;
}

.scroll-indicator i {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--line-strong);
}

.stats {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr) 1.55fr;
}

.stat,
.stats-note {
  min-height: 150px;
  padding: 27px 25px;
  border-right: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 50px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.stat strong span {
  color: var(--accent);
}

.stat p,
.stats-note p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.stats-note {
  border-right: 0;
  background: rgba(211, 255, 85, 0.05);
}

.stats-note span {
  color: var(--accent);
  font-size: 23px;
}

.section-space {
  padding-top: 145px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.section-intro h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.075em;
  line-height: 1.03;
}

.about-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  grid-template-rows: 210px 190px;
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.about-story {
  display: flex;
  padding: 27px;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
}

.card-label {
  margin: 0;
}

.about-story h3 {
  margin: 0 0 15px;
  font-size: 27px;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.about-story h3 span {
  color: var(--accent);
}

.about-story p:not(.card-label) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.card-link {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-link span {
  padding-left: 6px;
  font-size: 16px;
}

.about-photo {
  grid-row: span 2;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(135deg, #d3ff55 0%, #b7ea35 100%);
}

.profile-illustration {
  --pupil-x: 0px;
  --pupil-y: 0px;
  position: absolute;
  right: -12px;
  bottom: -70px;
  width: 280px;
  height: 320px;
  filter: drop-shadow(-15px 17px 11px rgba(16, 17, 15, 0.22));
}

.profile-head {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 58px;
  width: 160px;
  height: 185px;
  border: 3px solid #10110f;
  border-radius: 46% 50% 43% 44%;
  background:
    radial-gradient(circle at 31% 34%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(115deg, #e8ecd8 0%, #bdc6a8 72%, #9ca98b 100%);
  box-shadow: inset -13px -8px 0 rgba(69, 79, 59, 0.13);
  transform: rotate(-4deg);
}

.profile-head::before {
  position: absolute;
  top: -21px;
  right: -7px;
  width: 122px;
  height: 54px;
  border-radius: 92% 22% 8% 0;
  content: "";
  background: linear-gradient(155deg, #30342e 0%, #10110f 62%);
  box-shadow: inset 11px 8px 0 rgba(255, 255, 255, 0.07);
  transform: rotate(3deg);
}

.profile-head::after {
  position: absolute;
  top: 112px;
  left: 61px;
  width: 42px;
  height: 18px;
  border-bottom: 2px solid #10110f;
  border-radius: 50%;
  content: "";
}

.profile-ear {
  position: absolute;
  z-index: 1;
  top: 110px;
  width: 25px;
  height: 42px;
  border: 3px solid #10110f;
  background: linear-gradient(110deg, #d7ddc4, #a9b494);
  border-radius: 50%;
}

.ear-left {
  left: 48px;
}

.ear-right {
  left: 205px;
}

.profile-body {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -2px;
  width: 265px;
  height: 142px;
  border: 3px solid #10110f;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(118deg, #31362f 0%, #171916 48%, #080908 100%);
  box-shadow: inset 18px 10px 0 rgba(255, 255, 255, 0.035);
}

.profile-shirt {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 115px;
  width: 76px;
  height: 104px;
  background: linear-gradient(90deg, #e9eee0, #bac5ad);
  clip-path: polygon(0 0, 50% 24%, 100% 0, 78% 100%, 22% 100%);
}

.profile-lapel {
  position: absolute;
  z-index: 5;
  bottom: 10px;
  width: 72px;
  height: 96px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  background: #20231f;
}

.lapel-left {
  left: 60px;
  clip-path: polygon(0 0, 100% 22%, 68% 100%, 0 68%);
}

.lapel-right {
  right: 25px;
  clip-path: polygon(0 22%, 100% 0, 100% 68%, 32% 100%);
}

.profile-tie {
  position: absolute;
  z-index: 6;
  bottom: 7px;
  left: 139px;
  width: 28px;
  height: 89px;
  background: linear-gradient(90deg, #a9d52e, #d3ff55 55%, #8ab31c);
  clip-path: polygon(50% 0, 78% 18%, 63% 100%, 37% 100%, 22% 18%);
}

.profile-eye {
  position: absolute;
  z-index: 4;
  top: 120px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  border: 2px solid #10110f;
  background: #f5f7ed;
  border-radius: 50%;
}

.profile-eye i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: #10110f;
  border-radius: 50%;
  transform: translate(var(--pupil-x), var(--pupil-y));
  transition: transform 80ms ease-out;
}

.eye-left {
  left: 91px;
}

.eye-right {
  left: 153px;
}

.profile-nose {
  position: absolute;
  z-index: 4;
  top: 143px;
  left: 128px;
  width: 15px;
  height: 22px;
  border-right: 2px solid rgba(16, 17, 15, 0.65);
  border-bottom: 2px solid rgba(16, 17, 15, 0.65);
  border-radius: 0 0 10px;
}

.profile-glass {
  position: absolute;
  z-index: 5;
  top: 104px;
  width: 48px;
  height: 42px;
  border: 4px solid #10110f;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 45%);
}

.glass-left {
  left: 74px;
}

.glass-right {
  left: 134px;
}

.glass-bridge {
  top: 123px;
  left: 120px;
  width: 16px;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: #10110f;
}

.about-photo p {
  position: absolute;
  top: 19px;
  left: 19px;
  margin: 0;
  color: #10110f;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.45;
}

.about-photo p span {
  font-size: 18px;
  font-weight: 700;
}

.about-tools,
.about-quote {
  padding: 25px;
}

.tool-list {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tool-list span,
.tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.about-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  position: absolute;
  top: -8px;
  right: 18px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 92px;
  opacity: 0.25;
}

.about-quote p {
  max-width: 250px;
  margin: 0 0 19px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.about-quote small {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.education-journey {
  margin-top: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 10%, rgba(211, 255, 85, 0.1), transparent 18rem),
    var(--surface);
  border-radius: var(--radius);
}

.education-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.education-heading .section-index {
  margin-bottom: 12px;
}

.education-heading h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.07em;
}

.education-heading h3 span {
  color: var(--accent);
}

.education-heading > p {
  max-width: 395px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.education-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 36px;
  padding-top: 52px;
  grid-template-columns: repeat(4, 1fr);
}

.education-timeline::before {
  position: absolute;
  top: 35px;
  right: 2.2%;
  left: 2.2%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line-strong), var(--accent));
}

.education-item {
  position: relative;
  min-height: 185px;
  padding: 24px 18px 18px;
  border: 1px solid var(--line);
  background: rgba(16, 17, 15, 0.52);
  border-radius: 13px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.education-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.education-current {
  background: rgba(211, 255, 85, 0.07);
}

.education-number {
  position: absolute;
  top: -43px;
  left: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.education-dot {
  position: absolute;
  z-index: 1;
  top: -23px;
  right: 17px;
  display: block;
  width: 13px;
  height: 13px;
  border: 3px solid var(--surface);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--accent);
}

.education-year {
  margin: 0 0 12px;
  color: var(--accent) !important;
  font-family: var(--font-mono);
  font-size: 9px !important;
  letter-spacing: 0.08em;
}

.education-item h4 {
  margin: 0 0 9px;
  font-size: 22px;
  letter-spacing: -0.06em;
}

.education-item p:not(.education-year) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section-heading > p {
  max-width: 350px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.project-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.project-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1.35fr 0.65fr;
}

.project-visual {
  position: relative;
  min-height: 315px;
  overflow: hidden;
}

.project-number {
  position: absolute;
  right: 15px;
  bottom: 12px;
  color: rgba(16, 17, 15, 0.45);
  font-family: var(--font-mono);
  font-size: 12px;
}

.visual-thesis {
  min-height: 346px;
  background:
    radial-gradient(circle at 82% 18%, rgba(211, 255, 85, 0.25), transparent 11rem),
    linear-gradient(135deg, #cbd2c3 0%, #aebaa8 100%);
}

.thesis-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(23, 25, 22, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 22, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.thesis-label,
.thesis-note,
.thesis-data-card {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
}

.thesis-label {
  top: 25px;
  left: 28px;
  color: #465143;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.thesis-paper {
  position: absolute;
  top: 42px;
  left: 24%;
  width: 225px;
  height: 280px;
  padding: 18px;
  border: 1px solid rgba(23, 25, 22, 0.2);
  color: #171916;
  background: #f1f4ea;
  box-shadow: 13px 14px 0 rgba(23, 25, 22, 0.14);
  transform: rotate(-5deg);
  animation: thesis-float 5s ease-in-out infinite;
}

.thesis-paper-head,
.thesis-paper-title,
.thesis-author {
  font-family: var(--font-mono);
}

.thesis-paper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 25, 22, 0.18);
  font-size: 5px;
  letter-spacing: 0.1em;
}

.thesis-paper-head i {
  display: grid;
  width: 24px;
  height: 24px;
  color: #171916;
  background: #d3ff55;
  border-radius: 50%;
  font-size: 6px;
  font-style: normal;
  place-items: center;
}

.thesis-paper-title {
  padding-top: 24px;
}

.thesis-paper-title small {
  color: #6d7767;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.thesis-paper-title strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.thesis-paper-title p {
  margin: 0;
  color: #6d7767;
  font-size: 7px;
}

.thesis-paper-lines {
  display: grid;
  gap: 6px;
  margin-top: 27px;
}

.thesis-paper-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(23, 25, 22, 0.14);
}

.thesis-paper-lines i:nth-child(2) {
  width: 84%;
}

.thesis-paper-lines i:nth-child(3) {
  width: 67%;
}

.thesis-author {
  position: absolute;
  bottom: 17px;
  color: #586251;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.thesis-data-card {
  right: 36px;
  bottom: 39px;
  width: 175px;
  padding: 16px;
  border: 1px solid rgba(211, 255, 85, 0.38);
  color: #eef3e8;
  background: #242821;
  box-shadow: -8px 9px 0 rgba(23, 25, 22, 0.12);
  animation: thesis-float 5s 0.65s ease-in-out infinite;
}

.thesis-data-card p {
  margin: 0 0 11px;
  color: #d3ff55;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.thesis-bars {
  display: flex;
  height: 52px;
  align-items: flex-end;
  gap: 9px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(238, 243, 232, 0.22);
}

.thesis-bars i {
  display: block;
  width: 17px;
  height: 58%;
  background: #d3ff55;
  animation: thesis-bar 2.4s ease-in-out infinite alternate;
}

.thesis-bars i:nth-child(2) {
  height: 83%;
  animation-delay: 0.25s;
}

.thesis-bars i:nth-child(3) {
  height: 68%;
  animation-delay: 0.5s;
}

.thesis-bars i:nth-child(4) {
  height: 94%;
  animation-delay: 0.75s;
}

.thesis-data-card span {
  display: block;
  margin-top: 11px;
  color: #aeb7a8;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.thesis-note {
  top: 86px;
  right: 42px;
  padding: 10px 13px;
  color: #171916;
  background: #d3ff55;
  font-size: 7px;
  letter-spacing: 0.1em;
  transform: rotate(4deg);
}

.thesis-note span {
  padding-right: 5px;
  font-size: 11px;
}

.project-info {
  display: flex;
  min-height: 230px;
  padding: 25px;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  letter-spacing: -0.055em;
}

.project-info p:not(.project-category) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.project-footer,
.tags {
  display: flex;
  align-items: center;
}

.project-footer {
  justify-content: space-between;
  margin-top: 24px;
}

.tags {
  gap: 6px;
  flex-wrap: wrap;
}

.project-footer a {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid var(--line);
  color: var(--accent);
  border-radius: 50%;
  font-size: 17px;
  place-items: center;
  transition: 0.2s ease;
}

.project-footer a:hover {
  color: var(--bg);
  background: var(--accent);
}

.visual-teaching {
  min-height: 345px;
  background:
    radial-gradient(circle at 20% 15%, rgba(211, 255, 85, 0.18), transparent 11rem),
    linear-gradient(135deg, #d9dfd1, #aeb9aa);
}

.teaching-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(23, 25, 22, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 22, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
}

.teaching-label {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #53604f;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.class-board {
  position: absolute;
  top: 67px;
  left: 31px;
  width: 310px;
  height: 177px;
  padding: 24px;
  border: 7px solid #7d856f;
  color: #eef3e8;
  background: linear-gradient(135deg, #344034, #202a22);
  box-shadow: 10px 11px 0 rgba(23, 25, 22, 0.1);
}

.class-board p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.class-board strong {
  color: #d3ff55;
  font-size: 29px;
}

.board-lines {
  display: grid;
  gap: 6px;
  margin-top: 17px;
}

.board-lines i {
  display: block;
  width: 72%;
  height: 2px;
  background: rgba(238, 243, 232, 0.42);
  transform-origin: left;
  animation: board-write 3s ease-in-out infinite alternate;
}

.board-lines i:nth-child(2) {
  width: 58%;
  animation-delay: 0.25s;
}

.board-lines i:nth-child(3) {
  width: 43%;
  animation-delay: 0.5s;
}

.class-board span {
  position: absolute;
  right: 16px;
  bottom: 13px;
  color: #aab8a6;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.teacher-character {
  position: absolute;
  right: 23px;
  bottom: -5px;
  width: 190px;
  height: 267px;
}

.teacher-head,
.teacher-hair,
.teacher-body,
.teacher-shirt,
.teacher-arm,
.teacher-pointer {
  position: absolute;
}

.teacher-head {
  z-index: 3;
  top: 17px;
  left: 52px;
  width: 78px;
  height: 94px;
  border: 3px solid #171916;
  background: linear-gradient(115deg, #edf0df, #adb99c);
  border-radius: 48%;
}

.teacher-head::before,
.teacher-head::after {
  position: absolute;
  top: 42px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #171916;
}

.teacher-head::before {
  left: 19px;
}

.teacher-head::after {
  right: 19px;
}

.teacher-hair {
  z-index: 4;
  top: 5px;
  left: 62px;
  width: 73px;
  height: 35px;
  background: #171916;
  border-radius: 85% 15% 4% 0;
}

.teacher-body {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 174px;
  height: 159px;
  border: 3px solid #171916;
  background: linear-gradient(120deg, #30362f, #151815);
  border-radius: 50% 50% 0 0;
}

.teacher-shirt {
  z-index: 3;
  bottom: 0;
  left: 71px;
  width: 64px;
  height: 130px;
  background: linear-gradient(90deg, #edf0df, #b6c1a8);
  clip-path: polygon(0 0, 50% 19%, 100% 0, 75% 100%, 25% 100%);
}

.teacher-arm {
  z-index: 4;
  top: 121px;
  left: -13px;
  width: 100px;
  height: 23px;
  border: 3px solid #171916;
  background: #242924;
  border-radius: 16px;
  transform: rotate(-27deg);
  transform-origin: right;
}

.teacher-pointer {
  z-index: 5;
  top: 69px;
  left: -91px;
  width: 160px;
  height: 3px;
  background: #d3ff55;
  transform: rotate(-19deg);
  transform-origin: right;
  animation: pointer-move 3s ease-in-out infinite alternate;
}

.student-desks {
  position: absolute;
  right: 132px;
  bottom: -3px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.student-desks i {
  display: block;
  width: 74px;
  height: 39px;
  border: 2px solid #4a5347;
  background: #8e9a87;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.student-desks i:nth-child(2) {
  height: 55px;
}

.visual-portfolio {
  min-height: 345px;
  background: #202620;
}

.portfolio-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.portfolio-orb-a {
  top: -70px;
  right: -20px;
  width: 250px;
  height: 250px;
  background: rgba(211, 255, 85, 0.32);
}

.portfolio-orb-b {
  bottom: -90px;
  left: -44px;
  width: 230px;
  height: 230px;
  background: rgba(93, 116, 206, 0.23);
}

.portfolio-browser {
  position: absolute;
  top: 45px;
  right: 33px;
  left: 33px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(238, 243, 232, 0.18);
  background: #111310;
  box-shadow: 14px 17px 0 rgba(0, 0, 0, 0.16);
  animation: portfolio-float 5s ease-in-out infinite;
}

.portfolio-toolbar {
  display: flex;
  height: 27px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  color: #aab4a4;
  background: #171b17;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.portfolio-toolbar i {
  width: 5px;
  height: 5px;
  background: #d3ff55;
  border-radius: 50%;
  opacity: 0.55;
}

.portfolio-toolbar span {
  margin-left: 7px;
}

.portfolio-screen {
  position: relative;
  display: grid;
  min-height: 228px;
  grid-template-columns: 47px 1fr;
}

.portfolio-sidebar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 19px;
  background: #d3ff55;
  flex-direction: column;
}

.portfolio-sidebar b {
  color: #171916;
  font-size: 15px;
}

.portfolio-sidebar i {
  width: 16px;
  height: 2px;
  background: #171916;
  opacity: 0.44;
}

.portfolio-profile {
  padding: 45px 27px;
}

.portfolio-profile span,
.portfolio-profile p {
  color: #d3ff55;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.portfolio-profile strong {
  display: block;
  margin-top: 8px;
  color: #eef3e8;
  font-size: 35px;
  letter-spacing: -0.1em;
  line-height: 0.82;
}

.portfolio-profile p {
  margin-top: 19px;
  color: #aab4a4;
}

.portfolio-avatar {
  position: absolute;
  right: 27px;
  bottom: -37px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(211, 255, 85, 0.55);
  background: #1d211d;
  border-radius: 50%;
}

.portfolio-avatar i {
  position: absolute;
  top: 53px;
  width: 9px;
  height: 9px;
  background: #d3ff55;
  border-radius: 50%;
}

.portfolio-avatar i:first-child {
  left: 43px;
}

.portfolio-avatar i:nth-child(2) {
  right: 43px;
}

.portfolio-avatar b {
  position: absolute;
  bottom: 45px;
  left: 55px;
  width: 40px;
  height: 17px;
  border-bottom: 2px solid #d3ff55;
  border-radius: 50%;
}

.portfolio-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 9px 12px;
  color: #d3ff55;
  background: rgba(17, 19, 16, 0.92);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.portfolio-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #d3ff55;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  min-height: 265px;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background 0.25s ease;
}

.process-card:last-child {
  border-right: 1px solid var(--line);
}

.process-card:hover {
  background: rgba(211, 255, 85, 0.045);
}

.process-card > span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 10px;
}

.process-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 42px 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 16px;
  place-items: center;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact {
  padding-bottom: 80px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 54px;
  color: #10110f;
  background: var(--accent);
  border-radius: 20px;
}

.contact-panel .section-index {
  color: #48591e;
}

.contact-panel .section-index span {
  background: rgba(16, 17, 15, 0.35);
}

.contact-panel h2 {
  margin: 26px 0 14px;
  font-size: clamp(45px, 6vw, 76px);
  letter-spacing: -0.09em;
  line-height: 0.95;
}

.contact-panel h2 em {
  color: #10110f;
}

.contact-copy {
  max-width: 540px;
  color: #46531f;
  font-size: 14px;
  line-height: 1.75;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  border-bottom: 2px solid #10110f;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.email-link i {
  font-family: var(--font-mono);
  font-size: 25px;
  font-style: normal;
}

.contact-meta {
  display: flex;
  align-items: flex-end;
  gap: 55px;
  margin-top: 68px;
}

.contact-meta p {
  margin: 0;
  color: #46531f;
  font-size: 11px;
  line-height: 1.6;
}

.contact-meta span {
  display: block;
  color: #10110f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.contact-socials {
  display: flex;
  gap: 9px;
  margin-left: auto;
}

.contact-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(16, 17, 15, 0.35);
  background: rgba(16, 17, 15, 0.07);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
  background: rgba(16, 17, 15, 0.16);
  transform: translateY(-3px);
}

.contact-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #10110f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-socials a span {
  display: none;
}

.contact-decoration {
  position: absolute;
  right: -11px;
  bottom: -12px;
  color: rgba(16, 17, 15, 0.1);
  font-size: 83px;
  font-weight: 800;
  letter-spacing: -0.13em;
  line-height: 0.72;
  pointer-events: none;
  text-align: right;
}

.contact-decoration span,
.contact-decoration strong {
  display: block;
}

.site-footer {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.site-footer p,
.back-top {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.back-top span {
  padding-left: 8px;
  color: var(--accent);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(211, 255, 85, 0.1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(211, 255, 85, 0.02);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes thesis-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes thesis-bar {
  to {
    scale: 1 0.78;
  }
}

@keyframes board-write {
  to {
    scale: 0.72 1;
  }
}

@keyframes pointer-move {
  to {
    transform: rotate(-11deg);
  }
}

@keyframes portfolio-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@media (max-width: 900px) {
  .section-shell {
    width: min(100% - 32px, 700px);
  }

  .site-header {
    width: 100%;
    padding-inline: 16px;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: flex;
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(24, 26, 23, 0.98);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .nav-toggle {
    display: flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    flex-direction: column;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 14px;
    height: 1px;
    background: var(--text);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    min-width: 0;
    padding-top: 70px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-art {
    min-height: 470px;
    margin-top: 35px;
  }

  .hero-bottom {
    display: none;
  }

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

  .stats-note {
    min-height: auto;
    grid-column: span 3;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 190px 190px;
  }

  .about-story {
    grid-row: span 2;
  }

  .about-photo {
    grid-row: span 2;
  }

  .education-heading {
    display: block;
  }

  .education-heading > p {
    margin-top: 12px;
  }

  .education-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-timeline::before {
    display: none;
  }

  .project-featured {
    display: block;
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .process-card:nth-child(n + 3) {
    border-top: 0;
  }
}

@media (max-width: 600px) {
  .section-shell {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    height: 68px;
    padding-inline: 12px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(38px, 10.8vw, 58px);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-art {
    min-height: 405px;
  }

  .art-card {
    width: 270px;
    height: 350px;
  }

  .orbit-one {
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    width: 405px;
    height: 405px;
  }

  .art-face {
    top: 142px;
    left: 31px;
    width: 140px;
    height: 140px;
  }

  .art-face span {
    top: 51px;
  }

  .art-face span:first-child {
    left: 37px;
  }

  .art-face span:nth-child(2) {
    right: 37px;
  }

  .art-face i {
    bottom: 34px;
    left: 47px;
  }

  .shape-lime {
    width: 190px;
    height: 190px;
  }

  .art-sticker {
    top: 22px;
    right: 21px;
  }

  .note-top {
    top: 43px;
  }

  .note-bottom {
    right: 1px;
    bottom: 33px;
  }

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

  .stat,
  .stats-note {
    min-height: auto;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat strong {
    font-size: 43px;
  }

  .stats-note {
    grid-column: auto;
  }

  .section-space {
    padding-top: 100px;
  }

  .section-intro h2,
  .section-heading h2 {
    font-size: 47px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-story {
    min-height: 390px;
  }

  .about-photo {
    min-height: 315px;
  }

  .about-tools,
  .about-quote {
    min-height: 175px;
  }

  .education-journey {
    padding: 24px 20px;
  }

  .education-heading h3 {
    font-size: 29px;
  }

  .education-timeline {
    display: block;
    margin-top: 27px;
    padding-top: 0;
  }

  .education-item {
    min-height: auto;
    margin-left: 15px;
    padding: 18px 18px 18px 43px;
    border-radius: 10px;
  }

  .education-item + .education-item {
    margin-top: 10px;
  }

  .education-item::before {
    position: absolute;
    top: -11px;
    bottom: -11px;
    left: -16px;
    width: 1px;
    content: "";
    background: var(--line-strong);
  }

  .education-item:last-child::before {
    bottom: 50%;
  }

  .education-number {
    top: 20px;
    left: 15px;
  }

  .education-dot {
    top: 18px;
    right: auto;
    left: -22px;
  }

  .education-year {
    margin-bottom: 7px;
  }

  .education-item h4 {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 14px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-featured {
    grid-column: auto;
  }

  .visual-thesis {
    min-height: 290px;
  }

  .thesis-paper {
    top: 36px;
    left: 16%;
    width: 190px;
    height: 238px;
    padding: 15px;
  }

  .thesis-data-card {
    right: 17px;
    bottom: 26px;
    width: 145px;
    padding: 13px;
  }

  .thesis-note {
    top: 75px;
    right: 17px;
  }

  .visual-teaching,
  .visual-portfolio {
    min-height: 310px;
  }

  .class-board {
    left: 18px;
    width: 255px;
  }

  .teacher-character {
    right: -15px;
    scale: 0.88;
    transform-origin: bottom right;
  }

  .portfolio-browser {
    right: 18px;
    left: 18px;
  }

  .portfolio-profile {
    padding-inline: 18px;
  }

  .portfolio-profile strong {
    font-size: 30px;
  }

  .portfolio-avatar {
    right: -6px;
  }

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

  .process-card {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .process-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-icon {
    margin: 28px 0 18px;
  }

  .process-card p {
    margin-bottom: 4px;
  }

  .contact-panel {
    padding: 32px 24px;
  }

  .contact-panel h2 {
    font-size: 48px;
  }

  .email-link {
    font-size: 23px;
  }

  .contact-meta {
    gap: 17px;
    margin-top: 53px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-socials {
    margin-top: 4px;
    margin-left: 0;
  }

  .contact-decoration {
    font-size: 58px;
  }

  .site-footer {
    min-height: 135px;
    align-items: flex-start;
    padding-block: 23px;
    flex-direction: column;
  }
}

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