:root {
  --bg: #f5f2ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #13261c;
  --muted: #54655b;
  --accent: #214f34;
  --accent-strong: #173a27;
  --accent-soft: #dce9df;
  --line: rgba(19, 38, 28, 0.12);
  --shadow: 0 28px 60px rgba(16, 34, 24, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126, 167, 92, 0.16), transparent 34%),
    linear-gradient(180deg, #fbf8f2 0%, #f1ede3 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.site-header,
.hero,
.info-grid,
.narrative-section,
.cta-section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(38vw, 340px);
}

.site-logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.97;
}

.header-link {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-strong);
  font-weight: 600;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

.hero-copy,
.info-card,
.metrics-card,
.cta-panel,
.signal-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 242, 0.88));
  border-radius: var(--radius-xl);
  min-height: 640px;
}

.eyebrow,
.card-kicker,
.signal-title {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

h2 {
  margin-bottom: 16px;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lead,
.narrative-copy p,
.cta-panel p,
.signal-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-link:hover,
.signal-card a:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #2f6e45 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(33, 79, 52, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.hero-points,
.info-card ul {
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.hero-points li,
.info-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-points li::before,
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #79b25b;
  transform: translateY(-50%);
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 32px 64px rgba(19, 38, 28, 0.18);
  height: 100%;
  min-height: 640px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.signal-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(19, 49, 31, 0.9);
  color: #f5f8f3;
}

.signal-title,
.signal-text,
.signal-card a {
  color: inherit;
}

.signal-text {
  margin-bottom: 10px;
}

.signal-card a {
  font-weight: 700;
}

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

.info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.narrative-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.narrative-copy {
  padding: 12px 6px 12px 8px;
}

.metrics-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(33, 79, 52, 0.96), rgba(23, 58, 39, 0.98));
  color: #edf4ef;
}

.metric-value {
  display: block;
  margin-bottom: 6px;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric-label {
  color: rgba(237, 244, 239, 0.8);
  line-height: 1.6;
}

.cta-section {
  padding-bottom: 34px;
}

.cta-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 229, 0.82)),
    linear-gradient(120deg, #eff5ec 0%, #ffffff 100%);
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .narrative-section {
    grid-template-columns: 1fr;
  }

  .site-logo {
    max-width: min(52vw, 320px);
  }

  .hero-image-frame img {
    min-height: 520px;
  }

  .hero-copy,
  .hero-media,
  .hero-image-frame {
    min-height: unset;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .hero-copy,
  .info-card,
  .metrics-card,
  .cta-panel {
    padding: 24px;
  }

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

  .hero-image-frame img {
    min-height: 380px;
  }

  .signal-card {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    max-width: none;
  }
}
