:root {
  color-scheme: light;
  --bg: #eef2f6;
  --paper: #ffffff;
  --paper-muted: #f6f8fb;
  --ink: #111b29;
  --ink-soft: #344154;
  --muted: #657286;
  --line: #d7dde6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --navy: #07111f;
  --navy-2: #10243b;
  --navy-3: #17375b;
  --gold: #c99a36;
  --gold-dark: #9c721e;
  --blue: #1d5fa8;
  --red: #9f2a2a;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(17, 27, 41, 0.14);
  --radius: 8px;
  --header-height: 82px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

code {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #eef2f7;
  color: var(--ink);
  padding: 2px 5px;
  font-size: 0.92em;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 12px max(22px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 4px solid var(--gold);
  background: rgba(7, 17, 31, 0.94);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.32));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: #c8d3e2;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 5px;
  color: #d9e2ef;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 10px 11px;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.main-nav a.is-active {
  box-shadow: inset 0 -3px 0 var(--gold);
}

.nav-toggle {
  grid-column: 2;
  justify-self: end;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: var(--navy);
  color: #f7f9fc;
}

.section-paper {
  background: var(--paper);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    var(--bg);
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 84svh;
  padding: calc(var(--header-height) + 78px) 0 34px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, rgba(7, 17, 31, 0.94));
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 42%, rgba(7, 17, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.35), rgba(7, 17, 31, 0.82));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 770px;
  margin-bottom: 34px;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero-facts div {
  background: rgba(7, 17, 31, 0.78);
  padding: 18px 20px;
}

.hero-facts span,
.stat-panel span,
.agency-card span,
.link-panel span,
.process-step span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: calc(var(--header-height) + 86px) 0 76px;
  overflow: hidden;
}

.page-hero-image,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.74) 62%, rgba(7, 17, 31, 0.5)),
    linear-gradient(180deg, rgba(7, 17, 31, 0.3), rgba(7, 17, 31, 0.92));
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  font-size: 3.75rem;
}

.page-hero p:not(.agency-label) {
  max-width: 740px;
  margin: 18px 0 0;
  color: #d8e1ee;
  font-size: 1.12rem;
}

.page-hero .button {
  margin-top: 30px;
}

.agency-label,
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.agency-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--gold);
  background: rgba(7, 17, 31, 0.58);
  color: #f5cf77;
  padding: 7px 12px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 4.85rem;
  font-weight: 950;
}

h2 {
  max-width: 850px;
  font-size: 2.65rem;
  font-weight: 900;
}

h3 {
  font-size: 1.13rem;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 700px;
  margin: 18px 0 0;
  color: #eef4fb;
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-copy,
.section-copy p,
.section-heading p,
.contact-inner p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: #c8d3e2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--gold);
  color: #101010;
  box-shadow: 0 14px 28px rgba(201, 154, 54, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddb052;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.button-on-light {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 1.04rem;
}

.roleplay-notice {
  border-block: 1px solid var(--line);
  background: #fff8e8;
  color: #2b261b;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
}

.notice-inner strong {
  flex: 0 0 auto;
  color: #6c4d10;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.notice-inner span {
  color: #554936;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 780px;
  margin: 16px 0 0;
}

.section-copy p {
  margin: 20px 0 0;
}

.two-column,
.split-lists {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 58px;
  align-items: start;
}

.page-grid,
.service-grid,
.value-grid,
.process-list {
  display: grid;
  gap: 16px;
}

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

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

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

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

.agency-card,
.link-panel,
.value-card,
.process-step,
.priority-panel,
.stat-panel div,
.quick-links,
.media-frame,
.document-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.agency-card,
.link-panel,
.value-card,
.process-step {
  min-height: 210px;
  padding: 24px;
}

.agency-card,
.link-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agency-card h3,
.link-panel h2,
.value-card h3,
.process-step h3 {
  margin-top: 15px;
  color: var(--ink);
}

.link-panel h2 {
  font-size: 1.7rem;
}

.agency-card p,
.link-panel p,
.value-card p,
.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.agency-card .text-link,
.link-panel .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  color: var(--gold-dark);
}

.priority-panel {
  padding: 26px;
}

.priority-panel h3 {
  color: var(--ink);
}

.priority-panel ul,
.quick-links {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.priority-panel li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.priority-panel strong,
.priority-panel span {
  display: block;
}

.priority-panel strong {
  color: var(--ink);
}

.priority-panel span {
  margin-top: 3px;
  color: var(--muted);
}

.stat-panel {
  display: grid;
  gap: 14px;
}

.stat-panel div {
  padding: 22px;
}

.stat-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.mission {
  padding: 78px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(157, 42, 42, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy), #0b1b30 58%, #111111);
}

blockquote {
  max-width: 1040px;
  margin: 0;
  color: #f7f9fc;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.22;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 760;
  padding: 13px 14px 13px 40px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 54, 0.14);
}

.process-step {
  border-top: 4px solid var(--gold);
}

.document-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.document-heading h2 {
  color: var(--ink);
}

.document-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--muted);
}

.document-frame {
  min-height: 560px;
  background: #f8fafc;
  overflow: hidden;
}

.document-frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  border: 0;
  background: #ffffff;
}

.document-placeholder,
.gallery-empty {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.gallery-empty {
  grid-column: 1 / -1;
  border: 1px dashed #b6c0ce;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.document-placeholder strong,
.gallery-empty strong {
  display: block;
  color: var(--ink);
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.media-feature {
  align-items: center;
}

.media-frame {
  margin: 0;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-frame figcaption {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe5ed;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.gallery-item::after {
  content: "Preview";
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.76);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 850;
  padding: 5px 10px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.quick-links {
  margin: 0;
  padding: 18px;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-muted);
  color: var(--ink);
  font-weight: 900;
  padding: 14px 16px;
}

.quick-links a::after {
  content: ">";
  color: var(--gold-dark);
}

.contact {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(29, 95, 168, 0.2), transparent 38%),
    linear-gradient(135deg, var(--navy), #0b1d31);
}

.contact-inner {
  display: grid;
  justify-items: center;
}

.contact-inner p {
  max-width: 760px;
  color: #c8d3e2;
  margin: 18px 0 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 4px solid var(--gold);
  background: #050b13;
  color: #c2ccda;
  padding: 22px max(22px, calc((100vw - 1220px) / 2));
  font-size: 0.84rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(86vh, 900px);
  width: min(1100px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 20px;
  }

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

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--navy-2);
    box-shadow: var(--shadow);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .main-nav a {
    padding: 13px;
  }

  h1 {
    font-size: 4rem;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

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

@media (max-width: 920px) {
  .two-column,
  .split-lists,
  .document-heading {
    grid-template-columns: 1fr;
  }

  .two-column,
  .split-lists {
    gap: 34px;
  }

  .document-heading {
    display: grid;
    align-items: start;
  }

  .service-grid,
  .page-grid,
  .gallery-grid,
  .check-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  blockquote {
    font-size: 2rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

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

  .brand strong {
    max-width: 176px;
    white-space: normal;
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.82)),
      linear-gradient(180deg, rgba(7, 17, 31, 0.25), rgba(7, 17, 31, 0.9));
  }

  .page-hero {
    min-height: 370px;
    padding-top: calc(var(--header-height) + 50px);
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-actions,
  .button,
  .document-heading .button {
    width: 100%;
  }

  .notice-inner {
    display: grid;
    gap: 5px;
  }

  .service-grid,
  .value-grid,
  .process-list,
  .gallery-grid,
  .page-grid,
  .check-list-wide {
    grid-template-columns: 1fr;
  }

  .agency-card,
  .link-panel,
  .value-card,
  .process-step {
    min-height: auto;
  }

  blockquote {
    font-size: 1.55rem;
  }

  .site-footer {
    display: grid;
    padding-inline: 14px;
  }

  .document-frame,
  .document-frame iframe {
    min-height: 440px;
  }
}
