:root {
  --navy: #071626;
  --navy-2: #0e2437;
  --navy-3: #17324a;
  --ink: #101820;
  --muted: #5d6976;
  --soft: #f4f6f8;
  --line: #dce2e8;
  --white: #ffffff;
  --gold: #c9a45d;
  --gold-2: #ead8aa;
  --shadow: 0 24px 80px rgba(7, 22, 38, 0.18);
  --radius: 8px;
  --max: 1180px;
  --hero-parallax: 0px;
  --hero-image: url("assets/hero-conference.png");
  --global-image: url("assets/aboutleenhwang.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  padding-block: 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 36px rgba(7, 22, 38, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  color: currentColor;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  opacity: 0.72;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.site-nav .nav-cta {
  padding: 10px 15px;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .language-link {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.site-nav .language-link::after {
  display: none;
}

.site-header.is-scrolled .site-nav .language-link,
.site-header.nav-visible .site-nav .language-link {
  border-color: rgba(7, 22, 38, 0.22);
}

.site-nav .language-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: -5% 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 38, 0.98) 0%, rgba(7, 22, 38, 0.86) 36%, rgba(7, 22, 38, 0.22) 72%, rgba(7, 22, 38, 0.48) 100%),
    linear-gradient(0deg, rgba(7, 22, 38, 0.64), rgba(7, 22, 38, 0)),
    var(--hero-image) center right / cover no-repeat;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.04);
  will-change: transform;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 84svh;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 124px 0 70px;
}

.hero-copy {
  max-width: 720px;
}

html[lang="en"] .hero-copy {
  max-width: 780px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.7vw, 92px);
  font-weight: 850;
  line-height: 0.96;
}

.hero-subtitle {
  margin: 28px 0 0;
  color: var(--gold-2);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
}

.hero-description {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero-statement {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary:hover {
  background: #d6b46f;
}

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

.button-ghost:hover {
  border-color: var(--gold);
}

.intro-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
}

.intro-grid p {
  min-height: 118px;
  margin: 0;
  padding: 28px clamp(20px, 3vw, 34px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.intro-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 54px);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-label-dark {
  color: var(--gold-2);
}

.section h2,
.mice-section h2,
.portfolio-section h2,
.about-section h2,
.leadership-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 840;
  line-height: 1.16;
}

.section-heading p:not(.section-label),
.split-heading p:not(.section-label),
.portfolio-lead p:not(.section-label),
.about-copy p:not(.section-label),
.leadership-heading p:not(.section-label),
.contact-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 300px;
  padding: 34px 28px;
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 54px rgba(7, 22, 38, 0.08);
}

.pillar span,
.service-index,
.process-list span,
.project-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.pillar h3,
.service-card h3,
.process-list h3,
.project-card h3,
.portfolio-feature h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.pillar p,
.service-card li,
.process-list p,
.project-card p,
.portfolio-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto 52px;
}

.split-heading p {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(7, 22, 38, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 164, 93, 0.62);
  box-shadow: 0 24px 68px rgba(7, 22, 38, 0.12);
}

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

.service-card li {
  position: relative;
  padding-left: 15px;
}

.service-card li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
}

.mice-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(76px, 10vw, 130px) clamp(20px, 4vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 38, 0.98), rgba(14, 36, 55, 0.96)),
    var(--navy);
  overflow: hidden;
}

.mice-section::before,
.contact-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(234, 216, 170, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.24;
}

.mice-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  justify-self: end;
}

.mice-section h2,
.contact-section h2 {
  color: var(--white);
}

.mice-copy > p:not(.section-label),
.contact-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.capability-list span {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 700;
}

.mice-image {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mice-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(100%, var(--max));
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list h3 {
  font-size: 19px;
}

.portfolio-section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 54px);
  background: var(--soft);
}

.portfolio-lead {
  width: min(760px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.portfolio-feature,
.project-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portfolio-feature::before,
.project-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  transition: width 260ms ease;
}

.portfolio-feature {
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(7, 22, 38, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.portfolio-feature img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-feature:hover img {
  transform: scale(1.035);
}

.portfolio-feature:hover {
  border-color: rgba(201, 164, 93, 0.62);
  box-shadow: 0 26px 76px rgba(7, 22, 38, 0.14);
}

.portfolio-feature:hover::before,
.project-card:hover::before {
  width: 100%;
}

.portfolio-feature div {
  padding: 30px;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-card {
  min-height: 172px;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 93, 0.62);
  box-shadow: 0 18px 52px rgba(7, 22, 38, 0.1);
}

.project-card h3 {
  margin-top: 18px;
  font-size: 19px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 54px);
  background: var(--white);
}

.about-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(7, 22, 38, 0), rgba(7, 22, 38, 0.34)),
    var(--global-image) center / cover no-repeat;
  border-radius: var(--radius);
}

.about-copy {
  max-width: 650px;
}

.about-copy blockquote {
  margin: 34px 0 0;
  padding-left: 26px;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.28;
}

.leadership-section {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 54px);
  background:
    linear-gradient(180deg, rgba(244, 246, 248, 0.92), #ffffff 46%),
    var(--soft);
}

.leadership-heading {
  width: min(820px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.supervisor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.supervisor-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(7, 22, 38, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.supervisor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 93, 0.62);
  box-shadow: 0 24px 72px rgba(7, 22, 38, 0.13);
}

.supervisor-photo {
  width: 170px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 22, 38, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(7, 22, 38, 0.1);
}

.supervisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.supervisor-role {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.supervisor-body h3 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.supervisor-body p:not(.supervisor-role) {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 16px;
}

.supervisor-body p:last-child {
  margin-bottom: 0;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.profile-link::after {
  content: "→";
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding: clamp(76px, 10vw, 128px) clamp(20px, 4vw, 54px);
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(201, 164, 93, 0.18), transparent 38%), var(--navy);
  overflow: hidden;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  justify-self: end;
}

.company-info {
  margin-top: 34px;
}

.company-info dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.company-info div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
}

.company-info dt {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
}

.company-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.company-info dd a {
  color: inherit;
}

.contact-form {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 1081px) {
  .process-list li:not(:last-child)::after {
    position: absolute;
    top: 54px;
    right: -34px;
    z-index: 2;
    width: 68px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(201, 164, 93, 0.18), rgba(201, 164, 93, 0.92));
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 93, 0.18);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(280px, 1fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: start;
  padding: 44px clamp(20px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: #04101d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer strong {
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--gold-2);
  line-height: 1.35;
  font-weight: 750;
}

.footer-contact {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
  font-size: 13px;
}

.footer-copyright {
  align-self: center;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.footer-policy {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--soft);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.legal-nav a:hover {
  color: var(--navy);
}

.legal-main {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) 0;
}

.legal-hero {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
}

.legal-hero p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.legal-content {
  padding-top: 36px;
}

.legal-content h2 {
  margin: 36px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-page {
  min-height: 100vh;
  background: var(--soft);
}

.profile-main {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 100px) 0;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding-bottom: clamp(34px, 6vw, 58px);
  border-bottom: 1px solid var(--line);
}

.profile-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
}

.profile-hero p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.profile-person {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(7, 22, 38, 0.07);
}

.profile-portrait {
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 22, 38, 0.1);
  border-radius: var(--radius);
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-role {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
}

.profile-person h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.profile-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.profile-columns {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 4vw, 42px);
  margin-top: 28px;
}

.profile-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.profile-panel ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-panel li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 15px;
}

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

.achievement-list li + li {
  padding-top: 8px;
  border-top: 1px solid rgba(220, 226, 232, 0.8);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.68);
  background: #04101d;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a {
  color: var(--gold-2);
  font-weight: 750;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

.motion-ready #why .reveal,
.motion-ready #services .reveal,
.motion-ready #portfolio .reveal,
.motion-ready #leadership .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.motion-ready #why .reveal.is-visible,
.motion-ready #services .reveal.is-visible,
.motion-ready #portfolio .reveal.is-visible,
.motion-ready #leadership .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .pillar:nth-child(2),
.motion-ready .service-card:nth-child(2),
.motion-ready .project-card:nth-child(2),
.motion-ready .supervisor-card:nth-child(2) {
  transition-delay: 70ms;
}

.motion-ready .pillar:nth-child(3),
.motion-ready .service-card:nth-child(3),
.motion-ready .project-card:nth-child(3) {
  transition-delay: 120ms;
}

.motion-ready .pillar:nth-child(4),
.motion-ready .service-card:nth-child(4),
.motion-ready .project-card:nth-child(4) {
  transition-delay: 170ms;
}

.motion-ready .service-card:nth-child(5),
.motion-ready .project-card:nth-child(5) {
  transition-delay: 220ms;
}

.motion-ready .project-card:nth-child(6) {
  transition-delay: 270ms;
}

@media (max-width: 1080px) {
  .pillar-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-list li:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .mice-section,
  .portfolio-layout,
  .about-section,
  .supervisor-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .mice-copy,
  .contact-copy {
    justify-self: start;
  }

  .mice-image img,
  .about-image {
    max-height: 560px;
  }
}

@media (max-width: 920px) {
  .brand-text strong {
    font-size: 18px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav .language-link {
    margin-top: 6px;
    text-align: center;
    border-color: rgba(7, 22, 38, 0.16);
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .site-header.nav-visible .nav-toggle span:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-visible .nav-toggle span:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 9.5px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .site-header.nav-visible .nav-toggle span:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-visible .nav-toggle span:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: 78svh;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(7, 22, 38, 0.96), rgba(7, 22, 38, 0.74)),
      linear-gradient(0deg, rgba(7, 22, 38, 0.78), rgba(7, 22, 38, 0.12)),
      var(--hero-image) center / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-top: 98px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .intro-grid,
  .split-heading,
  .portfolio-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .portfolio-section,
  .mice-section,
  .about-section,
  .contact-section {
    padding-inline: 18px;
  }

  .pillar-grid,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .pillar,
  .process-list li {
    min-height: unset;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .portfolio-feature img {
    aspect-ratio: 1.12;
  }

  .about-image {
    min-height: 360px;
  }

  .supervisor-card {
    grid-template-columns: 1fr;
  }

  .supervisor-photo {
    width: min(100%, 240px);
  }

  .profile-hero,
  .profile-person,
  .profile-columns {
    grid-template-columns: 1fr;
  }

  .profile-hero-actions {
    justify-content: flex-start;
  }

  .profile-portrait {
    width: min(100%, 260px);
  }

  .company-info div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-contact {
    justify-items: start;
  }

  .legal-header,
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .site-header,
  .legal-header {
    gap: 14px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    font-size: 8.5px;
  }
}

@media (max-width: 460px) {
  .button {
    width: 100%;
  }

  .hero-description,
  .hero-statement {
    font-size: 15px;
  }

  .section h2,
  .mice-section h2,
  .portfolio-section h2,
  .about-section h2,
  .leadership-section h2,
  .contact-section h2 {
    font-size: 30px;
  }

  .contact-form {
    padding: 20px;
  }
}

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

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

  .hero-bg {
    transform: scale(1.02);
  }
}
