/* InkBliss — calming aesthetic with muted purples, teals, warm neutrals */
:root {
  --purple: #7c6d9e;
  --purple-deep: #5a4d78;
  --purple-light: #e8e2f0;
  --teal: #5f9ea0;
  --teal-deep: #3d7f81;
  --teal-light: #daf0f0;
  --warm: #c9a96e;
  --warm-light: #f5edd8;
  --cream: #faf8f4;
  --cream-dark: #f0ede6;
  --dark: #2d2a33;
  --muted: #6b6776;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--purple-deep); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--purple-deep); }
h3 { font-size: 1.2rem; color: var(--dark); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.25s ease;
  background: var(--purple); color: var(--white); border: none; cursor: pointer;
}
.btn:hover { background: var(--purple-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,109,158,0.3); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--purple-deep); font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); }
.mobile-toggle { display: none; background: none; border: none; color: var(--dark); cursor: pointer; padding: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 140px 0 80px; background: linear-gradient(180deg, var(--cream) 0%, var(--purple-light) 100%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tagline { font-size: 1.25rem; color: var(--teal-deep); margin: 16px 0 8px; font-weight: 500; }
.hero-desc { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-note { font-size: 0.85rem; color: var(--muted); }
.hero-art { display: flex; justify-content: center; }
.hero-svg { width: 100%; max-width: 380px; filter: drop-shadow(0 8px 32px rgba(124,109,158,0.12)); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 1.05rem; margin-bottom: 48px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step { text-align: center; padding: 32px 24px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--teal-light); color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gallery-card {
  border-radius: 16px; overflow: hidden; background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.gallery-card svg { width: 100%; display: block; }
.gallery-label {
  display: block; text-align: center; padding: 14px 12px;
  font-size: 0.9rem; font-weight: 600; color: var(--purple-deep);
}

/* ---------- Pricing ---------- */
.pricing-container { max-width: 480px; margin: 0 auto; text-align: center; }
.pricing-card {
  background: var(--cream); border: 2px solid var(--purple-light); border-radius: 24px;
  padding: 48px 40px; margin-top: 40px; position: relative;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white); padding: 6px 20px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
}
.pricing-amount { margin: 24px 0; }
.price { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700; color: var(--purple-deep); }
.period { font-size: 1.1rem; color: var(--muted); }
.pricing-features { list-style: none; text-align: left; margin: 32px 0; }
.pricing-features li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 0.95rem; color: var(--dark); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { flex-shrink: 0; }

/* ---------- CTA ---------- */
.cta-section { background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal-light) 100%); }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 32px; background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer .logo { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }

  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-art { order: 0; }
  .hero-svg { max-width: 260px; }
  .hero-cta { align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .pricing-card { padding: 40px 24px; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
