:root {
  --ink: #132338;
  --ink-2: #23354d;
  --ivory: #f7f1e7;
  --paper: #fffaf2;
  --copper: #b66a39;
  --copper-dark: #8f4d25;
  --sage: #50665a;
  --line: rgba(19, 35, 56, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 35, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 24, 40, 0.86), rgba(12, 24, 40, 0.24));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 250, 242, 0.16);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 56px) 58px;
  background: var(--ink);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 23, 39, 0.92) 0%, rgba(10, 23, 39, 0.70) 36%, rgba(10, 23, 39, 0.18) 72%),
    linear-gradient(0deg, rgba(10, 23, 39, 0.52), rgba(10, 23, 39, 0.08));
}

.hero-content {
  position: relative;
  max-width: 780px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.94;
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

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

.button-light {
  width: 100%;
  color: var(--ink);
  background: var(--ivory);
}

.consultation-link {
  margin-top: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.section,
.section-band,
.pathway,
.consultation {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

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

.section-band {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split-grid,
.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-grid p:last-child,
.split-grid p {
  color: var(--ink-2);
  font-size: 1.08rem;
}

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

.section-heading.light {
  color: var(--white);
}

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

.feature-card {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(19, 35, 56, 0.06);
}

.feature-index {
  display: block;
  margin-bottom: 40px;
  color: var(--copper);
  font-weight: 900;
}

.feature-card p {
  color: var(--ink-2);
}

.pathway {
  background: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.steps li {
  min-height: 190px;
  padding: 24px;
  background: #172d48;
  color: var(--white);
}

.steps strong {
  display: block;
  margin-bottom: 46px;
  color: var(--ivory);
  font-size: 1.35rem;
}

.steps span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background: var(--copper);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(19, 35, 56, 0.22);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(182, 106, 57, 0.42);
  outline-offset: 3px;
}

.form-note {
  margin: 0;
  color: rgba(19, 35, 56, 0.62);
  font-size: 0.86rem;
}

.consultation {
  background: linear-gradient(135deg, #132338, #25445d 58%, #50665a);
  color: var(--white);
}

.consultation p {
  color: rgba(255, 255, 255, 0.82);
}

.dark-form {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(12, 24, 40, 0.76);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.dark-form label,
.dark-form .form-note {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: #0d1826;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: center;
    padding-top: 98px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 23, 39, 0.94), rgba(10, 23, 39, 0.58)),
      linear-gradient(0deg, rgba(10, 23, 39, 0.54), rgba(10, 23, 39, 0.22));
  }

  .intro-grid,
  .split-grid,
  .consultation-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .steps strong {
    margin-bottom: 14px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 180px;
    line-height: 1.1;
  }

  .hero {
    min-height: 735px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 3.1rem;
  }

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

  .trust-strip span {
    width: 100%;
  }

  .lead-form,
  .feature-card {
    padding: 20px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
