:root {
  --navy: #091421;
  --navy-2: #0d1d2c;
  --navy-3: #12283c;
  --bronze: #9b5b36;
  --copper: #bf8057;
  --gold: #d4a47c;
  --sand: #f0e3d5;
  --ivory: #fbf8f3;
  --ink: #152330;
  --slate: #66717a;
  --white: #fff;
  --line: rgba(19, 35, 48, .12);
  --line-light: rgba(255, 255, 255, .15);
  --shadow: 0 30px 80px rgba(7, 18, 29, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, figure { margin-top: 0; }
p { color: var(--slate); font-size: 16px; line-height: 1.78; }
h1, h2, h3 { text-wrap: balance; }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 124px 0; }

.skip-link {
  position: fixed;
  z-index: 10002;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 2000;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
}

.preloader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 45%, #172b3d, var(--navy) 55%, #050c13);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark { width: min(300px, 70vw); text-align: center; }
.preloader__mark img {
  width: 112px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .35));
  animation: preloader-breathe 2.1s ease-in-out infinite;
}
.preloader__mark p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.preloader__line { height: 1px; overflow: hidden; background: rgba(255, 255, 255, .14); }
.preloader__line span { display: block; width: 38%; height: 100%; background: var(--gold); animation: preloader-line 1.4s ease-in-out infinite; }
@keyframes preloader-line { from { transform: translateX(-100%); } to { transform: translateX(360%); } }
@keyframes preloader-breathe { 50% { transform: scale(1.04); } }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(9, 20, 33, .9);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .15);
  backdrop-filter: blur(18px);
}
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); }
.brand img { width: 52px; height: 60px; object-fit: contain; }
.brand__type strong { display: block; font-size: 20px; line-height: 1; letter-spacing: .17em; }
.brand__type small { display: block; margin-top: 6px; color: rgba(255, 255, 255, .56); font-size: 10px; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(255, 255, 255, .78); font-size: 13px; font-weight: 650; }
.nav-links > a:not(.nav-cta) { position: relative; padding: 10px 0; }
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links > a:hover::after, .nav-links > a.is-active::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(212, 164, 124, .46);
  border-radius: 999px;
  color: var(--sand);
  background: rgba(155, 91, 54, .12);
  transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: rgba(155, 91, 54, .24); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.nav-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:last-child { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero__media {
  position: absolute;
  inset: -3%;
  background: url("assets/emm-healthcare-hero.webp") 54% center / cover no-repeat;
  transform: scale(1.03) translateY(var(--hero-shift, 0));
  will-change: transform;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 22, .96) 0%, rgba(7, 18, 30, .9) 37%, rgba(8, 20, 32, .42) 63%, rgba(8, 19, 30, .13) 100%),
    linear-gradient(0deg, rgba(5, 13, 22, .92) 0%, transparent 34%, rgba(5, 13, 22, .22) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, #000, transparent 61%);
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 126px;
  padding-bottom: 150px;
}
.hero__copy { max-width: 800px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 42px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(56px, 6.55vw, 96px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--sand); font-weight: 400; }
.hero__copy > p { max-width: 650px; margin-bottom: 34px; color: rgba(255, 255, 255, .72); font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button span { font-size: 18px; transition: transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(2px, -2px); }
.button--gold {
  color: var(--navy);
  background: linear-gradient(135deg, #f1d7bf, var(--gold));
  box-shadow: 0 18px 42px rgba(155, 91, 54, .32);
}
.button--ink { color: var(--white); background: var(--navy); box-shadow: 0 18px 38px rgba(7,18,29,.22); }
.button--glass { border: 1px solid rgba(255,255,255,.2); color: var(--white); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.hero__rail {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 970px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(8, 20, 32, .62);
  backdrop-filter: blur(20px);
}
.hero__rail div { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 15px; padding: 19px 24px; border-right: 1px solid rgba(255,255,255,.11); }
.hero__rail div:last-child { border-right: 0; }
.hero__rail span { grid-row: 1 / 3; color: var(--gold); font-family: var(--serif); font-size: 22px; }
.hero__rail strong { font-size: 13px; }
.hero__rail small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 11px; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i { position: relative; width: 1px; height: 46px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue i::after { content: ""; position: absolute; inset: -100% 0 auto; height: 100%; background: var(--gold); animation: scroll-cue 2s ease-in-out infinite; }
@keyframes scroll-cue { to { transform: translateY(200%); } }

.section-kicker {
  margin-bottom: 20px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.section-kicker--light { color: var(--gold); }
.intro { background: var(--ivory); }
.intro::before { content: ""; position: absolute; left: 0; top: 0; width: 38%; height: 100%; background: linear-gradient(90deg, #f1e6da, transparent); opacity: .48; }
.intro__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 8vw, 118px); align-items: center; }
.intro__visual { position: relative; }
.image-frame { position: relative; overflow: hidden; margin: 0; background: #d8d0c6; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.image-frame:hover img { transform: scale(1.035); }
.image-frame--portrait { height: 610px; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow); }
.image-frame--portrait img { object-position: 47% center; }
.image-frame--portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,18,29,.5), transparent 38%); }
.image-frame figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: flex; align-items: center; gap: 13px; color: var(--white); font-size: 12px; }
.image-frame figcaption > span { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.floating-note {
  position: absolute;
  right: -46px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 250px;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(9,20,33,.88);
  box-shadow: 0 24px 50px rgba(7,18,29,.22);
  backdrop-filter: blur(16px);
}
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 12px; }
.floating-note small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 10px; }
.pulse-dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: #a9dec5; box-shadow: 0 0 0 7px rgba(169,222,197,.12); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 12px rgba(169,222,197,0); } }
.intro__copy h2, .section-heading h2, .serve h2, .standards h2, .careers h2, .contact h2, .journey h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.55vw, 67px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.intro__copy .lead { color: #384650; font-size: 19px; line-height: 1.65; }
.intro__copy > p { max-width: 690px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.principles div { padding: 19px 16px; background: var(--white); }
.principles strong, .principles span { display: block; }
.principles strong { margin-bottom: 5px; color: var(--bronze); font-size: 13px; }
.principles span { color: var(--slate); font-size: 11px; }

.expertise { background: #f1e9df; }
.expertise::before { content: "EMM"; position: absolute; right: -25px; top: 95px; color: rgba(21,35,48,.035); font-family: var(--serif); font-size: clamp(160px, 24vw, 380px); line-height: 1; letter-spacing: -.08em; }
.section-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 60px; align-items: end; margin-bottom: 56px; }
.section-heading h2 { max-width: 850px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 6px; }
.expertise__summary > p { margin: 0 0 22px; }
.experience-mark { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding-top: 18px; border-top: 1px solid rgba(21,35,48,.14); }
.experience-mark strong { color: var(--bronze); font-family: var(--serif); font-size: 50px; font-weight: 400; line-height: .9; letter-spacing: -.05em; }
.experience-mark span { color: var(--ink); font-family: var(--serif); font-size: 18px; line-height: 1.05; }
.experience-mark small { display: block; margin-top: 6px; color: var(--slate); font-family: var(--sans); font-size: 10px; line-height: 1.45; }
.expertise__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.expertise-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(21,35,48,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.expertise-card:hover { z-index: 2; transform: translateY(-8px); border-color: rgba(155,91,54,.32); box-shadow: 0 30px 70px rgba(21,35,48,.12); }
.expertise-card::after { content: ""; position: absolute; right: -45px; top: -45px; width: 130px; height: 130px; border: 1px solid rgba(155,91,54,.12); border-radius: 50%; transition: transform .4s ease; }
.expertise-card:hover::after { transform: scale(1.25); }
.card-number { position: absolute; top: 29px; right: 30px; color: rgba(21,35,48,.34); font-family: var(--serif); font-size: 14px; }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; color: var(--bronze); background: #f3e6da; }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card h3 { max-width: 410px; margin-bottom: 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.025em; }
.expertise-card p { max-width: 570px; margin-bottom: 0; font-size: 14px; line-height: 1.72; }
.card-tag { align-self: flex-start; margin-top: auto; padding: 8px 12px; border: 1px solid rgba(155,91,54,.18); border-radius: 999px; color: var(--bronze); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.journey { overflow: hidden; color: var(--white); background: var(--navy); }
.journey__glow { position: absolute; right: -10%; top: 10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(155,91,54,.25), transparent 67%); }
.journey__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.journey h2 { max-width: 610px; }
.journey__copy > p { max-width: 570px; color: rgba(255,255,255,.62); }
.steps { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.step { border-bottom: 1px solid rgba(255,255,255,.12); }
.step button { width: 100%; display: grid; grid-template-columns: 38px 1fr 30px; gap: 16px; align-items: start; padding: 20px 0; border: 0; cursor: pointer; text-align: left; background: transparent; }
.step button > span:first-child { padding-top: 3px; color: rgba(255,255,255,.37); font-family: var(--serif); font-size: 14px; transition: color .25s ease; }
.step strong, .step small { display: block; }
.step strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.step small { max-height: 0; overflow: hidden; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.6; opacity: 0; transform: translateY(-5px); transition: max-height .35s ease, opacity .35s ease, transform .35s ease, margin .35s ease; }
.step i { font-style: normal; color: var(--gold); font-size: 20px; font-weight: 300; transition: transform .3s ease; }
.step.is-active small { max-height: 60px; margin-top: 7px; opacity: 1; transform: translateY(0); }
.step.is-active button > span:first-child { color: var(--gold); }
.step.is-active i { transform: rotate(45deg); }
.image-frame--journey { height: 650px; border-radius: 220px 220px 24px 24px; box-shadow: 0 40px 100px rgba(0,0,0,.4); }
.image-frame--journey::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,13,22,.82), transparent 45%); }
.image-frame--journey figcaption { align-items: flex-end; justify-content: space-between; }
.image-frame--journey figcaption > span { max-width: 46%; font-size: 22px; }
.image-frame--journey figcaption > small { max-width: 220px; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.5; text-align: right; }
.journey__status {
  position: absolute;
  right: -26px;
  top: 44%;
  width: 205px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(9,20,33,.84);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.journey__status span { color: rgba(255,255,255,.45); font-size: 8px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.journey__status svg { width: 100%; margin: 9px 0 4px; }
.journey__status path { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 320; animation: ecg 3.2s ease-in-out infinite; }
.journey__status strong { color: #bce2cf; font-size: 11px; }
@keyframes ecg { from { stroke-dashoffset: 320; } 65%, to { stroke-dashoffset: 0; } }

.serve { background: var(--ivory); }
.section-heading--compact { grid-template-columns: 1fr; }
.section-heading--compact h2 { max-width: 900px; }
.serve__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.serve__grid article { min-height: 290px; padding: 30px; border-right: 1px solid var(--line); transition: color .3s ease, background .3s ease; }
.serve__grid article:last-child { border-right: 0; }
.serve__grid article:hover { color: var(--white); background: var(--navy-2); }
.serve__grid article > span { display: block; margin-bottom: 66px; color: var(--bronze); font-family: var(--serif); font-size: 15px; }
.serve__grid article:hover > span { color: var(--gold); }
.serve__grid h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.serve__grid p { margin-bottom: 0; font-size: 13px; line-height: 1.65; transition: color .3s ease; }
.serve__grid article:hover p { color: rgba(255,255,255,.58); }

.standards { padding-top: 0; background: var(--ivory); }
.standards__panel { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; overflow: hidden; border-radius: 28px; color: var(--white); background: var(--navy-2); box-shadow: 0 40px 110px rgba(7,18,29,.2); }
.standards__visual { position: relative; min-height: 620px; overflow: hidden; }
.standards__visual > img { width: 100%; height: 100%; object-fit: cover; }
.standards__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,15,24,.8), transparent 52%); }
.standards__overlay { position: absolute; z-index: 2; left: 38px; bottom: 38px; }
.standards__overlay span, .standards__overlay strong { display: block; }
.standards__overlay span { color: rgba(255,255,255,.62); font-size: 12px; }
.standards__overlay strong { margin-top: 7px; color: var(--sand); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.standards__copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.standards__copy > p { max-width: 520px; color: rgba(255,255,255,.58); }
.standards__copy ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.standards__copy li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.standards__copy li i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); background: rgba(212,164,124,.1); font-size: 11px; font-style: normal; }
.standards__copy li strong, .standards__copy li small { display: block; }
.standards__copy li strong { font-family: var(--serif); font-size: 17px; font-weight: 400; }
.standards__copy li small { margin-top: 3px; color: rgba(255,255,255,.43); font-size: 10px; }

.careers { padding-top: 0; background: var(--ivory); }
.careers__panel {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f0e6da;
  box-shadow: var(--shadow);
}
.careers__media { position: relative; min-height: 600px; overflow: hidden; }
.careers__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,18,29,.62), transparent 44%); }
.careers__media img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.careers__panel:hover .careers__media img { transform: scale(1.025); }
.careers__image-note { position: absolute; z-index: 2; left: 34px; bottom: 32px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.76); font-size: 11px; }
.careers__image-note span { width: 30px; height: 1px; background: var(--gold); }
.careers__content { display: flex; flex-direction: column; justify-content: center; padding: 54px; background: rgba(251,248,243,.96); }
.careers__content h2 { margin-bottom: 20px; font-size: clamp(41px, 4.1vw, 61px); }
.careers__content > p { max-width: 560px; margin-bottom: 28px; }
.careers__qualities { display: grid; margin: 0 0 28px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.careers__qualities li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.careers__qualities span { color: var(--bronze); font-family: var(--serif); font-size: 13px; }
.careers__qualities strong { font-family: var(--serif); font-size: 17px; font-weight: 400; }
.careers__apply { padding: 24px; border-radius: 18px; color: var(--white); background: var(--navy-2); box-shadow: 0 20px 48px rgba(7,18,29,.15); }
.careers__apply > div > span { display: block; margin-bottom: 6px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.careers__apply > div > p { margin-bottom: 16px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.6; }
.careers__apply .button { width: 100%; color: var(--navy); background: linear-gradient(135deg, #f1d7bf, var(--gold)); box-shadow: none; }
.careers__email { display: block; margin-top: 14px; color: rgba(255,255,255,.52); font-size: 10px; text-align: center; overflow-wrap: anywhere; transition: color .2s ease; }
.careers__email:hover { color: var(--white); }

.contact { overflow: hidden; color: var(--white); background: #08121e; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 90px 90px; mask-image: radial-gradient(circle at 10% 50%, #000, transparent 65%); }
.contact__orb { position: absolute; left: -240px; bottom: -320px; width: 700px; height: 700px; border: 1px solid rgba(212,164,124,.14); border-radius: 50%; box-shadow: inset 0 0 120px rgba(155,91,54,.08); }
.contact__orb::after { content: ""; position: absolute; inset: 80px; border: 1px dashed rgba(255,255,255,.08); border-radius: 50%; }
.contact__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 8vw, 110px); align-items: start; }
.contact__copy { position: sticky; top: 130px; }
.contact__copy p { max-width: 560px; color: rgba(255,255,255,.6); }
.contact__details { display: grid; gap: 16px; margin-top: 40px; }
.contact__details a, .contact__details > div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact__details span, .contact__details strong { display: block; }
.contact__details span { margin-bottom: 6px; color: var(--gold); font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.contact__details strong { overflow-wrap: anywhere; font-size: 13px; font-weight: 550; }
.contact-form { padding: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(255,255,255,.065); box-shadow: 0 32px 90px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.form-head { display: flex; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.form-head span { font-family: var(--serif); font-size: 23px; }
.form-head small { color: rgba(255,255,255,.4); font-size: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: rgba(255,255,255,.67); font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: rgba(6,15,24,.55);
  padding: 15px 16px;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.5) 50%), linear-gradient(135deg, rgba(255,255,255,.5) 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form select option { color: #111; background: #fff; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(212,164,124,.72); background-color: rgba(6,15,24,.8); box-shadow: 0 0 0 4px rgba(212,164,124,.1); }
.contact-form .button { width: 100%; margin-top: 4px; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.4); font-size: 10px; text-align: center; }

.footer { padding: 72px 0 28px; color: var(--white); background: #050c13; border-top: 1px solid rgba(255,255,255,.08); }
.footer__grid { position: relative; display: grid; grid-template-columns: 1.5fr .65fr 1fr auto; gap: 70px; }
.footer__brand img { width: 80px; margin-bottom: 18px; }
.footer__brand p { max-width: 390px; margin-bottom: 0; color: rgba(255,255,255,.45); font-size: 13px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links strong { margin-bottom: 8px; color: var(--gold); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer__links a, .footer__links span { color: rgba(255,255,255,.5); font-size: 12px; }
.footer__links a:hover { color: var(--white); }
.back-top { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.32); font-size: 10px; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay, .reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }

@media (max-width: 1100px) {
  .section { padding: 100px 0; }
  .nav-links { gap: 20px; }
  .hero__media { background-position: 49% center; }
  .hero__copy { max-width: 700px; }
  .hero h1 { max-width: 680px; }
  .intro__grid, .journey__grid { gap: 65px; }
  .floating-note { right: -20px; }
  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .serve__grid { grid-template-columns: repeat(2, 1fr); }
  .serve__grid article:nth-child(2) { border-right: 0; }
  .serve__grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .standards__copy { padding: 46px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 36px, 1240px); }
  .nav { min-height: 78px; }
  .brand img { width: 44px; height: 50px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    z-index: 999;
    inset: 78px 18px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(9,20,33,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.32);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height .35s ease, padding .35s ease, opacity .25s ease, transform .35s ease, border-color .35s ease;
  }
  .nav-links.is-open { max-height: 480px; padding: 18px; border-color: rgba(255,255,255,.14); opacity: 1; transform: translateY(0); }
  .nav-links > a:not(.nav-cta) { padding: 14px; border-radius: 12px; }
  .nav-links > a:not(.nav-cta):hover { background: rgba(255,255,255,.06); }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: space-between; margin-top: 5px; border-radius: 12px; }
  .hero__media { background-position: 61% center; }
  .hero__wash { background: linear-gradient(90deg, rgba(5,13,22,.97) 0%, rgba(7,18,30,.84) 53%, rgba(8,20,32,.22) 100%), linear-gradient(0deg, rgba(5,13,22,.95), transparent 40%); }
  .hero__copy { max-width: 650px; }
  .hero__rail { grid-template-columns: 1fr; max-width: 360px; margin: 0; }
  .hero__rail div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero__rail div:last-child { border-bottom: 0; }
  .scroll-cue { display: none; }
  .hero__content { padding-bottom: 290px; }
  .intro__grid, .journey__grid, .standards__panel, .careers__panel, .contact__grid { grid-template-columns: 1fr; }
  .intro__visual { max-width: 620px; margin: 0 auto; }
  .image-frame--portrait { height: 580px; }
  .floating-note { right: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 620px; }
  .journey__copy > p { max-width: 700px; }
  .journey__visual { max-width: 680px; margin: 0 auto; }
  .standards__visual { min-height: 520px; }
  .careers__media { min-height: 520px; }
  .careers__content { padding: 48px; }
  .contact__copy { position: relative; top: auto; }
  .contact__grid { gap: 50px; }
  .footer__grid { grid-template-columns: 1.4fr .7fr 1fr auto; gap: 35px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1240px); }
  .section { padding: 78px 0; }
  .brand__type small { display: none; }
  .hero__media { background-position: 66% center; }
  .hero__wash { background: linear-gradient(90deg, rgba(5,13,22,.96) 0%, rgba(7,18,30,.84) 67%, rgba(8,20,32,.3)), linear-gradient(0deg, rgba(5,13,22,.97), transparent 52%); }
  .hero__content { justify-content: flex-start; padding-top: 152px; padding-bottom: 320px; }
  .eyebrow { max-width: 300px; font-size: 9px; line-height: 1.5; }
  .hero h1 { font-size: clamp(49px, 15vw, 69px); }
  .hero__copy > p { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__rail { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .hero__rail div { padding: 14px 17px; }
  .hero__rail small { display: none; }
  .intro::before { width: 100%; }
  .image-frame--portrait { height: 440px; border-radius: 130px 130px 22px 22px; }
  .floating-note { right: -3px; bottom: 28px; width: 225px; }
  .intro__copy h2, .section-heading h2, .serve h2, .standards h2, .careers h2, .contact h2, .journey h2 { font-size: clamp(38px, 12.2vw, 52px); }
  .intro__copy .lead { font-size: 17px; }
  .principles { grid-template-columns: 1fr; }
  .principles div { display: flex; justify-content: space-between; align-items: center; }
  .expertise__grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 315px; }
  .journey__grid { gap: 50px; }
  .image-frame--journey { height: 480px; border-radius: 140px 140px 20px 20px; }
  .image-frame--journey figcaption { align-items: flex-start; flex-direction: column; }
  .image-frame--journey figcaption > span { max-width: 100%; }
  .image-frame--journey figcaption > small { max-width: 100%; text-align: left; }
  .journey__status { top: 45%; right: -3px; width: 180px; }
  .serve__grid { grid-template-columns: 1fr; }
  .serve__grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .serve__grid article:last-child { border-bottom: 0; }
  .serve__grid article > span { margin-bottom: 38px; }
  .standards { padding-top: 0; }
  .standards__panel { width: 100%; border-radius: 0; }
  .standards__visual { min-height: 380px; }
  .standards__copy { padding: 38px 24px 46px; }
  .standards__overlay { left: 24px; bottom: 24px; }
  .careers__panel { border-radius: 20px; }
  .careers__media { min-height: 390px; }
  .careers__content { padding: 36px 22px 24px; }
  .careers__apply { padding: 20px 16px; }
  .contact-form { padding: 25px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-head { display: block; }
  .form-head small { display: block; margin-top: 6px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .back-top { position: absolute; right: 0; top: 0; }
  .footer__bottom { gap: 16px; align-items: flex-start; flex-direction: column; }
}

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