:root {
  --cream: #f7f0e6;
  --paper: #fffaf3;
  --ink: #1d1b19;
  --muted: #6b645d;
  --red: #a22f2f;
  --green: #2d6a45;
  --line: rgba(29, 27, 25, 0.12);
  --shadow: 0 20px 60px rgba(29, 27, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at top left, rgba(162, 47, 47, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 106, 69, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf6ee 0%, #f5ecdf 100%);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

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

.page {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero,
.campaign {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero {
  min-height: 100vh;
  padding: 22px 0 36px;
}

.hero-copy,
.campaign-copy,
.campaign-list,
.card {
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(162, 47, 47, 0.9), rgba(45, 106, 69, 0.9));
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 10px 0 22px;
}

.card,
.campaign-copy,
.campaign-list {
  padding: 28px;
}

.card-label {
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 700;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.card p:last-child,
.campaign-copy p:last-child,
.list-text {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.accent {
  background: linear-gradient(180deg, rgba(162, 47, 47, 0.08), rgba(255, 250, 243, 0.88));
}

.campaign {
  margin-top: 24px;
}

blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.campaign-list {
  display: grid;
  gap: 16px;
}

.list-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.list-title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

@media (max-width: 900px) {
  .hero,
  .campaign,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
  }

  .hero-copy,
  .campaign-copy,
  .campaign-list,
  .card {
    padding: 24px;
  }
}
