:root {
  --primary: #0d5c63;
  --primary-2: #083f45;
  --accent: #f2b84b;
  --ink: #152429;
  --muted: #5d6b6e;
  --paper: #fff;
  --soft: #eff6f4;
  --line: #d7e2df;
  --danger: #a72d2d;
  --success: #24734b;
  --shadow: 0 18px 50px rgba(13, 45, 49, 0.11);
  --shadow-sm: 0 8px 24px rgba(13, 45, 49, 0.09);
  --r-sm: 0.55rem;
  --r-md: 1rem;
  --r-lg: 1.6rem;
  --container: min(1180px, calc(100% - 2rem));
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --fast: 160ms;
  --normal: 320ms;
  --font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --z-header: 50;
  --z-menu: 80;
  --z-modal: 120;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--primary);
  text-underline-offset: 0.18em;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  max-width: 13ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  max-width: 18ch;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
p {
  margin: 0.3rem 0 1.2rem;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 62ch;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--primary);
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section--soft {
  background: var(--soft);
}
.section--dark {
  background: #092f36;
  color: #fff;
}
.section--dark .muted {
  color: #c4d5d6;
}
.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  color: #000;
  padding: 0.8rem 1rem;
  z-index: 999;
  border: 2px solid #000;
}
.skip-link:focus {
  top: 1rem;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
::selection {
  background: var(--accent);
  color: #102328;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
[hidden] {
  display: none !important;
}
.notice {
  padding: 0.72rem 1rem;
  text-align: center;
  background: #092f36;
  color: #fff;
  font-size: 0.9rem;
}
.notice a {
  color: #fff;
  font-weight: 800;
}
.placeholder-note {
  font-size: 0.78rem;
  background: #fff7dd;
  border: 1px solid #ecd48d;
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  color: #59480f;
}
.legal-note {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  background: #fff9e8;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--primary);
  font-weight: 800;
}
.kicker:before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: currentColor;
}
.no-js .js-only {
  display: none !important;
}
