/* LoveTags — shared stylesheet
   Brand: Fraunces (headings), DM Sans (body). Terracotta primary.
   Never pure black, never pure white. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500&family=DM+Sans:wght@400;500&display=swap');

:root {
  --terra: #C7694A;
  --clay: #8B4A30;
  --sage: #6A8F72;
  --forest: #3B6D11;
  --linen: #F5EDE8;
  --mist: #E8F0E9;
  --warm-white: #FAFAF7;
  --warm-dark: #2C2C2A;
  --stone: #888780;
  --rule: #E0D5CC;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--warm-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--warm-dark);
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.7; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
}
.brand .lt {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--terra);
}
.brand .divider {
  width: 1px;
  height: 18px;
  background: var(--warm-dark);
  opacity: 0.2;
}
.brand .wordmark {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--warm-dark);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-dark);
  padding: 8px 0;
}
.nav-links a.active {
  color: var(--terra);
}
.nav-links .cta-link {
  background: var(--terra);
  color: var(--warm-white);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav-links .cta-link:hover {
  background: var(--clay);
  opacity: 1;
}
.nav-links .nav-login {
  color: var(--stone);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links .nav-login:hover {
  color: var(--warm-dark);
  border-bottom-color: var(--warm-dark);
  opacity: 1;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ---------- TYPE ---------- */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}
.display {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.display .accent { color: var(--terra); }
h1 { font-size: clamp(36px, 5vw, 52px); line-height: 1.1; }
h2 { font-size: clamp(28px, 3.5vw, 40px); line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 22px; line-height: 1.3; margin-bottom: 8px; }
.lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--stone);
  max-width: 560px;
}
.lede.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--terra);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: var(--clay);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--clay);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  background: var(--linen);
  opacity: 1;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ---------- HERO ---------- */
.hero {
  padding: 120px 0 96px;
  text-align: center;
}
.hero .lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}

/* ---------- TAG VISUAL ---------- */
.tag-visual {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}
.tag-sticker {
  width: 140px;
  height: 140px;
  background: var(--terra);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 64px;
  color: var(--warm-white);
  letter-spacing: -0.05em;
  box-shadow: 0 8px 24px rgba(199, 105, 74, 0.25);
}

/* ---------- GRID / CARDS ---------- */
.grid {
  display: grid;
  gap: 32px;
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--linen);
  padding: 36px;
  border-radius: 16px;
}
.card .step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--terra);
  margin-bottom: 16px;
  line-height: 1;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  color: var(--warm-dark);
  font-size: 16px;
}

/* ---------- SECTION BANDS ---------- */
.band-linen { background: var(--linen); }
.band-mist { background: var(--mist); }

/* ---------- PULL QUOTE ---------- */
.pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--warm-dark);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ---------- FEATURE ROWS (for 'made for' moments) ---------- */
.moment {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: baseline;
}
.moment:last-child { border-bottom: none; }
.moment .who {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--terra);
}
.moment .what {
  color: var(--warm-dark);
}
@media (max-width: 640px) {
  .moment { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- FAQ ---------- */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--warm-dark);
  margin-bottom: 8px;
}
.faq-a { color: var(--stone); font-size: 16px; }

/* ---------- PRODUCT / SHOP ---------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 48px 0;
}
@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; gap: 48px; }
}
.product-visual {
  background: var(--linen);
  border-radius: 24px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-visual .single-tag {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual .tag-sticker.lg {
  width: 220px;
  height: 220px;
  border-radius: 36px;
  font-size: 108px;
  letter-spacing: -0.06em;
  box-shadow: 0 12px 40px rgba(199, 105, 74, 0.3);
}

.price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 40px;
  color: var(--warm-dark);
  margin: 16px 0 8px;
  letter-spacing: -0.02em;
}
.price-note {
  color: var(--stone);
  font-size: 14px;
  margin-bottom: 24px;
}
.product-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.product-meta dl { display: grid; grid-template-columns: 120px 1fr; gap: 8px 16px; font-size: 14px; }
.product-meta dt { color: var(--stone); font-weight: 500; }
.product-meta dd { color: var(--warm-dark); }

.badge {
  display: inline-block;
  background: var(--mist);
  color: var(--forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 48px 0;
  margin-top: 48px;
  color: var(--stone);
  font-size: 14px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-inner .brand .lt { font-size: 20px; }
.footer-inner .brand .wordmark { font-size: 16px; }
.footer-links { display: flex; gap: 24px; }

/* ---------- UTIL ---------- */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
