/* Quiet Couples landing — calm blush/plum/cream editorial.
   No external fonts, no third-party assets, no tracking. */

:root {
  --bg:        #fbf5ef;
  --cream:     #fffaf4;
  --paper:     #ffffff;
  --blush-1:   #f6dee0;
  --blush-2:   #ecc6cb;
  --blush-3:   #e0a7ae;
  --plum:      #6b3f58;
  --plum-deep: #4a2a3f;
  --ink:       #2a1f2c;
  --soft:      #6f5a70;
  --muted:     #97889a;
  --line:      #ecdcd5;
  --line-2:    #f3e6df;
  --shadow-1:  0 24px 60px rgba(74, 42, 63, 0.10);
  --shadow-2:  0 40px 90px rgba(74, 42, 63, 0.18);
  --radius-l:  28px;
  --radius-m:  20px;
  --radius-s:  14px;
  --serif:     "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans:      -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 88% -120px, #f7d4d8 0%, rgba(247,212,216,0) 65%),
    radial-gradient(700px 420px at -10% 8%, #f2e6dd 0%, rgba(242,230,221,0) 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--cream) 70%, #ffffff 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

a { color: var(--plum); text-underline-offset: 3px; }
a:hover { color: var(--plum-deep); }

/* ───────────── Nav ───────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 12px;
}
.nav .brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav .brand .mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--blush-2), var(--plum));
  display: inline-block;
  box-shadow: inset 0 0 0 2px var(--cream);
}
.nav .menu a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--soft);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}
.nav .menu a:hover { color: var(--plum); }

/* ───────────── Hero ───────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 56px 0 90px;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 7.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 18px;
  color: var(--plum-deep);
}
.hero h1 em {
  font-style: italic;
  color: var(--plum);
  background: linear-gradient(180deg, transparent 62%, var(--blush-1) 62%);
  padding: 0 2px;
}
.hero .lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--soft);
  max-width: 560px;
  margin: 0 0 28px;
}
.cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: 1px solid var(--plum);
  transition: transform 120ms ease, background 120ms ease;
}
.button:hover { background: var(--plum-deep); color: #fff; transform: translateY(-1px); }
.button.secondary {
  background: var(--paper);
  color: var(--plum);
  border: 1px solid var(--line);
}
.button.secondary:hover { background: var(--cream); color: var(--plum-deep); }
.button[aria-disabled="true"] { cursor: default; }

.cta-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
}

/* Phone card */
.phone {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 19;
  border-radius: 46px;
  padding: 14px;
  background: linear-gradient(180deg, #211622, #1a121d);
  box-shadow: var(--shadow-2);
  position: relative;
}
.phone:before {
  content: "";
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 22px; border-radius: 999px; background: #100a12;
}
.screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(380px 200px at 10% 0%, #ffe6e8 0%, rgba(255,230,232,0) 70%),
    linear-gradient(180deg, var(--cream), #fff);
  padding: 56px 18px 22px;
  overflow: hidden;
  position: relative;
}
.screen .status {
  position: absolute; top: 22px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 4px;
  color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  margin: 12px 6px;
  box-shadow: 0 8px 22px rgba(74, 42, 63, 0.06);
}
.card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--plum);
  font-weight: 700;
  margin-bottom: 6px;
}
.card .title {
  font-family: var(--serif);
  color: var(--plum-deep);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}
.card .body {
  font-size: 13.5px;
  color: var(--soft);
  margin: 0;
}
.card.clocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 6px;
}
.card.clocks .who {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}
.card.clocks .time {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--plum-deep);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card.clocks .overlap {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--plum);
  background: var(--blush-1);
  padding: 6px 10px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

/* ───────────── Sections ───────────── */
section { padding: 56px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 44px);
  letter-spacing: -0.025em;
  color: var(--plum-deep);
  margin: 0 0 10px;
}
.section-head p {
  color: var(--soft);
  font-size: 17.5px;
  margin: 0;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px 26px;
  box-shadow: 0 12px 30px rgba(74, 42, 63, 0.05);
}
.tile .glyph {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blush-1), var(--blush-2));
  display: grid; place-items: center;
  color: var(--plum-deep);
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 16px;
}
.tile h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum-deep);
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.tile p {
  color: var(--soft);
  margin: 0;
  font-size: 15.5px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 36px;
  color: var(--blush-3);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum-deep);
  margin: 6px 0 6px;
  font-size: 20px;
}
.step p { color: var(--soft); margin: 0; font-size: 15px; }

/* Privacy stance */
.stance {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-radius: var(--radius-l);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
  box-shadow: var(--shadow-1);
}
.stance h2 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum-deep);
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.02em;
}
.stance p { color: var(--soft); font-size: 16px; margin: 0 0 10px; }
.stance ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
.stance li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink);
  font-size: 15px;
}
.stance li:before {
  content: "•";
  color: var(--plum);
  font-weight: 700;
  margin-top: -2px;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 4px;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  color: var(--plum-deep);
  font-size: 19px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
  content: "+";
  color: var(--plum);
  font-weight: 600;
  transition: transform 150ms ease;
}
.faq details[open] summary:after { content: "–"; }
.faq p {
  color: var(--soft);
  font-size: 16px;
  margin: 12px 0 0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer a {
  color: var(--soft);
  text-decoration: none;
  margin-left: 18px;
}
.footer a:hover { color: var(--plum); }
.footer .brand-line {
  font-family: var(--serif);
  color: var(--plum);
  font-weight: 600;
}

/* ───────────── Legal pages ───────────── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum-deep);
  font-size: clamp(36px, 5.2vw, 52px);
  letter-spacing: -0.025em;
  margin: 18px 0 12px;
}
.legal .meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum-deep);
  margin-top: 36px;
  font-size: 22px;
}
.legal h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum);
  margin-top: 24px;
  font-size: 17.5px;
}
.legal p, .legal li {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
}
.legal ul { padding-left: 20px; }
.legal ul li { margin-bottom: 6px; }
.legal .callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--soft);
}
.legal a { word-break: break-word; }

/* ───────────── Responsive ───────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 32px 0 60px; }
  .phone { justify-self: center; max-width: 320px; }
  .tiles, .steps { grid-template-columns: 1fr; }
  .stance { grid-template-columns: 1fr; padding: 28px 22px; }
  .stance ul { grid-template-columns: 1fr; }
  .nav .menu a { margin-left: 12px; font-size: 14px; }
  body { font-size: 16.5px; }
}

@media (max-width: 480px) {
  .nav { padding-top: 20px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero .lede { font-size: 17.5px; }
  .footer { flex-direction: column; gap: 8px; }
  .footer .links a { margin-left: 0; margin-right: 14px; }
}

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