:root {
  --page: #ffffff;
  --surface: #ffffff;
  --soft: #def0f9;
  --section-about: #f4f7fa;
  --section-experience: #ffffff;
  --section-beyond: #f4f7fa;
  --section-contact: #ffffff;
  --ink: #1b1f23;
  --muted: #66727c;
  --line: #dfe7ec;
  --blue: #4167b1;
  --teal: #9bc9dc;
  --navy: #1b1f23;
  --shadow: 0 22px 70px rgba(65, 103, 177, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --serif: "Noto Serif SC", "DM Serif Display", serif;
  --sans: "Noto Sans SC", "Inter", sans-serif;
}
[lang="en"] {
  --serif: "DM Serif Display", "Noto Serif SC", serif;
  --sans: "Inter", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
  line-height: 1.75;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.desktop-nav { display: flex; gap: 42px; font-size: 14px; color: #4d5660; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--blue); transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle {
  border: 0; border-radius: 999px; padding: 4px; background: var(--soft); cursor: pointer; display: flex;
}
.language-toggle span { padding: 5px 10px; border-radius: 999px; font: 600 12px/1 var(--sans); color: #778b9a; }
.language-toggle span.active { background: white; color: var(--blue); box-shadow: 0 3px 12px rgba(65,103,177,.16); }
.menu-toggle, .mobile-nav { display: none; }

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.section-label {
  display: flex; gap: 18px; align-items: center; margin-bottom: 48px; color: #718696; font-size: 13px; letter-spacing: .15em;
}
.section-label::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section-label.dark::after { background: rgba(255,255,255,.14); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.03em; line-height: 1.2; }
h2 { font-size: clamp(38px, 5vw, 66px); }
.eyebrow, .card-category, .modal-category { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.button {
  min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-weight: 600; transition: .25s ease;
}
.button.primary { color: white; background: var(--blue); }
.button.primary:hover { background: var(--ink); transform: translateY(-2px); }
.button.secondary { background: white; border-color: var(--line); }
.button.secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.hero {
  min-height: 100svh; padding: 150px 0 80px; background: #ffffff; display: grid; grid-template-columns: .95fr 1.05fr; gap: 7vw; align-items: center;
}
.hero-copy { position: relative; z-index: 4; }
.hero h1 { margin: 18px 0 24px; font-size: clamp(58px, 7vw, 94px); }
.hero h1 span { display: block; font-size: .55em; font-weight: 600; }
.hero h1 strong { display: block; }
.hero-position { max-width: 600px; margin-bottom: 16px; font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; line-height: 1.55; white-space: nowrap; }
[lang="en"] .hero-position { max-width: 590px; white-space: normal; }
.hero-intro { max-width: 600px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.cv-menu { position: relative; }
.cv-options {
  position: absolute; z-index: 10; top: calc(100% + 10px); left: 0; min-width: 210px; padding: 0;
  border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow);
  overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease;
}
.cv-menu.open .cv-options { opacity: 1; visibility: visible; transform: translateY(0); }
.cv-options a { min-height: 62px; padding: 0 18px; display: flex; align-items: center; gap: 12px; font-size: 15px; }
.cv-options a + a { border-top: 1px solid var(--line); }
.cv-options a:hover { background: var(--soft); }
.cv-option-icon { width: 24px; flex: 0 0 24px; font-size: 18px; line-height: 1; text-align: center; }
.cv-globe { font-size: 19px; }

.photo-stack {
  position: relative; width: 100%; aspect-ratio: .95; border: 0; background: none; cursor: pointer;
}
.photo-card {
  position: absolute; inset: 7% 12%; overflow: hidden; border: 8px solid rgba(255,255,255,.9); border-radius: 32px;
  background: white; box-shadow: var(--shadow); transition: transform .55s cubic-bezier(.2,.75,.25,1), opacity .4s ease;
}
.photo-card img { height: 100%; object-fit: cover; }
.photo-main { z-index: 4; transform: rotate(2deg); }
.photo-main img { object-position: 50% 24%; }
.photo-team { z-index: 1; transform: rotate(-6deg); }
.photo-hosting { z-index: 2; transform: rotate(7deg); }
.photo-hosting img { object-position: 51% 58%; }
.photo-life { z-index: 3; transform: rotate(-2deg); }
.photo-life img { object-position: 59% 58%; }
.photo-hint {
  position: absolute; z-index: 8; right: 7%; bottom: 4%; padding: 8px 13px; border-radius: 999px;
  color: var(--ink); background: rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(65,103,177,.16); font-size: 12px;
}
.photo-stack.expanded .photo-main { transform: translate(-8%, 3%) rotate(1deg) scale(.76); }
.photo-stack.expanded .photo-team { transform: translate(-34%, -13%) rotate(-8deg) scale(.7); }
.photo-stack.expanded .photo-hosting { transform: translate(42%, -18%) rotate(8deg) scale(.67); }
.photo-stack.expanded .photo-life { transform: translate(45%, 28%) rotate(5deg) scale(.61); }

.about, .experience, .contact { padding: 110px 0; }
.about {
  padding-top: 110px; padding-bottom: 110px; background: var(--section-about);
  box-shadow: 0 0 0 100vmax var(--section-about); clip-path: inset(0 -100vmax);
}
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 7vw; }
.about-copy h2 { font-size: clamp(38px, 4.4vw, 61px); }
.about-text { max-width: 570px; margin-top: 34px; color: var(--muted); }
.about-text p + p { margin-top: 17px; }
.dual-timeline {
  position: relative; min-height: 510px; display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  grid-template-rows: 62px repeat(4, 1fr); column-gap: 18px; row-gap: 8px;
}
.timeline-head { align-self: start; }
.timeline-head small { color: var(--blue); font: 700 10px/1.2 "Inter", sans-serif; letter-spacing: .14em; }
.timeline-head h3 { margin: 4px 0 0; font-size: 18px; }
.timeline-head-education { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-head-internship { grid-column: 3; grid-row: 1; }
.timeline-axis {
  position: relative; z-index: 1; grid-column: 2; grid-row: 1 / -1; justify-self: center; width: 2px;
  margin: 12px 0; border-radius: 999px; background: #cbddea;
}
.timeline-card {
  position: relative; z-index: 2; align-self: center; min-height: 96px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 32px rgba(65,103,177,.08);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.timeline-card::before {
  content: ""; position: absolute; top: 50%; width: 20px; height: 1px; background: #c6d7e5;
}
.timeline-card::after {
  content: ""; position: absolute; top: calc(50% - 5px); width: 10px; height: 10px;
  border: 3px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px #cbddea;
}
.timeline-left { grid-column: 1; text-align: right; }
.timeline-left::before { right: -20px; }
.timeline-left::after { right: -47px; }
.timeline-right { grid-column: 3; }
.timeline-right::before { left: -20px; }
.timeline-right::after { left: -47px; }
.timeline-row-1 { grid-row: 2; }
.timeline-row-2 { grid-row: 3; }
.timeline-row-3 { grid-row: 4; }
.timeline-row-4 { grid-row: 5; }
.timeline-card-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.timeline-left .timeline-card-copy { align-items: flex-end; }
.timeline-logo {
  width: 52px; height: 52px; flex: 0 0 52px; padding: 5px; overflow: hidden;
  border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 7px 18px rgba(65,103,177,.1);
  display: grid; place-items: center;
}
.timeline-logo img { width: 100%; height: 100%; object-fit: contain; }
.timeline-logo-seal img { width: 42px; height: 42px; }
.timeline-logo-word { padding: 7px 4px; }
.timeline-logo-word img { width: 100%; height: auto; max-height: 38px; }
.timeline-card time { margin-bottom: 5px; color: var(--blue); font: 600 11px/1.5 "Inter", sans-serif; }
.timeline-card strong { font-size: 16px; line-height: 1.5; }
.timeline-card span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.tag-list span { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; color: #536579; font-size: 13px; }
.tag-list span:nth-child(-n+3) { color: white; border-color: var(--blue); background: var(--blue); }

.section-heading { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 560px; margin-bottom: 6px; color: var(--muted); }
.experience {
  background: var(--section-experience);
  box-shadow: 0 0 0 100vmax var(--section-experience); clip-path: inset(0 -100vmax);
}
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.experience-card {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 16px 50px rgba(65,103,177,.07);
}
.experience-card-top { min-height: 92px; margin-bottom: 28px; display: flex; align-items: center; gap: 18px; }
.app-visual {
  width: 88px; height: 88px; flex: 0 0 88px; overflow: hidden; border: 1px solid #cddde8; border-radius: 20px;
  display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, #fff 0, var(--soft) 72%, #cbddea 100%);
  box-shadow: 0 12px 28px rgba(65,103,177,.13);
}
.app-transsion { background: radial-gradient(circle at 30% 20%, #fff 0, var(--soft) 58%, #cbddea 100%); }
.app-visual img { width: 100%; height: 100%; border-radius: 19px; object-fit: cover; box-shadow: none; }
.card-meta { min-width: 0; }
.card-index { color: #9aadc0; font: 500 11px/1 "Inter", sans-serif; letter-spacing: .15em; }
.card-category { margin: 9px 0 0; line-height: 1.5; }
.experience-card h3 { margin: 7px 0 8px; font-family: var(--serif); font-size: 25px; }
.experience-card > p:not(.card-category) { color: var(--muted); }
.experience-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.experience-tags span {
  padding: 5px 10px; border: 1px solid #cadce8; border-radius: 999px; color: #536579; background: #f8fbfd; font-size: 11px;
}
.experience-metrics {
  margin-top: 20px; padding: 17px 15px; border-radius: 16px; background: var(--soft);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.experience-metrics div + div { border-left: 1px solid #bfd4e3; padding-left: 12px; }
.experience-metrics strong { display: block; color: var(--ink); font: 700 18px/1.35 "Inter", var(--sans); }
.experience-metrics span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.card-footer { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-footer time { color: var(--muted); font: 500 12px/1 "Inter", sans-serif; }
.case-open { border: 0; background: none; color: var(--blue); cursor: pointer; font-weight: 600; }

.beyond { padding: 110px 0; color: var(--ink); background: var(--section-beyond); }
.beyond .section-label { color: #718696; }
.beyond .section-label.dark::after { background: var(--line); }
.beyond-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.beyond-heading h2 { max-width: 720px; margin-bottom: 0; }
.beyond-heading p { max-width: 420px; margin-bottom: 8px; color: var(--muted); }
.photo-wall { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; gap: 12px; }
.wall-card { position: relative; grid-column: span 2; overflow: hidden; border-radius: 20px; background: #2c3540; cursor: pointer; }
.wall-card:nth-child(4), .wall-card:nth-child(5) { grid-column: span 3; }
.wall-card img { height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.wall-card > div {
  position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(transparent 35%, rgba(27,31,35,.94)); transform: translateY(42px); transition: transform .35s ease;
}
.wall-card h3 { margin: 0; color: white; font-family: var(--serif); font-size: 23px; }
.wall-card p { margin: 8px 0 0; color: #d9e4eb; font-size: 13px; line-height: 1.7; opacity: 0; transition: opacity .3s ease; }
.wall-card:hover img, .wall-card.active img { transform: scale(1.04); filter: brightness(.75); }
.wall-card:hover > div, .wall-card.active > div { transform: translateY(0); }
.wall-card:hover p, .wall-card.active p { opacity: 1; }
.wall-hosting img { object-position: center 65%; }
.wall-modeling img {
  object-position: center 36%;
  transform-origin: center 36%;
}
.wall-travel img { object-position: center 58%; }
.wall-volunteer img { object-position: center 20%; }
.wall-friends img {
  object-position: center 18%;
  transform-origin: center 18%;
}

.contact {
  padding-top: 110px; padding-bottom: 42px;
  background: var(--section-contact);
  box-shadow: 0 0 0 100vmax var(--section-contact); clip-path: inset(0 -100vmax);
}
.contact .section-label { margin-bottom: 16px; }
.contact h2 { margin-bottom: 24px; font-size: clamp(34px, 4.2vw, 54px); white-space: nowrap; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5vw; }
.contact-copy > p { max-width: 470px; color: var(--muted); }
.contact-copy .contact-welcome {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}
.contact-copy .contact-intro { margin: 0; }
.contact-links { margin-top: 12px; }
.email-link {
  position: relative; display: inline-flex; align-items: center; gap: 11px; min-height: 48px;
  padding: 4px 0; color: var(--muted);
}
.email-icon {
  width: 44px; height: 44px; padding: 7px; border: 1px solid var(--line); border-radius: 13px;
  background: white; box-shadow: 0 12px 32px rgba(65,103,177,.12); display: grid; place-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.email-icon img { width: 100%; height: 100%; object-fit: contain; }
.email-label { font-size: 15px; transition: color .25s ease; }
.email-address {
  padding: 7px 13px; border-radius: 999px; background: var(--ink); color: white;
  font: 600 12px/1.5 "Inter", var(--sans); opacity: 0; visibility: hidden; transform: translateX(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.email-link:hover .email-icon, .email-link:focus-visible .email-icon { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(65,103,177,.18); }
.email-link:hover .email-label, .email-link:focus-visible .email-label { color: var(--ink); }
.email-link:hover .email-address, .email-link:focus-visible .email-address { opacity: 1; visibility: visible; transform: translateX(0); }
.contact-form { padding: 2px 0 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 4px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 14px; outline: none; color: var(--ink); background: white;
  font-size: 15px; transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form input { min-height: 44px; }
.contact-form textarea { min-height: 72px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a0aab2; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(65,103,177,.13); }
.contact-form .button { width: 100%; min-height: 42px; font-size: 14px; }
.form-status { min-height: 16px; margin: 5px 0 0; color: var(--blue); font-size: 12px; text-align: center; }
footer { margin-top: 22px; padding-top: 12px; border-top: 1px solid rgba(27,31,35,.13); color: var(--muted); font-size: 12px; text-align: center; }

.case-modal {
  width: min(680px, calc(100% - 28px)); max-height: calc(100svh - 40px); padding: 42px; border: 0; border-radius: 28px;
  color: var(--ink); background: white; box-shadow: 0 30px 100px rgba(27,31,35,.3); overflow-y: auto;
}
.case-modal::backdrop { background: rgba(27,31,35,.62); backdrop-filter: blur(8px); }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 0; border-radius: 50%;
  color: var(--muted); background: var(--soft); cursor: pointer; font-size: 22px;
}
.modal-title { margin: 10px 0 4px; font-size: 34px; }
.modal-subtitle { color: var(--muted); }
.metric-grid { margin: 30px 0; padding: 24px; border-radius: 18px; background: var(--soft); display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.metric-grid strong { display: block; font: 700 23px/1.2 "Inter", sans-serif; }
.metric-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.modal-list { padding-left: 20px; color: var(--muted); }
.modal-list li { margin: 10px 0; padding-left: 6px; }
.modal-list li::marker { color: var(--blue); }
.modal-insight { margin: 28px 0 0; padding: 4px 0 4px 18px; border-left: 2px solid var(--blue); font-family: var(--serif); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { width: 34px; height: 34px; border: 0; background: transparent; display: grid; place-content: center; gap: 6px; }
  .menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: .25s ease; }
  .mobile-nav {
    position: absolute; top: 72px; right: 16px; width: 210px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow);
    display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { padding: 10px 12px; border-radius: 10px; }
  .mobile-nav a:hover { background: var(--soft); }
  .hero { min-height: auto; padding-top: 135px; grid-template-columns: 1fr; }
  .photo-stack { max-width: 640px; margin: 0 auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact h2 { white-space: normal; }
  .dual-timeline { margin-top: 40px; }
  .section-heading, .beyond-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .photo-wall { grid-template-columns: 1fr 1fr; grid-auto-rows: 270px; }
  .wall-card, .wall-card:nth-child(4), .wall-card:nth-child(5) { grid-column: span 1; }
  .wall-friends { grid-column: span 2 !important; }
}

@media (max-width: 620px) {
  .site-header { top: 0; width: 100%; height: 60px; padding: 0 14px; }
  .mobile-nav { top: 60px; right: 10px; }
  .brand { font-size: 18px; }
  .language-toggle span { padding: 5px 8px; }
  .section-shell { width: min(100% - 24px, 1180px); }
  .section-label { margin-bottom: 32px; }
  .hero { padding-top: 105px; gap: 38px; }
  .hero h1 { font-size: 58px; }
  .hero-position { font-size: 18px; }
  .hero-position { white-space: normal; }
  .hero-actions { flex-wrap: wrap; }
  .photo-stack { aspect-ratio: .9; }
  .photo-card { inset: 5% 8%; border-width: 5px; border-radius: 22px; }
  .photo-stack.expanded .photo-main { transform: translate(-7%, 6%) rotate(1deg) scale(.72); }
  .photo-stack.expanded .photo-team { transform: translate(-24%, -20%) rotate(-8deg) scale(.58); }
  .photo-stack.expanded .photo-hosting { transform: translate(27%, -20%) rotate(8deg) scale(.58); }
  .photo-stack.expanded .photo-life { transform: translate(28%, 31%) rotate(5deg) scale(.54); }
  .about, .experience { padding-top: 80px; padding-bottom: 80px; }
  .contact { padding-top: 80px; padding-bottom: 38px; }
  .about { padding-inline: 0; }
  .about-copy h2 { font-size: 36px; }
  .dual-timeline {
    min-height: auto; grid-template-columns: 20px 1fr; grid-template-rows: auto;
    gap: 16px 12px;
  }
  .timeline-head { display: none; }
  .timeline-axis {
    display: block; grid-column: 1; grid-row: 1 / 5; width: 2px; height: auto; margin: 0; justify-self: center;
  }
  .timeline-card, .timeline-left, .timeline-right {
    grid-column: 2; min-height: 96px; text-align: left; justify-content: flex-start;
  }
  .timeline-left .timeline-card-copy, .timeline-right .timeline-card-copy { align-items: flex-start; }
  .timeline-right .timeline-logo { order: -1; }
  .timeline-row-1 { grid-row: 1; }
  .timeline-row-2 { grid-row: 2; }
  .timeline-row-3 { grid-row: 3; }
  .timeline-row-4 { grid-row: 4; }
  .timeline-card::before, .timeline-left::before, .timeline-right::before { left: -12px; right: auto; width: 12px; }
  .timeline-card::after, .timeline-left::after, .timeline-right::after { left: -38px; right: auto; }
  .experience-grid, .field-row { grid-template-columns: 1fr; }
  .experience-card { padding: 20px; }
  .experience-card-top { min-height: 72px; margin-bottom: 22px; gap: 14px; }
  .app-visual { width: 68px; height: 68px; flex-basis: 68px; border-radius: 16px; }
  .app-visual img { border-radius: 15px; }
  .experience-metrics { gap: 6px; padding: 13px 10px; }
  .experience-metrics div + div { padding-left: 7px; }
  .experience-metrics strong { font-size: 15px; }
  .card-footer { align-items: flex-start; flex-direction: column; }
  .beyond { padding: 80px 0; }
  .photo-wall { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .wall-card, .wall-card:nth-child(4), .wall-card:nth-child(5), .wall-friends { grid-column: span 1 !important; }
  .wall-card > div { transform: translateY(42px); }
  .contact h2 { margin-bottom: 22px; }
  .email-link { flex-wrap: wrap; }
  .email-address { opacity: 1; visibility: visible; transform: none; }
  .contact-form { padding: 8px 0 0; }
  .case-modal { padding: 34px 20px 24px; border-radius: 22px; }
  .modal-title { font-size: 28px; }
  .metric-grid { grid-template-columns: 1fr; }
  footer { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
