:root {
  --background: #060e20;
  --surface-low: #091328;
  --surface-high: #141f38;
  --surface-highest: #192540;
  --surface-ghost: rgba(25, 37, 64, 0.72);
  --primary: #a7a5ff;
  --primary-dim: #645efb;
  --secondary: #af88ff;
  --text: #dee5ff;
  --text-muted: #a3aac4;
  --outline: rgba(64, 72, 93, 0.18);
  --outline-strong: rgba(167, 165, 255, 0.28);
  --shadow: 0 32px 80px rgba(167, 165, 255, 0.08);
  --shadow-soft: 0 24px 60px rgba(3, 8, 20, 0.45);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --font-headline: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-label: "Space Grotesk", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 165, 255, 0.1), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(175, 136, 255, 0.08), transparent 24%),
    radial-gradient(rgba(64, 72, 93, 0.24) 0.7px, transparent 0.7px),
    var(--background);
  background-size: auto, auto, 24px 24px, auto;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(167, 165, 255, 0.88);
  outline-offset: 4px;
}

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

.container,
.nav-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 7.5rem 0;
}

.section[id] {
  scroll-margin-top: 9rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(9, 19, 40, 0.88), rgba(6, 14, 32, 0.94));
}

.section-kicker,
.mini-label,
.study-date,
.step-number,
.footer-copy,
.nav-links a {
  font-family: var(--font-label);
}

.section-kicker,
.mini-label {
  margin: 0;
  color: rgba(167, 165, 255, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-headline);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-lead,
.spotlight-text,
.visual-text,
.contact-note,
.study-description,
.process-card p,
.portfolio-card p {
  color: var(--text-muted);
}

.section-lead,
.spotlight-text {
  max-width: 44rem;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

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

.button-primary,
.nav-cta {
  color: #040712;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  box-shadow: 0 20px 40px rgba(100, 94, 251, 0.22);
}

.button-secondary {
  border: 1px solid rgba(64, 72, 93, 0.36);
  background: rgba(9, 19, 40, 0.68);
  color: var(--primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.nav-shell {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(64, 72, 93, 0.2);
  border-radius: 1.75rem;
  background: rgba(9, 19, 40, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(25, 37, 64, 0.95), rgba(9, 19, 40, 0.95));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-copy span:last-child {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(25, 37, 64, 0.85);
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.78rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.language-button:hover {
  transform: translateY(-1px);
}

.language-button img {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.language-button.is-active {
  background: rgba(167, 165, 255, 0.16);
  color: var(--text);
}

.nav-cta {
  min-height: 2.9rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-size: 0.98rem;
  font-weight: 800;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(64, 72, 93, 0.28);
  border-radius: 999px;
  background: rgba(25, 37, 64, 0.82);
  cursor: pointer;
}

.menu-toggle .menu-line {
  position: absolute;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle .menu-line:nth-child(1) {
  transform: translateY(-0.35rem);
}

.menu-toggle .menu-line:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle .menu-line:nth-child(3) {
  transform: translateY(0.35rem);
}

.site-header.is-open .menu-toggle .menu-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle .menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle .menu-line:nth-child(3) {
  transform: rotate(-45deg);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(25, 37, 64, 0.9);
  color: var(--text);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0.35rem rgba(167, 165, 255, 0.12);
}

.hero-title {
  margin: 1rem 0 1.4rem;
  font-family: var(--font-headline);
  font-size: clamp(3.65rem, 8vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero-title-accent {
  display: block;
  color: var(--text-muted);
}

.hero-stack {
  margin: 0 0 1.1rem;
  color: var(--primary);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-summary {
  max-width: 36rem;
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.35;
}

.hero-detail {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 12% 20% 12%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 165, 255, 0.18) 0%, rgba(167, 165, 255, 0) 72%);
  filter: blur(48px);
}

.visual-card,
.spotlight-card,
.skill-card,
.study-card,
.portfolio-main,
.portfolio-card,
.process-card,
.contact-card,
.stat-card,
.metric-card {
  border: 1px solid var(--outline);
  background: linear-gradient(180deg, rgba(25, 37, 64, 0.92), rgba(9, 19, 40, 0.92));
  box-shadow: var(--shadow);
}

.visual-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.35rem;
  align-items: center;
}

.profile-frame {
  position: relative;
  width: min(100%, 22rem);
  margin-inline: auto;
  padding: 0.85rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(167, 165, 255, 0.16), rgba(167, 165, 255, 0.04)),
    rgba(9, 19, 40, 0.94);
  box-shadow: 0 24px 48px rgba(3, 8, 20, 0.4);
}

.profile-frame::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(167, 165, 255, 0.14);
  pointer-events: none;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 1.25rem;
  background: rgba(9, 19, 40, 0.92);
}

.visual-copy {
  display: grid;
  gap: 0.65rem;
}

.visual-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.visual-text {
  margin: 0;
}

.insight-chart {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1rem 0.9rem;
  border: 1px solid rgba(64, 72, 93, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(9, 19, 40, 0.92), rgba(12, 22, 44, 0.92));
}

.chart-heading {
  display: grid;
  gap: 0.35rem;
}

.chart-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.08rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.chart-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
  min-height: 12rem;
}

.chart-column {
  display: grid;
  gap: 0.85rem;
  align-items: end;
}

.chart-track {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 9.5rem;
  padding: 0.45rem;
  overflow: hidden;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(167, 165, 255, 0.05), rgba(167, 165, 255, 0.11));
  box-shadow: inset 0 0 0 1px rgba(167, 165, 255, 0.08);
}

.chart-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 24%,
      rgba(167, 165, 255, 0.08) 24%,
      rgba(167, 165, 255, 0.08) 25%,
      transparent 25%,
      transparent 49%,
      rgba(167, 165, 255, 0.08) 49%,
      rgba(167, 165, 255, 0.08) 50%,
      transparent 50%,
      transparent 74%,
      rgba(167, 165, 255, 0.08) 74%,
      rgba(167, 165, 255, 0.08) 75%,
      transparent 75%
    );
  pointer-events: none;
}

.chart-fill {
  display: block;
  position: relative;
  width: 100%;
  height: var(--bar-height);
  min-height: 3.4rem;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(201, 197, 255, 0.95), rgba(124, 115, 255, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 36px rgba(100, 94, 251, 0.2);
}

.chart-column:nth-child(2) .chart-fill {
  background: linear-gradient(180deg, rgba(188, 211, 255, 0.96), rgba(92, 120, 255, 0.98));
}

.chart-column:nth-child(3) .chart-fill {
  background: linear-gradient(180deg, rgba(255, 198, 230, 0.96), rgba(189, 110, 255, 0.98));
}

.chart-column:nth-child(4) .chart-fill {
  background: linear-gradient(180deg, rgba(210, 218, 255, 0.96), rgba(132, 142, 255, 0.98));
}

.chart-column:nth-child(5) .chart-fill {
  background: linear-gradient(180deg, rgba(239, 204, 255, 0.96), rgba(151, 102, 255, 0.98));
}

.chart-label {
  color: var(--text);
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.metric-grid,
.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
}

.metric-card strong,
.stat-card strong,
.study-title,
.skill-title,
.portfolio-card h3,
.process-card h3,
.contact-value {
  display: block;
  font-family: var(--font-headline);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.metric-card strong,
.stat-card strong,
.contact-value {
  margin-top: 0.35rem;
  font-size: 1.08rem;
}

.metric-card-wide {
  grid-column: span 1;
}

.about-grid,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: start;
}

.spotlight-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.prose {
  display: grid;
  gap: 1.35rem;
  align-self: center;
}

.prose p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.section-header {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.skill-card {
  min-height: 15.5rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
}

.skill-title {
  margin: 0 0 1.25rem;
  font-size: 1.38rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  background: rgba(9, 19, 40, 0.94);
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chip::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--secondary);
}

.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.study-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.55rem;
  border-radius: 1.75rem;
}

.study-logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.8rem;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
}

.study-logo {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

.study-title {
  font-size: 1.45rem;
}

.study-description {
  margin: 0;
}

.study-date {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.portfolio-main,
.portfolio-card,
.process-card,
.contact-card {
  border-radius: var(--radius-lg);
}

.portfolio-main {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 2rem;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  padding: 1.5rem;
}

.card-index,
.step-number {
  margin: 0 0 0.85rem;
  color: rgba(167, 165, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-card h3,
.process-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.portfolio-card p:last-child,
.process-card p:last-child {
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.4rem;
}

.contact-copy {
  max-width: 34rem;
}

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

.contact-card {
  display: grid;
  gap: 0.55rem;
  min-height: 11rem;
  padding: 1.45rem;
}

.contact-card.is-link {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.contact-card.is-link:hover {
  transform: translateY(-2px);
  border-color: var(--outline-strong);
  background: linear-gradient(180deg, rgba(25, 37, 64, 1), rgba(12, 22, 44, 1));
}

.contact-value {
  font-size: 1.35rem;
}

.contact-note {
  font-size: 0.98rem;
}

.site-footer {
  padding: 2rem 0 3.5rem;
  background: rgba(9, 19, 40, 0.9);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.footer-copy {
  margin: 0;
  color: rgba(163, 170, 196, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.mobile-only {
  display: none;
}

@media (max-width: 1120px) {
  .skill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .contact-shell,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

  .portfolio-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container,
  .nav-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .nav-shell {
    padding: 0.95rem 1rem;
    border-radius: 1.4rem;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-panel {
    display: none;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(64, 72, 93, 0.2);
  }

  .site-header.is-open .nav-panel {
    display: grid;
    gap: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.95rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .hero-section {
    padding-top: 9.6rem;
  }

  .section {
    padding: 5.75rem 0;
  }

  .section[id] {
    scroll-margin-top: 8.4rem;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-summary {
    font-size: 1.18rem;
  }

  .hero-actions,
  .portfolio-main .button {
    width: 100%;
  }

  .hero-actions .button,
  .portfolio-main .button {
    width: 100%;
  }

  .profile-panel,
  .metric-grid,
  .spotlight-stats,
  .skill-grid,
  .studies-grid,
  .portfolio-cards,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .profile-frame {
    width: min(100%, 19rem);
  }

  .language-button span {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-tools {
    gap: 0.55rem;
  }

  .language-switch {
    padding: 0.2rem;
  }

  .language-button {
    padding: 0.5rem;
  }

  .button,
  .nav-cta {
    min-height: 3.35rem;
    padding-inline: 1.15rem;
  }

  .contact-value,
  .study-title,
  .visual-title {
    font-size: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
