:root {
  --bg: #f3efe7;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf2;
  --ink: #102418;
  --muted: #4f5f56;
  --line: rgba(16, 36, 24, 0.12);
  --accent: #cc5f2f;
  --accent-dark: #8f3510;
  --highlight: #e5d2a8;
  --shadow: 0 24px 60px rgba(35, 41, 31, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(204, 95, 47, 0.12), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(229, 210, 168, 0.9), transparent 18%),
    linear-gradient(180deg, #f8f4eb 0%, #f1ebe0 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #e2a74e);
  box-shadow: 0 0 0 8px rgba(204, 95, 47, 0.1);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.results-panel,
.cta-section,
.info-card,
.timeline article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.78);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-dark);
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  max-width: 15ch;
}

.lead,
.info-card p,
.timeline p,
.results-panel p,
.cta-copy p,
.stat-card p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

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

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

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

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

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 36, 24, 0.97) 0%, rgba(33, 53, 40, 0.96) 100%);
  color: #fff6e8;
  min-height: 100%;
}

.stat-card {
  position: relative;
  z-index: 2;
  max-width: 28ch;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(14px);
}

.stat-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #f0c690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.signal-grid {
  position: absolute;
  inset: auto -40px -40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 220px;
  opacity: 0.55;
  transform: rotate(-10deg);
}

.signal-grid span {
  aspect-ratio: 1;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(240, 198, 144, 0.2), rgba(204, 95, 47, 0.68));
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 18px 0 0;
}

.logo-strip p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  text-align: center;
  color: var(--muted);
}

.section {
  margin-top: 28px;
}

.section-heading {
  padding: 12px 4px 20px;
}

.card-grid,
.timeline,
.metrics {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card h3,
.timeline h3,
.metrics strong {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.section-accent {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(229, 210, 168, 0.34), rgba(255, 252, 247, 0.86));
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline article {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.74);
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--ink);
  color: #fff8ef;
  font-weight: 700;
}

.results-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(243, 239, 231, 0.84);
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 36, 24, 0.98), rgba(44, 69, 52, 0.96));
  color: #fff8ee;
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 248, 238, 0.74);
}

.cta-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 238, 0.08);
}

.cta-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  font: inherit;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 248, 238, 0.48);
}

.cta-form .button-primary {
  border: 0;
  background: linear-gradient(135deg, #e6ab4f, #cc5f2f);
  color: #201209;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero,
  .card-grid,
  .timeline,
  .results-panel,
  .metrics,
  .cta-section,
  .hero-points,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-card,
  .results-panel,
  .cta-section {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    top: 8px;
    margin-bottom: 18px;
    padding: 14px 16px;
  }

  .nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero-copy {
    padding: 22px;
  }
}
