/* Loveland Hearts — shared styles
   Palette/type intentionally mirrors valentinestation.com's design system
   (Playfair Display + Inter, rose/navy/gold) so the two sites read as siblings.
   Swap the hex values below for the exact ones from Valentine Station's
   stylesheet if you want a pixel-perfect match. */

:root {
  --rose: #b8375f;
  --rose-dark: #8f2a49;
  --navy: #1f2a44;
  --gold: #c9a24b;
  --cream: #fdf6f0;
  --ink: #2b2320;
  --muted: #6b6058;
  --border: #ecdfd6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', Georgia, serif;
}

a { color: var(--rose-dark); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

nav.site a {
  margin-left: 24px;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

nav.site a:hover { color: var(--rose-dark); }

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--navy);
  margin: 0 0 16px;
}

.hero p.lede {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}

.note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.products {
  padding: 40px 0 64px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 { color: var(--navy); margin-bottom: 8px; }
.section-title p { color: var(--muted); margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.product-card .tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 162, 75, 0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

.product-card p {
  color: var(--muted);
  flex-grow: 1;
  margin: 0 0 20px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--rose-dark);
  margin: 0 0 18px;
}

.how {
  background: var(--navy);
  color: #f2ede6;
  padding: 56px 0;
}

.how .section-title h2, .how .section-title p { color: #f2ede6; }
.how .section-title p { opacity: 0.75; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 22px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.crosslink {
  padding: 56px 0;
  text-align: center;
}

.crosslink .panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.crosslink h2 { color: var(--navy); margin-top: 0; }
.crosslink p { color: var(--muted); }

.faq {
  padding: 0 0 64px;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

details p { color: var(--muted); margin: 12px 0 0; }

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

footer.site a { color: var(--rose-dark); text-decoration: none; }

/* ---------- Hero Image ---------- */
.hero-image {
  max-width: 620px;
  margin: 30px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-credit {
  max-width: 620px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.photo-credit a { color: var(--muted); }
