:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #14213d;
  --muted: #5d6678;
  --line: #d9dee8;
  --accent: #1f4e79;
  --accent-dark: #102a43;
  --gold: #b8873b;
  --focus: #0b5fff;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px;
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--accent-dark);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  min-height: 44px;
  padding: 10px 14px;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(31, 78, 121, 0.1);
  color: var(--accent-dark);
}

.menu-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--accent-dark);
  display: none;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  left: 0;
  position: absolute;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

main {
  flex: 1;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px 64px;
  width: 100%;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: 520px;
  padding: 72px 0 56px;
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

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

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

h4 {
  font-size: 16px;
  margin: 0 0 4px;
}

p {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy {
  font-size: 21px;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--accent-dark);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--accent-dark);
  color: #fff;
}

.button.primary:hover {
  background: #0b1f34;
}

.button.secondary {
  color: var(--accent-dark);
}

.button.secondary:hover {
  background: rgba(31, 78, 121, 0.1);
}

.hero-panel,
.note,
.three-column article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  align-self: end;
  padding: 28px;
}

.hero-asset {
  aspect-ratio: 900 / 620;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  height: auto;
  margin-bottom: 24px;
  width: 100%;
}

.panel-title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

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

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

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

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
}

.three-column {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.three-column article {
  box-shadow: none;
  padding: 24px;
}

.band {
  align-items: center;
  background: var(--accent-dark);
  color: #fff;
  display: grid;
  gap: 32px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 24px 0;
  padding: 48px;
}

.band .eyebrow {
  color: #efc879;
}

.band h2,
.band p {
  color: #fff;
}

.page-hero {
  max-width: 850px;
  padding: 72px 0 48px;
}

.split-section,
.contact-layout {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding: 24px 0 72px;
}

.contact-stack {
  gap: 32px;
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  width: 100%;
}

.contact-intro {
  max-width: 720px;
}

.note {
  box-shadow: none;
  padding: 28px;
}

.compact-note {
  align-self: start;
}

.values-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.values-list {
  display: grid;
  gap: 18px;
}

.values-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding-top: 18px;
}

.values-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.values-list p {
  font-size: 15px;
  margin: 0;
}

.narrow {
  max-width: 760px;
  padding-top: 0;
}

.timeline {
  display: grid;
  gap: 18px;
  padding-bottom: 56px;
}

.timeline article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 28px 0;
}

.step {
  color: var(--gold);
  font-weight: 900;
}

.email-link {
  color: var(--accent-dark);
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-form h3 {
  margin-bottom: 2px;
}

.contact-form p {
  font-size: 15px;
  margin-bottom: 8px;
}

.required-note {
  color: var(--muted);
  font-size: 14px;
  margin: -2px 0 4px;
}

.required-marker,
.required-note span {
  color: var(--gold);
  font-weight: 900;
}

.contact-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--focus);
  outline: 3px solid rgba(11, 95, 255, 0.16);
}

.contact-form .button {
  margin-top: 8px;
  width: fit-content;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
  margin: 4px 0 0;
}

.screen-reader-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  display: block;
  font-size: 1px;
  height: 1px;
  line-height: 1;
  margin: -1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  width: 100%;
}

.site-footer p {
  font-size: 15px;
  margin: 0;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .three-column,
  .band,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .band {
    padding: 32px 24px;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-label {
    display: none;
  }

  .nav {
    display: none;
    flex-basis: 100%;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-footer,
  main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    align-items: flex-start;
  }

  .nav a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .actions,
  .contact-form .button,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 39px;
  }
}
