/* askchat.studio — Wellness-first citation engineering
 * Palette: soft peach, sage, cream, dusty rose, deep terracotta accent
 * Aesthetic: warm minimalism, breathing motion, generous whitespace
 */

:root {
  /* Earth-toned wellness palette */
  --bg: #fbf6f0;          /* warm cream */
  --bg-soft: #f5ede2;     /* deeper cream */
  --bg-card: #ffffff;     /* white cards */
  --text: #2b2118;        /* warm dark brown */
  --text-soft: #6b5f54;   /* muted brown */
  --text-quiet: #9a8e82;  /* light brown */

  --peach: #f5c8a8;       /* soft peach */
  --peach-deep: #e89572;  /* terracotta accent */
  --sage: #b5c2a5;        /* sage green */
  --sage-deep: #7a9168;   /* deep sage */
  --rose: #e8b6b6;        /* dusty rose */

  --line: rgba(43, 33, 24, 0.08);
  --line-strong: rgba(43, 33, 24, 0.16);

  --radius: 14px;
  --radius-lg: 22px;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--peach-deep); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
}
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach-deep);
  display: inline-block;
  animation: breathe 4.5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.25); opacity: 1; }
}
.site-header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 15px;
}
.btn-link {
  color: var(--peach-deep);
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 130px;
  overflow: hidden;
}
.breath-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.65;
}
.blob {
  position: absolute;
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
}
.blob-1 {
  width: 360px;
  height: 360px;
  background: var(--peach);
  top: -50px;
  right: -80px;
  animation-delay: 0s;
}
.blob-2 {
  width: 280px;
  height: 280px;
  background: var(--sage);
  bottom: -60px;
  left: -40px;
  animation-delay: -5s;
}
.blob-3 {
  width: 220px;
  height: 220px;
  background: var(--rose);
  top: 35%;
  left: 30%;
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 22px;
}
.eyebrow.center, .lede.center, h2.center { text-align: center; }
.eyebrow.center { margin-bottom: 14px; }

h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 28px;
}
h1 em {
  font-style: italic;
  color: var(--peach-deep);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 22px;
}
h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 620px;
}
.lede.center { margin-left: auto; margin-right: auto; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.center .hero-cta { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--peach-deep);
  color: #fff;
}
.btn-primary:hover {
  background: #d97f5e;
  transform: translateY(-1px);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--text);
}
.quiet {
  font-size: 14px;
  color: var(--text-quiet);
}

/* QUICK CHECK */
.quickcheck {
  background: var(--bg-soft);
  padding: 80px 0;
}
.qc-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
}
.qc-form input {
  flex: 1;
  min-width: 280px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  background: #fff;
  color: var(--text);
}
.qc-form input:focus {
  outline: 2px solid var(--peach-deep);
  outline-offset: 2px;
}
.qc-result {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 18px;
}

/* STATS */
.stats {
  padding: 90px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.stat .big {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--peach-deep);
  margin-bottom: 12px;
}
.stat p:not(.big) {
  font-size: 14px;
  color: var(--text-soft);
}
.stat .src {
  display: block;
  font-size: 12px;
  color: var(--text-quiet);
  margin-top: 8px;
  font-style: italic;
}

/* SERVICES */
.services {
  padding: 90px 0;
  background: var(--bg-soft);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.svc {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px -10px rgba(232, 149, 114, 0.25);
}
.svc h3 { color: var(--text); }
.svc .price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--peach-deep);
  margin: 6px 0 16px;
  font-weight: 500;
}
.svc .price span {
  font-size: 15px;
  color: var(--text-quiet);
  font-style: italic;
}
.svc p:not(.price) {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}
.bundle {
  margin-top: 44px;
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  padding: 22px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
}
.bundle strong { color: var(--text); }

/* FAQ */
.faq {
  padding: 90px 0;
}
details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  transition: color 0.2s;
}
summary:hover { color: var(--peach-deep); }
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--peach-deep);
  transition: transform 0.25s;
}
details[open] summary::after {
  content: "−";
}
details p {
  margin-top: 14px;
  color: var(--text-soft);
  max-width: 720px;
}

/* CTA */
.cta {
  padding: 100px 0 120px;
  background: var(--bg-soft);
}
.cta h2 { margin-bottom: 14px; }
.cta .container > p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta .center { text-align: center; }

/* FOOTER */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-quiet);
  text-align: center;
}
.site-footer a { color: var(--text-soft); margin: 0 4px; }
.site-footer a:hover { color: var(--peach-deep); }

/* Mobile tightening */
@media (max-width: 640px) {
  .hero { padding: 70px 0 90px; }
  .nav { padding: 14px 22px; }
  .site-header nav { gap: 14px; font-size: 14px; }
  .site-header nav a:not(.btn-link) { display: none; }
  .stats, .services, .faq, .cta { padding: 60px 0; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .blob, .brand .dot { animation: none; }
}
