:root {
  --ink: #0b1522;
  --ink-soft: #263548;
  --navy: #0b2239;
  --navy-2: #12314e;
  --teal: #0c8f86;
  --teal-dark: #087269;
  --aqua: #9fded4;
  --gold: #d2ae68;
  --cream: #f5f2ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(11, 34, 57, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #607083;
  --success: #1f776c;
  --shadow-sm: 0 12px 30px rgba(11, 34, 57, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 19, 34, 0.18);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --content: 76rem;
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--navy);
  background: var(--aqua);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.5rem;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--compact {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

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

.section--dark {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 14% 12%, rgba(12, 143, 134, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 82%, rgba(210, 174, 104, 0.12), transparent 28rem),
    var(--navy);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.section--dark .eyebrow {
  color: var(--aqua);
}

.lede {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.section--dark .lede {
  color: rgba(255, 255, 255, 0.72);
}

.kicker {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "\2192";
  font-size: 1.15em;
  transition: transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button:hover::after {
  transform: translateX(3px);
}

.button--primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(8, 114, 105, 0.24);
}

.button--primary:hover {
  background: #05645d;
  box-shadow: 0 16px 34px rgba(8, 114, 105, 0.28);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--secondary:hover {
  background: var(--white);
  border-color: rgba(11, 34, 57, 0.28);
}

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

.button--ghost-light {
  color: var(--white);
  border-color: var(--line-dark);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(11, 34, 57, 0.06);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: clamp(9.6rem, 18vw, 11.6rem);
  height: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  padding: 0.7rem 0.8rem;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(11, 34, 57, 0.055);
}

.header-cta {
  min-height: 2.7rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -0.37rem;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 0.37rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

