:root {
  --navy: #001f3f;
  --navy-2: #003366;
  --ink: #1f2933;
  --text: #333333;
  --muted: #555555;
  --soft: #f7f7f7;
  --line: #dfe6ec;
  --white: #ffffff;
  --gold: #b58b5a;
  --gold-soft: #f5eadb;
  --sage: #6f8f83;
  --sage-soft: #eef4f1;
  --shadow: 0 18px 45px rgba(0, 31, 63, 0.12);
  --shadow-soft: 0 10px 26px rgba(0, 31, 63, 0.08);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  text-transform: none;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid rgba(181, 139, 90, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(0, 31, 63, 0.72);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body[data-page="details"] .site-header,
body[data-page="legal"] .site-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-bottom-color: rgba(0, 31, 63, 0.08);
  box-shadow: 0 8px 22px rgba(0, 31, 63, 0.08);
}

.nav-shell {
  width: min(100% - 40px, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 31, 63, 0.12);
  color: currentColor;
  opacity: 1;
  overflow: hidden;
}

.site-header.is-scrolled .brand-mark,
body[data-page="details"] .brand-mark,
body[data-page="legal"] .brand-mark {
  border-color: rgba(0, 31, 63, 0.16);
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.98) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--gold-soft), var(--white) 50%, rgba(111, 143, 131, 0.42));
  box-shadow: 0 8px 18px rgba(0, 31, 63, 0.14);
  color: var(--navy);
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark span {
  display: inline-block;
}

.brand-mark .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #111111;
  box-shadow: 0 10px 22px rgba(181, 139, 90, 0.22);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle .sr-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  background: transparent;
  transition: none;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p,
.hero-copy,
.detail-hero p {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.soft-section {
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.94), rgba(238, 244, 241, 0.84));
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: 132px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(181, 139, 90, 0.18), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(111, 143, 131, 0.16), transparent 34%),
    linear-gradient(112deg, rgba(0, 31, 63, 0.98) 0%, rgba(0, 31, 63, 0.94) 48%, rgba(20, 54, 78, 0.9) 72%, rgba(13, 25, 38, 0.98) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.96) 0%, rgba(0, 31, 63, 0.86) 48%, rgba(0, 31, 63, 0.32) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 90px);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  z-index: 0;
  height: 148px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 44%, rgba(255, 255, 255, 0.86) 72%, var(--white) 100%);
  pointer-events: none;
}

.offer-section {
  padding-top: 52px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: max(20px, calc((100vw - var(--max-width)) / 2));
}

.hero .eyebrow,
.hero h1,
.hero .hero-statement,
.hero-copy {
  color: var(--white);
}

.hero-statement {
  margin-top: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--gold);
  color: #111111;
}

.btn-primary:hover {
  background: #c79b66;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-points span + span::before {
  content: "/";
  margin-right: 12px;
  color: var(--gold);
}

.service-grid,
.audience-grid,
.benefits-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.compact-card,
.benefit-card,
.process-step,
.contact-form,
.placeholder-panel,
.detail-card,
.cta-strip {
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 139, 90, 0.45);
  box-shadow: var(--shadow);
}

.service-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-media::after,
.detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 63, 0.02), rgba(0, 31, 63, 0.18));
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.service-number {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.service-question {
  margin-top: 8px;
  color: var(--navy);
  font-weight: 700;
}

.service-card-content > p:not(.service-number):not(.service-question) {
  margin-top: 16px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(181, 139, 90, 0.55);
}

.text-link:hover {
  color: var(--gold);
}

.muted-link {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.portrait-panel {
  margin: 0;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.about-content h2 {
  margin-bottom: 22px;
}

.about-content p + p {
  margin-top: 16px;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 28px;
  list-style: none;
}

.credential-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card,
.benefit-card,
.process-step {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.compact-card:hover,
.benefit-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 143, 131, 0.36);
  box-shadow: var(--shadow);
}

.compact-card h3,
.benefit-card h3,
.process-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.compact-card p,
.benefit-card p,
.process-step p {
  color: var(--muted);
}

.process-section {
  background:
    linear-gradient(180deg, var(--white), rgba(245, 234, 219, 0.44));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.placeholder-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.04), rgba(245, 234, 219, 0.8));
}

.placeholder-panel h2 {
  font-size: 32px;
}

.placeholder-panel p {
  color: var(--muted);
}

.extended-disc-section {
  background:
    linear-gradient(180deg, rgba(238, 244, 241, 0.86), rgba(245, 234, 219, 0.52));
}

.extended-disc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.extended-disc-copy h2 {
  margin-bottom: 18px;
}

.extended-disc-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.extended-disc-media {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(181, 139, 90, 0.16), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.extended-disc-media img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.extended-disc-media figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.extended-disc-media a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 48px;
  align-items: start;
}

.contact-copy h2,
.contact-copy p,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  min-width: 0;
  text-decoration: none;
}

.contact-methods a > span[aria-hidden="true"] {
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-methods [data-email-text] {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact [data-email-text] {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  color: var(--text);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-note,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 142px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(0, 31, 63, 0.09);
}

.altcha-row {
  gap: 10px;
}

.altcha-row altcha-widget {
  --altcha-border-radius: var(--radius);
  --altcha-color-active: var(--navy);
  --altcha-color-base: #fbfcfd;
  --altcha-color-border: rgba(0, 31, 63, 0.16);
  --altcha-color-border-focus: var(--gold);
  --altcha-color-error-text: #a83232;
  --altcha-color-footer-bg: rgba(0, 31, 63, 0.03);
  --altcha-color-text: var(--ink);
  --altcha-max-width: 100%;
  width: 100%;
}

.altcha-row .altcha {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 31, 63, 0.05);
}

.altcha-row .altcha-main {
  min-height: 58px;
  padding: 14px;
}

.altcha-row .altcha-footer {
  color: var(--muted);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(0, 31, 63, 0.12);
  border-radius: var(--radius);
  background: rgba(238, 244, 241, 0.52);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
}

.checkbox-field a {
  color: var(--navy);
  font-weight: 800;
}

.form-submit {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  color: var(--navy);
  font-weight: 700;
}

.form-status.is-error {
  color: #a83232;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding: 58px 0 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(181, 139, 90, 0.16), transparent 30%),
    linear-gradient(135deg, #0c1724, #08111c 62%, #0d1e2e);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(130px, 0.7fr) minmax(150px, 0.7fr) minmax(220px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.footer-about,
.footer-column,
.footer-contact {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  opacity: 1;
}

.footer-about p {
  max-width: 390px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

.footer-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.footer-share .eyebrow {
  margin-bottom: 7px;
  color: var(--gold-soft);
}

.footer-share h2 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

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

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.share-button .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.share-button:hover,
.share-button:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: #111827;
  transform: translateY(-2px);
}

.share-native[hidden] {
  display: none;
}

.copyright {
  width: min(100% - 40px, var(--max-width));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.detail-hero {
  padding: 136px 0 64px;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.08), rgba(245, 234, 219, 0.58)),
    var(--soft);
}

.legal-hero {
  padding: 136px 0 56px;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.08), rgba(245, 234, 219, 0.58)),
    var(--soft);
}

.error-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(181, 139, 90, 0.18), transparent 34%),
    linear-gradient(145deg, #061323 0%, #0b2134 58%, #102b3f 100%);
}

.error-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.error-panel {
  width: min(100%, 620px);
  text-align: center;
}

.error-panel .brand-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.error-panel .brand-mark .material-symbols-outlined {
  font-size: 30px;
}

.error-panel .eyebrow {
  margin-bottom: 12px;
  color: var(--gold-soft);
}

.error-panel h1 {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--white);
}

.error-panel .btn {
  width: auto;
}

.cert-hero {
  padding: 136px 0 70px;
  background:
    radial-gradient(circle at 86% 20%, rgba(181, 139, 90, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(0, 31, 63, 0.09), rgba(238, 244, 241, 0.82)),
    var(--soft);
}

.cert-hero h1 {
  margin-bottom: 18px;
}

.cert-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.certificates-section {
  background:
    linear-gradient(180deg, var(--white), rgba(245, 234, 219, 0.38));
}

.certificate-layout {
  display: grid;
  gap: 30px;
}

.certificate-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.certificate-card-wide {
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
}

.certificate-card-copy {
  display: grid;
  gap: 14px;
}

.certificate-card-copy h3 {
  font-size: 24px;
}

.certificate-card-copy p:not(.service-number) {
  color: var(--muted);
}

.certificate-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 247, 247, 0.98), rgba(238, 244, 241, 0.78));
  box-shadow: 0 14px 30px rgba(0, 31, 63, 0.1);
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-frame.landscape {
  aspect-ratio: 1.414 / 1;
}

.certificate-frame.portrait {
  aspect-ratio: 1.286 / 1;
}

.cert-tabs {
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  margin-top: 8px;
  padding: 6px;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background: rgba(238, 244, 241, 0.72);
}

.cert-tabs button {
  min-height: 40px;
  padding: 9px 14px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: var(--navy);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cert-tabs button:hover,
.cert-tabs button.is-active {
  background: var(--navy);
  color: var(--white);
}

.cert-tabs button:hover {
  transform: translateY(-1px);
}

.cert-panels {
  position: relative;
  aspect-ratio: 1.286 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 247, 247, 0.98), rgba(238, 244, 241, 0.78));
  box-shadow: 0 14px 30px rgba(0, 31, 63, 0.08);
}

.cert-panel {
  position: absolute;
  inset: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateX(14px) scale(0.992);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.cert-panel.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.legal-content {
  max-width: 880px;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: 38px;
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  font-size: 26px;
}

.legal-card p {
  color: var(--muted);
}

.detail-hero h1 {
  margin-bottom: 18px;
}

.detail-hero p {
  max-width: 760px;
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-tabs a,
.detail-tabs button {
  padding: 11px 15px;
  border: 1px solid rgba(0, 31, 63, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.detail-tabs a.is-active,
.detail-tabs button.is-active,
.detail-tabs a:hover,
.detail-tabs button:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.detail-tabs button:hover {
  transform: translateY(-1px);
}

.detail-list {
  display: grid;
  gap: 26px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}

.detail-card.is-hidden {
  display: none;
}

.detail-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--soft);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media-contain {
  display: grid;
  place-items: center;
  padding: 24px;
}

.detail-media-contain img {
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.detail-content {
  padding: 38px;
}

.detail-content .lead {
  margin: 14px 0 20px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

.detail-content p + p {
  margin-top: 14px;
}

.detail-cta {
  padding-top: 72px;
}

.detail-cta .cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 430px);
  min-width: min(100%, 430px);
  margin-top: 0;
}

.detail-cta .btn {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
}

.cta-strip h2 {
  font-size: 32px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .service-grid,
  .audience-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .extended-disc-grid,
  .certificate-card,
  .certificate-card-wide {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-shell,
  .section-inner,
  .copyright {
    width: min(100% - 32px, var(--max-width));
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(0, 31, 63, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

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

  .hero {
    min-height: calc(100svh - 132px);
    padding: 112px 0 48px;
    background:
      linear-gradient(112deg, rgba(0, 31, 63, 0.98) 0%, rgba(0, 31, 63, 0.94) 58%, rgba(20, 54, 78, 0.88) 100%),
      linear-gradient(160deg, rgba(181, 139, 90, 0.18), transparent 44%),
      linear-gradient(20deg, rgba(111, 143, 131, 0.12), transparent 60%);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 31, 63, 0.98) 0%, rgba(0, 31, 63, 0.9) 74%, rgba(0, 31, 63, 0.5) 100%),
      repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 72px);
  }

  .hero-canvas {
    opacity: 0.5;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
  }

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

  .placeholder-panel,
  .detail-card,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    display: grid;
  }

  .detail-media {
    min-height: 280px;
  }

  .footer-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-statement {
    font-size: 29px;
  }

  .hero::after {
    height: 104px;
  }

  .offer-section {
    padding-top: 32px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
  }

  .cta-actions {
    align-items: stretch;
  }

  .detail-cta .cta-actions {
    flex-direction: row;
  }

  .detail-cta .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .btn,
  .form-submit {
    width: 100%;
  }

  .detail-cta .btn {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-grid,
  .audience-grid,
  .benefits-grid,
  .process-grid,
  .credential-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card-content,
  .compact-card,
  .benefit-card,
  .process-step,
  .contact-form,
  .placeholder-panel,
  .extended-disc-media,
  .detail-content,
  .cta-strip,
  .legal-card {
    padding: 22px;
  }

  .section-heading p,
  .hero-copy,
  .detail-hero p {
    font-size: 16px;
  }

  .contact-methods a {
    align-items: flex-start;
  }

  .detail-hero {
    padding-top: 116px;
  }

  .cert-hero {
    padding-top: 116px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand .brand-mark {
    width: 32px;
    height: 32px;
  }

  .footer-share {
    padding: 18px;
    border-radius: 18px;
  }

  .footer-share h2 {
    font-size: 18px;
  }

  .share-actions {
    width: 100%;
  }

  .share-button {
    flex: 1 1 72px;
  }

  .legal-hero {
    padding-top: 116px;
  }

  .certificate-card {
    padding: 22px;
  }

  .cert-tabs {
    width: 100%;
  }

  .cert-tabs button {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-statement {
    font-size: 28px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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

  .hero-canvas {
    opacity: 0.4;
  }
}
