:root {
  --forest-950: #0b2e4f;
  --forest-900: #123b63;
  --forest-800: #18527f;
  --forest-700: #2f80ba;
  --sage: #91b8cf;
  --accent: #bedce9;
  --accent-bright: #dceef5;
  --cream: #f1f7fa;
  --paper: #ffffff;
  --white: #fff;
  --ink: #0b3256;
  --muted: #587084;
  --line: rgba(11, 50, 86, 0.16);
  --shadow: 0 24px 65px rgba(11, 46, 79, 0.13);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

::selection { background: var(--accent); color: var(--forest-950); }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--forest-950);
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(11, 46, 79, 0.06);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest-950);
  box-shadow: 0 8px 30px rgba(10, 32, 27, 0.08);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 13px; line-height: 1; }
.brand-mark { width: 44px; height: 44px; color: currentColor; fill: none; overflow: visible; }
img.brand-mark { object-fit: cover; object-position: left center; }
.brand-orbit { fill: none; stroke: currentColor; stroke-width: 1.25; opacity: 0.7; }
.brand-spokes { fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; transition: stroke 180ms ease; }
.brand-nodes circle { fill: var(--white); stroke: currentColor; stroke-width: 1.35; transition: fill 180ms ease; }
.brand-nodes circle:nth-child(even) { fill: var(--accent); }
.brand-hub { fill: var(--white); stroke: currentColor; stroke-width: 1.75; }
.brand-hub-core { fill: var(--forest-700); stroke: none; transform-box: fill-box; transform-origin: center; transition: transform 180ms ease; }
.brand:hover .brand-spokes { stroke: var(--forest-700); }
.brand:hover .brand-nodes circle { fill: var(--accent-bright); }
.brand:hover .brand-hub-core { transform: scale(1.35); }
.brand-copy { display: grid; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.105em; text-transform: uppercase; }
.brand-copy strong { font-size: 15px; letter-spacing: 0.035em; }
.brand-footer .brand-nodes circle, .brand-footer .brand-hub { fill: var(--forest-950); }
.brand-footer img.brand-mark { filter: brightness(0) invert(1); }

.site-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: -7px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-accent { background: var(--forest-700); color: var(--white); }
.button-accent:hover { background: var(--forest-800); }
.button-light { background: var(--paper); color: var(--forest-950); }
.button-light:hover { background: var(--white); }
.button-wide { width: 100%; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest-700);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow-light { color: var(--accent); }

.hero {
  position: relative;
  min-height: 0;
  height: auto;
  padding-top: 86px;
  background: var(--white);
  color: var(--forest-950);
  overflow: hidden;
}

.hero-media { position: relative; }
.hero-media {
  height: clamp(390px, 43vw, 575px);
  background-image: url("assets/hero-consulting.jpg");
  background-size: cover;
  background-position: center;
  transform: none;
  animation: none;
}
.hero-media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 118px;
  height: 42px;
  transform: translateX(-50%);
  background: var(--white);
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}
.hero-shade { display: none; }

@keyframes hero-settle { to { transform: scale(1); } }

.hero-grid {
  position: relative;
  z-index: 2;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.48fr);
  align-items: start;
  gap: 95px;
  padding-top: 62px;
  padding-bottom: 72px;
}

.hero-copy { align-self: center; }
.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(50px, 4.5vw, 70px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.038em;
}
.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: var(--forest-800);
  font-size: 14px;
  font-weight: 750;
  padding-bottom: 3px;
}
.text-link-light { color: var(--forest-800); }
.hero .eyebrow-light { color: var(--forest-700); }
.hero-points {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-points li { display: flex; align-items: center; gap: 10px; }
.hero-points li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--forest-700); }

.hero-note {
  align-self: center;
  justify-self: end;
  width: 100%;
  margin-bottom: 0;
  padding: 32px 28px;
  background: var(--cream);
  color: var(--forest-950);
  border-top: 5px solid var(--accent);
  box-shadow: none;
}
.hero-note-number { color: var(--forest-700); font-size: 11px; letter-spacing: 0.12em; font-weight: 800; }
.hero-note p { margin: 12px 0 0; font-family: var(--serif); font-size: 20px; line-height: 1.25; }

.scroll-cue { display: none; }
.scroll-cue i { position: relative; width: 46px; height: 1px; background: rgba(255, 255, 255, 0.4); }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); }

.audience-strip { background: var(--forest-900); color: var(--white); padding: 56px 0 48px; }
.audience-inner { min-height: 0; display: block; }
.audience-inner > p { margin: 0 0 34px; text-align: center; color: var(--accent); font-family: var(--serif); font-size: 25px; }
.audience-inner ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; list-style: none; margin: 0; padding: 0; }
.audience-inner li { display: grid; justify-items: center; gap: 14px; font-weight: 700; font-size: 14px; letter-spacing: 0.02em; text-align: center; }
.audience-icon { width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; }
.audience-icon svg { width: 47px; height: 47px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 126px 0; }
.section-kicker { display: flex; align-items: center; gap: 18px; color: var(--forest-700); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.section-kicker i { display: block; width: 56px; height: 1px; background: currentColor; }
.section-intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.7fr 2fr; gap: 80px; align-items: start; }
.intro-side { min-width: 0; }
.intro-portrait { position: relative; height: 390px; margin: 43px 0 0; overflow: hidden; border-radius: 0 54px 0 0; background: linear-gradient(145deg, var(--cream), var(--accent-bright)); border: 1px solid rgba(47,128,186,0.12); }
.intro-portrait::before { content: ""; position: absolute; width: 235px; height: 235px; left: 50%; top: 48px; transform: translateX(-50%); border: 1px solid rgba(47,128,186,0.2); border-radius: 50%; background: var(--accent); }
.intro-portrait img { position: absolute; z-index: 1; width: 114%; max-width: none; height: auto; left: 50%; bottom: -105px; transform: translateX(-50%); filter: drop-shadow(0 18px 25px rgba(11,46,79,0.15)); }
.intro-portrait figcaption { position: absolute; z-index: 2; inset: auto 0 0; min-height: 66px; padding: 13px 17px; display: grid; align-content: center; gap: 2px; background: rgba(255,255,255,0.95); border-top: 1px solid var(--line); }
.intro-portrait figcaption strong { color: var(--forest-950); font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.1; }
.intro-portrait figcaption span { color: var(--forest-700); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.intro-copy h2 {
  margin: 0;
  max-width: 890px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 48px; }
.intro-columns p { margin: 0; color: var(--muted); }

.section-services { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.7fr 0.7fr; gap: 70px; align-items: end; margin-bottom: 64px; }
.section-heading h2, .process-sticky h2, .faq-grid h2 {
  margin: 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.section-heading > p { margin: 0; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  padding: 34px 32px 31px;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0 58px 0 0;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(11, 46, 79, 0.06);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { z-index: 2; transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.service-card-featured { background: var(--white); }
.service-number { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; }
.service-icon { width: 76px; height: 76px; margin-top: 42px; display: grid; place-items: center; color: var(--forest-700); border: 1px solid var(--forest-700); border-radius: 50%; }
.service-icon svg { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 21px 0 11px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.1; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card > a:not(.button) { width: fit-content; margin-top: auto; padding-top: 24px; display: flex; gap: 10px; font-size: 13px; font-weight: 750; }
.service-card-cta { grid-column: span 2; display: flex; flex-direction: column; justify-content: flex-end; background: var(--forest-900); color: var(--white); border-radius: 0 58px 0 0; }
.service-card-cta:hover { background: var(--forest-800); }
.service-card-cta h3 { max-width: 650px; margin: 0 0 28px; font-size: 34px; }
.service-card-cta .button { align-self: flex-start; }

.digital-addon { margin-top: 22px; display: grid; grid-template-columns: 0.82fr 1.48fr; overflow: hidden; border-radius: 0 70px 0 0; background: var(--forest-950); color: var(--white); box-shadow: 0 24px 60px rgba(11,46,79,0.14); }
.digital-addon-head { padding: 48px 42px 42px; display: flex; flex-direction: column; align-items: flex-start; border-right: 1px solid rgba(255,255,255,0.13); }
.digital-addon-head h3 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 3.2vw, 46px); font-weight: 500; line-height: 1.03; letter-spacing: -0.035em; }
.digital-addon-head > p:not(.eyebrow) { margin: 22px 0 31px; color: rgba(255,255,255,0.67); font-size: 14px; }
.digital-addon-head .text-link { margin-top: auto; display: inline-flex; align-items: center; color: var(--accent); font-size: 14px; font-weight: 750; line-height: 1.2; }
.digital-addon-head .text-link:hover { color: var(--white); }
.digital-addon-services { display: grid; grid-template-columns: 1fr 1fr; }
.digital-addon-item { min-width: 0; padding: 45px 36px 42px; display: flex; flex-direction: column; }
.digital-addon-item + .digital-addon-item { border-left: 1px solid rgba(255,255,255,0.13); }
.digital-addon-icon { width: 58px; height: 58px; margin-bottom: 27px; display: grid; place-items: center; border: 1px solid rgba(190,220,233,0.55); border-radius: 50%; color: var(--accent); }
.digital-addon-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.digital-addon-item > span { display: block; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.digital-addon-item h4 { margin: 13px 0 15px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.08; }
.digital-addon-item p { margin: 0; color: rgba(255,255,255,0.62); font-size: 13px; }
.digital-certificate-link { width: fit-content; margin-top: auto; display: inline-flex; align-items: center; gap: 10px; padding-bottom: 3px; border-bottom: 1px solid rgba(190,220,233,0.55); color: var(--accent); font-size: 14px; font-weight: 750; line-height: 1.2; }
.digital-certificate-link:hover { color: var(--white); border-color: var(--white); }

.specialist-network { margin-top: 22px; padding: 36px 40px; display: grid; grid-template-columns: 132px 1fr 0.62fr; align-items: center; gap: 42px; background: var(--white); border-top: 3px solid var(--accent); box-shadow: 0 14px 40px rgba(11,46,79,0.07); }
.specialist-network-intro { margin-top: 78px; }
.specialist-network-visual { width: 116px; height: 116px; display: grid; place-items: center; color: var(--forest-700); }
.specialist-network-visual svg { width: 100%; height: 100%; fill: none; }
.network-orbit { stroke: currentColor; stroke-width: 1; opacity: 0.35; }
.network-lines { stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; opacity: 0.7; }
.network-dots circle { fill: var(--white); stroke: currentColor; stroke-width: 1.5; }
.network-dots circle:nth-child(even) { fill: var(--accent); }
.network-center { fill: var(--white); stroke: var(--forest-800); stroke-width: 1.8; }
.network-core { fill: var(--forest-700); stroke: none; }
.specialist-network-copy .eyebrow { margin-bottom: 11px; }
.specialist-network-copy h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.06; letter-spacing: -0.025em; }
.specialist-network-copy > p:not(.eyebrow) { max-width: 650px; margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.specialist-network-promise { padding-left: 34px; border-left: 1px solid var(--line); }
.specialist-network-promise span { display: block; margin-bottom: 9px; color: var(--forest-700); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.specialist-network-promise strong { display: block; color: var(--forest-950); font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.18; }

/* Service detail pages */
.service-detail-page { background: var(--white); }
.service-detail-hero-grid > *,
.service-detail-intro > *,
.service-focus-grid > *,
.service-detail-heading > *,
.service-faq-grid > * { min-width: 0; }
.service-detail-page h1,
.service-detail-page h2,
.service-detail-page h3,
.service-breadcrumb { overflow-wrap: anywhere; hyphens: auto; }
.service-detail-hero { position: relative; overflow: hidden; padding-top: 92px; background: var(--cream); }
.service-detail-hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -210px; top: -205px; border: 1px solid rgba(47,128,186,0.17); border-radius: 50%; box-shadow: 0 0 0 75px rgba(190,220,233,0.09), 0 0 0 150px rgba(190,220,233,0.06); }
.service-breadcrumb { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; padding-top: 34px; color: var(--muted); font-size: 12px; }
.service-breadcrumb a { color: var(--forest-700); font-weight: 750; }
.service-detail-hero-grid { position: relative; z-index: 1; min-height: 610px; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 72px; align-items: center; padding-block: 62px 84px; }
.service-detail-copy h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 88px); font-weight: 500; line-height: 0.98; letter-spacing: -0.05em; }
.service-detail-lead { max-width: 760px; margin: 29px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.service-detail-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.service-detail-actions .text-link { color: var(--forest-800); font-size: 13px; font-weight: 750; }
.service-snapshot { align-self: stretch; padding: 40px 34px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 0 62px 0 0; background: var(--forest-950); color: var(--white); box-shadow: var(--shadow); }
.service-snapshot-number { display: block; margin-bottom: auto; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: 0.15em; }
.service-snapshot h2 { margin: 70px 0 21px; font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.08; }
.service-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-keywords li { padding: 7px 10px; border: 1px solid rgba(190,220,233,0.3); border-radius: 999px; color: rgba(255,255,255,0.73); font-size: 10px; font-weight: 750; letter-spacing: 0.035em; }
.service-detail-section { padding: 112px 0; }
.service-detail-section-muted { background: var(--cream); }
.service-detail-intro { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; align-items: start; }
.service-section-label { display: flex; align-items: center; gap: 15px; color: var(--forest-700); font-size: 10px; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.service-section-label::after { content: ""; width: 44px; height: 1px; background: var(--forest-700); opacity: 0.45; }
.service-detail-intro h2, .service-detail-heading h2 { margin: 0; max-width: 850px; font-family: var(--serif); font-size: clamp(42px, 4.2vw, 64px); font-weight: 500; line-height: 1.03; letter-spacing: -0.04em; }
.service-detail-intro-copy > p { max-width: 800px; margin: 26px 0 0; color: var(--muted); font-size: 17px; }
.service-benefit-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-benefit-card { min-height: 285px; padding: 33px 30px; display: flex; flex-direction: column; border-top: 3px solid var(--accent); background: var(--white); box-shadow: 0 12px 36px rgba(11,46,79,0.07); }
.service-benefit-card > span { color: var(--forest-700); font-size: 10px; font-weight: 850; letter-spacing: 0.14em; }
.service-benefit-card h3 { margin: 48px 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.08; }
.service-benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: start; }
.service-focus-copy h2 { margin: 18px 0 25px; font-family: var(--serif); font-size: clamp(42px, 4.2vw, 64px); font-weight: 500; line-height: 1.03; letter-spacing: -0.04em; }
.service-focus-copy > p { margin: 0; max-width: 620px; color: var(--muted); }
.service-focus-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-focus-list li { min-height: 88px; display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); }
.service-focus-list span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--forest-700); border-radius: 50%; color: var(--forest-700); font-size: 10px; font-weight: 850; }
.service-focus-list strong { color: var(--forest-950); font-size: 15px; }
.service-note { margin-top: 28px; padding: 20px 22px; border-left: 3px solid var(--accent); background: var(--cream); color: var(--muted); font-size: 12px; }
.service-detail-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.service-detail-heading > p { max-width: 430px; margin: 0; color: var(--muted); }
.service-steps { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-step { min-height: 310px; padding: 34px 30px; border: 1px solid var(--line); background: var(--white); }
.service-step > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-950); color: var(--accent); font-size: 11px; font-weight: 850; }
.service-step h3 { margin: 54px 0 13px; font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.08; }
.service-step p { margin: 0; color: var(--muted); font-size: 14px; }
.service-faq-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 85px; align-items: start; }
.service-faq-grid h2 { margin: 17px 0 0; font-family: var(--serif); font-size: clamp(42px, 4.1vw, 62px); font-weight: 500; line-height: 1.03; letter-spacing: -0.04em; }
.service-faq-grid .accordion { border-top: 1px solid var(--line); }
.service-detail-contact { position: relative; }
.service-contact-topic { margin: 0 auto 24px; padding: 10px 14px; width: fit-content; border: 1px solid rgba(190,220,233,0.38); border-radius: 999px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.service-detail-page .site-footer { margin-top: 0; }

@media (max-width: 1020px) {
  .service-detail-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .service-snapshot { min-height: 350px; }
  .service-detail-intro, .service-faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .service-focus-grid { gap: 50px; }
}

@media (max-width: 780px) {
  .service-detail-hero { padding-top: 74px; }
  .service-breadcrumb { padding-top: 26px; }
  .service-detail-hero-grid { min-height: 0; padding-block: 48px 70px; }
  .service-detail-copy h1 { font-size: clamp(46px, 13vw, 62px); }
  .service-detail-lead { font-size: 17px; }
  .service-snapshot { min-height: 330px; padding: 32px 26px; border-radius: 0 46px 0 0; }
  .service-snapshot h2 { margin-top: 55px; }
  .service-detail-section { padding: 86px 0; }
  .service-benefit-grid, .service-steps, .service-focus-grid { grid-template-columns: 1fr; }
  .service-benefit-card, .service-step { min-height: 265px; }
  .service-focus-grid { gap: 42px; }
  .service-detail-heading { display: block; }
  .service-detail-heading > p { margin-top: 22px; }
  .service-faq-grid { gap: 35px; }
}

.section-process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 110px; }
.process-sticky { position: sticky; top: 140px; align-self: start; }
.process-sticky > p:not(.eyebrow) { margin: 25px 0 28px; max-width: 470px; color: var(--muted); }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 43px 0 47px; border-bottom: 1px solid var(--line); }
.process-item > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--forest-700); border-radius: 50%; color: var(--forest-700); font-size: 11px; font-weight: 800; }
.process-tag { margin: 1px 0 7px; color: var(--forest-700) !important; font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.process-item h3 { margin: 0; font-family: var(--serif); font-size: 35px; font-weight: 500; line-height: 1.2; }
.process-item p { margin: 12px 0 0; color: var(--muted); }

.section-profile { position: relative; overflow: hidden; background: var(--forest-950); color: var(--white); }
.profile-orbit { position: absolute; width: 720px; height: 720px; right: -190px; top: -260px; border: 1px solid rgba(185, 215, 226, 0.16); border-radius: 50%; }
.profile-orbit::before, .profile-orbit::after { content: ""; position: absolute; border: 1px solid rgba(185, 215, 226, 0.11); border-radius: inherit; }
.profile-orbit::before { inset: 80px; }
.profile-orbit::after { inset: 165px; background: rgba(185, 215, 226, 0.025); }
.profile-grid { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 88px; align-items: start; }
.profile-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 0 72px 0 0; background: var(--forest-900); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24); }
.profile-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(6, 31, 52, 0.78)); pointer-events: none; }
.profile-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.profile-visual:hover img { transform: scale(1.018); }
.profile-visual figcaption { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 25px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,0.88); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.profile-visual figcaption span { width: 34px; height: 1px; flex: 0 0 auto; background: var(--accent); }
.profile-copy { min-width: 0; }
.profile-head h2 { margin: 0; max-width: 610px; font-family: var(--serif); font-size: clamp(46px, 4.15vw, 64px); font-weight: 500; line-height: 1.02; letter-spacing: -0.04em; }
.profile-lead { margin: 28px 0 35px; color: rgba(255, 255, 255, 0.75); font-size: 18px; }
.value-list { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.value-list article { display: grid; grid-template-columns: 42px 1fr; gap: 21px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.value-list article > span { color: var(--accent); font-size: 11px; font-weight: 800; }
.value-list h3 { margin: 0; font-size: 16px; }
.value-list p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }

.section-quote { padding-block: 112px; background: var(--accent); color: var(--forest-950); }
.quote-grid { display: grid; grid-template-columns: 0.55fr 2fr; align-items: start; gap: 80px; }
.quote-mark { font-family: var(--serif); font-size: 150px; line-height: 0.7; opacity: 0.28; }
blockquote { margin: 0; }
blockquote p { margin: 0; max-width: 920px; font-family: var(--serif); font-size: clamp(42px, 4.3vw, 67px); line-height: 1.04; letter-spacing: -0.04em; }
blockquote footer { margin-top: 27px; font-size: 12px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }

.section-faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 110px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none;
  min-height: 91px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-weight: 750;
}
summary::-webkit-details-marker { display: none; }
summary span { position: relative; width: 24px; height: 24px; flex: 0 0 auto; }
summary span::before, summary span::after { content: ""; position: absolute; background: var(--forest-800); transition: transform 180ms ease; }
summary span::before { width: 14px; height: 1px; left: 5px; top: 11px; }
summary span::after { width: 1px; height: 14px; left: 11px; top: 5px; }
details[open] summary span::after { transform: rotate(90deg); }
details > p { margin: -10px 50px 28px 0; color: var(--muted); }

.contact-section { position: relative; overflow: hidden; background: var(--forest-900); color: var(--white); padding: 116px 0 104px; }
.contact-pattern { position: absolute; inset: 0; opacity: 0.55; background-image: radial-gradient(circle at 84% 8%, rgba(190,220,233,0.12), transparent 32%), linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: auto, 68px 68px, 68px 68px; mask-image: linear-gradient(90deg, #000, transparent 92%); }
.contact-inner { position: relative; }
.contact-copy { text-align: center; }
.contact-copy h2 { margin: 0 auto; max-width: 820px; font-family: var(--serif); font-size: clamp(50px, 5vw, 76px); font-weight: 500; line-height: 1; letter-spacing: -0.04em; }
.contact-copy > p:not(.eyebrow) { max-width: 720px; margin: 25px auto 0; color: rgba(255, 255, 255, 0.7); font-size: 18px; }
.contact-form { max-width: 980px; margin: 54px auto 0; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { position: relative; min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-control {
  width: 100%;
  min-height: 68px;
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  outline: none;
  background: rgba(6,31,52,0.55);
  color: var(--white);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.form-control::placeholder { color: rgba(255,255,255,0.64); opacity: 1; }
.form-control:hover { border-color: rgba(190,220,233,0.58); }
.form-control:focus { border-color: var(--accent); background: rgba(6,31,52,0.75); box-shadow: 0 0 0 3px rgba(190,220,233,0.12); }
textarea.form-control { min-height: 174px; padding-block: 19px; resize: vertical; }
select.form-control { appearance: none; padding-right: 54px; cursor: pointer; }
select.form-control option { background: var(--white); color: var(--forest-950); }
.form-field-select::after { content: ""; position: absolute; right: 24px; top: 27px; width: 8px; height: 8px; border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(45deg); pointer-events: none; }
.contact-submit { width: 100%; min-height: 64px; margin-top: 16px; border: 0; border-radius: 2px; display: flex; align-items: center; justify-content: center; gap: 16px; background: var(--accent); color: var(--forest-950); cursor: pointer; font-size: 12px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease; }
.contact-submit:hover { transform: translateY(-2px); background: var(--accent-bright); }
.contact-submit:focus-visible { outline: 3px solid rgba(255,255,255,0.75); outline-offset: 3px; }
.contact-form-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-top: 20px; color: rgba(255,255,255,0.55); font-size: 11px; line-height: 1.55; }
.contact-form-note { max-width: 510px; margin: 0; }
.contact-direct { text-align: right; }
.contact-direct strong { display: block; color: rgba(255,255,255,0.86); font-size: 12px; }
.contact-direct:hover strong { color: var(--accent); }
.contact-form-status { min-height: 20px; margin: 12px 0 0; color: var(--accent); font-size: 12px; text-align: center; }

.legal-hero { position: relative; overflow: hidden; padding-top: 86px; background: linear-gradient(135deg, var(--white) 0%, var(--cream) 62%, var(--accent-bright) 100%); }
.legal-orbit { position: absolute; width: 650px; height: 650px; right: -130px; bottom: -210px; border: 1px solid rgba(47,128,186,0.16); border-radius: 50%; }
.legal-orbit::before, .legal-orbit::after { content: ""; position: absolute; border: 1px solid rgba(47,128,186,0.12); border-radius: inherit; }
.legal-orbit::before { inset: 78px; }
.legal-orbit::after { inset: 164px; }
.legal-hero-grid { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: end; }
.legal-hero-copy { align-self: center; padding-bottom: 24px; }
.legal-hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(66px, 7vw, 108px); font-weight: 500; line-height: 0.95; letter-spacing: -0.055em; }
.legal-hero-copy > p:not(.eyebrow) { max-width: 590px; margin: 30px 0 28px; color: var(--muted); font-size: 19px; }
.legal-portrait { position: relative; height: 650px; min-width: 0; margin: 0; display: flex; align-items: flex-end; justify-content: center; }
.legal-portrait::before { content: ""; position: absolute; width: 465px; height: 465px; left: 50%; bottom: 78px; transform: translateX(-50%); border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 1px rgba(47,128,186,0.15); }
.legal-portrait img { position: relative; z-index: 1; width: min(100%, 470px); height: 630px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 24px 34px rgba(11,46,79,0.18)); }
.legal-portrait figcaption { position: absolute; z-index: 2; right: 0; bottom: 34px; min-width: 245px; padding: 17px 20px; display: grid; gap: 3px; background: rgba(255,255,255,0.94); border-left: 3px solid var(--forest-700); box-shadow: var(--shadow); }
.legal-portrait figcaption strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.legal-portrait figcaption span { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }

.legal-section { padding: 116px 0 125px; background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 110px; align-items: start; }
.legal-status { position: sticky; top: 130px; padding: 34px; background: var(--forest-950); color: var(--white); box-shadow: var(--shadow); }
.legal-status-label { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.legal-status h2 { margin: 18px 0 14px; font-family: var(--serif); font-size: 37px; font-weight: 500; line-height: 1.06; }
.legal-status p { margin: 0; color: rgba(255,255,255,0.67); font-size: 14px; }
.legal-block + .legal-block { margin-top: 75px; }
.legal-block h2 { margin: 0 0 32px; font-family: var(--serif); font-size: clamp(36px, 3.6vw, 54px); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; }
.legal-data { margin: 0; border-top: 1px solid var(--line); }
.legal-data > div { display: grid; grid-template-columns: 210px 1fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.legal-data dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.legal-data dd { margin: 0; color: var(--forest-950); }
.legal-data dd a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 3px; }
.legal-credentials { margin-top: 18px; display: grid; gap: 12px; }
.legal-credentials p { margin: 0; padding: 14px 16px; display: grid; gap: 2px; border-left: 2px solid var(--forest-700); background: var(--cream); }
.legal-credentials strong { font-size: 14px; }
.legal-credentials span { color: var(--muted); font-size: 12px; }
.legal-credentials small { margin-top: 3px; color: var(--forest-700); font-size: 11px; font-weight: 750; letter-spacing: 0.025em; }
.legal-credential-file { width: fit-content; margin-top: 7px; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid rgba(18,59,99,0.28); color: var(--forest-700) !important; font-size: 11px; font-weight: 750; text-decoration: none !important; }
.legal-credential-file span { color: inherit; font-size: inherit; }
.legal-credential-file:hover { border-color: var(--forest-950); color: var(--forest-950) !important; }
.legal-placeholder { display: inline-flex; align-items: center; min-height: 29px; padding: 3px 10px; border: 1px solid rgba(47,128,186,0.22); border-radius: 999px; background: var(--accent-bright); color: var(--forest-800); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.legal-disclaimer { margin: 72px 0 0; padding: 24px 28px; border-left: 3px solid var(--forest-700); background: var(--cream); color: var(--muted); font-size: 13px; }

.privacy-hero { position: relative; overflow: hidden; padding-top: 86px; background: var(--forest-950); color: var(--white); }
.privacy-orbit { position: absolute; width: 690px; height: 690px; right: -190px; top: -180px; border: 1px solid rgba(190,220,233,0.14); border-radius: 50%; }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; border: 1px solid rgba(190,220,233,0.1); border-radius: inherit; }
.privacy-orbit::before { inset: 82px; }
.privacy-orbit::after { inset: 176px; background: rgba(190,220,233,0.025); }
.privacy-hero-grid { position: relative; min-height: 590px; display: grid; grid-template-columns: 1.12fr 0.78fr; gap: 100px; align-items: center; }
.privacy-hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(66px, 7vw, 108px); font-weight: 500; line-height: 0.95; letter-spacing: -0.055em; }
.privacy-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 28px; color: rgba(255,255,255,0.7); font-size: 19px; }
.privacy-back-link { color: var(--accent); }
.privacy-back-link:hover { color: var(--white); }
.privacy-summary { padding: 36px 34px 31px; background: var(--white); color: var(--forest-950); border-radius: 0 54px 0 0; box-shadow: 0 28px 80px rgba(0,0,0,0.22); }
.privacy-summary-label { color: var(--forest-700); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.privacy-summary h2 { margin: 16px 0 27px; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.07; }
.privacy-summary ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.privacy-summary li { display: grid; grid-template-columns: 37px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.privacy-summary li span { color: var(--forest-700); font-size: 10px; font-weight: 800; }
.privacy-summary li p { margin: 0; color: var(--muted); font-size: 13px; }

.privacy-section { padding: 116px 0 125px; background: var(--white); }
.privacy-grid { display: grid; grid-template-columns: 0.48fr 1.32fr; gap: 100px; align-items: start; }
.privacy-index { position: sticky; top: 130px; padding: 30px; background: var(--cream); border-top: 3px solid var(--accent); }
.privacy-index nav { display: grid; border-top: 1px solid var(--line); }
.privacy-index nav a { display: grid; grid-template-columns: 30px 1fr; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.privacy-index nav a span { color: var(--forest-700); font-size: 10px; font-weight: 800; }
.privacy-index nav a:hover { color: var(--forest-950); }
.privacy-draft-note { margin-top: 28px; padding: 19px; background: var(--forest-950); color: var(--white); }
.privacy-draft-note strong { color: var(--accent); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.privacy-draft-note p { margin: 8px 0 0; color: rgba(255,255,255,0.65); font-size: 12px; }
.privacy-block { scroll-margin-top: 120px; }
.privacy-block + .privacy-block { margin-top: 92px; padding-top: 8px; }
.privacy-block h2 { margin: 0 0 27px; font-family: var(--serif); font-size: clamp(38px, 3.9vw, 58px); font-weight: 500; line-height: 1.04; letter-spacing: -0.04em; }
.privacy-block > p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); }
.privacy-block a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 3px; }
.privacy-facts { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy-facts div { padding: 23px 20px 23px 0; }
.privacy-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.privacy-facts strong, .privacy-facts span { display: block; }
.privacy-facts strong { margin-bottom: 6px; color: var(--forest-950); font-size: 13px; }
.privacy-facts span { color: var(--muted); font-size: 12px; }
.privacy-data { margin-top: 30px; }
.privacy-callout { margin: 31px 0; padding: 26px 28px; border-left: 3px solid var(--forest-700); background: var(--cream); }
.privacy-callout-open { border-color: var(--accent); background: var(--forest-950); color: var(--white); }
.privacy-callout strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.privacy-callout p { margin: 0; color: var(--muted); font-size: 13px; }
.privacy-callout-open strong { color: var(--white); }
.privacy-callout-open p { color: rgba(255,255,255,0.65); }
.privacy-rights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 31px 0; }
.privacy-rights article { padding: 24px; border: 1px solid var(--line); background: var(--cream); }
.privacy-rights article > span { color: var(--forest-700); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.privacy-rights h3 { margin: 8px 0 7px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.privacy-rights p { margin: 0; color: var(--muted); font-size: 12px; }

.certificates-page { overflow-x: hidden; }
.certificates-hero { position: relative; overflow: hidden; padding-top: 86px; background: linear-gradient(135deg, var(--white), var(--cream)); }
.certificates-orbit { position: absolute; width: 620px; height: 620px; right: -130px; top: -130px; border: 1px solid rgba(47,128,186,0.14); border-radius: 50%; }
.certificates-orbit::before, .certificates-orbit::after { content: ""; position: absolute; border: 1px solid rgba(47,128,186,0.11); border-radius: inherit; }
.certificates-orbit::before { inset: 76px; }
.certificates-orbit::after { inset: 165px; background: rgba(190,220,233,0.08); }
.certificates-hero-grid { position: relative; min-height: 520px; display: grid; grid-template-columns: 1.15fr 0.65fr; gap: 100px; align-items: center; }
.certificates-hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(66px, 7vw, 108px); font-weight: 500; line-height: 0.95; letter-spacing: -0.055em; }
.certificates-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 28px; color: var(--muted); font-size: 19px; }
.certificates-summary { padding: 34px; background: var(--forest-950); color: var(--white); border-radius: 0 54px 0 0; box-shadow: var(--shadow); }
.certificates-summary strong { display: block; color: var(--accent); font-family: var(--serif); font-size: 76px; font-weight: 500; line-height: 0.9; }
.certificates-summary span { display: block; margin-top: 15px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.certificates-summary p { margin: 15px 0 0; color: rgba(255,255,255,0.64); font-size: 13px; }

.certificates-section { padding: 116px 0 126px; background: var(--white); }
.certificates-heading { max-width: 850px; margin-bottom: 58px; }
.certificates-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 4.2vw, 64px); font-weight: 500; line-height: 1.03; letter-spacing: -0.04em; }
.certificates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.certificates-grid-single { max-width: calc((100% - 28px) / 2); grid-template-columns: 1fr; }
.certificate-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(11,46,79,0.09); }
.certificate-preview { position: relative; aspect-ratio: 210 / 297; display: grid; place-items: center; padding: 22px; background: var(--forest-950); overflow: hidden; }
.certificate-preview img { width: 100%; height: 100%; object-fit: contain; background: var(--white); box-shadow: 0 14px 30px rgba(0,0,0,0.2); transition: transform 300ms ease; }
.certificate-preview:hover img { transform: scale(1.012); }
.certificate-preview > span { position: absolute; right: 31px; bottom: 31px; display: inline-flex; align-items: center; gap: 10px; padding: 11px 14px; background: rgba(255,255,255,0.94); color: var(--forest-950); font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.certificate-preview > span i { font-style: normal; }
.certificate-copy { padding: 32px 31px 34px; }
.certificate-copy h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.08; }
.certificate-copy > p:not(.eyebrow) { min-height: 67px; margin: 16px 0 26px; color: var(--muted); font-size: 14px; }
.certificate-meta { margin: 0; border-top: 1px solid var(--line); }
.certificate-meta > div { display: grid; grid-template-columns: 112px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.certificate-meta dt { color: var(--muted); font-size: 11px; font-weight: 700; }
.certificate-meta dd { min-width: 0; margin: 0; color: var(--forest-950); font-size: 11px; overflow-wrap: anywhere; }

.site-footer { background: var(--forest-950); color: var(--white); padding: 76px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 0.55fr; gap: 60px; align-items: start; padding-bottom: 70px; }
.brand-footer { color: var(--white); }
.footer-statement { font-family: var(--serif); font-size: 34px; line-height: 1.08; }
.footer-nav { display: grid; gap: 9px; color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.45); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--white); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal-delay { transition-delay: 180ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  :root { --shell: min(calc(100% - 40px), 840px); }
  .site-nav { gap: 20px; }
  .hero { min-height: 0; }
  .hero-media { height: 470px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-note { display: none; }
  .audience-inner { display: block; }
  .audience-inner ul { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .intro-grid, .process-grid, .profile-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-grid { gap: 38px; }
  .intro-side { display: grid; grid-template-columns: 1fr minmax(270px, 320px); gap: 40px; align-items: start; }
  .intro-portrait { width: 100%; margin-top: 0; }
  .profile-visual { width: min(100%, 760px); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 540px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .digital-addon { grid-template-columns: 1fr; }
  .digital-addon-head { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .specialist-network { grid-template-columns: 110px 1fr; gap: 30px; }
  .specialist-network-visual { width: 100px; height: 100px; }
  .specialist-network-promise { grid-column: 1 / -1; padding: 26px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-sticky { position: static; }
  .legal-hero-grid { min-height: 0; grid-template-columns: 0.9fr 1.1fr; gap: 30px; }
  .legal-portrait { height: 590px; }
  .legal-portrait img { height: 565px; }
  .legal-grid { grid-template-columns: 1fr; gap: 60px; }
  .legal-status { position: static; max-width: 590px; }
  .privacy-hero-grid { min-height: 540px; gap: 50px; }
  .privacy-grid { grid-template-columns: 1fr; gap: 60px; }
  .privacy-index { position: static; }
  .privacy-index nav { grid-template-columns: 1fr 1fr; column-gap: 28px; }
  .certificates-hero-grid { gap: 50px; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100vw - 32px); }
  html { scroll-padding-top: 74px; }
  .header-inner { height: 74px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy { font-size: 8.5px; letter-spacing: 0.085em; }
  .brand-copy strong { font-size: 13px; }
  .nav-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }
  .nav-toggle span { position: absolute; width: 24px; height: 1.5px; background: currentColor; transition: transform 180ms ease, top 180ms ease; }
  .nav-toggle span:first-child { top: 16px; }
  .nav-toggle span:last-child { top: 25px; }
  .nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 86px 24px 40px;
    background: var(--forest-950);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.button) { font-family: var(--serif); font-size: 36px; font-weight: 500; }
  .site-nav .button { margin-top: 15px; }
  .site-header:has(.site-nav.is-open) { color: var(--white); background: transparent; box-shadow: none; border-color: transparent; }

  .hero { min-height: 0; height: auto; max-height: none; padding-top: 74px; }
  .hero-media { height: 310px; background-position: 62% center; }
  .hero-media::after { width: 88px; height: 30px; }
  .hero-grid { padding-top: 46px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .hero-lead { max-width: 560px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; margin-top: 30px; }
  .hero-points { gap: 15px; flex-wrap: wrap; margin-top: 30px; font-size: 10px; }
  .scroll-cue { display: none; }

  .audience-strip { padding: 44px 0 40px; }
  .audience-inner { display: block; padding-block: 0; }
  .audience-inner > p { margin-bottom: 28px; font-size: 22px; line-height: 1.2; }
  .audience-inner ul { grid-template-columns: 1fr 1fr; gap: 28px 16px; padding: 0; }
  .audience-inner li { font-size: 12px; }
  .audience-icon { width: 88px; height: 88px; }
  .audience-icon svg { width: 39px; height: 39px; }

  .section { padding: 88px 0; }
  .intro-side { grid-template-columns: 1fr; gap: 0; }
  .intro-portrait { width: min(100%, 320px); height: 390px; margin-top: 31px; }
  .intro-copy h2, .section-heading h2, .process-sticky h2, .faq-grid h2 { font-size: 43px; }
  .intro-columns { grid-template-columns: 1fr; gap: 20px; margin-top: 34px; }
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .service-card { min-height: 390px; }
  .service-card-cta { grid-column: auto; }
  .digital-addon { border-radius: 0 48px 0 0; }
  .digital-addon-head { padding: 38px 28px 36px; }
  .digital-addon-services { grid-template-columns: 1fr; }
  .digital-addon-item { padding: 36px 28px; }
  .digital-addon-item + .digital-addon-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.13); }
  .specialist-network { padding: 32px 28px; grid-template-columns: 1fr; gap: 24px; }
  .specialist-network-visual { width: 88px; height: 88px; }
  .specialist-network-copy h3 { font-size: 32px; }
  .specialist-network-promise { grid-column: auto; padding-top: 24px; }
  .service-icon { margin-top: 48px; }
  .process-grid { gap: 48px; }
  .process-item { grid-template-columns: 48px 1fr; gap: 14px; }
  .process-item h3 { font-size: 31px; }
  .profile-grid, .faq-grid { gap: 48px; }
  .profile-visual { border-radius: 0 48px 0 0; }
  .profile-visual figcaption { left: 19px; right: 19px; bottom: 18px; font-size: 9px; }
  .profile-head h2, .contact-copy h2 { font-size: 50px; }
  .quote-grid { grid-template-columns: 1fr; gap: 20px; }
  .quote-mark { font-size: 100px; }
  blockquote p { font-size: 42px; }
  .section-quote { padding-block: 85px; }
  summary { min-height: 84px; line-height: 1.3; }
  .contact-section { padding: 88px 0; }
  .contact-form { margin-top: 42px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 13px; }
  .form-field-wide { grid-column: auto; }
  .form-control { min-height: 61px; padding-inline: 17px; }
  textarea.form-control { min-height: 155px; padding-block: 17px; }
  .form-field-select::after { top: 23px; right: 20px; }
  .contact-submit { min-height: 59px; margin-top: 13px; }
  .contact-form-footer { flex-direction: column; gap: 15px; }
  .contact-direct { text-align: left; }
  .legal-hero { padding-top: 74px; }
  .legal-hero-grid { grid-template-columns: 1fr; gap: 15px; padding-top: 80px; }
  .legal-hero-copy { padding: 0; }
  .legal-hero-copy h1 { font-size: 68px; }
  .legal-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .legal-portrait { height: 510px; margin-top: 8px; }
  .legal-portrait::before { width: 340px; height: 340px; bottom: 62px; }
  .legal-portrait img { width: min(100%, 390px); height: 490px; }
  .legal-portrait figcaption { right: 0; bottom: 18px; min-width: 215px; padding: 13px 16px; }
  .legal-section { padding: 88px 0; }
  .legal-grid { gap: 48px; }
  .legal-status { padding: 28px 24px; }
  .legal-block + .legal-block { margin-top: 60px; }
  .legal-data > div { grid-template-columns: 1fr; gap: 7px; padding: 18px 0; }
  .legal-disclaimer { margin-top: 55px; padding: 20px; }
  .privacy-hero { padding-top: 74px; }
  .privacy-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 45px; padding: 82px 0 72px; }
  .privacy-hero-copy h1 { font-size: 68px; }
  .privacy-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .privacy-summary { padding: 29px 24px 25px; border-radius: 0 42px 0 0; }
  .privacy-section { padding: 88px 0; }
  .privacy-grid { gap: 48px; }
  .privacy-index { padding: 25px 22px; }
  .privacy-index nav { grid-template-columns: 1fr; }
  .privacy-block + .privacy-block { margin-top: 70px; }
  .privacy-facts { grid-template-columns: 1fr; }
  .privacy-facts div { padding: 18px 0; }
  .privacy-facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .privacy-callout { padding: 22px 20px; }
  .privacy-rights { grid-template-columns: 1fr; }
  .certificates-hero { padding-top: 74px; }
  .certificates-orbit { width: 390px; height: 390px; right: 0; top: -40px; }
  .certificates-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 44px; padding: 82px 0 72px; }
  .certificates-hero-copy h1 { font-size: 68px; }
  .certificates-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .certificates-summary { padding: 28px 24px; border-radius: 0 42px 0 0; }
  .certificates-section { padding: 88px 0; }
  .certificates-heading { margin-bottom: 42px; }
  .certificates-grid { grid-template-columns: 1fr; gap: 28px; }
  .certificates-grid-single { max-width: none; }
  .certificate-preview { padding: 15px; }
  .certificate-preview > span { right: 25px; bottom: 25px; }
  .certificate-copy { padding: 27px 24px 29px; }
  .certificate-copy > p:not(.eyebrow) { min-height: 0; }
  .certificate-meta > div { grid-template-columns: 1fr; gap: 3px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 410px) {
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero .button { min-height: 50px; padding-inline: 17px; }
  .hero-points { display: none; }
  .intro-copy h2, .section-heading h2, .process-sticky h2, .faq-grid h2, .profile-head h2, .contact-copy h2 { font-size: 39px; }
  blockquote p { font-size: 36px; }
}

/* References */
.site-nav a[aria-current="page"]:not(.button) { color: var(--forest-700); }
.references-page { background: var(--white); }
.references-hero { position: relative; overflow: hidden; padding-top: 92px; background: var(--cream); }
.references-orbit { position: absolute; width: 680px; height: 680px; right: -250px; top: -220px; border: 1px solid rgba(47,128,186,0.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(190,220,233,0.08), 0 0 0 160px rgba(190,220,233,0.05); }
.references-hero-grid { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 76px; align-items: center; padding-block: 72px 88px; }
.references-hero-copy, .references-summary, .references-heading > *, .references-story-heading { min-width: 0; }
.references-hero-copy h1 { max-width: 840px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.2vw, 92px); font-weight: 500; line-height: 0.97; letter-spacing: -0.052em; overflow-wrap: anywhere; hyphens: auto; }
.references-hero-copy > p:not(.eyebrow) { max-width: 760px; margin: 29px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.references-hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.references-hero-actions .text-link { color: var(--forest-800); font-size: 13px; font-weight: 750; }
.references-summary { min-height: 440px; padding: 38px 34px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 0 62px 0 0; background: var(--forest-950); color: var(--white); box-shadow: var(--shadow); }
.references-summary-label { margin-bottom: auto; color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.references-summary h2 { margin: 64px 0 28px; font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.05; }
.references-summary ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.16); }
.references-summary li { min-height: 68px; display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.16); }
.references-summary li span { color: var(--accent); font-size: 10px; font-weight: 850; }
.references-summary li strong { font-size: 13px; }
.references-section { padding: 116px 0 126px; }
.references-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.references-heading h2, .references-story-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 4.5vw, 68px); font-weight: 500; line-height: 1.02; letter-spacing: -0.04em; overflow-wrap: anywhere; hyphens: auto; }
.references-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.references-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reference-logo-card { min-height: 230px; padding: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--white); text-align: center; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.reference-logo-card:hover { transform: translateY(-3px); border-color: rgba(47,128,186,0.35); box-shadow: 0 16px 42px rgba(11,46,79,0.08); }
.reference-logo-card img { width: 100%; max-width: 285px; height: 110px; display: block; object-fit: contain; }
.reference-logo-card > span { max-width: 310px; margin-top: 20px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: 0.055em; line-height: 1.35; text-transform: uppercase; overflow-wrap: anywhere; }
.reference-logo-card-featured { min-height: 250px; border-top: 3px solid var(--accent); background: linear-gradient(180deg, rgba(190,220,233,0.16), var(--white) 48%); }
.reference-logo-card-featured img { height: 125px; max-width: 310px; }
.reference-logo-card strong { margin-top: 20px; color: var(--forest-950); font-family: var(--serif); font-size: 24px; font-weight: 500; }
.reference-logo-card small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.reference-logo-placeholder { position: relative; width: 70px; height: 55px; }
.reference-logo-placeholder span, .reference-logo-placeholder i, .reference-logo-placeholder b { position: absolute; width: 14px; height: 14px; border: 1px solid var(--forest-700); border-radius: 50%; background: var(--cream); }
.reference-logo-placeholder span { left: 2px; top: 21px; }
.reference-logo-placeholder i { left: 28px; top: 2px; }
.reference-logo-placeholder b { right: 2px; bottom: 2px; }
.reference-logo-placeholder::before, .reference-logo-placeholder::after { content: ""; position: absolute; left: 13px; top: 26px; width: 32px; height: 1px; background: var(--forest-700); transform-origin: left center; }
.reference-logo-placeholder::before { transform: rotate(-35deg); }
.reference-logo-placeholder::after { width: 43px; transform: rotate(22deg); }
.references-story-section { padding: 116px 0 126px; background: var(--forest-950); color: var(--white); }
.references-story-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 80px; align-items: end; }
.references-story-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -52px; color: var(--accent); }
.references-story-heading > p:not(.eyebrow) { max-width: 460px; margin: 0; color: rgba(255,255,255,0.58); }
.references-story-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.17); border-bottom: 1px solid rgba(255,255,255,0.17); }
.reference-story-card { min-height: 310px; padding: 35px 34px; }
.reference-story-card + .reference-story-card { border-left: 1px solid rgba(255,255,255,0.17); }
.reference-story-card > span { color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: 0.14em; }
.reference-story-card h3 { margin: 74px 0 15px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.reference-story-card p { margin: 0; color: rgba(255,255,255,0.58); font-size: 14px; }
.references-reviews-section { background: var(--cream); }
.references-review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.reference-review-card { min-height: 330px; padding: 38px 36px; display: flex; flex-direction: column; border-top: 3px solid var(--accent); background: var(--white); box-shadow: 0 16px 44px rgba(11,46,79,0.07); }
.reference-quote-mark { height: 58px; color: var(--forest-700); font-family: var(--serif); font-size: 88px; line-height: 0.9; }
.reference-review-card > p { max-width: 510px; margin: 26px 0 42px; color: var(--forest-950); font-family: var(--serif); font-size: 29px; line-height: 1.2; }
.reference-review-card footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.reference-review-card footer strong, .reference-review-card footer span { display: block; }
.reference-review-card footer strong { color: var(--forest-950); font-size: 12px; }
.reference-review-card footer span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.references-disclosure { margin: 24px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

@media (max-width: 1020px) {
  .references-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .references-summary { min-height: 360px; }
  .references-heading, .references-story-heading { grid-template-columns: 1fr; gap: 28px; }
  .references-story-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .references-logo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-nav a[aria-current="page"]:not(.button) { color: var(--accent); }
  .references-hero { padding-top: 74px; }
  .references-orbit { width: 410px; height: 410px; right: -175px; top: -35px; }
  .references-hero-grid { min-height: 0; padding-block: 74px 70px; }
  .references-hero-copy h1 { font-size: clamp(47px, 13vw, 62px); }
  .references-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .references-hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .references-summary { min-height: 340px; padding: 30px 25px; border-radius: 0 46px 0 0; }
  .references-section, .references-story-section { padding: 88px 0; }
  .references-heading { margin-bottom: 42px; }
  .references-logo-grid, .references-story-grid, .references-review-grid { grid-template-columns: 1fr; }
  .reference-logo-card { min-height: 190px; }
  .references-story-grid { margin-top: 46px; }
  .reference-story-card { min-height: 260px; padding: 31px 25px; }
  .reference-story-card + .reference-story-card { border-left: 0; border-top: 1px solid rgba(255,255,255,0.17); }
  .reference-story-card h3 { margin-top: 52px; }
  .reference-review-card { min-height: 310px; padding: 32px 25px; }
  .reference-review-card > p { font-size: 26px; }
}

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

/* Protected reference access */
.access-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}
.access-back-link {
  position: relative;
  color: var(--forest-800);
  font-size: 13px;
  font-weight: 750;
}
.access-back-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
}
.access-main {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding-top: 86px;
}
.access-orbit {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: -200px;
  border: 1px solid rgba(47, 128, 186, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(190, 220, 233, 0.09), 0 0 0 180px rgba(190, 220, 233, 0.05);
}
.access-grid {
  position: relative;
  min-height: calc(100vh - 170px);
  padding-block: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: 96px;
}
.access-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.access-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.access-security-note {
  max-width: 680px;
  margin-top: 40px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}
.access-security-note > span { color: var(--forest-700); font-weight: 800; }
.access-security-note p { margin: 0; color: var(--muted); font-size: 13px; }
.access-security-note strong { display: block; margin-bottom: 3px; color: var(--forest-950); }
.access-card {
  position: relative;
  padding: 44px 40px 38px;
  border-radius: 0 58px 0 0;
  background: var(--forest-950);
  color: var(--white);
  box-shadow: var(--shadow);
}
.access-card-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.access-card h2 {
  margin: 42px 0 30px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.access-form label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}
.access-form input {
  width: 100%;
  height: 68px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 700 24px/1 var(--sans);
  letter-spacing: 0.22em;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.access-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.access-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(190, 220, 233, 0.15);
}
.access-hint { margin: 8px 0 24px; color: rgba(255, 255, 255, 0.52); font-size: 11px; }
.access-error {
  margin: -8px 0 22px;
  padding: 11px 13px;
  border-left: 2px solid #f2b8b5;
  background: rgba(242, 184, 181, 0.1);
  color: #ffd8d6;
  font-size: 12px;
}
.access-form .button { border: 0; cursor: pointer; }
.access-privacy { margin: 22px 0 0; color: rgba(255, 255, 255, 0.48); font-size: 10px; }
.access-footer { background: var(--white); border-top: 1px solid var(--line); }
.access-footer .shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
}
.access-footer p { margin: 0; }
.access-footer div { display: flex; gap: 24px; }

@media (max-width: 920px) {
  .access-grid { grid-template-columns: 1fr; gap: 52px; }
  .access-card { max-width: 620px; width: 100%; }
}

@media (max-width: 780px) {
  .access-main { padding-top: 74px; }
  .access-grid { min-height: 0; padding-block: 72px; gap: 44px; }
  .access-copy h1 { font-size: clamp(47px, 13vw, 62px); }
  .access-copy > p:not(.eyebrow) { font-size: 16px; }
  .access-card { padding: 34px 24px 28px; border-radius: 0 44px 0 0; }
  .access-card h2 { margin-top: 35px; font-size: 36px; }
  .access-footer .shell { padding-block: 22px; align-items: flex-start; flex-direction: column; gap: 10px; }
}
