:root {
  --bg-primary: #080808;
  --bg-card: #161616;
  --border: #2a2a2a;
  --accent-warm: #E8640A;
  --text-primary: #F0EDE8;
  --text-secondary: #8A8680;
  --text-muted: #4A4744;
  --container: min(1200px, calc(100% - 48px));
  --ticker-height: 58px;
  --radius: 8px;
  --serif: "Playfair Display", serif;
  --display: "Syne", sans-serif;
  --body: "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

html.is-loading {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 78% 8%, rgba(232, 100, 10, 0.12), transparent 26rem),
    linear-gradient(180deg, #0b0b0b 0%, var(--bg-primary) 45%, #0d0b0a 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body:not(.is-ready) .site-header,
body:not(.is-ready) main,
body:not(.is-ready) .site-footer,
body:not(.is-ready) .scroll-progress,
body:not(.is-ready) .custom-cursor {
  opacity: 0;
}

body.is-ready .site-header,
body.is-ready main,
body.is-ready .site-footer,
body.is-ready .scroll-progress {
  opacity: 1;
  transition: opacity 0.36s ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  background-size: 72px 72px, 72px 72px, 220px 220px;
  mix-blend-mode: screen;
}

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

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

button {
  font: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060606;
  color: var(--text-primary);
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderMarkIn 0.7s ease 0.12s forwards;
}

.preloader-mark img {
  width: 187px;
  height: 187px;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.3);
  animation: preloaderLogoIn 1.7s cubic-bezier(0.55, 0, 1, 0.45) 0.08s forwards, preloaderPulse 1s ease 1.7s 1;
}

.preloader.is-hidden {
  transform: translateY(-100vh);
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 50%;
  right: 6px;
  z-index: 30;
  width: 2px;
  height: 160px;
  background: rgba(240, 237, 232, 0.12);
  transform: translateY(-50%);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--accent-warm);
  box-shadow: 0 0 20px rgba(232, 100, 10, 0.75);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 10px 0;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1200px, calc(100% - 28px));
  padding: 7px 12px;
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 108px;
}

.brand img {
  width: 104px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text-primary);
}

.nav-download,
.btn {
  border: 1px solid var(--accent-warm);
  border-radius: 999px;
  color: var(--text-primary);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-download {
  padding: 7px 13px;
}

.nav-download:hover,
.btn-primary {
  background: var(--accent-warm);
  box-shadow: 0 0 34px rgba(232, 100, 10, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.74);
  color: var(--text-primary);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.8fr);
  gap: 56px;
  align-items: center;
  height: calc(100vh - var(--ticker-height));
  min-height: 640px;
  padding-top: 78px;
  padding-bottom: 24px;
}

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

.hero h1,
.hero-role,
.hero-intro {
  overflow-wrap: anywhere;
}

.hero-glow,
.contact-glow {
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 28vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 92, 0.34) 0%, rgba(232, 100, 10, 0.22) 28%, rgba(232, 100, 10, 0.06) 58%, transparent 74%);
  filter: blur(28px);
  transform: rotate(-18deg);
}

.hero-glow {
  right: -20vw;
  top: 18vh;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-warm);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  line-height: 0.96;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 7.4vw, 104px);
  white-space: nowrap;
}

.hero h1 span {
  display: inline-block;
  color: rgba(240, 237, 232, 0.7);
  font-size: 0.58em;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero-eyebrow {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero-role {
  max-width: 680px;
  margin: 18px 0 16px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.18;
}

.hero-intro {
  max-width: 720px;
  color: var(--text-secondary);
}

.hero-intro p {
  margin: 0 0 10px;
}

.hero-intro p:last-child {
  margin-bottom: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin-top: 20px;
  perspective: 600px;
}

.hero-metrics article {
  min-height: 90px;
  padding: 15px;
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: var(--radius);
  background: rgba(22, 22, 22, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.hero-metrics article:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(3deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: var(--accent-warm);
}

.hero-media {
  justify-self: end;
}

.portrait-frame {
  position: relative;
  width: min(360px, 86vw);
  overflow: hidden;
  border: 1px solid rgba(240, 237, 232, 0.14);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 0 80px rgba(232, 100, 10, 0.16);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 8, 0.9) 100%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.portrait-frame span {
  position: absolute;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(232, 100, 10, 0.5);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.68);
  color: var(--text-primary);
  font-family: var(--display);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.portrait-frame span:nth-of-type(1) { top: 8%; left: 7%; }
.portrait-frame span:nth-of-type(2) { top: 22%; right: 7%; }
.portrait-frame span:nth-of-type(3) { bottom: 18%; left: 8%; }
.portrait-frame span:nth-of-type(4) { right: 8%; bottom: 8%; }

.hero-meta {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: right;
}

.ticker {
  overflow: hidden;
  height: var(--ticker-height);
  border-block: 1px solid rgba(240, 237, 232, 0.08);
  background: rgba(17, 17, 17, 0.52);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: tickerMove 42s linear infinite;
}

.ticker-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 31px;
  color: var(--text-secondary);
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span + span::before {
  position: absolute;
  left: -3px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: rgba(232, 100, 10, 0.82);
  box-shadow: 0 0 12px rgba(232, 100, 10, 0.36);
  transform: translateY(-50%);
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.2;
}

.section-heading > p:last-child {
  max-width: 800px;
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.keep-line {
  white-space: nowrap;
}

.stats-grid,
.capability-grid,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.timeline-card,
.capability-grid article,
.profile-grid article {
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.9), rgba(13, 13, 13, 0.92));
}

.stat-card {
  min-height: 174px;
  padding: 22px;
}

.stat-card strong {
  display: inline-block;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stat-card span {
  margin-left: 5px;
  color: var(--accent-warm);
  font-family: var(--display);
  font-weight: 700;
}

.stat-card p {
  margin: 20px 0 0;
  color: var(--text-secondary);
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 34px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--accent-warm), rgba(240, 237, 232, 0.08));
}

.timeline-card {
  position: relative;
  padding: 28px;
}

.timeline-card::before {
  position: absolute;
  top: 34px;
  left: -34px;
  width: 13px;
  height: 13px;
  border: 3px solid #120b07;
  border-radius: 50%;
  content: "";
  background: var(--accent-warm);
  box-shadow: 0 0 24px rgba(232, 100, 10, 0.65);
}

.timeline-card time {
  color: var(--accent-warm);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 10px 0 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.1);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.timeline-card h4 {
  margin: 18px 0 8px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: 16px;
}

.timeline-card p,
.timeline-card li,
.exhibition-copy p,
.capability-grid p,
.profile-grid p {
  color: var(--text-secondary);
}

.timeline-card blockquote {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 2px solid var(--accent-warm);
  background: rgba(232, 100, 10, 0.08);
  color: var(--text-primary);
}

.timeline-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  position: relative;
  padding-left: 20px;
}

.timeline-card li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent-warm);
}

.exhibition-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
  margin-bottom: 28px;
}

.exhibition-copy p {
  margin: 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 80px;
}

.logo-grid a {
  position: relative;
  display: grid;
  grid-template-rows: minmax(89px, 1fr) auto;
  place-items: center;
  min-height: 185px;
  padding: 24px 22px 19px;
  border: 1px solid rgba(240, 237, 232, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% -20%, rgba(232, 100, 10, 0.16), transparent 64%),
    linear-gradient(180deg, rgba(30, 30, 30, 0.96), rgba(13, 13, 13, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, filter 0.26s ease;
}

.logo-grid a:hover {
  border-color: rgba(232, 100, 10, 0.62);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 0 34px rgba(232, 100, 10, 0.14);
  filter: brightness(1.08);
  transform: translateY(-7px) scale(1.025);
}

.logo-grid img {
  width: 100%;
  max-width: 252px;
  max-height: 120px;
  padding: 12px 17px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fffef0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  filter: none;
  transition: transform 0.26s ease;
}

.logo-grid a:hover img {
  transform: scale(1.05);
}

.logo-grid a span {
  align-self: end;
  margin-top: 16px;
  color: rgba(240, 237, 232, 0.86);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition: color 0.26s ease;
}

.logo-grid a:hover span {
  color: #ffffff;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.gallery-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 44px);
}

.gallery-head p {
  max-width: 520px;
  margin: 0;
  color: var(--text-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-height: 660px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 320px;
  padding: 0;
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease;
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(232, 100, 10, 0.18);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item::after,
.gallery-item > span {
  display: none;
}

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

.capability-grid article,
.profile-grid article {
  padding: 24px;
}

.capability-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-warm);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-grid h4,
.profile-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.capability-grid div,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.capability-grid span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(232, 100, 10, 0.48);
  border-radius: 999px;
  background: rgba(232, 100, 10, 0.06);
  color: var(--text-primary);
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.capability-grid span:hover,
.tag-list span:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
}

.contact {
  overflow: visible;
  padding-top: 34px;
  padding-bottom: 24px;
  border-block: 1px solid rgba(240, 237, 232, 0.06);
  background:
    radial-gradient(circle at 50% 8%, rgba(232, 100, 10, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(14, 14, 14, 0.98));
  text-align: center;
}

.contact-glow {
  left: 50%;
  bottom: 8%;
  width: 56vw;
  height: 20vw;
  opacity: 0.7;
  transform: translateX(-50%) rotate(0deg);
}

.contact .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
  margin-inline: auto;
  text-align: center;
}

.contact .eyebrow {
  margin-bottom: 8px;
}

.contact .section-heading h2 {
  font-size: clamp(63px, 6.5vw, 66px);
  line-height: 1.24;
}

.contact-title-mobile {
  display: none;
}

.contact .section-heading > p:last-child {
  margin: 12px auto 0;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.mail-link {
  display: inline-block;
  margin: 0 0 12px;
  padding: 3px 0 7px;
  color: #f0f0f0;
  font-family: var(--display);
  font-size: clamp(28px, 3.1vw, 36px);
  font-weight: 700;
  word-break: break-word;
  line-height: 1.36;
  overflow: visible;
}

.mail-link:hover {
  color: var(--accent-warm);
}

.profile-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 16px;
  text-align: left;
}

.profile-grid a {
  color: var(--text-primary);
}

.profile-card {
  display: grid;
  gap: 13px;
  padding: 16px 22px !important;
  border: 1px solid rgba(240, 237, 232, 0.09) !important;
  background: rgba(26, 26, 26, 0.88) !important;
  color: #f0f0f0;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, transform 0.24s ease;
}

.profile-card:hover {
  border-color: rgba(232, 100, 10, 0.34) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.44), 0 0 32px rgba(232, 100, 10, 0.08);
  filter: brightness(1.06);
  transform: translateY(-3px);
}

.profile-card a {
  color: #f0f0f0;
}

.profile-card section + section {
  padding-top: 13px;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.profile-grid .profile-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.49;
}

.profile-grid .profile-card p {
  margin: 0 0 4px;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
}

.school-name {
  color: #ffffff !important;
  font-weight: 700;
}

.profile-card .tag-list {
  gap: 7px;
  margin-top: 9px;
}

.profile-card .tag-list span {
  min-height: 24px;
  padding-inline: 8px;
  border-color: rgba(232, 100, 10, 0.42);
  background: rgba(232, 100, 10, 0.08);
  color: #eeeeee;
  font-size: 11.5px;
  line-height: 1.25;
}

.profile-card .tag-list span:hover {
  background: rgba(232, 100, 10, 0.88);
  color: #ffffff;
}

.profile-right {
  align-content: space-between;
  gap: 13px;
}

.contact-list dl {
  margin: 5px 0 0;
}

.contact-list div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  line-height: 1.65;
}

.contact-list div::before {
  position: absolute;
  top: 50%;
  left: 72px;
  right: 0;
  height: 1px;
  content: "";
  background: rgba(240, 237, 232, 0.08);
}

.contact-list div:last-child {
  border-bottom: 0;
}

.contact-list dt,
.contact-list dd {
  margin: 0;
}

.contact-list dt {
  flex: 0 0 auto;
  color: #cccccc;
}

.contact-list dd {
  position: relative;
  z-index: 1;
  max-width: 76%;
  padding-left: 16px;
  background: #1a1a1a;
  color: #f0f0f0;
  line-height: 1.71;
  text-align: right;
  overflow-wrap: anywhere;
  overflow: visible;
}

.contact-list dd a,
.copy-wechat {
  color: #f0f0f0;
  text-decoration: none;
  transition: font-weight 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.contact-list dd a:hover,
.copy-wechat:hover {
  font-weight: 700;
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.copy-wechat {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.target-job {
  min-height: 110px;
  padding: 14px 18px;
  border: 1px solid rgba(232, 100, 10, 0.32) !important;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(232, 100, 10, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(41, 31, 24, 0.96), rgba(18, 18, 18, 0.96));
  color: #ffffff;
}

.target-job span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(232, 100, 10, 0.55);
  border-radius: 999px;
  background: rgba(232, 100, 10, 0.12);
  color: #ffa84c;
  font-size: 13px;
  font-weight: 700;
}

.target-job strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.05;
}

.contact-download {
  min-height: 38px;
  margin-top: 28px;
  padding-inline: 18px;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 24px;
  padding: 0 20px;
  border: 1px solid rgba(232, 100, 10, 0.58);
  border-radius: 999px;
  color: #f0f0f0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top span {
  color: rgba(240, 237, 232, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.back-to-top:hover {
  background: rgba(232, 100, 10, 0.88);
  box-shadow: 0 14px 34px rgba(232, 100, 10, 0.2);
  transform: translateY(-3px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox button {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 237, 232, 0.22);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.75);
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

.lightbox figure {
  max-width: min(980px, 92vw);
  max-height: 88vh;
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 25px;
  height: 25px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-80px, -80px, 0);
}

body.is-ready .custom-cursor {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-cursor img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transform-origin: center;
  filter: drop-shadow(0 0 12px rgba(232, 100, 10, 0.38));
}

.custom-cursor span {
  position: absolute;
  left: 40px;
  top: 50%;
  width: max-content;
  color: #f5f0eb;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.72;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

@keyframes preloaderMarkIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLogoIn {
  from { opacity: 0; transform: scale(1.3); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes preloaderPulse {
  50% { transform: scale(1.035); }
}

@media (pointer: fine) {
  body.is-ready,
  body.is-ready a,
  body.is-ready button {
    cursor: none;
  }
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --container: calc(100% - 28px);
  }

  .scroll-progress {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
    border: 1px solid rgba(240, 237, 232, 0.08);
    border-radius: var(--radius);
    background: rgba(12, 12, 12, 0.76);
    backdrop-filter: blur(16px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(240, 237, 232, 0.08);
    border-radius: var(--radius);
    background: rgba(12, 12, 12, 0.94);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-download {
    margin-top: 8px;
    text-align: center;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    height: auto;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-media {
    justify-self: center;
  }

  .hero-meta {
    text-align: center;
  }

  .hero-glow,
  .contact-glow {
    width: 92vw;
    height: 52vw;
  }

  .stats-grid,
  .capability-grid,
  .profile-grid,
  .exhibition-copy,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-head {
    display: block;
  }

  .gallery-head p {
    margin-top: 10px;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .gallery-item {
    flex: 0 0 82vw;
    height: 320px;
    scroll-snap-align: start;
  }

  .logo-grid {
    margin-bottom: 54px;
  }

  .logo-grid a {
    min-height: 110px;
    padding: 18px;
  }
}

@media screen and (max-width: 480px) {
  .section {
    width: calc(100% - 28px);
    max-width: 340px;
  }

  .hero-copy,
  .hero-role,
  .hero-intro {
    max-width: 340px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 82px;
    max-height: 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 48px);
  }

  .hero h1 span {
    font-size: 0.58em;
  }

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

  .hero-intro {
    word-break: break-all;
  }

  .hero-metrics,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics article {
    min-height: 118px;
  }

  .keep-line {
    white-space: normal;
  }

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

  .portrait-frame {
    width: min(340px, 86vw);
  }

  .btn {
    width: 100%;
  }

  .stat-card,
  .timeline-card,
  .capability-grid article,
  .profile-grid article {
    padding: 20px;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-card::before {
    left: -30px;
  }

  .mail-link {
    font-size: 26px;
  }

  .contact .section-heading h2 {
    font-size: clamp(44px, 12.2vw, 48px);
    line-height: 1.2;
  }

  .contact-title-desktop {
    display: none;
  }

  .contact-title-mobile {
    display: block;
  }

  .contact-title-mobile br {
    display: block;
  }

  .contact-list div {
    gap: 8px;
  }

  .contact-list div::before {
    left: 58px;
  }

  .contact-list dd {
    max-width: none;
    padding-left: 10px;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .contact-list dd a,
  .copy-wechat {
    font-size: 14.5px;
  }

  .target-job {
    min-height: 156px;
    padding: 22px;
  }

  .target-job strong {
    margin-top: 38px;
    font-size: 40px;
  }
}

@media print {
  @page {
    size: 15in 120in;
    margin: 0;
  }

  html {
    overflow: visible;
    scrollbar-gutter: auto;
  }

  body {
    width: 15in;
    overflow: visible !important;
    background: #080808 !important;
    color: var(--text-primary) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
  }

  body::before,
  .hero-glow,
  .contact-glow {
    display: none !important;
  }

  .preloader,
  .scroll-progress,
  .custom-cursor,
  .site-header,
  .lightbox,
  .hero-actions a[download],
  .contact-download {
    display: none !important;
  }

  body:not(.is-ready) main,
  body:not(.is-ready) .site-footer,
  main,
  .site-footer {
    opacity: 1 !important;
  }

  .section {
    width: min(1200px, calc(100% - 96px));
    padding: 64px 0;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 64px;
  }

  .ticker-track {
    transform: none !important;
  }

  .gallery-grid {
    max-height: none;
  }

  a[href] {
    text-decoration: none;
  }
}
