/* ───────────────────────────────────────────────────────────
   Quill — Editorial baby journal aesthetic
   Cream paper, sage accent, serif headlines, generous space.
   ─────────────────────────────────────────────────────────── */

:root {
  --bg: #FAFAF8;
  --bg-soft: #F4F1EA;
  --ink: #2A2825;
  --ink-soft: #5A5852;
  --ink-faint: #908E85;
  --rule: #E5E0D5;
  --sage: #2A8068;
  --sage-soft: #7DC0AB;
  --sage-bg: #E0F3ED;
  --accent: #2A8068;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ───────────────────────────────────────────────────────────
   Header
   ─────────────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  color: var(--accent);
}
.brand-word {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--sage-soft);
}
.brand-drop {
  font-size: 14px;
  color: var(--accent);
  transform: translateY(-12px);
  display: inline-block;
  line-height: 1;
}
.brand-word.small { font-size: 20px; }
.brand-drop.small { font-size: 10px; transform: translateY(-9px); }

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.site-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ───────────────────────────────────────────────────────────
   Hero
   ─────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 280px;
  height: 280px;
  background: var(--sage-bg);
  border-radius: 50%;
  transform: translate(20%, -50%);
  opacity: 0.45;
  z-index: 0;
  filter: blur(40px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 16px;
  margin: 0 0 24px;
  letter-spacing: 0.2px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero-title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ───────────────────────────────────────────────────────────
   Buttons
   ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 12px rgba(42, 128, 104, 0.2);
}
.btn-primary:hover {
  background: #1f6b56;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42, 128, 104, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ───────────────────────────────────────────────────────────
   Sections (shared)
   ─────────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  text-transform: lowercase;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 56px;
  max-width: 700px;
}

/* ───────────────────────────────────────────────────────────
   Features grid
   ─────────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature {
  background: var(--bg);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--rule);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ───────────────────────────────────────────────────────────
   Privacy
   ─────────────────────────────────────────────────────────── */
.privacy {
  padding: 100px 0;
}
.privacy-inner {
  max-width: 760px;
}
.privacy-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
}
.privacy-lead strong {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.privacy-promises {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.privacy-promises li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.privacy-promises li:last-child {
  border-bottom: 1px solid var(--rule);
}
.promise-bullet {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
}
.privacy-promises strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.privacy-promises div {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.privacy-coda {
  margin-top: 32px;
  font-size: 15px;
}
.privacy-coda a {
  color: var(--accent);
  font-weight: 500;
}

/* ───────────────────────────────────────────────────────────
   Maker
   ─────────────────────────────────────────────────────────── */
.maker {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}
.maker-inner {
  max-width: 680px;
}
.maker-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.maker-body:last-child { margin-bottom: 0; }

/* ───────────────────────────────────────────────────────────
   Pricing
   ─────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
}
.pricing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.pricing-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  max-width: 30rem;
  margin: 0 auto 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 26rem;
  margin: 0 auto;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.pricing-trial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--ink-faint);
  margin: 0;
}
.pricing-price {
  margin: 6px 0 0;
  line-height: 1;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
}
.pricing-once {
  margin: 8px 0 28px;
  font-size: 15px;
  color: var(--ink-faint);
}
.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pricing-points li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pricing-points li:last-child {
  border-bottom: 1px solid var(--rule);
}
.pricing-points li::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.pricing-coda {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ───────────────────────────────────────────────────────────
   CTA
   ─────────────────────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -1px;
  margin: 0 0 16px;
}
.cta-inner p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ───────────────────────────────────────────────────────────
   Footer
   ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: var(--ink-soft);
  font-size: 14px;
}
.footer-meta {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
  text-align: center;
}

/* ───────────────────────────────────────────────────────────
   Article pages (privacy, support)
   ─────────────────────────────────────────────────────────── */
.article {
  padding: 80px 0 120px;
}
.article-inner {
  max-width: 720px;
}
.article h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 12px;
  color: var(--ink);
}
.article .article-meta {
  font-size: 14px;
  color: var(--ink-faint);
  font-style: italic;
  font-family: var(--font-display);
  margin: 0 0 48px;
}
.article h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 48px 0 16px;
}
.article h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article p, .article li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.article ul, .article ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.article strong { color: var(--ink); }
.article .callout {
  background: var(--sage-bg);
  border-left: 3px solid var(--sage-soft);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 32px 0;
  font-style: italic;
  color: #2A8068;
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
}
.faq-answer {
  margin: 0;
  color: var(--ink-soft);
}

/* Contact card */
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: 16px;
  margin: 32px 0;
}
.contact-card p {
  margin: 0 0 8px;
}
.contact-card .email {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
}

/* ───────────────────────────────────────────────────────────
   Mobile
   ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .hero { padding: 60px 0 60px; }
  .features, .privacy, .maker, .pricing { padding: 64px 0; }
  .cta { padding: 80px 0; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .section-title { margin-bottom: 36px; }
  .feature { padding: 22px; }
  .footer-inner { text-align: center; }
}

/* ───────────────────────────────────────────────────────────
   Logo image (replaces text wordmark)
   ─────────────────────────────────────────────────────────── */
.brand-logo {
  height: 96px;
  width: auto;
  max-height: 96px;
  display: block;
}
.brand-logo-small {
  height: 60px;
  max-height: 60px;
}
