:root {
  --bg: #151514;
  --bg-soft: #1d1c1b;
  --panel: #252321;
  --panel-2: #2c2927;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --text: #f5f1ed;
  --muted: #c9c0b8;
  --muted-2: #9e958e;
  --orange: #ef4b18;
  --orange-bright: #ff672c;
  --orange-dark: #a62d10;
  --cream: #fff7f1;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 7%, rgba(239,75,24,.11), transparent 26rem),
    radial-gradient(circle at 5% 75%, rgba(239,75,24,.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--cream);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21,21,20,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(239,75,24,.14);
}
.site-nav a:hover { transform: translateY(-1px); }
.nav-contact { border: 1px solid rgba(239,75,24,.45); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--panel);
  color: #fff;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

main { overflow: clip; }
.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-bright);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); margin-bottom: 22px; }
h3 { font-size: 1.28rem; margin-bottom: 12px; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 790px; }
.kicker { color: var(--muted); font-size: 1.05rem; max-width: 720px; }
.text-orange { color: var(--orange-bright); }

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: center;
  padding: 74px 0 92px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { font-size: clamp(3.4rem, 4.2vw, 4.7rem); }
.hero-copy h1 span { display: block; color: var(--orange-bright); }
.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: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 14px 30px rgba(239,75,24,.21);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(239,75,24,.3); }
.button.secondary {
  background: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
  color: var(--text);
}
.button.secondary:hover { background: rgba(255,255,255,.06); }
.button svg { width: 19px; height: 19px; }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  padding: 10px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px 30px 18px -18px;
  z-index: -1;
  border: 1px solid rgba(239,75,24,.42);
  border-radius: 34px;
}
.hero-image-wrap img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 21px;
}
.hero-note {
  position: absolute;
  left: -34px;
  bottom: -34px;
  width: min(310px, 70%);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(37,35,33,.94);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
}
.hero-note strong { display: block; color: #fff; margin-bottom: 6px; font-size: 1.03rem; }
.hero-note span { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}
.stat { padding: 18px 16px; background: rgba(29,28,27,.86); }
.stat strong { display: block; color: #fff; font-size: 1.45rem; line-height: 1; }
.stat span { color: var(--muted-2); font-size: .82rem; }

.intro-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.profile-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.profile-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -16px;
  bottom: -16px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  border-radius: 0 0 24px 0;
}
.profile-photo {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 5px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 2px var(--orange);
}
.profile-card h3 { font-size: 1.5rem; }
.profile-card p { color: var(--muted); margin-bottom: 0; }
.quote-mark { color: var(--orange); font-size: 4rem; line-height: .5; opacity: .6; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.feature-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239,75,24,.55);
  background: linear-gradient(160deg, rgba(239,75,24,.1), rgba(255,255,255,.018));
}
.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border-radius: 15px;
  background: rgba(239,75,24,.13);
  color: var(--orange-bright);
  font-weight: 900;
}
.feature-card p { color: var(--muted); margin-bottom: 0; }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(239,75,24,.4);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(239,75,24,.18), rgba(239,75,24,.03) 55%),
    var(--panel);
  box-shadow: var(--shadow);
}
.cta-panel::after {
  content: "MHMVR";
  position: absolute;
  right: -18px;
  bottom: -44px;
  color: rgba(255,255,255,.025);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -.06em;
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { color: var(--muted); max-width: 720px; margin-bottom: 0; }

.page-hero { padding: 82px 0 48px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 70px;
  align-items: end;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.8rem); margin-bottom: 18px; }
.page-hero-photo {
  position: relative;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  justify-self: end;
}
.page-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: inherit;
  border: 8px solid rgba(255,255,255,.06);
  box-shadow: 0 0 0 2px var(--orange), 0 30px 65px rgba(0,0,0,.4);
}
.page-hero-photo::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border: 1px dashed rgba(239,75,24,.5);
  border-radius: 50%;
}
.content-panel {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(37,35,33,.68);
  box-shadow: var(--shadow);
}
.prose { max-width: 900px; }
.prose p { color: #ded7d1; margin-bottom: 24px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #fff; }

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 46px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-label { color: var(--orange-bright); font-weight: 850; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }
.publications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 34px;
}
.publication {
  padding: 26px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.035);
}
.publication p { color: var(--muted); margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(460px,1.18fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}
.contact-details {
  position: sticky;
  top: 130px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-link-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(239,75,24,.14);
  color: var(--orange-bright);
}
.contact-link-icon svg { width: 22px; height: 22px; }
.contact-form {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(37,35,33,.78);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; color: #fff; font-size: .88rem; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(8,8,8,.36);
  color: #fff;
  padding: 13px 15px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: rgba(8,8,8,.56);
  box-shadow: 0 0 0 4px rgba(239,75,24,.12);
}
.field textarea { min-height: 160px; resize: vertical; }
.form-note { color: var(--muted-2); font-size: .84rem; margin: 12px 0 0; }
.form-status { min-height: 26px; margin-top: 14px; color: var(--orange-bright); font-weight: 700; }

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: #111110;
}
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.footer-brand img { width: 140px; }
.footer-copy { color: var(--muted-2); font-size: .88rem; text-align: right; }
.footer-copy a { color: var(--muted); }
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(17,17,16,.88);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 21px; height: 21px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: none;
    padding: 16px 20px 24px;
    background: rgba(21,21,20,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: block; }
  .site-nav ul { display: grid; }
  .site-nav a { justify-content: center; border-radius: 12px; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(3.1rem, 7vw, 4.4rem); }
  .hero-visual { max-width: 760px; }
  .hero-image-wrap { transform: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .profile-card { max-width: 520px; }
  .cards-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cta-panel { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr 210px; gap: 30px; }
  .page-hero-photo { width: 190px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .header-inner, .shell, .footer-inner { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 80px; }
  .brand img { width: 154px; }
  .site-nav { inset: 80px 0 auto; }
  .section { padding: 68px 0; }
  .hero { padding: 44px 0 78px; }
  .hero-grid { gap: 48px; }
  h1 { font-size: clamp(2.35rem, 13vw, 4.2rem); }
  .hero-copy h1 { font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .lead { font-size: 1.04rem; }
  .hero-image-wrap { padding: 7px; border-radius: 22px; }
  .hero-image-wrap img { min-height: 250px; border-radius: 16px; }
  .hero-note { position: relative; left: auto; bottom: auto; width: calc(100% - 26px); margin: -30px auto 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .page-hero { padding-top: 58px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-photo { width: 150px; justify-self: start; order: -1; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .publications { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

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

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static; }
  .back-to-top, .menu-toggle { display: none !important; }
}
