:root {
  --paper: #f5f4ee;
  --cream: #fffdf7;
  --ink: #272a1f;
  --muted: #626557;
  --sage: #5f7218;
  --deep: #202817;
  --gold: #b8863d;
  --clay: #b87452;
  --mist: #e7eadb;
  --line: #d7dcc7;
  --shadow: 0 22px 60px rgba(32, 40, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1.58;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.campaign-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 5vw;
  background: rgba(245, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.96;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link,
.nav-summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--deep);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-summary {
  list-style: none;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.campaign-menu {
  position: relative;
}

.campaign-menu[open] .nav-summary {
  border-color: var(--gold);
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, 88vw);
  padding: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.menu-panel a:hover,
.menu-panel a:focus {
  background: var(--mist);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 44px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 5vw 50px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.42;
}

.body-copy {
  color: var(--muted);
  font-size: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: var(--sage);
  color: #fffdf7;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--sage);
}

.support-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-media {
  position: relative;
}

.hero-media img,
.image-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: -26px;
  bottom: 26px;
  width: min(300px, 74%);
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 18px 40px rgba(32, 40, 23, 0.14);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 5vw;
}

.section.narrow {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.quote-panel {
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

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

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.card p,
.panel p {
  color: var(--muted);
}

.offer-band {
  background: linear-gradient(180deg, #202817, #2d361f);
  color: var(--cream);
}

.offer-band .section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.offer-band .body-copy,
.offer-band .support-line {
  color: rgba(255, 253, 247, 0.76);
}

.offer-box {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.price {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.86);
  font-size: 23px;
}

.journal-stack {
  display: grid;
  gap: 12px;
}

.journal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.journal-card summary {
  min-height: 64px;
  padding: 17px 20px;
  color: var(--sage);
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.journal-card div {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 22px;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.site-footer {
  padding: 36px 5vw 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 18px;
}

@media (max-width: 920px) {
  body {
    font-size: 20px;
  }

  .campaign-nav {
    position: relative;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand {
    font-size: 29px;
  }

  .nav-actions {
    max-width: 66vw;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-link,
  .nav-summary,
  .menu-panel a {
    font-size: 19px;
  }

  .hero,
  .split,
  .offer-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 28px;
  }

  .lead {
    font-size: 25px;
  }

  .body-copy {
    font-size: 23px;
  }

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

  .card {
    min-height: 0;
  }

  .hero-note {
    left: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .campaign-nav {
    display: block;
  }

  .nav-actions {
    max-width: 100%;
    margin-top: 12px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 24px;
  }

  .button {
    width: 100%;
  }

  .panel,
  .card {
    padding: 22px;
  }
}
