/* assets/css/home.css — High-conversion homepage, mobile-first */

.home-page { padding-bottom: 0; }

/* ── HERO ── */
.home-hero {
  padding: 48px 0 0;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.home-hero-copy { max-width: 640px; }
.home-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
}
.home-title {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(38px, 7.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}
.home-title em {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}
.home-sub {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  max-width: 540px;
}
.home-proof-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.home-proof-stars { color: #F5A623; font-size: 16px; display: flex; gap: 1px; }
.home-proof-text { font-size: 13px; color: var(--text-soft); }
.home-proof-sep { color: var(--border-strong); }
.home-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.home-btn-primary,
.home-btn-secondary {
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.home-btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(186,0,0,0.2);
}
.home-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(186,0,0,0.28);
}
.home-btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.home-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.home-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.home-note-sep { opacity: 0.4; }

/* Mockup */
.home-mockup-wrap {
  justify-self: center;
  width: min(360px, 100%);
  position: relative;
}
.home-mockup-frame {
  position: relative;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(145deg, #4f3930 0%, #6e4f40 52%, #3f2e27 100%);
  border: 1px solid rgba(120,83,66,0.48);
  box-shadow: 0 8px 40px rgba(30,10,8,0.14);
}
.home-mockup-poster {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.65);
  aspect-ratio: 4 / 5;
  background: #f7f3ea;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 20px;
}
.home-mockup-heart-art { width: min(100%, 280px); margin-top: 6px; }
.home-mockup-heart-art svg { display: block; width: 100%; height: auto; }
.home-mockup-copy { text-align: center; }
.home-mockup-names {
  margin: 0;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.05;
}
.home-mockup-tagline {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
}
.home-mockup-badge {
  position: absolute;
  bottom: -16px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.home-pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); animation: homePulse 2.2s ease infinite;
}

/* ── TRUST BAR ── */
.home-trust { padding: 36px 0 0; }
.home-trust-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), #fdf9f7);
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.home-trust-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-trust-icon { font-size: 22px; flex-shrink: 0; }
.home-trust-value {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: clamp(18px, 3.5vw, 26px);
  line-height: 1.1;
}
.home-trust-label {
  margin: 3px 0 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}

/* ── SECTIONS ── */
.home-section { padding: 68px 0 0; }
.home-section-inner { max-width: 1200px; }
.home-section-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.home-section-title {
  margin: 0;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.04;
  text-align: center;
  font-weight: 300;
}
.home-section-title em { color: var(--gold-light); font-style: italic; }
.home-section-body {
  margin: 14px auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.home-steps { margin-top: 36px; display: grid; gap: 12px; }
.home-step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.home-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.home-step-num {
  margin: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(186,0,0,0.15);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.home-step h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}
.home-step p { margin: 6px 0 0; color: var(--text-soft); font-size: 14px; line-height: 1.65; }

/* ── PRODUCTS ── */
.home-products-grid {
  margin-top: 36px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.home-product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 22px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.home-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(186,0,0,0.2); }
.home-product-top { display: flex; gap: 10px; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.home-product-top h3 {
  margin: 0; font-family: 'Cormorant Garamond', serif;
  font-size: 28px; line-height: 1; font-weight: 400;
}
.home-chip {
  border-radius: 999px; border: 1px solid rgba(186,0,0,0.22);
  background: var(--gold-dim); color: var(--gold);
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 9px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.home-product-card p {
  margin: 0; color: var(--text-soft); font-size: 14px;
  line-height: 1.65; flex: 1; min-height: 60px;
}
.home-product-bottom {
  margin-top: 18px;
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.home-product-bottom strong {
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400; line-height: 1;
}
.home-product-bottom a {
  color: var(--text); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.home-product-bottom a:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold-light); }

/* ── REVIEWS ── */
.home-reviews-grid {
  margin-top: 36px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

/* ── PRICING ── */
.home-pricing-wrap { max-width: 680px; }
.home-pricing-card {
  border: 2px solid rgba(186,0,0,0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffdf9, #faf7f3);
  box-shadow: var(--shadow-elevated);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.home-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.home-pricing-badge {
  display: inline-block; margin: 0;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; font-weight: 700;
  color: var(--gold); border: 1px solid rgba(186,0,0,0.22);
  background: var(--gold-dim); border-radius: 999px; padding: 6px 14px;
}
.home-pricing-card h2 {
  margin: 14px 0 8px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text); font-size: clamp(56px, 9vw, 80px);
  line-height: 1; font-weight: 300;
}
.home-pricing-card h2 span { font-size: 28px; vertical-align: super; color: var(--gold); }
.home-pricing-sub { margin: 0; color: var(--text-soft); font-size: 15px; }
.home-pricing-card ul {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: grid; gap: 10px;
}
.home-pricing-card li {
  position: relative; padding-left: 26px;
  color: var(--text-soft); font-size: 14px; line-height: 1.6;
}
.home-pricing-card li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 700; font-size: 14px;
}
.home-btn-block { margin-top: 24px; width: 100%; justify-content: center; display: inline-flex; }

/* ── FINAL CTA ── */
.home-final { padding: 68px 0 0; }
.home-final-band {
  background: var(--footer-bg);
  border-radius: 24px;
  padding: 56px 24px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(30,10,8,0.14);
}
.home-final-band .home-section-title { color: #F0EAE4; }
.home-final-band .home-section-title em { color: var(--gold); }
.home-final-band .home-section-body { color: #B8A09A; }
.home-final-actions {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.home-waitlist {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 560px; justify-content: center; width: 100%;
}
.home-waitlist .input { flex: 1 1 240px; min-width: 200px; }
.home-final-trust {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 18px;
}
.home-final-trust span { font-size: 12px; color: #7A6868; }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes homePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* ── DESKTOP ── */
@media (min-width: 940px) {
  .home-hero { padding-top: 80px; }
  .home-hero-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 52px; }
  .home-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-step { grid-template-columns: 1fr; gap: 12px; }
  .home-step-num { margin: 0 0 4px; }
  .home-reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── MOBILE ── */
@media (max-width: 720px) {
  .home-mockup-wrap { width: min(320px, 100%); }
  .home-mockup-frame { padding: 12px; }
  .home-trust-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .home-section { padding-top: 52px; }
  .home-pricing-card { padding: 22px 18px; }
  .home-final-band { border-radius: 16px; padding: 44px 18px; }
}
