:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0a0a0c;
  --panel: #121212;
  --panel-2: #1b1b1d;
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(245, 245, 247, 0.11);
  --line-strong: rgba(245, 245, 247, 0.2);
  --accent: #d6b980;
  --accent-soft: rgba(214, 185, 128, 0.13);
  --accent-glow: rgba(214, 185, 128, 0.06);
  --danger: #e8e4da;
  --max: 1600px;
  --motion-duration: 820ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214, 185, 128, 0.04), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(232, 228, 218, 0.03), transparent 50%),
    #050505;
  color: var(--text);
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC",
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

main {
  padding-top: 70px;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 14px max(16px, calc((100vw - var(--max)) / 2));
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(245, 245, 247, 0.06);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214, 185, 128, 0.46);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(214, 185, 128, 0.22), rgba(255, 255, 255, 0.03));
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 28px rgba(0, 0, 0, 0.3);
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand-group {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.nav-signature {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: rgba(245, 245, 247, 0.78);
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.nav-signature::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214, 185, 128, 0.7), transparent);
  content: "";
}

.nav-signature span {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.nav-signature strong {
  display: block;
  min-width: 17em;
  color: rgba(245, 245, 247, 0.82);
  font-weight: 500;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.nav-signature strong.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a,
.header-link {
  display: inline-flex;
  transform-origin: center;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nav a:hover,
.header-link:hover {
  color: var(--text);
  transform: scale(1.06);
}

.nav a.active {
  color: var(--accent);
  transform: scale(1.08);
}

.header-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--text);
  font-size: 14px;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse 60% 50% at 70% 60%, rgba(232, 228, 218, 0.04), transparent 65%);
  pointer-events: none;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 10vw, 156px);
  line-height: 0.9;
  background: linear-gradient(135deg, #f5f5f7 0%, #d6b980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-name {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
  align-items: flex-end;
}

.hero-name small {
  margin-bottom: 0.12em;
  color: var(--accent);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 42px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-text-fill-color: var(--accent);
}

.hero-statement {
  position: relative;
  max-width: min(820px, 100%);
  margin-top: 30px;
  border: 1px solid rgba(245, 245, 247, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(214, 185, 128, 0.12), rgba(12, 12, 12, 0.58) 44%, rgba(10, 10, 10, 0.36)),
    radial-gradient(circle at 8% 20%, rgba(214, 185, 128, 0.14), transparent 28rem);
  padding: clamp(22px, 3vw, 38px) clamp(26px, 3.4vw, 48px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-statement::before {
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.hero-role {
  margin: 0;
  color: var(--accent);
  font-size: clamp(22px, 1.85vw, 31px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-summary {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(245, 245, 247, 0.68);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.hero-tags,
.skill-list,
.related-works {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 28px;
}

.hero-tags span,
.skill-list span,
.related-works span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 10px 14px;
  color: var(--accent);
  font-size: 16px;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.hero-tags span:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: all 220ms ease;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(214, 185, 128, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  border-color: var(--accent);
  background: rgba(214, 185, 128, 0.12);
}

.hero-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--panel);
  overflow: hidden;
}

.hero-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-brief div {
  min-width: 0;
  background: rgba(13, 13, 12, 0.92);
  padding: 18px;
}

.hero-brief span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-brief strong {
  display: block;
  margin-top: 10px;
  color: var(--danger);
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.quick-grid div {
  min-width: 0;
  background: rgba(13, 13, 12, 0.92);
  padding: 18px;
}

.quick-grid span,
.profile-cards span,
.growth-path-card span,
.work-kicker,
.work-body > span,
.modal-meta dt,
.experience-date,
.profile-cards article span {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.quick-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-resume-link {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin: 18px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 700;
}

.hero-resume-link:hover {
  background: rgba(199, 167, 100, 0.25);
}

.set-banner {
  position: relative;
  width: min(100%, 1520px);
  height: clamp(660px, calc(100svh - 70px), 880px);
  min-height: 620px;
  margin: 0 auto;
  border: 0;
  border-radius: 0 0 12px 12px;
  background: #050505;
  overflow: hidden;
  contain: paint;
}

.cinematic-hero {
  isolation: isolate;
}

.set-banner::before,
.set-banner::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.set-banner::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.set-banner::after {
  box-shadow: inset 0 -180px 160px rgba(0, 0, 0, 0.72), inset 0 0 96px rgba(0, 0, 0, 0.62);
}

.set-banner-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--motion-duration) var(--motion-ease);
}

.set-banner-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.set-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
  animation: media-reveal var(--motion-duration) var(--motion-ease) both;
}

.set-banner-slide div {
  position: absolute;
  right: 40px;
  top: 34px;
  z-index: 3;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(243, 240, 232, 0.48);
  background: rgba(0, 0, 0, 0.26);
  padding: 12px 14px;
  text-align: right;
}

.set-banner-slide strong {
  font-size: 16px;
}

.set-banner-slide span {
  color: var(--muted);
  font-size: 12px;
}

.set-banner .hero {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-items: end;
  width: min(var(--max), calc(100% - 40px));
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.set-banner .hero-copy {
  max-width: 1120px;
}

.set-banner-overlay {
  position: static;
  z-index: 4;
  width: min(720px, 100%);
  margin-top: 34px;
  transform: none;
  text-align: left;
}

.set-banner-overlay h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.18;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.62);
}

.set-banner-overlay p:last-child {
  display: block;
  max-width: 560px;
  min-height: 0;
  margin: 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: rgba(245, 245, 247, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.banner-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.16);
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.banner-control:hover {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.44);
}

.banner-control.prev {
  left: 22px;
}

.banner-control.next {
  right: 22px;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.banner-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 240, 232, 0.45);
  padding: 0;
  cursor: pointer;
}

.banner-dots button.active {
  width: 34px;
  background: var(--text);
}

.highlights-section {
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 48%, transparent);
}

.highlights-heading {
  margin-bottom: 24px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding-bottom: 14px;
}

.metrics-strip::-webkit-scrollbar {
  display: none;
}

.metric-card {
  position: relative;
  min-height: clamp(360px, 34vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(245, 245, 247, 0.09);
  border-radius: 8px;
  background: #0d0d0e;
  scroll-snap-align: center;
}

.metric-card img,
.metric-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.metric-card img {
  object-fit: cover;
  filter: grayscale(0.15) saturate(0.82) contrast(1.06);
  transition: transform 1100ms var(--motion-ease), filter 1100ms var(--motion-ease);
}

.metric-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 24%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(214, 185, 128, 0.18), transparent 55%);
}

.metric-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(24px, 3vw, 38px);
}

.metric-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 0.95;
}

.metric-card-copy > span {
  display: block;
  max-width: 16em;
  margin-top: 14px;
  color: rgba(245, 245, 247, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.metric-card:hover img {
  transform: scale(1.025);
  filter: grayscale(0) saturate(0.95) contrast(1.07);
}

.featured-cinema {
  position: relative;
  padding: clamp(20px, 2.8vw, 38px) 0 clamp(32px, 4vw, 52px);
  background:
    linear-gradient(116deg, #030806 0%, #0a1510 44%, #040807 100%);
  overflow: hidden;
}

.featured-cinema-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 36px;
}

.featured-cinema-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.featured-cinema-copy h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
}

.featured-cinema-copy > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.featured-cinema-stage {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: clamp(500px, 45vw, 690px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 247, 0.08);
  border-radius: 8px;
  background:
    repeating-radial-gradient(ellipse at 18% 14%, rgba(190, 235, 205, 0.035) 0 1px, transparent 1px 4px),
    linear-gradient(136deg, rgba(43, 86, 61, 0.32), transparent 38%),
    linear-gradient(180deg, #0e2118 0%, #08120d 54%, #030706 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(211, 255, 226, 0.05);
}

.featured-cinema-stage::before {
  position: absolute;
  right: -12%;
  bottom: -24%;
  left: -12%;
  height: 42%;
  border-top: 1px solid rgba(159, 211, 174, 0.13);
  background:
    repeating-linear-gradient(90deg, rgba(159, 211, 174, 0.042) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, rgba(70, 132, 93, 0.12), transparent 72%);
  content: "";
  transform: perspective(560px) rotateX(58deg);
  transform-origin: bottom;
}

.featured-cinema-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 5, 3, 0.38), transparent 23%, transparent 77%, rgba(0, 5, 3, 0.38)),
    linear-gradient(180deg, rgba(3, 16, 9, 0.16), transparent 38%, rgba(0, 2, 1, 0.28));
  content: "";
  pointer-events: none;
}

.featured-cinema-kicker,
.featured-cinema-side-label {
  position: absolute;
  z-index: 2;
  color: rgba(245, 245, 247, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.featured-cinema-kicker {
  top: 26px;
  left: 30px;
}

.featured-cinema-side-label {
  right: -38px;
  bottom: 146px;
  color: rgba(164, 207, 177, 0.3);
  transform: rotate(-90deg);
  transform-origin: center;
}

.featured-cinema-monitor {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(66vw, 1000px);
  aspect-ratio: 20 / 13;
  opacity: 0;
  filter: brightness(0.72) saturate(0.8);
  transform: translate(-50%, calc(-50% + 16px)) scale(0.93);
  transition: opacity 520ms var(--motion-ease), transform 820ms var(--motion-ease), filter 820ms var(--motion-ease);
}

.featured-cinema.is-visible .featured-cinema-monitor {
  opacity: 1;
  filter: brightness(1) saturate(1);
  transform: translate(-50%, -50%) scale(1);
}

.featured-cinema-monitor-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: clamp(8px, 0.85vw, 14px) solid #101112;
  border-bottom-width: clamp(12px, 1vw, 18px);
  border-radius: clamp(12px, 1vw, 18px);
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(245, 245, 247, 0.13),
    0 0 0 rgba(92, 179, 118, 0),
    0 26px 52px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transition: box-shadow 820ms var(--motion-ease);
}

.featured-cinema.is-visible .featured-cinema-monitor-screen {
  box-shadow:
    0 0 0 1px rgba(215, 255, 226, 0.16),
    0 0 60px rgba(77, 164, 104, 0.17),
    0 26px 52px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.featured-cinema-monitor-screen::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 16%, transparent 70%, rgba(255, 255, 255, 0.025));
  content: "";
  pointer-events: none;
}

.featured-cinema-monitor-camera {
  position: absolute;
  top: clamp(5px, 0.55vw, 8px);
  left: 50%;
  z-index: 4;
  width: clamp(4px, 0.35vw, 6px);
  height: clamp(4px, 0.35vw, 6px);
  border-radius: 50%;
  background: rgba(214, 185, 128, 0.7);
  box-shadow: 0 0 8px rgba(214, 185, 128, 0.44);
  transform: translateX(-50%);
}

.featured-cinema-monitor-chin {
  position: absolute;
  top: calc(86.5% + clamp(2px, 0.2vw, 4px));
  left: 50%;
  width: 23%;
  height: clamp(12px, 1vw, 18px);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #272727, #0d0e0e);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.featured-cinema-monitor-neck {
  position: absolute;
  top: calc(86.5% + clamp(13px, 1.2vw, 18px));
  left: 50%;
  width: clamp(38px, 4.2vw, 66px);
  height: clamp(38px, 3.8vw, 58px);
  background: linear-gradient(90deg, #111, #393939 50%, #101010);
  clip-path: polygon(26% 0, 74% 0, 94% 100%, 6% 100%);
  transform: translateX(-50%);
}

.featured-cinema-monitor-base {
  position: absolute;
  top: calc(86.5% + clamp(49px, 4.8vw, 72px));
  left: 50%;
  width: clamp(180px, 24vw, 360px);
  height: clamp(12px, 1vw, 18px);
  border: 1px solid rgba(245, 245, 247, 0.12);
  border-radius: 50%;
  background: linear-gradient(180deg, #3a3a3a, #111);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.52);
  transform: translateX(-50%);
}

.featured-cinema-track,
.featured-cinema-slide,
.featured-cinema-slide video,
.featured-cinema-slide img,
.featured-cinema-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-cinema-track {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 460ms var(--motion-ease) 330ms, transform 700ms var(--motion-ease) 330ms;
}

.featured-cinema.is-visible .featured-cinema-track {
  opacity: 1;
  transform: scale(1);
}

.featured-cinema-slide {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms var(--motion-ease), transform 1400ms var(--motion-ease);
}

.featured-cinema-slide.active {
  opacity: 1;
  transform: scale(1);
}

.featured-cinema-slide video,
.featured-cinema-slide img {
  object-fit: cover;
}

.featured-cinema-slide.fit-contain video,
.featured-cinema-slide.fit-contain img {
  object-fit: contain;
}

.featured-cinema-vignette {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 30%, transparent 68%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.featured-cinema-meta {
  position: absolute;
  left: clamp(22px, 3vw, 46px);
  bottom: clamp(28px, 3vw, 46px);
  z-index: 4;
  display: grid;
  gap: 10px;
  max-width: min(680px, 66vw);
}

.featured-cinema-meta span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-cinema-meta strong {
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1.12;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.72);
}

.featured-cinema-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.featured-cinema-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.featured-cinema-dots button {
  width: 24px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  padding: 0;
  cursor: pointer;
}

.featured-cinema-dots button.active {
  background: var(--accent);
}

.media-load {
  opacity: 0;
  transition: opacity 650ms ease, transform 900ms var(--motion-ease), filter 900ms var(--motion-ease) !important;
}

.media-load.is-loaded {
  opacity: 1;
}

.media-load:not(.is-loaded) {
  background: linear-gradient(105deg, #111 28%, #191919 42%, #111 58%) 0 0 / 220% 100%;
  animation: media-shimmer 1.6s ease-in-out infinite;
}

@keyframes media-shimmer {
  to { background-position: -220% 0; }
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.method-section > * {
  min-width: 0;
  min-height: 0;
}

.method-copy {
  display: grid;
  align-content: start;
  border: 1px solid rgba(245, 245, 247, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(214, 185, 128, 0.1), transparent 1px) 0 0 / 54px 54px,
    radial-gradient(circle at 8% 16%, rgba(214, 185, 128, 0.12), transparent 28rem),
    linear-gradient(180deg, #141414, #0d0d0e);
  padding: clamp(28px, 3vw, 44px);
}

.method-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
}

.method-copy p:not(.eyebrow) {
  width: 100%;
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
}

.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.method-steps span {
  border: 1px solid rgba(214, 185, 128, 0.34);
  border-radius: 999px;
  background: rgba(214, 185, 128, 0.08);
  padding: 10px 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.method-visual,
.visual-panel figure,
.experience-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #090909;
}

.method-visual {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(245, 245, 247, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.method-visual::after,
.visual-panel figure::after,
.experience-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(214, 185, 128, 0.16), transparent 44%);
  pointer-events: none;
}

.method-visual img,
.visual-panel img,
.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) saturate(0.9) contrast(1.06);
}

.method-visual img,
.experience-visual img {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.method-visual figcaption,
.experience-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(245, 245, 247, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.55);
  padding: 8px 12px;
  color: rgba(245, 245, 247, 0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(16px);
}

.method-visual,
.visual-panel figure,
.experience-visual,
.metric-card {
  opacity: 0.5;
  transform: translateX(36px);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration) var(--motion-ease);
  will-change: opacity, transform;
}

.method-visual.is-visible,
.visual-panel figure.is-visible,
.experience-visual.is-visible,
.metric-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .method-visual,
  .visual-panel figure,
  .experience-visual,
  .metric-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .featured-cinema-monitor {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
    transition: none;
  }

  .featured-cinema-track {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.05;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading.title-reveal {
  --heading-eyebrow-shift: 10px;
  --heading-title-shift: 24px;
  --heading-reveal-blur: 6px;
}

.js .section-heading.title-reveal .eyebrow,
.js .section-heading.title-reveal h2 {
  opacity: 0;
  filter: blur(var(--heading-reveal-blur));
  will-change: opacity, transform, filter;
}

.js .section-heading.title-reveal .eyebrow {
  transform: translateY(var(--heading-eyebrow-shift));
  transition:
    opacity 560ms var(--motion-ease),
    transform 680ms var(--motion-ease),
    filter 680ms var(--motion-ease);
}

.js .section-heading.title-reveal h2 {
  transform: translateY(var(--heading-title-shift));
  transition:
    opacity 620ms var(--motion-ease) 90ms,
    transform 780ms var(--motion-ease) 90ms,
    filter 780ms var(--motion-ease) 90ms;
}

.js .section-heading.title-reveal.is-visible .eyebrow,
.js .section-heading.title-reveal.is-visible h2 {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .section-heading.title-reveal .eyebrow,
  .js .section-heading.title-reveal h2 {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 680px) {
  .section-heading.title-reveal {
    --heading-eyebrow-shift: 6px;
    --heading-title-shift: 14px;
    --heading-reveal-blur: 3px;
  }
}

code {
  color: var(--danger);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.keyword-grid span {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
  color: var(--danger);
  font-size: 18px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0 16px;
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

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

.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(245, 245, 247, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #101010);
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  background: var(--panel-2);
  border-color: rgba(214, 185, 128, 0.32);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.work-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

.work-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
}

.work-overlay-stats {
  position: absolute;
  left: 14px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.82);
  pointer-events: none;
  align-items: center;
}

.work-card-details {
  position: absolute;
  inset: auto 10px 10px;
  z-index: 4;
  display: grid;
  gap: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.work-card-details span {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  min-width: 0;
  background: rgba(5, 5, 5, 0.72);
  padding: 8px 10px;
  color: rgba(245, 245, 247, 0.86);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(18px);
}

.work-card-details b {
  color: var(--accent);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
}

.stat-like,
.stat-view {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.stat-like {
  color: #ff4d6a;
}

.stat-view {
  color: #fff;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03) brightness(0.94);
  transition: transform 320ms ease, filter 320ms ease;
}

.work-card:hover .work-image img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04) brightness(0.88);
}

.work-card:hover .work-card-details {
  opacity: 1;
  transform: translateY(0);
}

.work-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.work-body strong {
  font-size: 16px;
  line-height: 1.35;
}

.work-role {
  color: var(--danger) !important;
}

.work-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.work-stats span {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 12px;
  color: var(--text);
  font-size: 12px;
}

.growth-path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-radius: 8px;
  background: rgba(245, 245, 247, 0.08);
  overflow: hidden;
}

.growth-path-card,
.profile-cards article,
.skill-panel {
  border: 0;
  background: rgba(18, 18, 18, 0.82);
}

.growth-path-card {
  min-height: 260px;
  padding: 24px;
}

.growth-path-card h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.growth-path-card strong {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 17px;
  line-height: 1.45;
}

.growth-path-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.result-hero {
  display: grid;
  gap: 14px;
  margin: -18px 0 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 185, 128, 0.15), transparent 34rem),
    linear-gradient(135deg, #181818, #0f0f10);
  padding: clamp(28px, 5vw, 58px);
}

.visual-panel {
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
  margin: -18px 0 34px;
  background: transparent;
  padding: 0;
}

.visual-panel > div {
  display: grid;
  align-content: center;
  min-height: 320px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 185, 128, 0.15), transparent 34rem),
    linear-gradient(135deg, #181818, #0f0f10);
  padding: clamp(28px, 4vw, 52px);
}

.visual-panel p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.visual-panel figure {
  min-height: 320px;
  border-radius: 8px;
}

#growthPath .visual-panel > div {
  padding: clamp(26px, 2vw, 32px);
}

#growthPath .visual-panel > div > span {
  color: rgba(245, 245, 247, 0.74);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

#growthPath .visual-panel > div > strong {
  display: block;
  max-width: none;
  margin-top: 10px;
  color: var(--accent);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.12;
  white-space: nowrap;
}

#growthPath .visual-panel > div > p {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.85;
}

@media (min-width: 1025px) {
  #growthPath .visual-panel {
    grid-template-columns: minmax(0, 1.85fr) minmax(340px, 0.9fr);
  }

  #growthPath .visual-panel > div,
  #growthPath .visual-panel figure {
    height: clamp(290px, 18vw, 320px);
    min-height: 0;
  }
}

.traits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trait-card {
  position: relative;
  border: 1px solid rgba(245, 245, 247, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 185, 128, 0.08), transparent 8rem),
    linear-gradient(180deg, rgba(22, 22, 22, 0.82), rgba(14, 14, 15, 0.92));
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 200ms ease, transform 180ms ease;
}

.trait-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 185, 128, 0.34);
  border-radius: 50%;
  background: rgba(214, 185, 128, 0.08);
  margin-bottom: 18px;
}

.trait-card i::before {
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  content: "";
  transform: rotate(45deg);
}

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

.trait-card span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.trait-card h3 {
  margin: 14px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

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

.photo-showcase {
  overflow: hidden;
}

.photo-showcase-wrap {
  width: min(100vw, 100%);
  margin-top: 24px;
}

.photo-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(700px, 56vw);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 max(24px, calc((100vw - min(1180px, 92vw)) / 2)) 20px;
  margin-inline: calc(50% - 50vw);
}

.photo-showcase-track::-webkit-scrollbar {
  display: none;
}

.photo-showcase-card {
  display: grid;
  gap: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: center;
  opacity: 0.5;
  transform: translateX(36px) scale(0.76);
  transform-origin: center center;
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
  will-change: transform, opacity;
}

.photo-showcase-card.is-visible {
  transform: translateY(0) scale(0.76);
}

.photo-showcase-card.is-focus {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.photo-showcase-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 185, 128, 0.12), transparent 18rem),
    #0f0f0f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.photo-showcase-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.photo-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.82) contrast(1.04);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-showcase-card:hover .photo-showcase-image img {
  transform: scale(1.012);
  filter: saturate(0.95) contrast(1.06);
}

.photo-showcase-caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 96%;
  min-width: 0;
}

.photo-showcase-caption strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.photo-showcase-caption p {
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.showcase-controls button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.showcase-controls button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.result-hero span {
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 20px);
}

.result-hero strong {
  max-width: none;
  color: var(--accent);
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.12;
  text-wrap: balance;
}

.timeline {
  display: grid;
  gap: 24px;
}

.experience-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
}

.experience-card.featured {
  margin-bottom: 18px;
}

.experience-date {
  padding-top: 22px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.experience-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.experience-body.has-visual {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: stretch;
}

.experience-main {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #101010);
  padding: 28px;
}

.experience-card.featured .experience-main {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.experience-card.featured .company-intro {
  max-width: 42em;
  margin: 28px 0;
  color: rgba(245, 245, 247, 0.78);
  font-size: clamp(16px, 1.3vw, 19px);
}

.experience-proof {
  display: grid;
  gap: 9px;
  margin: 0 0 30px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(214, 185, 128, 0.12), transparent);
  padding: 18px 20px;
}

.experience-proof span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.experience-proof strong {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}

@keyframes media-reveal {
  from {
    opacity: 0.5;
    transform: translateX(36px) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.experience-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.experience-title h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.experience-title p {
  margin: 8px 0 0;
  color: var(--danger);
}

.experience-title span {
  flex-shrink: 0;
  max-width: 220px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.5;
}

.company-intro {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.8;
}

.experience-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.experience-columns h4 {
  margin: 0 0 10px;
  color: var(--accent);
}

.experience-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.78;
}

.experience-columns li + li {
  margin-top: 6px;
}

.related-works {
  margin-top: 18px;
}

.experience-visual {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
}

.experience-visual img {
  min-height: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 8px;
  background: rgba(245, 245, 247, 0.08);
  overflow: hidden;
}

.profile-cards article {
  min-height: 88px;
  padding: 18px 22px;
}

.profile-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.skill-panel {
  position: relative;
  border-radius: 8px;
  padding: 28px;
  overflow: hidden;
}

.skill-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: 32px;
}

.behind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.behind-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.behind-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.82) contrast(1.05) brightness(0.86);
}

.behind-grid figcaption {
  padding: 16px 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 22px;
}

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

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  width: min(1040px, 100%);
  height: min(760px, calc(100vh - 44px));
  max-height: calc(100vh - 44px);
  border: 1px solid var(--line-strong);
  background: #11110f;
  overflow: hidden;
}

@media (min-width: 981px) {
  .modal-panel.landscape-layout {
    grid-template-columns: minmax(0, 1.84fr) minmax(340px, 1fr);
    width: min(1360px, calc(100vw - 44px));
    height: min(680px, calc(100vh - 48px));
  }

  .modal-panel.landscape-layout .modal-media {
    padding: 18px 22px;
  }

  .modal-panel.landscape-layout .video-frame.landscape-frame,
  .modal-panel.landscape-layout .poster-only {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .modal-panel.landscape-layout .modal-content {
    padding: 30px 32px;
  }

  .modal-panel.landscape-layout .modal-content h2 {
    padding-right: 34px;
    font-size: clamp(25px, 2.15vw, 32px);
    line-height: 1.22;
  }

  .modal-panel.landscape-layout .modal-content > p:not(.eyebrow) {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .modal-panel.landscape-layout .modal-meta {
    margin: 20px 0;
  }

  .modal-panel.landscape-layout .modal-meta div {
    padding: 11px 13px;
  }

  .modal-panel.landscape-layout .modal-meta dd {
    margin-top: 5px;
  }

  .modal-panel.landscape-layout .modal-result {
    padding: 13px 15px;
    line-height: 1.6;
  }

  .modal-panel.landscape-layout .external-link {
    min-height: 38px;
    margin-top: 10px;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.7);
  color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover {
  transform: scale(1.06);
  border-color: rgba(214, 185, 128, 0.42);
  background: rgba(36, 34, 30, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.modal-close:active {
  transform: scale(0.94);
}

.modal-close:focus-visible {
  outline: 2px solid rgba(214, 185, 128, 0.78);
  outline-offset: 3px;
}

.modal-media {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 0;
  background: #050505;
  overflow: hidden;
  padding: 18px 18px 26px;
}

.modal-media.landscape-media {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 42%),
    linear-gradient(180deg, #151618 0%, #0d0e0f 52%, #17181a 100%);
}

.modal-media.landscape-media::before {
  content: "NICOLAS  /  VISUAL DIRECTOR  /  NICOLAS\A PORTFOLIO  /  NICOLAS  /  MOTION & STORY\A VISUAL DIRECTOR  /  NICOLAS  /  PORTFOLIO\A NICOLAS  /  MOTION & STORY  /  NICOLAS\A PORTFOLIO  /  NICOLAS  /  VISUAL DIRECTOR\A MOTION & STORY  /  NICOLAS  /  PORTFOLIO\A NICOLAS  /  VISUAL DIRECTOR  /  NICOLAS\A VISUAL STORYTELLING  /  NICOLAS  /  PORTFOLIO\A PORTFOLIO  /  MOTION & STORY  /  NICOLAS";
  position: absolute;
  left: 52%;
  top: 51%;
  z-index: 0;
  width: 185%;
  color: rgba(235, 235, 232, 0.04);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: pre;
  transform: translate(-50%, -50%) rotate(-28deg);
  pointer-events: none;
  user-select: none;
}

.modal-media > * {
  position: relative;
  z-index: 1;
}

.poster-only {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: 100%;
  background: #050505;
  overflow: hidden;
}

.video-frame.landscape-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 100%;
}

.video-frame.portrait-frame {
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-width: 100%;
}

.modal-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.video-poster-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: #050505;
  padding: 0;
  cursor: pointer;
}

.video-poster-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.78) brightness(0.86);
}

.video-poster-button span {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(214, 185, 128, 0.55);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.video-frame.is-playing .video-poster-button {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.video-error {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  border: 1px solid rgba(214, 185, 128, 0.5);
  background: rgba(5, 5, 5, 0.78);
  padding: 12px 14px;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.6;
}

.poster-only {
  position: relative;
  display: grid;
  place-items: center;
}

.external-poster {
  display: grid;
  place-items: center;
  color: inherit;
  cursor: pointer;
}

.poster-only img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(0.75) brightness(0.82);
}

.poster-only span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.68);
  padding: 10px 12px;
  color: var(--danger);
  font-size: 13px;
}

.external-poster:hover img {
  filter: saturate(0.8) brightness(0.92);
}

.external-poster:hover span {
  border-color: var(--accent);
  color: var(--text);
}

.modal-content {
  min-height: 0;
  overflow-y: auto;
  padding: 34px;
}

.modal-content h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.modal-content p {
  color: var(--muted);
  line-height: 1.8;
}

.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 24px 0;
  background: var(--line);
}

.modal-meta div {
  background: #11110f;
  padding: 14px;
}

.modal-meta div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.modal-meta dd {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.5;
}

.modal-result {
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  padding: 16px;
  color: var(--danger);
  line-height: 1.75;
}

.external-link {
  display: flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid var(--accent);
  background: rgba(199, 167, 100, 0.18);
  padding: 0 16px;
  color: var(--text);
  font-weight: 700;
}

.external-link:hover {
  background: rgba(199, 167, 100, 0.28);
}

@media (max-width: 1024px) {
  .section-shell {
    padding: 36px 0;
  }

  .method-section,
  .visual-panel {
    grid-template-columns: 1fr;
  }

  .method-visual,
  .visual-panel figure {
    min-height: 360px;
  }

  .nav-signature {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .photo-showcase-track {
    grid-auto-columns: minmax(480px, 78vw);
    gap: 24px;
  }

  .metrics-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(380px, 72vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-inline: 16px;
    margin-inline: -16px;
  }

  .set-banner {
    height: auto;
    min-height: calc(100svh - 70px);
  }

  .set-banner .hero {
    position: relative;
    min-height: calc(100svh - 70px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .nav-signature {
    display: none;
  }

  .nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .hero,
  .section-heading.split,
  .profile-layout,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .set-banner-slide div {
    right: 24px;
    top: 24px;
  }

  .result-hero strong {
    font-size: clamp(22px, 4vw, 30px);
  }

  .hero-statement {
    max-width: 100%;
  }

  .metrics-strip,
  .keyword-grid,
  .traits-grid,
  .growth-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(420px, 72vw);
  }

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

  .photo-showcase-image {
    border-radius: 16px;
  }

  .experience-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experience-date {
    padding-top: 0;
  }

  .experience-main {
    padding: 22px;
  }

  .experience-body.has-visual {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    min-height: 260px;
  }

  .profile-cards article {
    min-height: 84px;
    padding: 18px 20px;
  }

  .profile-cards strong {
    font-size: 20px;
  }

  .skill-panel {
    padding: 22px;
  }

  .skill-panel h3 {
    font-size: 26px;
  }
}

@media (max-width: 680px) {
  .section-shell {
    padding: 34px 0;
  }

  .site-header {
    padding: 12px;
  }

  .brand {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .nav {
    font-size: 13px;
    gap: 16px;
  }

  .header-link {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-statement {
    margin-top: 24px;
    padding: 22px;
  }

  .method-copy h2 {
    font-size: 42px;
  }

  .method-copy,
  .visual-panel > div {
    padding: 24px;
  }

  #growthPath .visual-panel > div {
    padding: 24px;
  }

  #growthPath .visual-panel > div > strong {
    font-size: 30px;
    line-height: 1.18;
    white-space: normal;
  }

  #growthPath .visual-panel > div > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .method-visual,
  .visual-panel figure,
  .experience-visual {
    min-height: 260px;
  }

  .visual-panel > div {
    min-height: auto;
  }

  .hero-role {
    font-size: 19px;
    line-height: 1.28;
    white-space: normal;
  }

  .hero-summary {
    font-size: 16px;
    margin-top: 16px;
  }

  .set-banner {
    width: calc(100% - 16px);
    min-height: calc(100svh - 62px);
    margin-top: 10px;
  }

  .featured-cinema {
    padding: 16px 0 30px;
  }

  .featured-cinema-stage {
    width: calc(100% - 32px);
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 7px;
  }

  .featured-cinema-stage::before,
  .featured-cinema-kicker,
  .featured-cinema-side-label,
  .featured-cinema-monitor-camera,
  .featured-cinema-monitor-chin,
  .featured-cinema-monitor-neck,
  .featured-cinema-monitor-base {
    display: none;
  }

  .featured-cinema-monitor {
    width: 100%;
    aspect-ratio: 16 / 9;
    filter: none;
    transform: translate(-50%, -50%) scale(0.985);
  }

  .featured-cinema.is-visible .featured-cinema-monitor {
    transform: translate(-50%, -50%) scale(1);
  }

  .featured-cinema-monitor-screen {
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .featured-cinema-track {
    transition-delay: 220ms;
  }

  .featured-cinema-meta {
    left: 18px;
    bottom: 28px;
    max-width: calc(100% - 88px);
  }

  .featured-cinema-meta strong {
    font-size: 20px;
  }

  .featured-cinema-toggle {
    right: 16px;
    bottom: 26px;
    width: 38px;
    height: 38px;
  }

  .set-banner .hero {
    width: calc(100% - 28px);
    min-height: calc(100svh - 62px);
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .set-banner-overlay {
    width: 100%;
    margin-top: 24px;
  }

  .set-banner-overlay h2 {
    font-size: 24px;
  }

  .set-banner-overlay p:last-child {
    min-height: auto;
    padding: 10px 16px;
    line-height: 1.5;
  }

  .result-hero strong {
    font-size: 22px;
    white-space: normal;
  }

  .set-banner-slide div {
    display: none;
  }

  .banner-control {
    top: auto;
    bottom: 18px;
    width: 36px;
    height: 36px;
    font-size: 26px;
    transform: none;
  }

  .banner-control.prev {
    left: 12px;
  }

  .banner-control.next {
    right: 12px;
  }

  .quick-grid,
  .hero-brief,
  .keyword-grid,
  .traits-grid,
  .work-grid,
  .growth-path-grid,
  .experience-columns,
  .profile-cards,
  .behind-grid,
  .modal-meta {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    grid-template-columns: none;
    grid-auto-columns: minmax(84vw, 1fr);
    gap: 14px;
    padding-inline: 16px;
  }

  .metric-card {
    min-height: min(112vw, 430px);
  }

  .metric-card strong {
    font-size: clamp(42px, 14vw, 60px);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-showcase-track {
    grid-auto-columns: minmax(86vw, 1fr);
    gap: 16px;
  }

  .photo-showcase-image {
    aspect-ratio: 16 / 9;
  }

  .photo-showcase-caption {
    gap: 10px;
    flex-wrap: wrap;
  }

  .photo-showcase-caption strong {
    font-size: 18px;
  }

  .photo-showcase-caption p {
    font-size: 14px;
    white-space: normal;
  }

  .experience-title {
    display: grid;
  }

  .experience-title span {
    max-width: none;
  }

  .modal {
    padding: 0;
  }

  .modal-content {
    padding: 24px;
  }

  .modal-panel {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
  }

  .modal.landscape-modal {
    place-items: start stretch;
    padding: 0;
  }

  .modal-panel.landscape-layout {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    border: 0;
  }

  .modal-panel.landscape-layout .modal-media {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 78px 0 54px;
  }

  .modal-panel.landscape-layout .video-frame.landscape-frame,
  .modal-panel.landscape-layout .poster-only {
    width: 100vw;
    height: auto;
    max-width: none;
    aspect-ratio: 16 / 9;
  }

  .modal-panel.landscape-layout .modal-content {
    padding: 30px 24px 56px;
  }

  .modal-panel.landscape-layout .modal-close {
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
  }

  .modal-media,
  .poster-only {
    min-height: 0;
    height: min(62vh, 520px);
  }

  .site-footer {
    display: grid;
  }

  .work-body {
    padding: 10px;
  }

  .work-body strong {
    font-size: 14px;
  }

  .work-card-details {
    display: none;
  }

  .profile-cards article {
    padding: 18px;
    min-height: 86px;
  }

  .profile-cards strong {
    font-size: 18px;
    margin-top: 8px;
  }

  .skill-panel {
    padding: 18px;
  }

  .skill-panel h3 {
    font-size: 22px;
  }

  .experience-main {
    padding: 18px;
  }

  .experience-title {
    display: grid;
    gap: 10px;
  }

  .experience-title h3 {
    font-size: 20px;
  }

  .growth-path-card {
    padding: 18px;
    min-height: auto;
  }

  .growth-path-card h3 {
    font-size: 20px;
  }

  .hero-tags span,
  .filter-bar button {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .profile-cards {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .profile-cards article {
    padding: 16px;
    min-height: 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-role {
    font-size: 19px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .set-banner {
    width: calc(100% - 16px);
  }

  .set-banner-overlay h2 {
    font-size: 21px;
  }

  .metrics-strip div {
    padding: 22px 18px;
  }

  .metrics-strip strong {
    font-size: 28px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-shell {
    padding: 28px 0;
  }

  .hero {
    gap: 28px;
  }

  .footer {
    padding: 20px 0 30px;
    gap: 10px;
  }
}
