:root {
  --ink: #0a1624;
  --ink-soft: #243244;
  --night: #07111e;
  --night-2: #0d1d2e;
  --paper: #f5f3ee;
  --white: #ffffff;
  --gold: #d6a964;
  --gold-light: #f0d39b;
  --line: rgba(10, 22, 36, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #65707d;
  --max-width: 1240px;
  --header-height: 82px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--night);
  background: var(--gold-light);
  border-radius: 6px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 18px;
}

.section-pad {
  padding: 120px max(5vw, calc((100vw - var(--max-width)) / 2));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 max(4vw, calc((100vw - 1400px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 30, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.brand-name {
  font-size: 0.96rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a,
.header-contact {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switch span {
  transition: color 160ms ease;
}

.language-switch span.active {
  color: var(--gold-light);
}

.header-contact {
  padding: 9px 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--night);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 88px);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  grid-template-rows: 1fr auto;
  gap: 58px 8vw;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 36%, rgba(214, 169, 100, 0.14), transparent 30%),
    linear-gradient(135deg, var(--night), #0a1b2c 62%, #0e2438);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  max-width: 580px;
  max-height: 580px;
  right: -12vw;
  top: 14vh;
  border: 1px solid rgba(214, 169, 100, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 24px;
  color: #9f7945;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero .eyebrow,
.light .eyebrow,
.contact-section .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-highlight {
  display: block;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 0.68em;
  line-height: 1.06;
}

.hero-intro {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg,
.contact-section svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: var(--night);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
}

.availability-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #74c69d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(116, 198, 157, 0.1);
}

.hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 420px);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: 86%;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.72) contrast(1.04);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 17, 30, 0.72));
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-weight: 700;
}

.portrait-caption small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 500;
}

.visual-index {
  position: absolute;
  z-index: 2;
  left: 2px;
  top: 10%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
}

.visual-line {
  position: absolute;
  width: 82%;
  height: 84%;
  left: 0;
  top: 10%;
  border: 1px solid rgba(214, 169, 100, 0.38);
  transform: translate(-3%, 5%);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero-stats article {
  min-height: 144px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 34px;
  border-right: 1px solid var(--line-dark);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.hero-stats strong span {
  font-size: 0.55em;
}

.hero-stats article > span {
  max-width: 175px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 76px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 70px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-label span:first-child {
  color: #9f7945;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.5);
}

.section-label.light span:first-child {
  color: var(--gold);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 10vw;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading.light {
  color: var(--white);
}

.profile-copy {
  padding-top: 42px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.profile-copy > p:first-child::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: #9f7945;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.72;
}

.quick-facts {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.quick-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-facts dd {
  margin: 0;
  font-weight: 650;
}

.experience-section {
  color: rgba(255, 255, 255, 0.76);
  background: var(--night);
}

.experience-section > .section-heading {
  margin-bottom: 82px;
}

.timeline {
  border-top: 1px solid var(--line-dark);
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1.6fr);
  gap: 7vw;
  padding: 54px 0 62px;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-date {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-number {
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.company {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.timeline-lead {
  max-width: 850px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.timeline-content ul {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-content li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.58);
}

.timeline-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.tool-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tool-tags span {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
}

.skills-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 64px;
}

.skills-summary {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.skill-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.skill-card:last-child {
  border-right: 0;
}

.skill-card:hover {
  color: var(--white);
  background: var(--night-2);
  transform: translateY(-8px);
}

.skill-index {
  color: #9f7945;
  font-size: 0.7rem;
  font-weight: 800;
}

.skill-card h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.skill-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.skills-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.skills-details h3 {
  margin: 0 0 22px;
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag-cloud {
  margin-top: 0;
}

.tag-cloud span {
  padding: 8px 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
}

.language-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.language-row span {
  color: var(--muted);
}

.language-row strong {
  font-size: 0.9rem;
}

.education-section {
  background: #ebe8e1;
}

.education-section > .section-heading {
  margin-bottom: 68px;
}

.education-list {
  border-top: 1px solid rgba(10, 22, 36, 0.2);
}

.education-item {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 50px;
  min-height: 155px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(10, 22, 36, 0.2);
}

.education-year,
.education-status {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.education-item h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.education-item p {
  margin: 0;
  color: var(--muted);
}

.education-status {
  padding: 6px 10px;
  color: #755a33;
  border: 1px solid rgba(117, 90, 51, 0.28);
  border-radius: 999px;
  white-space: nowrap;
}

.contact-section {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  padding: 120px 5vw;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(214, 169, 100, 0.18), transparent 44%),
    var(--night);
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-section p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.button-gold {
  color: var(--night);
  background: var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.contact-detail {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-monogram {
  position: absolute;
  left: 50%;
  top: 54%;
  color: transparent;
  font-family: var(--serif);
  font-size: min(43vw, 550px);
  line-height: 1;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  transform: translate(-52%, -50%);
  pointer-events: none;
}

.site-footer {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px max(5vw, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.5);
  background: var(--night);
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-light);
}

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

.reveal-delay {
  transition-delay: 120ms;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero {
    gap: 48px 5vw;
  }

  .hero-stats article {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    padding: 24px 22px;
  }

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

  .skill-card:nth-child(2) {
    border-right: 0;
  }

  .skill-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .section-pad {
    padding: 90px 6vw;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 5vw;
  }

  .desktop-nav,
  .header-contact,
  .brand-name {
    display: none;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: var(--white);
    background: none;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white);
    background: rgba(7, 17, 30, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu a {
    font-family: var(--serif);
    font-size: 2.2rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 74px) 6vw 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 62px;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero-visual {
    justify-self: center;
    width: min(88vw, 460px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px -6vw 0;
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .profile-grid,
  .skills-intro,
  .skills-details {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .profile-copy {
    padding-top: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-meta {
    flex-direction: row;
    align-items: center;
  }

  .timeline-number {
    font-size: 2.3rem;
  }

  .education-item {
    grid-template-columns: 130px 1fr;
    gap: 25px;
  }

  .education-status {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 76px 5vw;
  }

  .section-label {
    margin-bottom: 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero-intro {
    font-size: 1rem;
  }

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

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

  .hero-stats {
    margin-left: -5vw;
    margin-right: -5vw;
  }

  .hero-stats article {
    min-height: 130px;
    padding: 18px;
  }

  .hero-stats strong {
    font-size: 2.6rem;
  }

  .portrait-frame {
    width: 92%;
  }

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

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

  .skill-card:last-child {
    border-bottom: 0;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .education-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .education-status {
    grid-column: 1;
  }

  .contact-section {
    min-height: 560px;
    padding: 90px 5vw;
  }

  .contact-actions {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

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

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