:root {
  --bg: #f4ecdf;
  --bg-soft: #f8f3ea;
  --panel: rgba(255, 249, 240, 0.82);
  --panel-strong: #fffaf1;
  --ink: #1d342e;
  --ink-soft: #4b625c;
  --line: rgba(29, 52, 46, 0.14);
  --brand: #1f7a63;
  --brand-deep: #114d40;
  --accent: #df6a3b;
  --shadow: 0 24px 60px rgba(28, 47, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(223, 106, 59, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 122, 99, 0.15), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 46%, #efe5d6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.hero,
.stats-band,
.feature-section,
.story-section,
.audience-section,
.contact-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 224px;
  height: 224px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 16px 28px rgba(28, 47, 42, 0.12));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 6px 0 20px;
}

.hero-copy,
.hero-panel,
.feature-section,
.story-section,
.audience-section,
.contact-section,
.site-footer {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 40px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.45rem;
}

.hero-text,
.story-copy p,
.contact-copy p,
.feature-card p,
.audience-grid p,
.site-footer p,
.panel-card p,
.form-note,
label,
textarea,
input,
select {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(29, 52, 46, 0.08);
  font-weight: 600;
}

.hero-panel {
  padding: 22px;
  border-radius: calc(var(--radius-xl) + 4px);
  display: grid;
  gap: 16px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(17, 77, 64, 0.93), rgba(18, 55, 49, 0.98)),
    var(--panel);
  color: #fdf8ef;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 292px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(7, 24, 21, 0.78) 100%);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card figcaption {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-photo-card figcaption span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.84;
}

.hero-photo-card figcaption p {
  margin: 0;
  color: #fdf8ef;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
}

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

.panel-safety {
  grid-column: 1 / -1;
}

.panel-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-card p,
.panel-card strong,
.panel-card span {
  color: inherit;
}

.panel-time,
.panel-label,
.feature-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.78;
}

.photo-chip {
  display: flex;
  align-items: center;
  gap: 14px;
}

.photo-dot {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffd9ca, #df6a3b 55%, #71311c 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.stats-band {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(29, 52, 46, 0.08);
}

.stats-band article {
  padding: 30px;
  background: rgba(255, 252, 246, 0.74);
}

.stats-band strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-deep);
}

.feature-section,
.audience-section,
.contact-section,
.site-footer,
.story-section {
  border-radius: var(--radius-xl);
  padding: 34px;
  margin-top: 26px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

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

.feature-card,
.audience-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 52, 46, 0.08);
}

.feature-card h3,
.audience-grid h3 {
  margin-bottom: 12px;
}

.story-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.story-copy p + p {
  margin-top: 14px;
}

.quote-card {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 30px;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(135deg, rgba(223, 106, 59, 0.16), rgba(31, 122, 99, 0.22)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 52, 46, 0.08);
}

.quote-photo {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(29, 52, 46, 0.1);
}

.quote-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.quote-card p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1.15;
}

.quote-card span {
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(29, 52, 46, 0.14);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(31, 122, 99, 0.24);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
}

.form-note.is-success {
  color: var(--brand-deep);
  font-weight: 700;
}

.impact-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(31, 122, 99, 0.1);
  border: 1px solid rgba(31, 122, 99, 0.18);
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand-deep);
  font-weight: 700;
}

.footer-partner-logo {
  width: min(220px, 100%);
  height: auto;
  margin-top: 8px;
}

.sources-line {
  font-size: 0.92rem;
}

.company-line {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero,
  .story-section,
  .contact-section,
  .feature-grid,
  .audience-grid,
  .stats-band,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-header {
    align-items: start;
    flex-direction: column;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-copy,
  .feature-section,
  .story-section,
  .audience-section,
  .contact-section,
  .site-footer {
    padding: 28px;
  }

  .panel-safety {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 16px;
  }

  .brand-mark {
    width: 148px;
    height: 148px;
  }

  .hero-copy,
  .hero-panel,
  .feature-section,
  .story-section,
  .audience-section,
  .contact-section,
  .site-footer {
    border-radius: 24px;
    padding: 22px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }
}
