:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf7f1;
  --ink: #16251d;
  --muted: #657267;
  --line: rgba(22, 37, 29, 0.14);
  --green: #123f31;
  --green-2: #1f6b52;
  --gold: #c78a45;
  --rose: #e9c9b7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 63, 49, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.82);
  box-shadow: 0 12px 40px rgba(22, 37, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--green-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(18, 63, 49, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: 760px;
  padding: 82px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-text,
.intro > p,
.section-heading + p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 15%, rgba(233, 201, 183, 0.9), transparent 34%),
    linear-gradient(145deg, #fef8ed, #d8e5d4 55%, #f3c7a6);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 34px;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.9;
}

.orb-one {
  right: 58px;
  top: 64px;
  width: 142px;
  height: 142px;
  background: #f5d2a4;
}

.orb-two {
  bottom: 64px;
  left: 54px;
  width: 196px;
  height: 196px;
  background: #b9d6c1;
}

.metric-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 48px rgba(22, 37, 29, 0.12);
  backdrop-filter: blur(18px);
}

.metric-card.main {
  width: min(100%, 340px);
  margin: 30px 0 150px auto;
}

.metric-card strong,
.stats strong,
.insight-grid strong {
  display: block;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.metric-card span,
.stats span {
  color: var(--muted);
  line-height: 1.5;
}

.metric-label {
  display: block;
  margin-bottom: 22px;
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-grid {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.stats div {
  padding: 20px;
}

.intro,
.growth,
.insights,
.solution-band,
.cta {
  padding: 104px 0;
}

.feature-grid,
.story-grid,
.insight-grid,
.solution-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.quote-card,
.insight-grid article,
.solution-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(22, 37, 29, 0.06);
}

.feature-card {
  min-height: 310px;
  padding: 34px;
}

.feature-number {
  color: var(--gold);
  font-weight: 800;
}

.feature-card p,
.quote-card span,
.insight-grid p,
.solution-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.growth {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--green);
  color: var(--white);
}

.growth .eyebrow,
.growth .quote-card span {
  color: #f1c88d;
}

.section-heading {
  max-width: 760px;
}

.story-grid {
  grid-template-columns: 1fr 1.2fr 1fr;
}

.quote-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.quote-card p {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.quote-card.accent {
  background: #f5dcc4;
  color: var(--ink);
}

.quote-card.accent span {
  color: var(--green-2);
}

.insight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-grid article {
  padding: 34px;
}

.insight-grid strong {
  color: var(--green-2);
}

.solution-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.solution-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.solution-card {
  min-height: 330px;
  padding: 34px;
}

.solution-card.dark {
  background: var(--ink);
  color: var(--white);
}

.solution-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
}

.cta {
  padding: 96px 24px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 210, 164, 0.72), transparent 28%),
    linear-gradient(135deg, var(--green), #265b46);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.cta .button {
  margin-top: 16px;
  background: var(--white);
  color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 34px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--bg-soft);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .solution-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .feature-grid,
  .story-grid,
  .insight-grid,
  .solution-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 20px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-panel {
    min-height: 620px;
    padding: 18px;
  }

  .metric-card.main {
    margin: 20px 0 260px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .intro,
  .growth,
  .insights,
  .solution-band,
  .cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
