/* ═══════════════════════════════════════
   HushNight Landing Page Styles
   Warm parchment aesthetic, cozy and intentional
   ═══════════════════════════════════════ */

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

/* Variables */
:root {
  --bg: #faf7f2;
  --fg: #2a1f1c;
  --fg-soft: #5a4a44;
  --accent: #c4918a;
  --accent-dark: #a87470;
  --forest: #1c3a2d;
  --forest-light: #2d5242;
  --cream: #f0ebe3;
  --cream-dark: #e2dcd4;
  --radius: 16px;
  --radius-sm: 8px;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 80px 10vw;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 145, 138, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
}

/* Hero graphic */
.hero-graphic {
  position: relative;
  width: 220px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.circle-float {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(28, 58, 45, 0.12);
}

.circle-lg {
  width: 300px;
  height: 300px;
  top: 10px;
  right: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(196, 145, 138, 0.08) 0%, transparent 60%);
}

.circle-md {
  width: 200px;
  height: 200px;
  top: 60px;
  right: -20px;
  border-color: rgba(196, 145, 138, 0.2);
}

.circle-sm {
  width: 100px;
  height: 100px;
  top: 110px;
  right: 40px;
  background: var(--accent);
  opacity: 0.15;
}

.phone-icon {
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 56px;
}

/* ─── WHAT'S INSIDE ─── */
.whats-inside {
  background: var(--forest);
  color: var(--cream);
  padding: 100px 10vw;
}

.whats-inside .section-label {
  color: var(--accent);
}

.whats-inside .section-heading {
  color: var(--cream);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
}

.item-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background 0.3s ease;
}

.item-card:hover {
  background: rgba(255,255,255,0.09);
}

.item-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 145, 138, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.item-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.item-card p {
  font-size: 14px;
  color: rgba(240, 235, 227, 0.65);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── WHY IT WORKS ─── */
.why-it-works {
  padding: 120px 10vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.why-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 32px;
  margin-top: 16px;
}

.why-text p {
  font-size: 17px;
  color: var(--fg-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.trend-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--cream);
  border-radius: 40px;
  border: 1px solid var(--cream-dark);
}

.trend-stat {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--forest);
}

.trend-label {
  font-size: 14px;
  color: var(--fg-soft);
  max-width: 200px;
  line-height: 1.5;
}

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.big-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1.5px dashed rgba(28, 58, 45, 0.15);
}

.inner-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

/* ─── NICHE KITS ─── */
.niche-kits {
  background: var(--cream);
  padding: 100px 10vw;
}

.niche-kits .section-heading {
  max-width: 600px;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin-bottom: 40px;
}

.kit-card {
  background: var(--bg);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.kit-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(196, 145, 138, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.kit-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
}

.kit-card p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.65;
  font-weight: 300;
}

.kits-note {
  font-size: 13px;
  color: var(--fg-soft);
  max-width: 500px;
  opacity: 0.7;
  font-style: italic;
}

/* ─── CLOSING ─── */
.closing {
  padding: 140px 10vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(196, 145, 138, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-soft);
  font-weight: 300;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 48px 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(240, 235, 227, 0.5);
  font-weight: 300;
}

.footer-links span {
  font-size: 12px;
  color: rgba(240, 235, 227, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 6vw 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-graphic { display: none; }

  .why-it-works {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
    gap: 60px;
  }

  .why-visual { display: none; }

  .whats-inside,
  .niche-kits,
  .closing {
    padding: 80px 6vw;
  }

  .site-footer {
    padding: 40px 6vw;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .items-grid,
  .kits-grid {
    grid-template-columns: 1fr;
  }
}