:root {
  color-scheme: light;
  --ink: #101820;
  --navy: #142c4a;
  --navy-soft: #1f3d5f;
  --gold: #c79a34;
  --wood: #8a4f28;
  --cream: #f7f3ea;
  --surface: #ffffff;
  --muted: #62707b;
  --line: #ddd5c5;
  --shadow: 0 22px 60px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(221, 213, 197, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(180px, 19vw, 285px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: #263947;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  color: #fff;
  background: var(--navy);
  white-space: nowrap;
}

.button {
  padding: 0 18px;
}

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

.button.secondary {
  color: var(--navy);
  border-color: rgba(20, 44, 74, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.95), rgba(247, 243, 234, 0.78) 37%, rgba(247, 243, 234, 0.08) 71%),
    linear-gradient(0deg, rgba(247, 243, 234, 0.95), rgba(247, 243, 234, 0) 28%);
}

.hero-content {
  width: min(720px, 94vw);
  padding: clamp(92px, 14vh, 148px) clamp(20px, 5vw, 72px) 150px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.04;
}

h3 {
  color: var(--navy);
}

.hero-subhead {
  max-width: 640px;
  color: #293947;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 660px;
  color: #42515b;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.section,
.contact-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.intro-section,
.responsible-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-copy p,
.opportunity-section p,
.contact-intro p,
.feature-card p,
.steps p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-card,
.contact-form,
.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.opportunity-section,
.benefits-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.fit-list,
.benefits-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.fit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-list span,
.benefits-list li {
  border: 1px solid rgba(199, 154, 52, 0.28);
  border-radius: 8px;
  padding: 12px 14px;
  color: #2d3b45;
  background: rgba(255, 255, 255, 0.72);
}

.benefits-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 250px;
  padding: 58px 18px 20px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  content: counter(steps);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.responsible-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section {
  padding-top: 84px;
}

.contact-intro {
  max-width: 800px;
  margin-bottom: 24px;
}

.contact-form {
  padding: clamp(18px, 4vw, 30px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  color: #344552;
  font-size: 0.92rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

select,
input {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(280px, 1fr);
  gap: 18px 34px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #dfe7ea;
  background: #111c26;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: #aeb9c0;
}

.site-footer p {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0;
  color: #b7c0c6;
}

.footer-links {
  justify-content: flex-end;
  color: #fff;
}

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps li {
    min-height: 0;
  }
}

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

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .header-cta {
    min-height: 42px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.9) 48%, rgba(247, 243, 234, 0.2)),
      linear-gradient(0deg, rgba(247, 243, 234, 0.96), rgba(247, 243, 234, 0) 22%);
  }

  .hero-content {
    padding-top: 84px;
  }

  .intro-section,
  .opportunity-section,
  .benefits-section,
  .responsible-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 190px;
    height: 42px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 820px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .feature-grid,
  .fit-list,
  .benefits-list,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
