/* 1800chat — warm cream, blush, coral. Calm companion lander, not an adult gallery. */

:root {
  --cream: #fbf4ee;
  --cream-deep: #f3e4d8;
  --blush: #f4d4c8;
  --peach: #eeb8a4;
  --coral: #e0706c;
  --coral-deep: #c85c58;
  --coral-soft: #f3c9c4;
  --ink: #1c1614;
  --muted: #6d615c;
  --muted-2: #8a7c76;
  --paper: #fffdfb;
  --line: rgba(28, 22, 20, 0.08);
  --shadow: 0 18px 40px rgba(92, 48, 40, 0.08);
  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --measure: 40rem;
  --wrap: 68rem;
  --radius-pill: 999px;
  --radius-card: 1.1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(240, 176, 150, 0.38), transparent 58%),
    radial-gradient(720px 480px at 90% 8%, rgba(232, 150, 140, 0.22), transparent 52%),
    radial-gradient(640px 420px at 70% 70%, rgba(255, 220, 200, 0.35), transparent 60%),
    linear-gradient(180deg, #fdf6f1 0%, #f6e6dc 38%, #f4ddd3 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.35;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
  overflow: visible;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.85rem;
  border-radius: 0.4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.35rem 1.5rem 0.5rem;
}

.wordmark {
  font-size: 1.45rem;
  text-decoration: none;
  color: var(--ink);
}

.header-links {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.header-links a {
  text-decoration: none;
}

.header-links a:hover,
.header-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.25rem 2.75rem;
  align-items: center;
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #f3e4d8;
}

.subhead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13.5rem;
  padding: 0.92rem 2.4rem;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(200, 80, 76, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.cta-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted-2);
}



.chips {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 3.5rem;
}

.chip-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.chip {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: left;
}

.chip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.chip-icon {
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #f8d7d2;
  color: var(--coral-deep);
  display: grid;
  place-items: center;
}

.chip-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  max-width: none;
  display: block;
}

.prose-section,
.how,
.compare-section,
.faq,
.about,
.legal-blocks {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
}

.how,
.compare-section,
.faq {
  max-width: var(--wrap);
}

.how h2,
.compare-section h2,
.faq h2 {
  text-align: center;
}

.lede {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.for-list {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.for-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.for-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral-soft);
  box-shadow: 0 0 0 3px rgba(224, 112, 108, 0.12);
}

.closing {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: #3a2f2c;
}

.steps {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.steps li {
  background: rgba(255, 253, 251, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem 1.4rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.table-scroll {
  overflow-x: auto;
  background: var(--paper);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
}

.compare th,
.compare td {
  padding: 0.95rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare tbody th {
  text-align: left;
  font-weight: 600;
  font-family: var(--sans);
  width: 32%;
}

.compare thead th {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}

.val {
  display: inline-block;
  min-width: 5.6rem;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
}

.val.yes {
  background: #f8e4df;
  color: #8a3f3c;
}

.val.some {
  background: #f3eee8;
  color: #6d615c;
}

.val.none {
  color: var(--muted-2);
  font-weight: 500;
}

.table-note {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
}

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
}

.faq details {
  background: rgba(255, 253, 251, 0.7);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.2rem 1.1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--muted);
  padding-bottom: 1rem;
}

.about {
  text-align: center;
}

.about p {
  margin-bottom: 1.6rem;
}

.legal-blocks {
  display: grid;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-blocks h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.legal-blocks article {
  background: rgba(255, 253, 251, 0.45);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
}

.site-footer {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.not-found {
  max-width: 36rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--coral-deep);
  font-weight: 700;
}

.back-home {
  margin-top: 1.5rem;
}

.back-home a {
  color: var(--muted);
}

@media (max-width: 860px) {
  .chip-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.75rem;
    gap: 1.75rem;
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .cta-block {
    align-items: center;
  }

  .subhead {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero-copy {
    padding: 0 0.2rem;
  }

  .hero-visual img {
    border-radius: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
