/* Two Hearts brand site — shared styles.
   Brand system mirrors app/src/theme.ts (burgundy, coral, paper, ink).
   No build step: plain CSS, deploys to any static host. No dashes in copy (CLAUDE.md §17). */

:root {
  --burgundy: #7A1F2B;
  --coral: #F08C7E;
  --paper: #FFFDF9;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --line: #E8E0D8;
  --coral-soft: #FBEFEA;
  --burgundy-soft: #F3E3E4;
  --maxw: 720px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: var(--burgundy); }
a:hover { color: var(--coral); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 700; color: var(--burgundy); text-decoration: none; font-size: 20px; letter-spacing: -0.2px; }
.brand .hearts { color: var(--coral); }
.nav a { margin-left: 20px; text-decoration: none; color: var(--muted); font-size: 15px; }
.nav a:hover { color: var(--burgundy); }

/* Hero */
.hero { padding: 72px 0 56px; text-align: center; }
.hero h1 {
  font-size: 44px; line-height: 1.12; letter-spacing: -0.5px;
  margin: 0 0 14px; color: var(--burgundy);
}
.hero .slogan { font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 28px; }

.badge-free {
  display: inline-block; background: var(--coral-soft); color: var(--burgundy);
  border-radius: 999px; padding: 6px 16px; font-size: 14px; font-weight: 600;
  margin-bottom: 22px;
}

/* Doors */
.doors { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 40px 0; }
@media (min-width: 680px) { .doors { grid-template-columns: repeat(3, 1fr); } }
.door {
  background: var(--white, #fff); border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 22px; text-align: left;
  box-shadow: 0 6px 22px rgba(122, 31, 43, 0.06);
}
.door h3 { margin: 0 0 8px; color: var(--burgundy); font-size: 20px; }
.door p { margin: 0; color: var(--muted); font-size: 15.5px; }
.door .tag { font-size: 13px; font-weight: 600; color: var(--coral); display: block; margin-top: 12px; }

.section { padding: 40px 0; }
.section h2 { color: var(--burgundy); font-size: 28px; letter-spacing: -0.3px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; padding: 32px 0; color: var(--muted); font-size: 14px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--burgundy); }

/* Shop */
.shop { padding: 8px 0 16px; }
.shopwrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.shop-note { text-align: center; color: var(--muted); font-size: 15.5px; margin: 0 0 28px; }
.products { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 520px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .products { grid-template-columns: repeat(4, 1fr); } }
.product {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 22px rgba(122, 31, 43, 0.06);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(122, 31, 43, 0.12); }
.product-img {
  aspect-ratio: 1 / 1; width: 100%;
  background: linear-gradient(135deg, var(--coral-soft), var(--burgundy-soft));
  background-size: cover; background-position: center;
}
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.brand-name { font-size: 12.5px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: var(--coral); }
.product-body h3 { margin: 2px 0 2px; font-size: 16.5px; color: var(--ink); font-weight: 600; }
.price { font-size: 15px; color: var(--muted); }
.shop-btn {
  margin-top: 12px; text-align: center; background: var(--burgundy); color: #fff;
  border-radius: 999px; padding: 9px 14px; font-size: 14px; font-weight: 600;
}
.product:hover .shop-btn { background: var(--coral); }
.disclosure { text-align: center; color: var(--muted); font-size: 13px; margin: 30px auto 0; max-width: 560px; }
.cta-btn {
  display: inline-block; background: var(--burgundy); color: #fff; text-decoration: none;
  border-radius: 999px; padding: 12px 26px; font-size: 16px; font-weight: 600;
}
.cta-btn:hover { background: var(--coral); color: #fff; }

/* Legal / policy pages */
.doc { padding: 48px 0 24px; }
.doc h1 { color: var(--burgundy); font-size: 34px; letter-spacing: -0.3px; margin-bottom: 4px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.doc h2 { color: var(--burgundy); font-size: 22px; margin-top: 36px; }
.doc h3 { font-size: 18px; margin-top: 24px; }
.doc ul { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--ink); }
.doc .note {
  background: var(--burgundy-soft); border-radius: 12px; padding: 14px 18px;
  font-size: 15px; color: var(--ink); margin: 22px 0;
}
.back { display: inline-block; margin: 28px 0 0; font-size: 15px; text-decoration: none; }
