:root {
  --ink: #1e1a16;
  --espresso: #2a201a;
  --soft-black: #11100e;
  --cream: #f7f1e7;
  --paper: #fbf7ef;
  --stone: #d8ccbb;
  --olive: #6c7058;
  --gold: #b9935a;
  --taupe: #8b7e6f;
  --line: rgba(30, 26, 22, .14);
  --white-line: rgba(247, 241, 231, .18);
  --shadow: 0 26px 70px rgba(17, 16, 14, .18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(185,147,90,.15), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.52), transparent 40%),
    var(--paper);
  font: 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251,247,239,.88);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.brand strong,
.site-footer strong {
  display: block;
  font: 800 13px/1.1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand em,
.site-footer span {
  display: block;
  margin-top: 4px;
  color: var(--taupe);
  font: 600 12px/1.2 var(--sans);
  font-style: normal;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #554b40;
  font-size: 14px;
  font-weight: 700;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--olive); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(56px, 7vw, 96px) clamp(22px, 6vw, 88px);
}

.hero-copy { max-width: 690px; }
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--olive);
  font: 900 11px/1.25 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--espresso);
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 7.7vw, 7.9rem);
  line-height: .9;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.75rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.14;
}

p { margin: 0; max-width: 66ch; }
.lede {
  margin-top: 26px;
  color: #5a5148;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font: 900 12px/1.1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17,16,14,.15);
}

.primary { background: var(--soft-black); color: var(--cream); }
.secondary { border-color: var(--espresso); color: var(--espresso); background: rgba(255,255,255,.22); }

.scope-note {
  margin-top: 34px;
  max-width: 590px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.42);
  color: #5a5148;
  font-size: .92rem;
  line-height: 1.55;
}

.scope-note strong { color: var(--espresso); }

.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 540px);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px 28px 4px 28px;
  box-shadow: var(--shadow);
}

.caption-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(270px, 72%);
  padding: 22px;
  background: rgba(247,241,231,.94);
  box-shadow: 0 18px 38px rgba(17,16,14,.18);
}

.caption-card span {
  color: var(--olive);
  font: 900 10px/1.2 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.caption-card p {
  margin-top: 12px;
  font: 500 1.35rem/1.12 var(--display);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--espresso);
  color: var(--cream);
}

.strip div {
  min-height: 128px;
  padding: 28px clamp(22px, 4vw, 46px);
  border-right: 1px solid var(--white-line);
}

.strip div:last-child { border-right: 0; }
.strip strong {
  display: block;
  margin-bottom: 7px;
  font: 900 11px/1.2 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.strip span { color: rgba(247,241,231,.72); font-size: .94rem; line-height: 1.45; }

.section {
  padding: clamp(78px, 10vw, 132px) clamp(22px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 7vw, 92px);
}

.split h2 { max-width: 9ch; }

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.note-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(251,247,239,.88);
}

.note-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font: 900 12px/1 var(--sans);
  letter-spacing: .18em;
}

.note-grid p,
.principle-grid p {
  margin-top: 12px;
  color: #62584e;
  font-size: .96rem;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(42px, 6vw, 72px) clamp(22px, 6vw, 88px);
  background: var(--soft-black);
  color: var(--cream);
}

.image-band img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 3px;
}

.image-band h2,
.image-band p { color: var(--cream); }
.image-band p:last-child {
  margin-top: 22px;
  color: rgba(247,241,231,.74);
}

.principles {
  text-align: center;
}

.principles h2 {
  max-width: 760px;
  margin-inline: auto;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
  text-align: left;
}

.principle-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.34);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(74px, 10vw, 132px) clamp(22px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(42,32,26,.92), rgba(17,16,14,.96)),
    var(--soft-black);
  color: var(--cream);
}

.join-section h2 { color: var(--cream); max-width: 10ch; }
.join-section p { margin-top: 22px; color: rgba(247,241,231,.76); }
.join-section ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(247,241,231,.78);
}
.join-section li::before {
  content: "—";
  color: var(--gold);
  margin-right: 10px;
}

.optin-card {
  align-self: start;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-disclosure {
  margin-bottom: 24px;
  padding: 15px 16px;
  border-left: 3px solid var(--gold);
  background: #efe5d5;
  color: #554b40;
  font-size: .88rem;
  line-height: 1.5;
}

label {
  display: block;
  margin: 18px 0 7px;
  font: 900 11px/1.2 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--espresso);
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(30,26,22,.22);
  border-radius: 0;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  padding: 12px 13px;
  font: 16px/1.2 var(--sans);
}

input:focus,
select:focus,
.button:focus,
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-button { width: 100%; margin-top: 24px; border-radius: 0; }
.form-footnote,
.form-status {
  margin-top: 14px;
  color: #70665c;
  font-size: .86rem;
  line-height: 1.45;
}

.form-status.success { color: #496b3e; }
.form-status.error { color: #8a3d2f; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(22px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.site-footer nav { flex-wrap: wrap; justify-content: flex-end; }

.simple-page {
  background: var(--paper);
}

.legal {
  width: min(760px, calc(100% - 42px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.legal h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.legal p {
  margin-top: 22px;
  color: #554b40;
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--olive);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .image-band,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: stretch;
    width: 100%;
  }

  .strip,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .strip div:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

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

  h1 { font-size: clamp(3rem, 16vw, 4.2rem); }

  .caption-card {
    left: 14px;
    bottom: 14px;
  }

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