:root {
  --bg: #f5f2ea;
  --bg-2: #ebe6d9;
  --paper: #fbfaf5;
  --ink: #071513;
  --ink-2: #263330;
  --ink-3: #58635f;
  --muted: #8c958f;
  --line: color-mix(in oklab, var(--ink) 14%, transparent);
  --line-soft: color-mix(in oklab, var(--ink) 8%, transparent);
  --teal: #149584;
  --teal-2: #0b766b;
  --teal-dark: #052f2c;
  --dark: #071715;
  --yellow: #ffd43a;
  --paper-glass: color-mix(in oklab, var(--paper) 86%, transparent);
  --glass-fill: linear-gradient(145deg, color-mix(in oklab, white 68%, transparent), color-mix(in oklab, var(--paper) 48%, transparent));
  --glass-line: color-mix(in oklab, white 62%, var(--ink) 12%);
  --glass-shadow: inset 0 1px 0 color-mix(in oklab, white 74%, transparent), 0 28px 80px -62px rgba(0,0,0,.55);
  --icon-arrow-up: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M10 7h7v7' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --f-sans: "Overpass", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "Overpass Mono", ui-monospace, Menlo, monospace;
  --max: 1780px;
  --content: 1180px;
  --gutter: 72px;
  --ease: cubic-bezier(.22,1,.36,1);
}
* { box-sizing: border-box; }
html,
body {
  background-color: #ffffff;
}
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; color-scheme: light; }
html { scroll-behavior: smooth; background: #ffffff; overscroll-behavior-x: none; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}
[id] { scroll-margin-top: 110px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { background: var(--bg); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 200; height: 3px; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: var(--p, 0%); background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--ink);
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1px solid color-mix(in oklab, white 36%, transparent);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--ink) 7%, transparent);
}
.site-nav.scrolled { background: color-mix(in oklab, var(--paper) 92%, transparent); box-shadow: 0 18px 46px -34px rgba(0,0,0,.42); }
.site-nav.menu-open { z-index: 320; }
.nav-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: 18px 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
}
.brand-logo { width: auto; height: 40px; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 4px; font-size: 15px; font-weight: 650; }
.nav-item { display: flex; align-items: center; }
.nav-links > a, .nav-item > a { position: relative; padding: 8px 11px; border-radius: 999px; transition: color .25s ease; }
.nav-links > a::after, .nav-item > a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links > a:hover, .nav-links > a.active, .nav-item > a:hover, .nav-item > a.active { color: var(--teal-2); }
.nav-links > a:hover::after, .nav-links > a.active::after, .nav-item > a:hover::after, .nav-item > a.active::after { transform: scaleX(1); }
.mega-menu {
  position: fixed;
  z-index: 120;
  top: 62px;
  left: 50%;
  width: min(calc(100vw - (var(--gutter) * 2)), var(--max));
  padding-top: 26px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .28s ease, transform .35s var(--ease);
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu, .nav-item.mega-open .mega-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega-inner {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 2.2fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, var(--paper) 86%, transparent), color-mix(in oklab, white 62%, transparent));
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 34px 100px -70px rgba(0,0,0,.58);
}
.mega-copy {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark), var(--teal-dark));
  color: white;
  overflow: hidden;
}
.mega-copy .meta { color: color-mix(in oklab, white 52%, transparent); }
.mega-copy h3 { margin: 18px 0 0; font-size: 34px; line-height: .96; letter-spacing: -.035em; }
.mega-copy p { margin: 14px 0 0; color: color-mix(in oklab, white 72%, transparent); font-size: 14px; line-height: 1.55; }
.mega-overview { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--yellow); font-weight: 650; }
.mega-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.mega-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 118px 1fr;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease;
}
.mega-card:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--teal) 44%, white); background: #fff; }
.mega-card img { width: 100%; height: 100%; object-fit: cover; }
.mega-card-body { padding: 14px; background: #fff; border-top: 1px solid var(--line-soft); }
.mega-card strong { display: block; font-size: 17px; line-height: 1.05; letter-spacing: -.015em; }
.mega-card .meta { display: block; margin: 0 0 10px; }
.mega-card-body > span:not(.meta) { display: block; margin-top: 8px; color: var(--ink-3); font-size: 12.5px; line-height: 1.35; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid color-mix(in oklab, var(--yellow) 58%, var(--ink) 18%);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 68%, transparent), 0 18px 46px -34px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}
.nav-cta > .btn {
  min-width: 174px;
  min-height: 50px;
  padding: 13px 20px;
  font-size: 14px;
}
.nav-toggle, .mobile-nav { display: none; }
.nav-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, white 70%, transparent), color-mix(in oklab, var(--paper) 54%, transparent));
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  color: var(--teal-2);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 18px 52px -42px rgba(0,0,0,.52);
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}
.nav-toggle::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--yellow) 28%, transparent);
  transition: opacity .2s ease, transform .25s var(--ease);
}
.nav-toggle:hover { transform: translateY(-1px); border-color: color-mix(in oklab, var(--teal) 38%, white); background: color-mix(in oklab, white 78%, var(--paper)); }
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .28s var(--ease), opacity .2s ease, width .25s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.nav-toggle span:nth-child(2) { width: 14px; transform: translate(-20%, -1px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.site-nav.menu-open .nav-toggle::after { opacity: 0; transform: scale(.35); }
.site-nav.menu-open .nav-toggle span:nth-child(1) { transform: translate(-50%, -1px) rotate(45deg); }
.site-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: translate(-50%, -1px) scaleX(0); }
.site-nav.menu-open .nav-toggle span:nth-child(3) { transform: translate(-50%, -1px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  z-index: 130;
  width: min(100%, 440px);
  max-height: calc(100svh - 92px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, var(--paper) 96%, white), color-mix(in oklab, white 88%, var(--paper)));
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 34px 100px -70px rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(.985);
  transform-origin: top right;
  transition: opacity .25s ease, transform .28s var(--ease);
}
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark), var(--teal-dark));
  color: white;
}
.mobile-nav-head span {
  color: var(--yellow);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mobile-nav-head strong { max-width: 18ch; text-align: right; font-size: 18px; line-height: 1.05; letter-spacing: -.02em; }
.mobile-nav-group, .mobile-nav-pages, .mobile-nav-actions {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: color-mix(in oklab, white 78%, var(--paper));
}
.mobile-nav-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 9px;
  color: var(--teal-2);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mobile-nav-label::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .38; }
.mobile-nav-services, .mobile-nav-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mobile-nav-services { margin-top: 8px; padding-left: clamp(10px, 3vw, 18px); }
.mobile-nav-pages { padding: 10px; }
.mobile-nav-actions { display: grid; gap: 8px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 8px;
  background: color-mix(in oklab, white 88%, var(--paper));
  color: var(--ink);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.12;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease), border-color .22s ease;
}
.mobile-nav a::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-up) center / contain no-repeat;
  mask: var(--icon-arrow-up) center / contain no-repeat;
  opacity: .46;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--teal); border-color: color-mix(in oklab, var(--teal) 58%, white); color: white; transform: translateY(-1px); }
.mobile-nav .mobile-nav-overview { background: color-mix(in oklab, var(--teal) 12%, white); color: var(--teal-2); }
.mobile-nav .mobile-nav-service { min-height: 58px; align-items: flex-end; overflow-wrap: anywhere; hyphens: auto; font-size: clamp(13px, 3.5vw, 15px); }
.mobile-nav .mobile-nav-apply { background: var(--yellow); color: var(--ink); border-color: color-mix(in oklab, var(--yellow) 62%, var(--ink) 18%); }
.mobile-nav .mobile-nav-phone { justify-content: center; color: var(--teal-2); font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; }
.mobile-nav .mobile-nav-phone::after { display: none; }
.nav-phone:hover {
  transform: translateY(-1px);
  background: color-mix(in oklab, var(--yellow) 88%, white);
  border-color: color-mix(in oklab, var(--yellow) 74%, var(--ink) 12%);
}
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--glass-fill);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  box-shadow: var(--glass-shadow);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .015em;
  white-space: nowrap;
  transition: border-color .35s ease, color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, var(--teal), var(--teal-2)); transform: translateY(102%); transition: transform .45s var(--ease); }
.btn:hover { color: white; border-color: var(--teal); background: linear-gradient(135deg, var(--teal), var(--teal-2)); box-shadow: inset 0 1px 0 color-mix(in oklab, white 28%, transparent), 0 22px 58px -44px rgba(0,0,0,.55); }
.btn:hover::before { transform: translateY(0); }
.btn.light { background: linear-gradient(145deg, color-mix(in oklab, white 82%, transparent), color-mix(in oklab, white 52%, transparent)); color: var(--ink); border-color: color-mix(in oklab, white 62%, transparent); }
.btn.light::before { background: var(--teal); }
.btn.light:hover { color: white; border-color: var(--teal); }
.btn.ghost { color: white; background: linear-gradient(145deg, color-mix(in oklab, white 18%, transparent), color-mix(in oklab, white 7%, transparent)); border-color: color-mix(in oklab, white 28%, transparent); -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%); }
.btn.big { min-height: 58px; padding: 17px 26px; }
.arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: .82em;
  height: .82em;
  margin-left: .08em;
  font-size: 1em;
  vertical-align: -.04em;
  transition: transform .35s var(--ease);
}
.arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-up) center / contain no-repeat;
  mask: var(--icon-arrow-up) center / contain no-repeat;
}
.btn:hover .arrow { transform: translate(3px,-3px); }
.hero {
  position: relative;
  min-height: 760px;
  height: calc(100svh - 48px);
  background: var(--dark);
  color: white;
  overflow: hidden;
}
.hero img.hero-bg, .page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-wrap { position: absolute; inset: 0; }
.hero-bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,23,21,.88), rgba(5,23,21,.48) 48%, rgba(5,23,21,.25)), linear-gradient(180deg, rgba(5,23,21,.16), rgba(5,23,21,.78));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: 0 auto;
  min-height: 100%;
  padding: 132px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 90px;
  align-items: end;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid color-mix(in oklab, white 30%, transparent);
  border-radius: 999px;
  background: color-mix(in oklab, white 10%, transparent);
  color: color-mix(in oklab, white 86%, transparent);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--teal); }
.hero .pill + h1 { margin-top: 30px; }
.hero h1 {
  max-width: 13ch;
  margin: 18px 0 0;
  font-size: 126px;
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 780;
  overflow-wrap: anywhere;
}
.hero h1 em { color: var(--teal); font-style: italic; font-weight: 650; }
.hero h1 mark {
  display: inline-block;
  padding: .01em .11em .045em;
  border-radius: .07em;
  background: linear-gradient(100deg, var(--teal), var(--teal-2));
  color: white;
  box-shadow: none;
  transform: none;
}
.hero h1 mark span { display: inline-block; transform: none; }
.hero-lede { max-width: 50ch; margin: 26px 0 0; color: color-mix(in oklab, white 83%, transparent); font-size: 20px; line-height: 1.55; }
.hero-lede em { color: var(--teal); font-style: italic; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
  align-self: end;
  border: 1px solid color-mix(in oklab, white 22%, transparent);
  background: color-mix(in oklab, white 9%, transparent);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  backdrop-filter: blur(24px) saturate(165%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px -42px rgba(0,0,0,.68);
}
.hero-proof p { margin: 0; padding: 22px; color: color-mix(in oklab, white 77%, transparent); font-size: 14.5px; line-height: 1.55; border-bottom: 1px solid color-mix(in oklab, white 14%, transparent); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; }
.proof-stat { min-height: 96px; padding: 15px 18px; border-right: 1px solid color-mix(in oklab, white 12%, transparent); border-bottom: 1px solid color-mix(in oklab, white 12%, transparent); }
.proof-stat:nth-child(2n) { border-right: 0; }
.proof-stat:nth-last-child(-n + 2) { border-bottom: 0; }
.proof-stat span { display: block; color: color-mix(in oklab, white 52%, transparent); font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.proof-stat strong { display: block; margin-top: 12px; color: white; font-size: 40px; line-height: .9; letter-spacing: -.04em; font-weight: 500; }
.ticker { width: 100%; max-width: 100vw; margin: 0; display: flex; overflow: hidden; overflow-x: clip; contain: paint; overscroll-behavior-x: none; touch-action: pan-y; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--teal); color: white; }
.ticker-track { display: flex; flex: none; align-items: center; gap: 44px; padding: 18px 0; white-space: nowrap; animation: scroll 44s linear infinite; font-size: 42px; line-height: 1; letter-spacing: -.035em; font-weight: 780; }
.ticker-track em { color: color-mix(in oklab, white 82%, transparent); font-style: italic; font-weight: 650; }
.ticker-track .sep { width: 22px; height: 22px; background: var(--ink); transform: skew(-8deg); }
@keyframes scroll { to { transform: translateX(-50%); } }
section, .section { padding: 112px 0; }
.section-inner, .content-wrap { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - (var(--gutter) * 2)), var(--content)); max-width: none; margin: 0 auto; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 84px; align-items: start; }
.lead { margin: 0; max-width: 19ch; font-size: 58px; line-height: 1; letter-spacing: -.04em; font-weight: 690; }
.lead em { color: var(--teal); font-style: italic; font-weight: 600; }
.body-copy { display: grid; gap: 18px; color: var(--ink-2); font-size: 18px; }
.body-copy p { margin: 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 42px; }
.section-head h2, .page-title, .feature-text h2 { margin: 0; max-width: 12ch; font-size: 72px; line-height: .95; letter-spacing: -.045em; font-weight: 720; overflow-wrap: anywhere; }
.section-head h2 em, .page-title em, .feature-text h2 em { color: var(--teal); font-style: italic; font-weight: 600; }
.section-kicker { max-width: 44ch; color: var(--ink-3); margin: 0; }
.discipline-section { padding-top: 132px; border-top: 1px solid var(--line-soft); }
.discipline-list { display: grid; border-top: 1px solid var(--line); }
.discipline-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto 54px;
  gap: clamp(18px, 4vw, 58px);
  align-items: center;
  min-width: 0;
  padding: 40px clamp(18px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  transition: color .45s var(--ease);
}
.discipline-row::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(120deg, var(--teal-dark), var(--dark) 62%, var(--teal-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s var(--ease);
}
.discipline-row:hover { color: white; }
.discipline-row:hover::before { transform: scaleX(1); }
.discipline-no { font-family: var(--f-mono); font-size: 12px; letter-spacing: .13em; color: var(--muted); transition: color .35s ease; }
.discipline-title { margin: 0; font-size: clamp(42px, 5vw, 88px); line-height: .92; letter-spacing: -.05em; font-weight: 760; overflow-wrap: normal; hyphens: auto; }
.discipline-title em { color: var(--teal); font-style: italic; font-weight: 620; transition: color .35s ease; }
.discipline-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); transition: color .35s ease; white-space: nowrap; }
.discipline-arrow { position: relative; width: 54px; height: 54px; border: 1px solid currentColor; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-3); font-size: 0; transition: transform .45s var(--ease), color .35s ease, border-color .35s ease; }
.discipline-arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-up) center / contain no-repeat;
  mask: var(--icon-arrow-up) center / contain no-repeat;
}
.discipline-row:hover .discipline-no, .discipline-row:hover .discipline-meta { color: color-mix(in oklab, white 60%, transparent); }
.discipline-row:hover .discipline-title em, .discipline-row:hover .discipline-arrow { color: var(--yellow); }
.discipline-row:hover .discipline-arrow { transform: rotate(-45deg) scale(1.05); }
.cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card, .news-card, .team-card, .job-card {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--glass-shadow);
  transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
}
.service-card:hover, .news-card:hover, .job-card:hover { transform: translateY(-4px); background: color-mix(in oklab, white 82%, transparent); box-shadow: inset 0 1px 0 color-mix(in oklab, white 82%, transparent), 0 28px 74px -48px rgba(0,0,0,.5); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .card-img img, .news-card:hover .card-img img { transform: scale(1.045); }
.card-body { padding: 22px; }
.meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.service-card h3, .news-card h3, .job-card h3 { margin: 12px 0 0; font-size: 25px; line-height: 1.05; letter-spacing: -.02em; overflow-wrap: anywhere; hyphens: auto; }
.service-card p, .news-card p, .job-card p { margin: 14px 0 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.band { background: var(--dark); color: white; }
.band .section-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
.band h2 { margin: 0; font-size: 76px; line-height: .95; letter-spacing: -.05em; max-width: 11ch; }
.band h2 em { color: var(--teal); font-style: italic; font-weight: 600; }
.band p { margin: 0; color: color-mix(in oklab, white 76%, transparent); font-size: 18px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid color-mix(in oklab, white 12%, transparent); border-left: 1px solid color-mix(in oklab, white 12%, transparent); }
.stat { min-height: 170px; padding: 22px; border-right: 1px solid color-mix(in oklab, white 12%, transparent); border-bottom: 1px solid color-mix(in oklab, white 12%, transparent); background: color-mix(in oklab, white 5%, transparent); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%); box-shadow: inset 0 1px 0 color-mix(in oklab, white 9%, transparent); }
.stat strong { display: block; color: white; font-size: 58px; line-height: 1; font-weight: 520; letter-spacing: -.04em; }
.stat span { display: block; margin-top: 18px; color: color-mix(in oklab, white 65%, transparent); font-size: 14px; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 88px;
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--teal) 10%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in oklab, var(--teal) 8%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in oklab, white 42%, var(--bg)), var(--bg) 76%);
  background-size: 54px 54px, 54px 54px, auto;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 88px 0 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 58%, color-mix(in oklab, var(--yellow) 34%, transparent) 58% 58.4%, transparent 58.4%),
    linear-gradient(180deg, transparent, color-mix(in oklab, white 52%, transparent));
  opacity: .5;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--teal) 50%, transparent), transparent);
}
.page-hero-grid { position: relative; z-index: 1; width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr); gap: clamp(48px, 6.5vw, 116px); align-items: center; }
.page-hero-grid > * { min-width: 0; }
.page-hero-copy { min-width: 0; padding: 20px 0; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid var(--glass-line); border-radius: 999px; background: var(--glass-fill); color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; box-shadow: inset 0 1px 0 color-mix(in oklab, white 64%, transparent); }
.page-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--teal); }
.page-title { max-width: 12ch; font-size: clamp(58px, 5.3vw, 88px); }
.page-summary { margin: 26px 0 0; max-width: 52ch; color: var(--ink-2); font-size: 20px; line-height: 1.65; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero-img { position: relative; height: min(58vh, 610px); min-height: 430px; overflow: hidden; border: 1px solid color-mix(in oklab, white 66%, var(--teal) 18%); border-radius: 8px; background: var(--bg-2); box-shadow: inset 0 1px 0 color-mix(in oklab, white 74%, transparent), 0 44px 110px -76px rgba(0,0,0,.72); }
.page-hero-img::before { content: ""; position: absolute; inset: 16px; z-index: 1; border: 1px solid color-mix(in oklab, white 52%, transparent); border-radius: 6px; pointer-events: none; opacity: .68; }
.page-hero-img::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit; background: linear-gradient(180deg, color-mix(in oklab, white 16%, transparent), transparent 46%, color-mix(in oklab, var(--dark) 22%, transparent)); }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.015); }
.service-rail-section { position: relative; z-index: 3; padding: 0; margin-top: -36px; }
.service-rail {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, white 76%, transparent), color-mix(in oklab, var(--paper) 58%, transparent));
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  box-shadow: var(--glass-shadow);
}
.service-rail a { min-width: 0; padding: 20px; border-right: 1px solid var(--line-soft); transition: background .28s ease, color .28s ease; }
.service-rail a:last-child { border-right: 0; }
.service-rail a:hover, .service-rail a.active { background: linear-gradient(135deg, var(--dark), var(--teal-dark)); color: white; }
.service-rail strong { display: block; margin-top: 9px; font-size: 21px; line-height: 1.05; letter-spacing: -.02em; }
.service-rail span:not(.meta) { display: block; margin-top: 9px; color: color-mix(in oklab, currentColor 68%, transparent); font-size: 13px; line-height: 1.45; }
.content-section { position: relative; padding: 88px 0 132px; background: linear-gradient(180deg, var(--bg), color-mix(in oklab, white 32%, var(--bg))); }
.content-section::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--yellow) 54%, transparent), color-mix(in oklab, var(--teal) 42%, transparent), transparent); }
.content-grid { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: start; }
.article { width: 100%; max-width: none; margin: 0 auto; overflow-wrap: anywhere; }
.content-grid .article, .narrow.article { position: relative; overflow: hidden; padding: clamp(30px, 4vw, 56px); border: 1px solid var(--glass-line); border-radius: 8px; background: var(--glass-fill); -webkit-backdrop-filter: blur(18px) saturate(155%); backdrop-filter: blur(18px) saturate(155%); box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 32px 90px -66px rgba(0,0,0,.5); }
.content-grid .article::before, .narrow.article::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.article h2 { margin: 36px 0 14px; font-size: clamp(26px, 2vw, 32px); line-height: 1.12; letter-spacing: -.018em; }
.article h2:first-child { font-size: clamp(30px, 2.55vw, 40px); line-height: 1.06; letter-spacing: -.028em; }
.article h2:first-child { margin-top: 0; }
.article h2 + h2 { margin-top: 12px; font-size: clamp(24px, 1.8vw, 29px); color: var(--teal-2); }
.service-page .article h2 { margin: 28px 0 12px; font-size: clamp(22px, 1.55vw, 26px); line-height: 1.16; letter-spacing: -.008em; }
.service-page .article h2:first-child { font-size: clamp(24px, 1.8vw, 30px); line-height: 1.12; letter-spacing: -.018em; }
.service-page .article h2:first-child { margin-top: 0; }
.service-page .article h2 + h2 { margin-top: 10px; font-size: clamp(21px, 1.4vw, 24px); color: var(--teal-2); }
.article p { margin: 0 0 18px; color: var(--ink-2); font-size: 18px; line-height: 1.74; }
.article > p:first-child { color: var(--ink); font-size: 20px; line-height: 1.65; }
.article ul { margin: 8px 0 28px clamp(26px, 5vw, 72px); padding: 0; display: grid; gap: 10px; list-style: none; }
.article li { position: relative; padding-left: 24px; color: var(--ink-2); }
.article li::before { content: ""; position: absolute; left: 0; top: .75em; width: 8px; height: 8px; background: var(--teal); transform: skew(-8deg); }
.contact-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 68px); }
.contact-detail-col { min-width: 0; }
.contact-detail-col + .contact-detail-col { border-left: 1px solid var(--line-soft); padding-left: clamp(24px, 3.5vw, 56px); }
.contact-detail-col h2 { margin: 0 0 24px; font-size: clamp(34px, 3vw, 50px); line-height: 1; letter-spacing: -.04em; }
.contact-lines { display: grid; gap: 10px; }
.contact-lines p { margin: 0; color: var(--ink-2); font-size: 18px; line-height: 1.55; }
.contact-lines a { color: var(--teal-2); font-weight: 700; }
.contact-label { color: var(--ink); font-weight: 700; }
.contact-hours { display: grid; gap: 2px; }
.contact-hours div { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); font-size: 18px; line-height: 1.35; }
.contact-hours div:last-child { border-bottom: 0; }
.contact-hours span:first-child { color: var(--teal-2); font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; font-weight: 650; }
.legal-content { padding-top: 72px; }
.legal-shell { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; gap: 22px; }
.legal-toc {
  position: sticky;
  top: 96px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 8px;
  max-height: min(42svh, 260px);
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, var(--paper) 86%, transparent), color-mix(in oklab, white 66%, transparent));
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 26px 72px -58px rgba(0,0,0,.55);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in oklab, var(--teal) 44%, transparent) transparent;
}
.legal-toc::-webkit-scrollbar { width: 8px; height: 8px; }
.legal-toc::-webkit-scrollbar-thumb { background: color-mix(in oklab, var(--teal) 44%, transparent); border-radius: 999px; }
.legal-toc a { min-width: 0; width: 100%; display: inline-flex; align-items: center; gap: 9px; min-height: 38px; padding: 9px 12px; border: 1px solid var(--line-soft); border-radius: 999px; background: color-mix(in oklab, white 42%, transparent); color: var(--ink-2); font-size: 13px; font-weight: 650; line-height: 1.2; white-space: normal; overflow-wrap: anywhere; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease); }
.legal-toc a span { flex: 0 0 auto; min-width: 2.6ch; color: var(--teal-2); font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; white-space: nowrap; }
.legal-toc a:hover { color: var(--ink); border-color: color-mix(in oklab, var(--teal) 36%, white); background: color-mix(in oklab, var(--teal) 9%, white); transform: translateY(-1px); }
.legal-article { display: grid; gap: 16px; }
.legal-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(28px, 4.2vw, 56px);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 34px 96px -72px rgba(0,0,0,.56);
  overflow: clip;
}
.legal-block::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.legal-block-head { min-width: 0; align-self: start; position: relative; top: auto; }
.legal-block-head .meta { color: var(--teal-2); }
.legal-block h2 { margin: 12px 0 0; font-size: clamp(28px, 2.45vw, 42px); line-height: 1.04; letter-spacing: -.035em; hyphens: auto; overflow-wrap: normal; }
.legal-block-body { min-width: 0; display: grid; gap: 16px; }
.legal-block-body p { margin: 0; max-width: none; color: var(--ink-2); font-size: 17.5px; line-height: 1.78; }
.legal-block-body a { color: var(--teal-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-facts { margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 34px; border-top: 1px solid var(--line-soft); }
.legal-facts div { min-width: 0; display: grid; gap: 4px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.legal-facts dt { color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.legal-facts dd { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.aside-panel {
  order: -1;
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(320px, .48fr) minmax(0, 1fr);
  width: 100%;
  min-height: 270px;
  margin: 0 auto 12px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, white 74%, transparent), color-mix(in oklab, var(--paper) 54%, transparent));
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 34px 92px -68px rgba(0,0,0,.56);
  overflow: hidden;
}
.aside-panel::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 5px; background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.aside-panel img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; border-right: 1px solid var(--line-soft); }
.aside-panel .panel-body { min-width: 0; padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.aside-panel h3 { max-width: 12ch; margin: 0; font-size: clamp(34px, 3.6vw, 56px); line-height: .98; letter-spacing: -.04em; }
.aside-panel p { max-width: 58ch; margin: 16px 0 0; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.list-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-top: 28px; }
.list-links a { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 54px; padding: 14px 16px; border: 1px solid var(--line-soft); border-radius: 8px; background: color-mix(in oklab, white 42%, transparent); color: var(--ink-2); line-height: 1.25; overflow-wrap: anywhere; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease); }
.list-links a .arrow { flex: 0 0 auto; }
.list-links a:hover { color: var(--teal-2); border-color: color-mix(in oklab, var(--teal) 34%, white); background: color-mix(in oklab, var(--teal) 8%, white); transform: translateY(-1px); }
.split-feature { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 86px); border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; align-items: stretch; }
.split-feature > * { min-width: 0; }
.split-feature > div:first-child { overflow: hidden; border-radius: 8px; box-shadow: var(--glass-shadow); }
.split-feature img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.feature-text { min-width: 0; padding: 76px 0; display: flex; flex-direction: column; justify-content: center; }
.feature-list { margin: 28px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; color: var(--ink-2); }
.feature-list b { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--yellow); font-family: var(--f-mono); font-size: 12px; color: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.team-card { border: 1px solid var(--glass-line); border-radius: 8px; overflow: hidden; background: var(--glass-fill); }
.team-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.team-card .card-body { padding: 18px; }
.team-card h3 { margin: 8px 0 0; font-size: 22px; line-height: 1.05; }
.team-card p { margin: 6px 0 0; color: var(--ink-3); font-size: 14px; }
.jobs-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.job-card { padding: 28px; border: 1px solid var(--glass-line); border-radius: 8px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-box { border: 1px solid var(--glass-line); border-radius: 8px; background: var(--glass-fill); -webkit-backdrop-filter: blur(20px) saturate(165%); backdrop-filter: blur(20px) saturate(165%); box-shadow: var(--glass-shadow); padding: 28px; }
.contact-box h3 { margin: 0 0 16px; font-size: 30px; line-height: 1.05; }
.contact-box p { margin: 0 0 8px; color: var(--ink-2); }
.inquiry-section { padding-top: 0; }
.contact-page .inquiry-section { padding-top: clamp(44px, 5vw, 78px); }
.inquiry-grid { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: 18px; align-items: stretch; }
.inquiry-copy, .inquiry-form { border: 1px solid var(--glass-line); border-radius: 8px; box-shadow: var(--glass-shadow); }
.inquiry-copy { position: relative; overflow: hidden; padding: clamp(30px, 4vw, 54px); background: linear-gradient(135deg, var(--dark), var(--teal-dark)); color: white; }
.inquiry-copy::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.inquiry-copy h2 { max-width: 10ch; margin: 18px 0 0; font-size: clamp(42px, 4.8vw, 76px); line-height: .94; letter-spacing: -.045em; }
.inquiry-copy h2 em { color: var(--yellow); font-style: italic; font-weight: 600; }
.inquiry-copy p { max-width: 42ch; margin: 22px 0 0; color: color-mix(in oklab, white 76%, transparent); font-size: 17px; line-height: 1.65; }
.inquiry-form { position: relative; display: grid; gap: 16px; padding: clamp(26px, 3.6vw, 46px); background: var(--glass-fill); -webkit-backdrop-filter: blur(20px) saturate(165%); backdrop-filter: blur(20px) saturate(165%); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; border: 1px solid var(--line-soft); border-radius: 8px; background: color-mix(in oklab, white 64%, transparent); color: var(--ink); padding: 14px 15px; outline: none; font: inherit; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.form-field textarea { min-height: 146px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: color-mix(in oklab, var(--teal) 52%, white); background: color-mix(in oklab, white 82%, transparent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--teal) 10%, transparent); }
.form-field input::placeholder, .form-field textarea::placeholder { color: color-mix(in oklab, var(--ink-3) 66%, transparent); }
.form-consent { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.form-consent input { appearance: none; flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; border: 1px solid var(--line); background: color-mix(in oklab, white 58%, transparent); position: relative; }
.form-consent input:checked { background: var(--yellow); border-color: var(--yellow); }
.form-consent input:checked::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 11px; font-weight: 800; }
.form-consent a { color: var(--teal-2); text-decoration: underline; text-underline-offset: 3px; }
.form-status { display: none; padding: 13px 14px; border: 1px solid var(--line-soft); border-radius: 8px; background: color-mix(in oklab, white 44%, transparent); color: var(--ink-2); font-size: 14px; line-height: 1.45; }
.form-status.show { display: block; }
.form-status.ok { border-color: color-mix(in oklab, var(--teal) 42%, white); background: color-mix(in oklab, var(--teal) 9%, white); }
.form-status.error { border-color: color-mix(in oklab, #d64242 46%, white); background: color-mix(in oklab, #d64242 11%, white); color: var(--ink); }
.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.hours { display: grid; gap: 8px; margin-top: 16px; }
.hours div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); }
.blog-feature { display: grid; min-width: 0; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 0; border: 1px solid var(--glass-line); border-radius: 8px; overflow: hidden; background: var(--glass-fill); -webkit-backdrop-filter: blur(20px) saturate(165%); backdrop-filter: blur(20px) saturate(165%); box-shadow: var(--glass-shadow); }
.blog-feature > * { min-width: 0; }
.blog-feature img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.blog-feature .feature-text { padding: 42px; }
.blog-feature .feature-text h2 { max-width: 20ch; font-size: clamp(30px, 2.6vw, 44px); line-height: 1.04; letter-spacing: -.03em; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.post-article .page-title { font-size: 64px; max-width: 15ch; }
.post-nav { display: flex; justify-content: space-between; gap: 18px; padding-top: 40px; margin-top: 42px; border-top: 1px solid var(--line); }
.post-link-section { padding: 46px 0 112px; }
.post-link-actions { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: flex; justify-content: center; gap: 12px; padding: 24px; border: 1px solid var(--glass-line); border-radius: 8px; background: var(--glass-fill); -webkit-backdrop-filter: blur(18px) saturate(155%); backdrop-filter: blur(18px) saturate(155%); box-shadow: inset 0 1px 0 color-mix(in oklab, white 76%, transparent), 0 28px 80px -64px rgba(0,0,0,.48); }
.cta-band { background: var(--yellow); color: var(--ink); }
.cta-inner { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.cta-inner h2 { margin: 0; font-size: 70px; line-height: .95; letter-spacing: -.045em; }
.cta-inner p { margin: 16px 0 0; max-width: 46ch; color: var(--ink-2); }
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 260;
  width: min(calc(100% - 44px), 620px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  max-height: calc(100svh - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in oklab, var(--paper) 96%, white), color-mix(in oklab, white 92%, var(--paper)));
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  box-shadow: inset 0 1px 0 color-mix(in oklab, white 78%, transparent), 0 34px 100px -56px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
  transition: opacity .32s ease, transform .45s var(--ease);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-copy { min-width: 0; }
.cookie-copy h2 { margin: 8px 0 0; font-size: 28px; line-height: 1.05; letter-spacing: -.025em; }
.cookie-copy p { margin: 10px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.cookie-copy a { display: inline-flex; margin-top: 10px; color: var(--teal-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cookie-settings { grid-column: 1 / -1; display: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.cookie-banner.settings-open .cookie-settings { display: grid; }
.cookie-option { min-width: 0; display: flex; gap: 10px; align-items: flex-start; padding: 13px; border: 1px solid var(--line-soft); border-radius: 8px; background: color-mix(in oklab, white 46%, transparent); }
.cookie-option input { margin-top: 3px; accent-color: var(--teal); }
.cookie-option strong { display: block; line-height: 1.1; }
.cookie-option small { display: block; margin-top: 5px; color: var(--ink-3); font-size: 12px; line-height: 1.35; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-btn, .footer-cookie { font: inherit; }
.cookie-btn {
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: color-mix(in oklab, white 52%, transparent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}
.cookie-btn:hover { transform: translateY(-1px); border-color: color-mix(in oklab, var(--teal) 34%, white); }
.cookie-btn.primary { background: var(--yellow); border-color: color-mix(in oklab, var(--yellow) 62%, var(--ink) 18%); }
.cookie-btn.ghost { color: var(--teal-2); }
.footer-cookie { padding: 0; color: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-cookie:hover { color: var(--yellow); }
footer { overflow: hidden; background: var(--dark); color: var(--bg); }
.foot-inner { width: min(calc(100% - (var(--gutter) * 2)), var(--max)); margin: 0 auto; padding: 88px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 74px; padding-bottom: 64px; border-bottom: 1px solid color-mix(in oklab, white 10%, transparent); }
.foot-logo-wrap img { width: auto; height: 36px; filter: brightness(0) invert(1); opacity: .92; }
.foot-tagline { max-width: 38ch; margin: 28px 0 0; color: color-mix(in oklab, white 74%, transparent); font-size: 15.5px; line-height: 1.6; }
.foot-tagline em { color: var(--yellow); font-style: italic; }
.foot-col h4 { margin: 0 0 20px; color: var(--yellow); font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 6px 0; color: color-mix(in oklab, white 86%, transparent); font-size: 14.5px; }
.foot-col a { display: inline-block; transition: color .25s ease, transform .25s var(--ease); }
.foot-col a:hover { color: var(--yellow); transform: translateX(4px); }
.foot-mark { width: 100vw; margin: 42px 0 0 calc(50% - 50vw); padding: .08em clamp(14px, 1.8vw, 30px) .12em; overflow: hidden; white-space: nowrap; text-align: center; font-size: clamp(34px, 8.45vw, 158px); line-height: .98; letter-spacing: -.072em; font-weight: 780; color: transparent; background: linear-gradient(180deg, color-mix(in oklab, var(--teal) 76%, transparent), transparent); -webkit-background-clip: text; background-clip: text; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; color: color-mix(in oklab, white 55%, transparent); font-family: var(--f-mono); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.foot-bottom a:hover { color: var(--yellow); }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 24px; }
  .nav-links, .nav-phone, .mega-menu { display: none; }
  .nav-cta { justify-content: end; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .mobile-nav { display: grid; gap: 4px; }
  .site-nav.menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero { height: auto; }
  .hero-content { min-height: 860px; grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 92px; }
  .hero-proof { max-width: 560px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .discipline-row { grid-template-columns: 62px minmax(0, 1fr) 54px; padding-left: 24px; padding-right: 24px; }
  .discipline-meta { display: none; }
  .intro-grid, .band .section-inner, .content-grid, .page-hero-grid, .split-feature, .blog-feature, .contact-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .page-hero-grid { align-items: start; }
  .page-hero-img { height: 430px; min-height: 360px; }
  .aside-panel { position: relative; grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr); }
  .legal-block { grid-template-columns: 1fr; }
  .legal-block-head { position: relative; top: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid, .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .service-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-rail a:nth-child(2n) { border-right: 0; }
  .service-rail a:nth-child(-n + 2) { border-bottom: 1px solid var(--line-soft); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section-head { display: block; }
  .section-head .btn { margin-top: 20px; }
  .section-head h2 { max-width: 11ch; }
}
@media (max-width: 720px) {
  html, body { background-color: #ffffff !important; }
  main { background: var(--bg); }
  .site-nav {
    background: rgba(255, 255, 255, .78);
    -webkit-backdrop-filter: blur(22px) saturate(175%);
    backdrop-filter: blur(22px) saturate(175%);
    border-bottom-color: color-mix(in oklab, white 58%, var(--line-soft));
  }
  .site-nav::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: max(58px, env(safe-area-inset-top, 0px));
    background: #ffffff;
    pointer-events: none;
  }
  :root { --gutter: 22px; }
  body { font-size: 16px; }
  .site-nav { top: 0; }
  .nav-inner { gap: 10px; padding-top: 8px; padding-bottom: 8px; }
  .brand-logo { height: 28px; max-width: 50vw; object-fit: contain; }
  .nav-toggle { width: 40px; height: 40px; }
  .mobile-nav {
    top: calc(100% + 1px);
    left: calc(var(--gutter) * -1);
    right: calc(var(--gutter) * -1);
    width: auto;
    max-height: calc(100svh - 58px);
    overflow-y: auto;
    padding: 14px var(--gutter) 16px;
    border-left: 0;
    border-right: 0;
    border-radius: 0 0 8px 8px;
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 26px 60px -44px rgba(0,0,0,.58);
  }
  .mobile-nav-group, .mobile-nav-pages, .mobile-nav-actions { background: white; }
  .mobile-nav a { background: white; }
  .mobile-nav .mobile-nav-overview { background: color-mix(in oklab, var(--teal) 10%, white); }
  .nav-cta .btn { min-width: 132px; min-height: 40px; padding: 9px 11px; gap: 8px; font-size: 12px; }
  .hero-content { min-height: calc(100svh - 48px); padding-top: 84px; padding-bottom: 38px; }
  .hero .pill { display: none; }
  .hero .pill + h1 { margin-top: 24px; }
  .hero h1 { font-size: 52px; letter-spacing: -.045em; }
  .hero-lede { font-size: 15.5px; }
  .hero-proof { display: none; }
  .ticker-track { font-size: 27px; }
  section, .section { padding: 76px 0; }
  .discipline-section { padding-top: 90px; }
  [id] { scroll-margin-top: 96px; }
  .discipline-row { grid-template-columns: 34px minmax(0, 1fr) 38px; gap: 10px; padding: 26px 14px; }
  .discipline-row:hover { padding-left: 14px; padding-right: 14px; }
  .discipline-row::before { inset: 4px 0; }
  .discipline-no { font-size: 11px; }
  .discipline-title { font-size: clamp(31px, 9.4vw, 38px); letter-spacing: -.035em; }
  .discipline-arrow { width: 38px; height: 38px; }
  .lead, .section-head h2, .band h2, .cta-inner h2 { font-size: 44px; }
  .page-title, .post-article .page-title { font-size: 44px; }
  .team-intro-section { display: none; }
  .section-head { display: block; }
  .section-kicker { margin-top: 14px; }
  .cards-grid, .blog-grid, .jobs-grid, .team-grid, .stats { grid-template-columns: 1fr; }
  .service-rail-section { margin-top: -20px; }
  .service-rail { grid-template-columns: 1fr; }
  .service-rail a, .service-rail a:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .service-rail a:last-child { border-bottom: 0; }
  .page-hero { padding-top: 100px; padding-bottom: 56px; }
  .page-summary { font-size: 17px; }
  .page-hero-img { height: 300px; min-height: 300px; }
  .content-grid .article, .narrow.article { padding: 26px; }
  .article ul { margin-left: 16px; }
  .contact-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-detail-col + .contact-detail-col { border-left: 0; padding-left: 0; padding-top: 28px; border-top: 1px solid var(--line-soft); }
  .contact-detail-col h2 { font-size: 34px; }
  .contact-lines p, .contact-hours div { font-size: 16px; }
  .legal-content { padding-top: 50px; }
  .legal-shell { gap: 16px; }
  .legal-toc { position: relative; top: auto; grid-template-columns: 1fr; max-height: 230px; padding: 10px; }
  .legal-toc a { font-size: 12px; }
  .legal-block { padding: 26px; gap: 18px; }
  .legal-block h2 { font-size: clamp(24px, 7.4vw, 28px); }
  .legal-block-body { gap: 14px; }
  .legal-block-body p { font-size: 16px; line-height: 1.72; }
  .legal-facts { grid-template-columns: 1fr; }
  .aside-panel { grid-template-columns: 1fr; min-height: 0; }
  .aside-panel img { height: 260px; min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .aside-panel .panel-body { padding: 26px; }
  .aside-panel h3 { font-size: 34px; }
  .list-links { grid-template-columns: 1fr; }
  .feature-text { padding: 58px var(--gutter); }
  .blog-feature .feature-text { padding: 28px var(--gutter) 30px; }
  .blog-feature .feature-text h2 { max-width: none; font-size: 24px !important; line-height: 1.14; letter-spacing: -.018em; }
  .blog-feature .feature-text .page-summary { margin-top: 14px; font-size: 15.5px; line-height: 1.55; }
  .blog-grid .news-card h3 { font-size: 21px; line-height: 1.16; letter-spacing: -.012em; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-copy h2 { font-size: 44px; }
  .split-feature img { min-height: 360px; }
  .blog-feature img { min-height: 300px; }
  .post-link-section { padding: 30px 0 72px; }
  .post-link-actions { flex-direction: column; align-items: stretch; padding: 18px; }
  .post-link-actions .btn { width: 100%; justify-content: center; }
  .cta-inner { grid-template-columns: 1fr; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; align-items: start; max-height: calc(100svh - 24px); padding: 14px; }
  .cookie-settings { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 calc(50% - 4px); padding-left: 10px; padding-right: 10px; }
  .post-nav { display: grid; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-mark { font-size: clamp(32px, 8.6vw, 58px); }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-cta { display: none; }
}
@media (max-width: 360px) {
  :root { --gutter: 14px; }
  .nav-inner { gap: 8px; }
  .brand-logo { height: 24px; max-width: 47vw; }
  .nav-toggle { width: 38px; height: 38px; }
  .nav-toggle span { width: 17px; }
  .nav-cta .btn { min-width: 112px; min-height: 38px; padding: 8px 9px; font-size: 11px; }
  .nav-cta .btn .arrow { display: none; }
  .hero h1 { font-size: 46px; }
  .pill { padding: 7px 10px; font-size: 10px; letter-spacing: .1em; }
}
@media (max-width: 1180px) {
  :root { --safe-top-bg: env(safe-area-inset-top, 0px); }
  html, body { background: #ffffff !important; background-color: #ffffff !important; color-scheme: light; }
  html::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 80;
    height: var(--safe-top-bg);
    background: #ffffff;
    pointer-events: none;
  }
  body::before { top: calc(var(--safe-top-bg) + 58px); }
  body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 96;
    height: var(--safe-top-bg);
    background: #ffffff;
    pointer-events: none;
  }
  .scroll-progress { top: calc(var(--safe-top-bg) + 58px); }
  .site-nav {
    top: 0;
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(22px) saturate(175%);
    backdrop-filter: blur(22px) saturate(175%);
    border-bottom-color: color-mix(in oklab, white 58%, var(--line-soft));
    box-shadow: 0 -120px 0 120px #ffffff, 0 1px 0 color-mix(in oklab, var(--ink) 7%, transparent);
  }
  .site-nav::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: var(--safe-top-bg);
    background: #ffffff;
    pointer-events: none;
  }
  .site-nav.scrolled { box-shadow: 0 -120px 0 120px #ffffff, 0 18px 46px -34px rgba(0,0,0,.42); }
  .site-nav.menu-open { background: rgba(255, 255, 255, .96); }
  .nav-toggle {
    border-color: var(--line-soft);
    background: white;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--ink);
    box-shadow: none;
  }
  .nav-toggle::after { display: none; }
  .mobile-nav {
    top: calc(100% + 1px);
    left: calc(50% - 50vw);
    right: auto;
    width: 100vw;
    max-height: calc(100svh - 57px);
    padding: 18px var(--gutter) 22px;
    border: 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: white;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 22px 54px -38px rgba(0,0,0,.42);
    transform: translateY(-8px);
    transform-origin: top center;
  }
  .site-nav.menu-open .mobile-nav { transform: translateY(0); }
  .mobile-nav-head {
    display: flex;
    align-items: flex-end;
    padding: 0 0 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    background: transparent;
    color: var(--ink);
  }
  .mobile-nav-head span { color: var(--teal-2); }
  .mobile-nav-head strong {
    max-width: none;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.05;
  }
  .mobile-nav-group, .mobile-nav-pages, .mobile-nav-actions {
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .mobile-nav-label {
    margin: 20px 0 4px;
    color: var(--teal-2);
    font-size: 11px;
    letter-spacing: .16em;
  }
  .mobile-nav-label::after { display: none; }
  .mobile-nav-services, .mobile-nav-pages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .mobile-nav-pages { margin-top: 14px; }
  .mobile-nav a {
    min-height: 54px;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 19px;
    font-weight: 720;
    line-height: 1.15;
    transform: none;
  }
  .mobile-nav a::after {
    width: 8px;
    height: 8px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    background: transparent;
    -webkit-mask: none;
    mask: none;
    opacity: .42;
    transform: rotate(-45deg);
  }
  .mobile-nav a:hover, .mobile-nav a.active {
    background: transparent;
    border-color: var(--line-soft);
    color: var(--teal-2);
    transform: none;
  }
  .mobile-nav .mobile-nav-overview {
    background: transparent;
    color: var(--ink);
  }
  .mobile-nav .mobile-nav-service {
    position: relative;
    min-height: 46px;
    align-items: center;
    padding: 12px 0 12px 18px;
    color: var(--ink-2);
    font-size: 16px;
    font-weight: 650;
  }
  .mobile-nav .mobile-nav-service::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 7px;
    height: 1px;
    background: var(--line);
  }
  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
  }
  .mobile-nav-actions a {
    justify-content: center;
    min-height: 50px;
    padding: 13px 16px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 760;
  }
  .mobile-nav-actions a::after { display: none; }
  .mobile-nav .mobile-nav-apply {
    background: var(--yellow);
    border-color: color-mix(in oklab, var(--yellow) 66%, var(--ink) 14%);
    color: var(--ink);
  }
  .mobile-nav .mobile-nav-apply.active {
    background: var(--yellow);
    border-color: color-mix(in oklab, var(--yellow) 66%, var(--ink) 14%);
    color: var(--ink);
  }
  .mobile-nav .mobile-nav-phone {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    font-size: 13px;
  }
}
