:root {
  --navy: #152d68;
  --navy-deep: #0b1838;
  --gray: #666666;
  --orange: #d45500;
  --white: #ffffff;
  --paper: #f5f5f2;
  --line: #d7d9df;
  --ink: #172033;
  --font: Inter, "Segoe UI", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--gray);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

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

button,
input,
textarea {
  border-radius: 0;
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 1rem;
  transform: translateY(-150%);
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

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

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.72rem;
  color: var(--navy);
}

.brand svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: miter;
  stroke-width: 2.2;
}

.brand svg circle {
  fill: var(--orange);
  stroke: none;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.07em;
}

.brand strong span {
  color: var(--orange);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.language-switch button {
  padding: 0.4rem 0.2rem;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: #9da1aa;
}

.language-switch button:hover,
.language-switch button[aria-pressed="true"] {
  color: var(--orange);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 750;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button--navy:hover {
  background: var(--orange);
}

.button--orange {
  background: var(--orange);
  color: var(--white);
}

.button--orange:hover {
  background: var(--navy);
}

.button--outline {
  border-color: var(--orange);
  color: var(--navy);
}

.button--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form label > span {
  font-size: 0.76rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--orange);
  box-shadow: inset 0 -1px 0 var(--orange);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.site-footer {
  font-size: 0.76rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  h1,
  h2,
  h3 {
    overflow-wrap: anywhere;
  }
}

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

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