:root {
  --cream: #f8f5ef;
  --cream-deep: #e8eee5;
  --rust: #2f6f5e;
  --rust-dark: #244f45;
  --gold: #c5a45d;
  --charcoal: #202423;
  --muted: #68706b;
  --line: rgba(32, 36, 35, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(32, 36, 35, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.55rem, 12vw, 5.85rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 9vw, 4rem); }
h3 { font-size: 1.35rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(248, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.primary-nav {
  display: none;
  position: absolute;
  inset: 72px 14px auto 14px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.primary-nav.is-open { display: grid; gap: 4px; }
.primary-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
}

.section {
  padding: clamp(64px, 11vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 34px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.row-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow {
  color: var(--rust-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img { object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 20, 17, 0.24), rgba(22, 20, 17, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(1080px, 100%);
  padding: clamp(90px, 18vh, 180px) clamp(18px, 5vw, 72px) clamp(44px, 9vh, 92px);
  color: var(--white);
}

.hero-content p { color: rgba(255, 255, 255, 0.86); max-width: 720px; }
.hero-content .eyebrow { color: #d8bd76; }

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.warm-section { background: var(--cream-deep); }

.about-grid {
  display: grid;
  gap: 28px;
}

.about-copy {
  display: grid;
  gap: 18px;
  font-size: 1.04rem;
}

.feature-grid,
.benefit-grid,
.stats-grid,
.partner-section {
  display: grid;
  gap: 16px;
}

.impact-section {
  color: var(--white);
  background: var(--charcoal);
}
.impact-section p,
.impact-section .eyebrow { color: rgba(255, 255, 255, 0.76); }

.note {
  margin-top: 22px;
  color: var(--charcoal);
}

.contact-section {
  display: grid;
  gap: 24px;
  background: #fbfaf6;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 72px) 30px;
  color: rgba(255, 255, 255, 0.82);
  background: #171c1b;
}

.site-footer h3,
.site-footer .brand { color: var(--white); }
.site-footer a,
.site-footer p { color: rgba(255, 255, 255, 0.76); }
.site-footer > div { display: grid; gap: 10px; align-content: start; }
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
}
