:root {
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --bg: #ecdecd;
  --fg: #2c3428;
  --card: #f4ebe0;
  --primary: #5a6848;
  --muted: #6b7058;
  --border: #d3c2ae;
  --max: 72rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.1rem; }
@media (min-width: 700px) { .wrap { padding: 0 2rem; } }
.header {
  position: sticky; top: 0; z-index: 20;
  background: rgb(236 222 205 / 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 3.6rem; gap: 0.6rem;
}
@media (min-width: 700px) { .header-row { min-height: 4.25rem; gap: 1rem; } }
.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; min-width: 0; }
.logo img { width: 2.15rem; height: 2.15rem; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.logo span { min-width: 0; }
.logo-kicker {
  display: block; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.logo-sub { display: block; font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: var(--muted); }
@media (min-width: 700px) {
  .logo-kicker { font-size: 0.7rem; letter-spacing: 0.22em; }
  .logo-sub { font-size: 0.9rem; }
}
.nav { display: none; gap: 1.75rem; }
.nav a { text-decoration: none; font-size: 0.875rem; color: var(--muted); }
@media (min-width: 900px) { .nav { display: flex; } }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.5rem; padding: 0 0.9rem; border-radius: 999px;
  background: var(--primary); color: var(--bg); text-decoration: none; font-weight: 500;
  border: 1px solid var(--primary); font-size: 0.82rem; white-space: nowrap; flex-shrink: 0;
}
@media (min-width: 700px) {
  .btn { min-height: 2.75rem; padding: 0 1.4rem; font-size: 1rem; }
}
.btn-outline { background: transparent; color: var(--fg); }
.btn-lg {
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  width: 100%;
  max-width: 26rem;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
  height: auto;
}
@media (min-width: 700px) { .btn-lg { width: auto; } }

.hero img {
  width: 100%;
  height: 52vw;
  min-height: 14.5rem;
  max-height: 22rem;
  object-fit: cover;
  object-position: 32% 10%;
}
@media (min-width: 700px) {
  .hero img {
    height: min(72vh, 44rem);
    min-height: 0;
    max-height: none;
    object-position: 28% 14%;
  }
}
.hero.hero-face img {
  object-position: 50% 22%;
  height: 78vw;
  max-height: 22rem;
}
@media (min-width: 700px) {
  .hero.hero-face img {
    height: min(48vh, 26rem);
    object-position: 50% 28%;
  }
}

.section { padding: 2.6rem 0; }
@media (min-width: 700px) { .section { padding: 4.5rem 0; } }
.card-bg { background: var(--card); }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-weight: 500; margin: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; }
h1 { font-size: clamp(1.85rem, 1.2rem + 3.2vw, 3rem); margin: 0.85rem 0 0; }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.4rem); margin: 0.85rem 0 0; }
h3 { font-size: 1.35rem; margin: 0.4rem 0; }
.lead { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 1rem + 1.2vw, 1.5rem); }
.muted { color: var(--muted); }
.max { max-width: 40rem; }
.split { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.photo { width: 100%; border-radius: 1rem; object-fit: cover; }
.photo-portrait { aspect-ratio: 4/5; object-position: 50% 12%; max-height: 30rem; margin: 0 auto; }
.photo-wide { aspect-ratio: 16/10; }
.grid-3 { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; } }
.grid-2 { display: grid; gap: 1rem; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.tile { background: var(--card); border-radius: 1rem; padding: 1.25rem; }
@media (min-width: 700px) { .tile { padding: 1.5rem; } }
.tile img { width: 100%; height: 10rem; object-fit: cover; border-radius: 0.7rem; margin-bottom: 0.9rem; }
.band { display: grid; }
.band-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 639px) {
  .band-3 { grid-template-columns: 1fr; }
  .band-2 { grid-template-columns: 1fr; }
}
@media (min-width: 640px) { .band-3 { grid-template-columns: 1fr 1fr 1fr; } }
.band img { width: 100%; height: 14rem; object-fit: cover; }
@media (min-width: 640px) { .band img { height: 22rem; } }
.center { text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.offer { background: var(--card); border-radius: 1rem; padding: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 900px) { .offer { padding: 2.5rem; } }
.footer { border-top: 1px solid var(--border); padding: 2.5rem 0; background: #e0d0bc; }
.footer-row { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 700px) { .footer-row { flex-direction: row; justify-content: space-between; } }
address { font-style: normal; }
input, textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  min-height: 2.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  border-radius: 0.45rem;
  padding: 0 0.8rem;
}
textarea { min-height: 8rem; padding: 0.8rem; }

.dl-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 800px) {
  .dl-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.dl-card {
  background: var(--card);
  border-radius: 1.15rem;
  padding: 1.25rem;
}
@media (min-width: 700px) { .dl-card { padding: 1.75rem; } }
.dl-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
}
.dl-card h2 { margin-top: 0.45rem; }
.dl-card .btn { margin-top: 1.25rem; width: 100%; max-width: none; }
.dl-card audio {
  width: 100%;
  margin-top: 1rem;
  height: 2.75rem;
}

.optin-frame {
  display: block;
  width: 100%;
  height: 22rem;
  border: 0;
  margin-top: 1rem;
  background: transparent;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}
.who-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
}
details.faq {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
details.faq:last-child { border-bottom: 1px solid var(--border); }
details.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
}
details.faq p { margin: 0.7rem 0 0; }
.cta-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.stack > p { margin: 0 0 1.05rem; }
.stack > p:last-child { margin-bottom: 0; }
.punch {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.15rem + 1.6vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 1.4rem 0 1rem;
}
.moments { display: grid; gap: 1rem; margin: 1.75rem 0 0.25rem; }
@media (min-width: 800px) { .moments { grid-template-columns: 1fr 1fr 1fr; } }
.moment {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
}
.moment h3 { font-size: 1.18rem; margin: 0 0 0.45rem; }
.moment p { margin: 0; font-size: 0.95rem; }
.quote-pair { display: grid; gap: 1rem; margin-top: 1.25rem; }
@media (min-width: 800px) { .quote-pair { grid-template-columns: 1fr 1fr; } }
.quote-short p { margin: 0; font-size: 0.95rem; }
.price-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  margin: 1.5rem 0 0.4rem;
}

.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.before-after {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) { .before-after { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.ba-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.3rem 1.35rem;
}
.ba-col h3 { margin: 0 0 0.85rem; }
.ba-col ul { margin: 0; padding: 0; list-style: none; }
.ba-col li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}
.ba-col li:first-child { border-top: 0; padding-top: 0; }
.grid-4 { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 700px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.challenge {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.7rem;
}
.cta-block { margin-top: 2rem; }
.cta-block .cta-row { margin-top: 0.85rem; }

.trust {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 800px) { .trust { grid-template-columns: 1.1fr 1fr 1fr; } }
.trust article {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7.5rem;
}
.trust img { height: 52px; width: auto; max-width: 100%; }
.trust h3 { font-size: 1.15rem; margin: 0.35rem 0 0; }
.trust p { margin: 0.2rem 0 0; }
