:root {
  --bg: #f9f9f7;
  --surface: #ffffff;
  --surface-low: #f4f4f2;
  --surface-mid: #eeeeec;
  --surface-high: #e8e8e6;
  --ink: #1a1c1b;
  --muted: #5f5e5e;
  --variant: #5a403c;
  --primary: #610000;
  --primary-strong: #8b0000;
  --gold: #9b7a34;
  --line: rgba(26, 28, 27, 0.12);
  --line-strong: rgba(97, 0, 0, 0.3);
  --max: 1200px;
  --gutter: 24px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(97, 0, 0, 0.14);
}

body[data-menu-open="true"] { overflow: hidden; }

a { color: inherit; }

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
.brand {
  font-family: "Libre Caslon Text", Georgia, serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
h2,
h3,
p { margin-top: 0; }

p { margin-bottom: 0; }

ul { padding-left: 20px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
  transform: translateY(-180%);
}

.skip-link:focus-visible { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(139, 0, 0, 0.32);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(249, 249, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 80px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--primary);
}

.primary-nav a[aria-current="page"]:not(.nav-join) {
  border-bottom: 1px solid currentColor;
}

.login-link { margin-left: 18px; }

.nav-join {
  min-width: 82px;
  padding: 11px 22px;
  color: #fff !important;
  background: var(--primary);
  border-radius: 2px;
  text-align: center;
}

.nav-join:hover { background: var(--primary-strong); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  row-gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--primary);
}

.section,
.hero-content,
.footer-grid,
.article {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section + .section,
.section + .cta-band,
.cta-band + .site-footer {
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-image {
  min-height: 620px;
  color: #fff;
}

@media (min-width: 1024px) {
  .home-hero.hero-image {
    min-height: clamp(720px, 78vh, 840px);
  }
}

.audience-baby-hero {
  min-height: 560px;
}

.audience-daddy-hero {
  min-height: 560px;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(26, 28, 27, 0.52), rgba(26, 28, 27, 0.46));
}

.audience-baby-hero::before {
  background: linear-gradient(rgba(20, 20, 18, 0.72), rgba(20, 20, 18, 0.7));
}

.audience-daddy-hero::before {
  background: linear-gradient(rgba(20, 20, 18, 0.66), rgba(20, 20, 18, 0.72));
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.audience-baby-hero .hero-content {
  max-width: 720px;
}

.audience-daddy-hero .hero-content {
  max-width: 740px;
}

.audience-baby-hero h1,
.audience-daddy-hero h1 {
  font-size: 44px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.audience-baby-hero p,
.audience-daddy-hero p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.7;
}

.hero-plain {
  min-height: 330px;
  padding: 86px 0 52px;
}

.join-hero { padding-bottom: 24px; }

.hero-content {
  max-width: 820px;
}

.hero h1,
.article-header h1 {
  margin-bottom: 22px;
  color: inherit;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.hero-plain h1,
.article-header h1 {
  color: var(--primary);
}

.hero p,
.article-header > p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
  opacity: 0.86;
  font-size: 17px;
}

.contact-panel h2 {
  overflow-wrap: anywhere;
}

.hero-plain p { color: var(--muted); }

.eyebrow {
  margin-bottom: 16px;
  color: var(--variant);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image .eyebrow { color: rgba(255, 255, 255, 0.78); }

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--primary);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #fff;
  background: var(--primary-strong);
}

.button-secondary {
  color: var(--primary);
  background: transparent;
  border-color: var(--line-strong);
}

.hero-image .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2,
.statement-band h2,
.cta-band h2,
.editorial-split h2,
.guidance-split h2,
.privacy-panel h2,
.privacy-rows h2,
.red-flags h2,
.featured-article h2,
.article-body h2,
.toc h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
}

.section-header p,
.statement-band p,
.cta-band p {
  color: var(--muted);
}

.feature-grid,
.three-card-grid,
.city-grid,
.content-grid,
.article-grid,
.two-card-grid,
.market-grid,
.process-grid {
  display: grid;
  gap: var(--gutter);
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.market-grid,
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card,
.city-card,
.article-card,
.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card {
  min-height: 196px;
  padding: 34px;
}

.info-card h3,
.city-card h3,
.article-card h3,
.content-card h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.info-card p,
.city-card p,
.article-card p,
.content-card p {
  color: var(--muted);
  font-size: 14px;
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.statement-band,
.safety-commitment,
.cta-band {
  width: 100%;
  padding: 76px max(24px, calc((100% - 760px) / 2));
  text-align: center;
}

.statement-band,
.safety-commitment {
  background: var(--surface-mid);
}

.statement-band h2,
.safety-commitment h2 {
  font-size: 34px;
}

.safety-commitment .icon {
  margin-left: auto;
  margin-right: auto;
}

.safety-commitment p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--muted);
}

.city-directory {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - var(--max)) / 2));
  padding-right: max(40px, calc((100% - var(--max)) / 2));
  background: var(--surface-low);
}

.city-directory-footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.city-card,
.article-card {
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.city-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.city-card a,
.article-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.city-card img,
.article-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.city-card div,
.article-card div {
  padding: 26px;
}

.city-card span,
.article-card span,
.text-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.editorial-split,
.guidance-split,
.join-layout,
.privacy-panel,
.featured-article {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: center;
}

.editorial-split img,
.guidance-split img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 6px solid var(--surface);
  outline: 1px solid var(--line);
}

.guidance-split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.guidance-split img {
  aspect-ratio: 4 / 3;
}

.editorial-split p,
.guidance-split p,
.privacy-panel p,
.privacy-rows p,
.market-grid p,
.process-grid p {
  color: var(--muted);
}

.editorial-split p + p {
  margin-top: 18px;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - var(--max)) / 2));
  padding-right: max(40px, calc((100% - var(--max)) / 2));
  background: var(--surface-low);
}

.market-section { text-align: center; }

.market-grid {
  text-align: left;
}

.market-grid span,
.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--surface-high);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
}

.market-grid h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nearby-section {
  text-align: center;
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.nearby-links a,
.blog-tabs span {
  padding: 11px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--variant);
  font-size: 13px;
  text-decoration: none;
}

.blog-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 0;
  padding-bottom: 46px;
}

.blog-tabs span {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-radius: 0;
  font-weight: 700;
}

.blog-tabs .active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.faq-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--surface-low);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list {
  text-align: left;
}

details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 600;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
}

.check-list li > span {
  grid-row: span 2;
}

.check-list .icon {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
}

.check-list strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.red-flags {
  padding: 56px;
  background: var(--surface-low);
  border: 1px solid var(--line);
}

.red-flags h2 {
  text-align: center;
}

.red-flag-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.red-flag-grid ul {
  margin-bottom: 0;
  color: var(--muted);
}

.red-flag-grid li + li {
  margin-top: 12px;
}

.red-flag-grid article {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.privacy-panel {
  align-items: stretch;
}

.privacy-panel article {
  padding: 42px;
  background: var(--surface-low);
  border: 1px solid var(--line);
}

.privacy-panel article:nth-child(2) {
  background: var(--surface);
}

.privacy-panel li {
  color: var(--muted);
}

.baby-privacy,
.daddy-privacy {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
}

.baby-privacy article:first-child,
.daddy-privacy article:first-child {
  background: transparent;
  border: 0;
  padding-left: 0;
}

.baby-privacy article:nth-child(2),
.daddy-privacy article:nth-child(2) {
  background: var(--surface-low);
}

.privacy-detail-list,
.safety-mini-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-detail-list li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.privacy-detail-list strong {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-detail-list span,
.safety-mini-list li {
  color: var(--muted);
  font-size: 14px;
}

.safety-mini-list li {
  position: relative;
  padding-left: 20px;
}

.safety-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--primary);
  border-radius: 999px;
}

.process-section {
  text-align: center;
}

.process-grid article {
  padding: 0 16px;
}

.process-grid span {
  width: 34px;
  height: 34px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
}

.how-hero {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 80px;
  align-items: center;
}

.how-hero-copy h1 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 45px;
  line-height: 1.12;
}

.how-hero-copy p {
  max-width: 560px;
  color: var(--muted);
}

.how-hero-copy .button {
  margin-top: 32px;
}

.how-hero-visual {
  position: relative;
}

.how-hero-visual img {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
}

.how-hero-visual blockquote {
  position: absolute;
  left: -28px;
  bottom: -24px;
  margin: 0;
  padding: 20px 28px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(26, 28, 27, 0.08);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.how-journey {
  text-align: center;
}

.how-journey > .eyebrow {
  margin-bottom: 6px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  text-align: left;
}

.journey-grid article {
  position: relative;
  padding-top: 20px;
}

.journey-grid article > span {
  position: absolute;
  top: -32px;
  left: -10px;
  z-index: -1;
  color: rgba(139, 0, 0, 0.08);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 74px;
  line-height: 1;
}

.journey-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  padding: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.journey-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

.journey-grid p {
  color: var(--muted);
  font-size: 14px;
}

.how-discretion {
  padding: 84px 0;
  background: var(--surface-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-discretion-inner {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 82px;
  align-items: center;
}

.how-discretion-inner > img {
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
}

.how-discretion h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

.how-discretion p {
  color: var(--muted);
}

.gold-label {
  display: inline-block;
  padding: 7px 12px;
  color: #6f4e00;
  background: #f2dfb9;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.check-list.compact {
  gap: 14px;
  margin-top: 28px;
}

.check-list.compact p {
  font-size: 14px;
}

.standards-panel {
  display: grid;
  place-items: center;
}

.standards-panel > div {
  width: min(860px, 100%);
  padding: 64px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.standards-panel h2 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 34px;
}

.standards-panel > div > p {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-style: italic;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.standards-grid article {
  padding: 26px;
  background: var(--surface-low);
}

.standards-grid h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standards-grid p {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  background: var(--surface-low);
}

.cta-band > div {
  max-width: 780px;
  margin: 0 auto;
}

.cta-band p {
  margin-bottom: 28px;
}

.cta-dark {
  color: #fff;
  background: #292d2a;
}

.cta-dark p { color: rgba(255, 255, 255, 0.76); }

.join-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: start;
}

.join-intro {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 80px 0 110px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(97, 0, 0, 0.08), transparent 28%),
    linear-gradient(#fff, var(--surface-low));
}

.join-intro h1 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.12;
}

.join-intro p {
  max-width: 640px;
  margin: 0 auto 42px;
  color: var(--muted);
}

.join-provider-note {
  max-width: 560px !important;
  margin: 18px auto 0 !important;
  font-size: 13px;
}

.join-benefits {
  text-align: center;
}

.join-security {
  padding: 86px 0;
  background: var(--surface-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-security-inner {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 88px;
  align-items: center;
}

.join-security h2,
.join-final h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.join-security p,
.join-final p {
  color: var(--muted);
}

.security-list {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}

.security-list .icon {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  padding: 4px;
  background: rgba(139, 0, 0, 0.08);
  border-radius: 999px;
}

.security-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.security-card {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(26, 28, 27, 0.12);
}

.security-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(139, 0, 0, 0.22);
  border-radius: 8px;
  transform: rotate(5deg);
}

.security-card > .icon {
  width: 92px;
  height: 92px;
  margin: 0;
  color: rgba(139, 0, 0, 0.2);
  stroke-width: 1.2;
}

.security-pill {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--variant);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(26, 28, 27, 0.08);
}

.security-pill .icon {
  width: 15px;
  height: 15px;
  margin: 0;
}

.security-pill.ssl {
  top: 48px;
  right: 40px;
}

.security-pill.reviewed {
  bottom: 48px;
  left: 42px;
}

.join-final {
  padding: 92px 24px;
  text-align: center;
  background: var(--bg);
}

.join-final p {
  max-width: 640px;
  margin: 0 auto 36px;
}

.content-stack {
  display: grid;
  gap: 28px;
}

.content-stack article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.content-stack h2 {
  font-size: 30px;
}

.join-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.join-form label {
  display: grid;
  gap: 8px;
  color: var(--variant);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-form input,
.join-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: 16px "Work Sans", sans-serif;
  padding: 0 12px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented legend {
  grid-column: 1 / -1;
  color: var(--variant);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.segmented label {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.segmented label:has(input:checked) {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.check-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 400;
}

.check-row input {
  min-height: 18px;
  height: 18px;
}

.check-row a { color: var(--primary); }

.form-submit { width: 100%; }

.policy-hero {
  padding: 84px 0 44px;
  border-bottom: 1px solid var(--line);
}

.policy-hero > div {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

.policy-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 50px;
  line-height: 1.12;
}

.policy-hero p {
  max-width: 690px;
  color: var(--muted);
}

.policy-layout {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 68px 0 92px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 96px;
}

.policy-toc {
  position: sticky;
  top: 116px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.policy-toc a {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.policy-toc a.active {
  color: var(--primary);
  border-left: 2px solid var(--primary);
  padding-left: 14px;
}

.policy-content {
  max-width: 760px;
  min-width: 0;
}

.policy-content section + section {
  margin-top: 68px;
}

.policy-content h2 {
  margin-bottom: 22px;
  font-size: 28px;
  line-height: 1.22;
}

.policy-content h3 {
  margin: 0 0 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
}

.policy-content p,
.policy-content li,
.policy-content td {
  color: var(--muted);
  font-size: 15px;
}

.policy-content p + p {
  margin-top: 18px;
}

.policy-content ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.policy-content strong {
  color: var(--ink);
}

.policy-content blockquote {
  margin: 30px 0 0;
  padding: 28px;
  color: var(--variant);
  background: var(--surface-low);
  border: 1px solid var(--line);
  font-style: italic;
}

.policy-table-wrap {
  margin-top: 28px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.policy-content th,
.policy-content td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-content th {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rights-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.rights-list article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
}

.rights-list .icon {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.rights-list p {
  margin: 0;
}

.featured-article {
  max-width: 1040px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 0;
  align-items: stretch;
  padding-top: 24px;
}

.featured-article img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.featured-article article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 0;
}

.featured-article h2 {
  font-size: 38px;
}

.article {
  max-width: 1120px;
}

.article-header {
  padding: 88px 0 52px;
  text-align: center;
}

.article-meta {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px !important;
}

.article-hero-image {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: start;
}

.article-body {
  max-width: 720px;
}

.article-body .lede {
  color: var(--muted);
  font-size: 17px;
}

.answer-block {
  padding: 22px 24px;
  color: var(--ink) !important;
  background: var(--surface-low);
  border-left: 3px solid var(--primary);
}

.article-body section {
  padding: 30px 0;
}

.article-body p {
  color: var(--muted);
}

.toc {
  position: sticky;
  top: 108px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.toc h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.related-insights {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100% - var(--max)) / 2));
  padding-right: max(40px, calc((100% - var(--max)) / 2));
  background: var(--surface-low);
}

.site-footer {
  padding: 68px 0;
  background: var(--surface-high);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 44px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 22px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover { color: var(--primary); }

.footer-grid p,
.footer-grid small {
  color: var(--muted);
  font-size: 13px;
}

.adult-note { margin-top: 16px; }

@media (max-width: 1023px) {
  .header-inner,
  .section,
  .hero-content,
  .footer-grid,
  .article {
    width: min(var(--max), calc(100% - 48px));
  }

  .menu-toggle { display: grid; }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .primary-nav[data-open="true"] { display: flex; }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a[aria-current="page"]:not(.nav-join) {
    border-bottom: 1px solid var(--line);
  }

  .login-link { margin-left: 0; }

  .nav-join { margin-top: 12px; }

  .feature-grid,
  .three-card-grid,
  .city-grid,
  .content-grid,
  .article-grid,
  .two-card-grid,
  .market-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-split,
  .guidance-split,
  .how-hero,
  .how-discretion-inner,
  .join-layout,
  .join-security-inner,
  .privacy-panel,
  .baby-privacy,
  .daddy-privacy,
  .featured-article,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .featured-article article {
    border-left: 1px solid var(--line);
    padding: 44px;
  }

  .toc {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header-inner,
  .section,
  .hero-content,
  .join-security-inner,
  .footer-grid,
  .article {
    width: min(var(--max), calc(100% - 32px));
  }

  .header-inner { min-height: 70px; }

  .brand { font-size: 20px; }

  .primary-nav {
    top: 66px;
    left: 16px;
    right: 16px;
  }

  .hero-image {
    min-height: 560px;
  }

  .home-hero.hero-image {
    min-height: 500px;
  }

  .footer-grid a,
  .policy-toc a,
  .text-link {
    min-height: 40px;
  }

  .hero h1,
  .article-header h1,
  .join-intro h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .home-hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .contact-hero h1 {
    font-size: 31px;
  }

  .audience-baby-hero h1,
  .audience-daddy-hero h1 {
    font-size: 33px;
  }

  .hero p,
  .article-header > p {
    font-size: 15px;
  }

  .hero-actions,
  .nearby-links {
    flex-direction: column;
  }

  .button { width: 100%; }

  .section {
    padding: 62px 0;
  }

  .section-header h2,
  .statement-band h2,
  .cta-band h2,
  .editorial-split h2,
  .guidance-split h2,
  .privacy-panel h2,
  .privacy-rows h2,
  .red-flags h2,
  .featured-article h2,
  .article-body h2 {
    font-size: 29px;
  }

  .feature-grid,
  .three-card-grid,
  .city-grid,
  .content-grid,
  .article-grid,
  .two-card-grid,
  .market-grid,
  .journey-grid,
  .process-grid,
  .red-flag-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .city-directory,
  .muted-section,
  .related-insights {
    padding-left: 16px;
    padding-right: 16px;
  }

  .how-hero,
  .how-discretion-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .how-hero {
    padding: 58px 0 70px;
  }

  .how-hero-copy h1 {
    font-size: 36px;
  }

  .how-hero-visual blockquote {
    position: static;
    margin-top: 0;
  }

  .journey-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-panel > div {
    padding: 32px 24px;
  }

  .statement-band,
  .safety-commitment,
  .cta-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-panel,
  .red-flags,
  .join-form,
  .privacy-panel article,
  .featured-article article {
    padding: 26px;
  }

  .join-intro {
    min-height: 460px;
    padding: 64px 0 84px;
  }

  .join-security {
    padding: 62px 0;
  }

  .security-card {
    min-height: 300px;
  }

  .baby-privacy article:first-child,
  .daddy-privacy article:first-child {
    padding: 0;
  }

  .policy-hero > div,
  .policy-layout {
    width: min(var(--max), calc(100% - 32px));
  }

  .policy-hero {
    padding: 58px 0 34px;
  }

  .policy-hero h1 {
    font-size: 38px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 42px 0 68px;
    min-width: 0;
  }

  .policy-toc {
    position: static;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .article-header {
    padding-top: 62px;
  }

  .article-hero-image {
    aspect-ratio: 4 / 3;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .city-card:hover,
  .article-card:hover {
    transform: none;
  }
}
