/* Talk to Your Sponsor — shared styles */
:root {
  --bg: #FAF5F1;
  --bg-warm: #F5E9E2;
  --cream: #FDF8F3;
  --ink: #2E2522;
  --ink-soft: #5C4A44;
  --ink-muted: #8A7670;
  --rose: #C97B6B;
  --rose-deep: #A85E4E;
  --dusty: #D4A5A5;
  --blush: #E8C4B8;
  --peach: #F0D4B8;
  --sage: #9BAFA0;
  --sage-soft: #C4D0C2;
  --line: rgba(46, 37, 34, 0.08);
  --line-strong: rgba(46, 37, 34, 0.14);

  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
}

.serif-italic { font-family: var(--serif); font-style: italic; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Soft gradient background — reusable */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mesh-bg::before,
.mesh-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.mesh-bg::before {
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--blush), transparent 70%);
  top: -220px; left: -180px;
}
.mesh-bg::after {
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--peach), transparent 70%);
  top: 20%; right: -200px;
}
.mesh-blob-3 {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dusty), transparent 70%);
  filter: blur(100px);
  opacity: 0.4;
  bottom: -200px;
  left: 30%;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink);
  padding: 14px 20px;
}
.btn-ghost:hover {
  color: var(--rose-deep);
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px -8px rgba(201,123,107,0.45);
}
.btn-rose:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(155, 175, 160, 0.25);
}

/* Utility */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Section spacing */
section { position: relative; }

/* Focus */
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

/* Shared site footer */
.site-footer {
  padding: 56px 40px 40px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.site-footer[data-dark="true"] {
  background: var(--ink);
  color: var(--cream);
  border-top: none;
}
.site-footer[data-dark="true"] a { color: rgba(253,248,243,0.8); }
.site-footer[data-dark="true"] a:hover { color: var(--cream); }
.site-footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px;
}
.site-footer-left { display: flex; flex-direction: column; gap: 10px; }
.site-footer-tagline {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--ink-muted); margin: 0;
}
.site-footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-soft);
}
.site-footer-links a:hover { color: var(--ink); }
.site-footer-meta {
  max-width: 1320px; margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.site-footer[data-dark="true"] .site-footer-meta { border-top-color: rgba(253,248,243,0.12); }
.site-footer-pwrd {
  font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.site-footer-pwrd strong {
  color: var(--rose-deep); font-weight: 600;
}
.site-footer-pwrd:hover strong { color: var(--rose); }
.site-footer-legal {
  max-width: 1320px; margin: 14px auto 0;
  font-size: 12px; color: var(--ink-muted);
  font-family: var(--serif); font-style: italic;
}
