:root {
  --ink: #24312f;
  --muted: #62706c;
  --paper: #fffaf2;
  --soft: #f4eadf;
  --line: #ded1c4;
  --green: #2f6f5f;
  --green-dark: #214b42;
  --coral: #cf6b55;
  --blue: #567a9f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(46, 42, 36, 0.14);
}

* {
  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: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(222, 209, 196, 0.7);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100svh - 78px);
  padding: clamp(32px, 6vw, 76px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.94) 0%, rgba(255, 250, 242, 0.76) 54%, rgba(244, 234, 223, 0.9) 100%),
    radial-gradient(circle at 84% 20%, rgba(86, 122, 159, 0.18), transparent 34%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.6vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(47, 111, 95, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
}

.portrait-wrap {
  margin: 0;
}

.portrait {
  display: block;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  margin-left: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-wrap figcaption {
  max-width: 430px;
  margin: 14px 0 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro-band div {
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--white);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  font-size: 1.05rem;
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 92px);
}

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

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

.feature-card {
  min-height: 238px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card p,
.trust-section p,
.contact-section p {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--green);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--coral);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 90px);
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 209, 196, 0.72);
  border-radius: 8px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--green-dark);
  background: #dceae5;
  border-radius: 8px;
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.trust-section p {
  max-width: 680px;
  font-size: 1.16rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 6vw, 92px) clamp(44px, 6vw, 76px);
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
}

.contact-section .eyebrow,
.contact-section p {
  color: #d8eee8;
}

.contact-section h2 {
  max-width: 720px;
  margin-bottom: 10px;
}

.contact-section .button-primary {
  flex: 0 0 auto;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 92px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
  }

  .hero,
  .split-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait {
    width: min(100%, 520px);
    margin: 0;
  }

  .portrait-wrap figcaption {
    margin-left: 0;
  }

  .intro-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .step {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
