/* the quiet bride — shared bridge-page styles
   Editorial, calm, mobile-first. Single CSS file used by all bridge pages. */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5EFE6;
  --ink: #1B1B1B;
  --sage: #9CA68C;
  --sage-deep: #6B7559;
  --warm-cream: #FAF6EE;
  --dusty-blue: #D6E4EC;
  --terracotta: #C66D45;
  --forest: #3D5A4A;
  --gold: #D4B978;
  --shadow: rgba(27, 27, 27, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ── Brand bar ───────────────────────────────────────────── */
.brand-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(27,27,27,0.08);
  padding: 18px 24px;
  text-align: center;
}
.brand-bar a {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}
.brand-bar small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--sage-deep);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── FTC disclosure ──────────────────────────────────────── */
.ftc {
  background: var(--warm-cream);
  border-left: 3px solid var(--sage);
  padding: 14px 18px;
  margin: 0 auto;
  max-width: 760px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--sage-deep);
  line-height: 1.5;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 40px auto 24px;
  padding: 0 24px;
  text-align: center;
}
.hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 22px;
}
.hero .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  max-width: 56ch;
  margin: 0 auto;
  opacity: 0.78;
}
.hero img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 36px auto 0;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 80px var(--shadow);
}

/* ── Sections ────────────────────────────────────────────── */
section {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
}
h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 18px;
  text-transform: lowercase;
}
h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 8px;
  text-transform: lowercase;
}
p { margin-bottom: 14px; }
.subtle { color: var(--sage-deep); font-size: 15px; }

/* ── Email capture ───────────────────────────────────────── */
.capture {
  background: var(--warm-cream);
  padding: 36px 28px;
  text-align: center;
  border-radius: 4px;
  margin: 40px auto;
}
.capture h3 { margin-bottom: 8px; }
.capture form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 18px auto 0;
}
.capture input[type=email] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(27,27,27,0.18);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border-radius: 3px;
}
.capture button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
}
.capture button:hover { background: var(--sage-deep); }

/* ── Product cards ───────────────────────────────────────── */
.products {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product {
  background: var(--warm-cream);
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.product .num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 6px;
}
.product h3 { margin-bottom: 8px; }
.product p { font-size: 15px; margin-bottom: 16px; opacity: 0.85; flex: 1; }
.product a.btn {
  background: var(--ink);
  color: var(--cream);
  padding: 11px 18px;
  text-decoration: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  align-self: flex-start;
}
.product a.btn:hover { background: var(--sage-deep); }

/* Generic button (used outside product cards, e.g. capture CTAs) */
a.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 11px 22px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
}
a.btn:hover { background: var(--sage-deep); }

/* ── Related ─────────────────────────────────────────────── */
.related {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 20px;
}
.related-card {
  background: var(--warm-cream);
  padding: 22px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.related-card:hover { background: var(--cream); }
.related-card .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.related-card h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: lowercase;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 40px 24px;
  margin-top: 80px;
}
footer .wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  text-transform: lowercase;
  margin-bottom: 8px;
}
footer small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.6;
  text-transform: uppercase;
}
footer a { color: var(--cream); text-decoration: underline; }
