/* Afterly — Breakup Concierge Landing Page */
/* Theme: Warm, empathetic, confident. Not sad. Not clinical. */

:root {
  --bg: #FFFBF5;
  --bg-alt: #F7F1EB;
  --fg: #1A1614;
  --fg-muted: #6B5E54;
  --accent: #C4705A;
  --accent-light: #E8B4A0;
  --stone: #8B7355;
  --stone-light: #C8B49A;
  --border: #E5DDD4;
  --white: #FFFFFF;
  --shadow: rgba(26, 22, 20, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-emotion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.emotion-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
.emotion-marker {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(196, 112, 90, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.emotion-desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 32px var(--shadow), 0 1px 4px rgba(196,112,90,0.06);
  position: relative;
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.card-scenario {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: 10px;
  margin-bottom: 20px;
}
.card-response {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.card-response-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-response-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Section styles */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 60px;
}

/* Hard Parts Section */
.hard-parts {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.hard-parts-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hard-parts-header {
  margin-bottom: 60px;
}
.hard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hard-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hard-item:hover {
  box-shadow: 0 4px 24px var(--shadow);
  transform: translateY(-2px);
}
.hard-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(196, 112, 90, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.hard-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.hard-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg);
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
}
.step-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-top: 4px;
}
.step-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}
.step-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-light), var(--border));
  margin: 8px 0 8px 27px;
}

/* Packages */
.packages {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}
.packages .section-eyebrow { color: var(--accent-light); }
.packages .section-heading { color: var(--bg); }
.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.package {
  background: rgba(255,251,245,0.06);
  border: 1px solid rgba(255,251,245,0.12);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.package-featured {
  background: rgba(196,112,90,0.15);
  border-color: var(--accent);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}
.package-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 8px;
}
.package-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 18px;
  opacity: 0.7;
}
.package-desc {
  font-size: 14px;
  color: rgba(255,251,245,0.6);
  margin-bottom: 28px;
}
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package-features li {
  font-size: 14px;
  color: rgba(255,251,245,0.8);
  padding-left: 20px;
  position: relative;
}
.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Testimonials */
.testimonials {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-location {
  font-size: 12px;
  color: var(--stone);
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Footer */
.footer {
  padding: 48px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}
.footer-note {
  font-size: 13px;
  color: var(--stone);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 36px; }
  .hard-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-inner { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hard-parts, .how-it-works, .packages, .testimonials, .closing { padding: 80px 24px; }
  .step { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .package-price { font-size: 36px; }
  .closing-headline { font-size: 26px; }
}