:root {
  --ink: #22191d;
  --muted: #6b5f64;
  --line: #eadde1;
  --paper: #ffffff;
  --soft: #fff6f7;
  --rose: #c83262;
  --rose-dark: #8d1f42;
  --gold: #c99a4a;
  --plum: #3b1f2a;
  --green: #176b5b;
  --shadow: 0 20px 60px rgba(60, 31, 42, .15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a,
.header-cta,
.btn,
.pill-list a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--rose-dark);
  background: var(--soft);
}

.mobile-nav-cta {
  display: none;
}

.header-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(200, 50, 98, .22);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--plum);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 16, 25, .94), rgba(59, 31, 42, .76) 48%, rgba(59, 31, 42, .35)),
    url("../img/head-bg.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 620px;
  margin: 0 auto;
  padding: 54px 0 66px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-width: 150px;
  padding: 12px 20px;
  border: 1px solid transparent;
}

.btn.primary {
  color: #fff;
  background: var(--rose);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.signup-panel {
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signup-panel h2 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.15;
}

.signup-panel .panel-kicker {
  color: var(--rose);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-section,
.content-section,
.dating-depth,
.directory-section,
.related-section,
.faq-section,
.partners-section,
.map-section,
.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-heading h2,
.content-block h2,
.final-cta h2,
.map-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.section-heading p,
.content-block p,
.map-section p,
.final-cta p {
  color: var(--muted);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.profile-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 144px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(60, 31, 42, .08);
}

.profile-card img {
  width: 96px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.profile-card h3 {
  margin: 0;
  font-size: 18px;
}

.profile-card p {
  margin: 4px 0;
  color: var(--rose-dark);
  font-weight: 700;
}

.profile-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.content-section {
  border-top: 1px solid var(--line);
}

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

.content-block {
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-block h2 {
  font-size: 28px;
}

.dating-depth {
  border-top: 1px solid var(--line);
}

.depth-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.depth-intro h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.depth-intro p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.depth-grid article {
  min-height: 250px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(60, 31, 42, .07);
}

.depth-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.depth-grid p {
  color: var(--muted);
}

.message-sample {
  padding: 14px;
  color: var(--plum) !important;
  background: var(--soft);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  font-weight: 700;
}

.intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.intent-row span {
  padding: 9px 13px;
  color: var(--rose-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.playbook-grid article {
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--rose-dark));
  border-radius: 8px;
}

.playbook-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.playbook-grid p {
  color: rgba(255, 255, 255, .86);
}

.directory-section {
  border-top: 1px solid var(--line);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list a {
  padding: 10px 14px;
  color: var(--rose-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.pill-list a:hover {
  color: #fff;
  background: var(--rose);
  border-color: var(--rose);
}

.pill-list.small a {
  min-height: 34px;
  font-size: 13px;
}

.map-section {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 22px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.map-section iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.related-section,
.faq-section,
.partners-section {
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  min-height: 142px;
  padding: 20px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-card:hover {
  border-color: rgba(200, 50, 98, .42);
  box-shadow: 0 14px 34px rgba(200, 50, 98, .12);
}

.related-card strong,
.related-card span {
  display: block;
}

.related-card strong {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 18px;
}

.related-card span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

.final-cta {
  margin-bottom: 44px;
  padding: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--rose-dark));
  border-radius: 8px;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
}

.site-footer {
  padding: 44px clamp(18px, 4vw, 56px) 24px;
  color: rgba(255, 255, 255, .78);
  background: #20151b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid img {
  width: 180px;
  margin-bottom: 14px;
  filter: brightness(1.08);
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 68px;
    gap: 12px;
    position: sticky;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    margin-left: 0;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    white-space: normal;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    color: #fff !important;
    background: var(--rose);
    justify-content: center !important;
  }

  .hero-inner,
  .map-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .profile-grid,
  .depth-grid,
  .playbook-grid,
  .related-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 38px 0 44px;
  }

  h1 {
    font-size: 38px;
  }

  .profile-section,
  .content-section,
  .dating-depth,
  .directory-section,
  .related-section,
  .faq-section,
  .partners-section,
  .map-section,
  .final-cta {
    width: min(100% - 28px, 1180px);
    padding: 42px 0;
  }

  .final-cta {
    padding: 28px;
  }

  .profile-card {
    grid-template-columns: 82px 1fr;
  }

  .profile-card img {
    width: 82px;
    height: 98px;
  }
}
