/* ============================================================
   Love Calculator by Name — styles
   Twilight-editorial romance palette. Mobile-first.
   ============================================================ */

:root {
  --ink: #241127;
  --plum: #3B1D42;
  --wine: #8E3B5E;
  --rose: #C97B84;
  --blush: #F5DEE2;
  --gold: #C9A24B;
  --ivory: #FBF6F0;
  --cream: #F3EBDF;

  --rose-25: rgba(201, 123, 132, 0.25);
  --rose-40: rgba(201, 123, 132, 0.40);
  --ink-70: rgba(36, 17, 39, 0.70);
  --ink-80: rgba(36, 17, 39, 0.82);
  --ink-45: rgba(36, 17, 39, 0.45);

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-soft: 0 12px 40px -12px rgba(36, 17, 39, 0.18);
  --shadow-card: 0 4px 24px -8px rgba(36, 17, 39, 0.14);
  --container: 64rem;
  --container-narrow: 48rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; color: var(--plum); margin: 0; font-weight: 600; }

a { color: inherit; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- Layout ------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) {
  .container, .container-narrow { padding: 0 2rem; }
}

.section { margin-top: 4rem; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Eyebrow / headings ----------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--wine); margin: 0;
}
.eyebrow.center { justify-content: center; display: flex; }

.h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); line-height: 1.08; }
.h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--ink-70); }
.section-head { max-width: 40rem; margin: 0 auto; text-align: center; }
.section-head h2 { margin-top: 0.75rem; }
.section-head p { margin-top: 0.75rem; color: var(--ink-70); }

/* ---- Prose ------------------------------------------------- */
.prose p { margin: 0 0 1rem; font-size: 1.0625rem; line-height: 1.75; color: var(--ink-80); }
.prose h2 { margin: 2.5rem 0 0.75rem; font-size: clamp(1.5rem, 3.5vw, 1.875rem); }
.prose h3 { margin: 1.75rem 0 0.5rem; font-size: 1.25rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--ink-80); }
.prose li::marker { color: var(--wine); }
.prose strong { color: var(--plum); }

/* ---- Header ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid rgba(201, 123, 132, 0.20);
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; height: 2.25rem; width: 2.25rem;
  border-radius: 999px; background: var(--wine); color: var(--ivory);
  transition: background 0.2s;
}
.brand:hover .brand-mark { background: var(--plum); }
.brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--plum); }

.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
.nav-desktop a { font-size: 0.875rem; font-weight: 500; color: var(--ink-70); text-decoration: none; transition: color 0.2s; }
.nav-desktop a:hover { color: var(--wine); }

.menu-toggle {
  display: grid; place-items: center; height: 2.5rem; width: 2.5rem;
  border: 0; background: transparent; color: var(--plum); border-radius: 0.5rem; cursor: pointer;
}
.menu-toggle .bars, .menu-toggle .bars::before, .menu-toggle .bars::after {
  content: ""; display: block; width: 1.5rem; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.25s, opacity 0.2s;
}
.menu-toggle .bars { position: relative; }
.menu-toggle .bars::before { position: absolute; top: -6px; }
.menu-toggle .bars::after { position: absolute; top: 6px; }
.menu-toggle.is-open .bars { background: transparent; }
.menu-toggle.is-open .bars::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open .bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile { border-top: 1px solid rgba(201, 123, 132, 0.20); background: var(--ivory); }
.nav-mobile .container { display: flex; flex-direction: column; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.nav-mobile a { padding: 0.75rem 0; font-size: 1rem; font-weight: 500; color: var(--ink-80); text-decoration: none; }
.nav-mobile a:hover { color: var(--wine); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle, .nav-mobile { display: none; }
}

/* ---- Buttons ---------------------------------------------- */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-primary {
  background: var(--wine); color: var(--ivory);
  padding: 0.875rem 1.75rem; font-size: 1rem; border: 0; box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--plum); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost {
  background: transparent; color: var(--wine);
  padding: 0.75rem 1.5rem; font-size: 0.875rem; border: 1px solid rgba(142, 59, 94, 0.4);
}
.btn-ghost:hover { background: rgba(142, 59, 94, 0.06); }
.btn-primary:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
@media (max-width: 639px) { .btn-block-sm { width: 100%; } }

/* ---- Fields ----------------------------------------------- */
.field-label { display: block; margin-bottom: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--plum); }
.field-input {
  width: 100%; border-radius: 0.75rem; border: 1px solid var(--rose-40);
  background: rgba(255, 255, 255, 0.8); padding: 0.875rem 1rem; font-size: 1rem;
  color: var(--ink); font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.field-input::placeholder { color: rgba(36, 17, 39, 0.35); }
.field-input:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(142, 59, 94, 0.22); }
.field-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Card ------------------------------------------------- */
.card {
  border-radius: 1rem; border: 1px solid var(--rose-25);
  background: rgba(255, 255, 255, 0.72); padding: 1.5rem; box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .card { padding: 2rem; } }

/* ---- Hero -------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-top: 2.5rem; }
@media (min-width: 640px) { .hero { padding-top: 3.5rem; } }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 520px; pointer-events: none;
  background: linear-gradient(to bottom, rgba(245, 222, 226, 0.7), var(--ivory) 70%);
}
.hero > .container { position: relative; }
.hero-head { max-width: 42rem; margin: 0 auto; text-align: center; }
.hero-head h1 { margin-top: 1rem; }
.hero-head .lead { max-width: 36rem; margin: 1rem auto 0; }
.calc-wrap { max-width: 42rem; margin: 2rem auto 0; }

/* ---- Status selector -------------------------------------- */
.status-set { margin-top: 1.25rem; border: 0; padding: 0; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .status-grid { grid-template-columns: repeat(4, 1fr); } }
.status-btn {
  border-radius: 0.75rem; border: 1px solid rgba(201, 123, 132, 0.35);
  background: rgba(255, 255, 255, 0.6); color: var(--ink-70);
  padding: 0.625rem 0.75rem; font-size: 0.875rem; font-weight: 500; font-family: inherit; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.status-btn:hover { border-color: rgba(142, 59, 94, 0.5); }
.status-btn.active { border-color: var(--wine); background: var(--wine); color: var(--ivory); }

.form-error { margin: 1rem 0 0; font-size: 0.875rem; font-weight: 500; color: var(--wine); min-height: 1rem; }
.calc-go { margin-top: 1.5rem; }

/* ---- Result reveal ---------------------------------------- */
.result { margin-top: 0; }
.result.reveal {
  margin-top: 2rem; border-top: 1px solid var(--rose-25); padding-top: 2rem;
  opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.result.reveal.in { opacity: 1; transform: translateY(0); }
.result-copy { text-align: center; margin-top: 1.5rem; }
.result-names { margin-top: 0.5rem; font-size: clamp(1.5rem, 4vw, 1.875rem); }
.result-heading { margin-top: 0.5rem; font-size: 1.875rem; }
.result-headline { margin: 0.5rem auto 0; max-width: 36rem; font-size: 1.05rem; font-weight: 600; color: var(--wine); }
.result-body { margin: 0.75rem auto 0; max-width: 36rem; font-size: 1.05rem; line-height: 1.7; color: var(--ink-80); }
.result-traits { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--wine); }
.result-flavour { margin: 0.75rem auto 0; max-width: 32rem; font-size: 0.875rem; font-style: italic; color: rgba(142, 59, 94, 0.9); }
.result-actions { margin-top: 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .result-actions { flex-direction: row; } }
.result-note { margin-top: 1.5rem; font-size: 0.75rem; color: var(--ink-45); }

/* ---- Compatibility meter ---------------------------------- */
.meter { position: relative; width: 240px; height: 240px; margin: 0 auto; }
.meter svg { display: block; }
.meter-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.meter-num { font-family: var(--font-display); font-size: 3.75rem; font-weight: 600; color: var(--plum); font-variant-numeric: tabular-nums; line-height: 1; }
.meter-pct { font-size: 1.875rem; color: var(--wine); }
.meter-cap { margin-top: 0.5rem; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-45); }

/* ---- FLAMES + numerology result --------------------------- */
.flame-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.flame-dot {
  display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 999px;
  font-family: var(--font-display); font-size: 1.125rem;
  background: rgba(245, 222, 226, 0.6); color: rgba(36, 17, 39, 0.4); transition: transform 0.2s;
}
.flame-dot.active { background: var(--wine); color: var(--ivory); transform: scale(1.1); box-shadow: var(--shadow-soft); }
.num-badge {
  margin: 0 auto; display: grid; place-items: center; height: 7rem; width: 7rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  font-family: var(--font-display); font-size: 3.75rem; font-weight: 600; color: var(--ivory); box-shadow: var(--shadow-soft);
}

/* ---- Tiers ------------------------------------------------- */
.tier-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
.tier-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.tier-pill { border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.72rem; font-weight: 700; color: var(--ivory); white-space: nowrap; }
.tier-headline { margin-top: 0.75rem; font-size: 0.98rem; font-weight: 600; color: var(--wine); }
.tier-body { margin-top: 0.5rem; font-size: 0.98rem; line-height: 1.7; color: var(--ink-70); }

/* ---- Steps ------------------------------------------------- */
.steps { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border-radius: 0.75rem; border: 1px solid var(--rose-25); background: rgba(255, 255, 255, 0.6); padding: 1.25rem; }
.step-n { display: grid; place-items: center; height: 2.25rem; width: 2.25rem; border-radius: 999px; background: var(--wine); color: var(--ivory); font-family: var(--font-display); font-size: 1.125rem; }
.step h3 { margin-top: 0.75rem; font-size: 1.125rem; }
.step p { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--ink-70); }

/* ---- Differentiation band --------------------------------- */
.band { margin-top: 4rem; background: rgba(243, 235, 223, 0.5); padding: 4rem 0; }
.lens-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .lens-grid { grid-template-columns: repeat(3, 1fr); } }
.lens h3 { font-size: 1.25rem; }
.lens p { margin-top: 0.75rem; font-size: 0.98rem; line-height: 1.7; color: var(--ink-70); }
.band-note { max-width: 42rem; margin: 2rem auto 0; text-align: center; font-size: 0.875rem; color: rgba(36, 17, 39, 0.6); }

/* ---- Tool cards ------------------------------------------- */
.tool-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .tool-grid { grid-template-columns: repeat(3, 1fr); } }
.tool-card {
  display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none;
  border-radius: 1rem; border: 1px solid var(--rose-25); background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tool-card:hover { transform: translateY(-4px); border-color: rgba(142, 59, 94, 0.4); box-shadow: var(--shadow-soft); }
.tool-ico { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; border-radius: 0.75rem; background: var(--blush); color: var(--wine); transition: background 0.2s, color 0.2s; }
.tool-card:hover .tool-ico { background: var(--wine); color: var(--ivory); }
.tool-card h3 { font-size: 1.125rem; }
.tool-card p { margin: 0; font-size: 0.875rem; line-height: 1.6; color: var(--ink-70); }
.tool-more { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--wine); }

/* ---- FAQ --------------------------------------------------- */
.faq { max-width: 48rem; margin: 0 auto; border: 1px solid var(--rose-25); border-radius: 1rem; overflow: hidden; background: rgba(255, 255, 255, 0.6); }
.faq-item + .faq-item { border-top: 1px solid var(--rose-25); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; text-align: left; background: transparent; border: 0; cursor: pointer; transition: background 0.2s;
}
.faq-q:hover { background: rgba(245, 222, 226, 0.3); }
.faq-q span.q-text { font-family: var(--font-display); font-size: 1.125rem; color: var(--plum); }
.faq-icon { display: grid; place-items: center; height: 1.75rem; width: 1.75rem; flex-shrink: 0; border-radius: 999px; border: 1px solid rgba(142, 59, 94, 0.4); color: var(--wine); transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 1.25rem 1.25rem; font-size: 1.0125rem; line-height: 1.7; color: var(--ink-80); }

/* ---- Ad slot ---------------------------------------------- */
/* Ad slots are hidden by default so real visitors never see an empty
   placeholder. analytics.js reveals them: '.is-visible' for the design
   preview, '.is-live' for a real ad (placeholder chrome stripped). */
.ad-slot { display: none; }
.ad-slot.is-visible {
  margin: 2rem auto; display: flex; min-height: 100px; width: 100%; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 0.75rem; border: 1px dashed var(--rose-40); background: rgba(243, 235, 223, 0.4);
}
.ad-slot.is-live { border: 0; background: transparent; min-height: 0; padding: 0; }
.ad-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(36, 17, 39, 0.3); }

/* ---- Profile + contact cards ------------------------------ */
.profile-card { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; border-radius: 1rem; border: 1px solid var(--rose-25); background: rgba(255, 255, 255, 0.6); padding: 2rem; }
.avatar { display: grid; place-items: center; height: 6rem; width: 6rem; border-radius: 999px; font-family: var(--font-display); font-size: 1.875rem; color: var(--ivory); }
.avatar.founder { background: linear-gradient(135deg, var(--wine), var(--gold)); }
.avatar.author { background: linear-gradient(135deg, var(--plum), var(--wine)); }
.profile-card h2 { font-size: 1.5rem; }
.profile-role { font-size: 0.875rem; font-weight: 600; color: var(--wine); margin: 0.25rem 0 0; }
.contact-card { margin-top: 2rem; border-radius: 1rem; border: 1px solid var(--rose-25); background: rgba(255, 255, 255, 0.6); padding: 2rem; text-align: center; }
.contact-email { margin-top: 0.5rem; display: inline-block; font-family: var(--font-display); font-size: 1.5rem; color: var(--wine); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(142, 59, 94, 0.3); }
.contact-email:hover { text-decoration-color: var(--wine); }
.callout { border-radius: 0.75rem; border: 1px solid rgba(142, 59, 94, 0.3); background: rgba(245, 222, 226, 0.4); padding: 1rem; font-weight: 500; color: var(--plum); }
.muted-note { font-size: 0.875rem; color: rgba(36, 17, 39, 0.55); }

/* ---- Number guide grid (numerology page) ------------------ */
.guide-grid { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
.guide-item { display: flex; gap: 1rem; border-radius: 0.75rem; border: 1px solid var(--rose-25); background: rgba(255, 255, 255, 0.6); padding: 1rem; }
.guide-badge { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; flex-shrink: 0; border-radius: 999px; background: var(--blush); font-family: var(--font-display); font-size: 1.25rem; color: var(--wine); }
.guide-item h3 { font-size: 1.125rem; }
.guide-item p { margin: 0; font-size: 0.875rem; color: var(--ink-70); }

/* ---- Page header (static pages) --------------------------- */
.page-top { padding-top: 2.5rem; padding-bottom: 1rem; }
@media (min-width: 640px) { .page-top { padding-top: 3.5rem; } }
.page-head { text-align: center; }
.page-head h1 { margin-top: 0.75rem; font-size: clamp(2.25rem, 5vw, 3rem); }
.page-head .lead { max-width: 36rem; margin: 1rem auto 0; }
.tool-top { padding-top: 2.5rem; }
@media (min-width: 640px) { .tool-top { padding-top: 3.5rem; } }
.back-link { margin-top: 1.5rem; text-align: center; }

/* ---- Footer ------------------------------------------------ */
.site-footer { margin-top: 5rem; border-top: 1px solid var(--rose-25); background: var(--plum); color: rgba(251, 246, 240, 0.85); }
.footer-top { display: flex; flex-direction: column; gap: 2rem; padding-top: 3rem; }
@media (min-width: 640px) { .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory); margin: 0; }
.footer-about { max-width: 22rem; }
.footer-desc { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(251, 246, 240, 0.7); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, auto); gap: 0 3.5rem; } }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-h { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(251, 246, 240, 0.5); margin: 0 0 0.25rem; }
.footer-col a { font-size: 0.875rem; color: rgba(251, 246, 240, 0.75); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2.5rem; padding-top: 1.5rem; padding-bottom: 3rem; border-top: 1px solid rgba(251, 246, 240, 0.15); font-size: 0.75rem; color: rgba(251, 246, 240, 0.55); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom p { margin: 0; }

/* ---- Breadcrumb ------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; font-size: 0.8rem; color: var(--ink-45); margin-bottom: 0.5rem; }
.breadcrumb a { color: var(--wine); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { color: rgba(36,17,39,0.3); }

/* ---- DOB toggle ------------------------------------------- */
.dob-toggle { margin-top: 1rem; background: transparent; border: 0; color: var(--wine); font-weight: 600; font-size: 0.875rem; font-family: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.dob-toggle:hover { color: var(--plum); }
#lp-dob-fields, #m-dob-fields { margin-top: 1rem; }

/* ---- Blog ------------------------------------------------- */
.blog-list { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 700px) { .blog-list { grid-template-columns: 1fr 1fr; } }
.blog-card { display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; border-radius: 1rem; border: 1px solid var(--rose-25); background: rgba(255,255,255,0.7); padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(142,59,94,0.4); box-shadow: var(--shadow-soft); }
.blog-card .kicker { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--wine); }
.blog-card h2, .blog-card h3 { font-size: 1.2rem; margin: 0; }
.blog-card p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--ink-70); }
.blog-card .readmore { margin-top: 0.25rem; font-size: 0.85rem; font-weight: 600; color: var(--wine); }
.post-meta { margin-top: 0.5rem; font-size: 0.85rem; color: var(--ink-45); }
.post-body { margin-top: 2rem; }
.post-body h2 { margin-top: 2rem; }
.post-cta { margin-top: 2.5rem; border-radius: 1rem; border: 1px solid rgba(142,59,94,0.3); background: rgba(245,222,226,0.4); padding: 1.5rem; text-align: center; }

/* ---- Contact form ---------------------------------------- */
.contact-form { margin-top: 2rem; text-align: left; border-radius: 1rem; border: 1px solid var(--rose-25); background: rgba(255,255,255,0.6); padding: 2rem; box-shadow: var(--shadow-card); }
.contact-form .field-grid { margin-bottom: 1rem; }
.contact-form label { margin-top: 0; }
.contact-form .field-row { margin-bottom: 1rem; }
textarea.field-input { min-height: 140px; resize: vertical; font-family: inherit; line-height: 1.6; }
.form-status { margin: 1rem 0 0; font-size: 0.9rem; font-weight: 500; min-height: 1.2rem; }
.form-status.err { color: var(--wine); }
.form-status.ok { color: #2f7d5b; }
.form-note { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-45); }
