/* =======================================================
   Encounters Dating — Splash / Marketing page
   ======================================================= */


/* ── Top bar ────────────────────────────────────────────── */
.sp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.sp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-nav .logo img { height: 36px; display: block; }
.sp-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp-nav-label {
  font-size: 14px;
  color: var(--text-mid);
}
.sp-login-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--plum-deep);
  border: 1.5px solid var(--plum-deep);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  text-decoration: none;
  transition: background var(--t-base), color var(--t-base);
}
.sp-login-btn:hover {
  background: var(--plum-deep);
  color: white;
}


/* ── Hero ───────────────────────────────────────────────── */
.sp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
}

.sp-hero-copy {
  padding: 80px 56px 88px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  margin-left: auto;
}

.sp-hero-h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.sp-hero-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--rose);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sp-hero-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sp-hero-checks {
  list-style: none;
  margin-bottom: 28px;
}
.sp-hero-checks li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0 6px 28px;
  position: relative;
  line-height: 1.5;
}
.sp-hero-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--plum-deep);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='5 12 10 17 19 7' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.sp-hero-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
}
.sp-hero-link:hover { text-decoration: underline; }


/* Photo column */
.sp-hero-photo {
  position: relative;
  overflow: hidden;
}
.sp-hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Left fade — cream blending into photo */
.sp-hero-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(to right, #FBF7F0 0%, #FBF7F0 5%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Floating signup card */
.sp-signup-card {
  position: absolute;
  bottom: 44px;
  right: 44px;
  width: 320px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.16);
  z-index: 2;
}
.sp-signup-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.sp-signup-row {
  margin-bottom: 10px;
}
.sp-signup-row--search {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-signup-row--near {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-signup-lbl {
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-select {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 24px 7px 10px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='%236B6865' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 14px;
  cursor: pointer;
}
.sp-select--age {
  width: 60px;
  padding-right: 20px;
}
.sp-select--grow { flex: 1; }
.sp-select:focus {
  outline: none;
  border-color: var(--plum);
}
.sp-signup-cta {
  width: 100%;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 10px;
  transition: background var(--t-base);
}
.sp-signup-cta:hover { background: #8B3B3F; }
.sp-signup-free {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sp-signup-free svg { color: var(--text-light); flex-shrink: 0; }

/* Join form layout */
.sp-join-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sp-join-age-wrap { margin-bottom: 10px; }
.sp-join-age-label { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
#sp-age-display { font-family: var(--serif); color: var(--plum-deep); font-weight: 500; }

/* Age slider */
.age-slider { padding: 0 4px; margin: 2px 0 8px; }
.age-slider-track { position: relative; height: 5px; background: var(--border); border-radius: var(--radius-pill); margin: 22px 0 8px; }
.age-slider-fill { position: absolute; height: 100%; background: linear-gradient(90deg, var(--rose-light), var(--rose)); border-radius: var(--radius-pill); pointer-events: none; }
.age-slider-handle { position: absolute; top: 50%; width: 22px; height: 22px; margin-top: -11px; margin-left: -11px; background: var(--plum); border: 3px solid white; border-radius: 50%; box-shadow: 0 1px 6px rgba(60,40,60,0.28); cursor: grab; touch-action: none; z-index: 2; }
.age-slider-handle::before { content: ''; position: absolute; inset: -12px; }
.age-slider-handle:hover { background: var(--plum-light); }
.age-slider-handle:active { cursor: grabbing; }
.age-slider-handle:focus { outline: none; box-shadow: 0 0 0 5px var(--plum-faint); }
.age-slider-ends { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); }


/* ── Trust bar ──────────────────────────────────────────── */
.sp-trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.sp-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sp-trust-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--plum-deep);
  margin-top: 2px;
}
.sp-trust-item h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.sp-trust-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}


/* ── Mid quote ──────────────────────────────────────────── */
.sp-mid-quote {
  background: var(--bg);
  text-align: center;
  padding: 72px 48px 64px;
}
.sp-mid-quote-text {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--plum-deep);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.sp-mid-quote-text em { font-style: italic; }
.sp-mid-rule {
  width: 36px;
  height: 2px;
  background: var(--rose);
  margin: 0 auto;
  border-radius: 2px;
}


/* ── Shared utilities ───────────────────────────────────── */
.sp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
}
.sp-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.sp-link-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
}
.sp-link-arrow:hover { text-decoration: underline; }


/* ── Members ────────────────────────────────────────────── */
.sp-members { background: var(--surface); }
.sp-members-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sp-members-header .sp-eyebrow { margin-bottom: 0; }
.sp-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-member-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.sp-member-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sp-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-member-body { padding: 20px 22px 24px; }
.sp-member-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--plum-deep);
  margin-bottom: 2px;
}
.sp-member-location {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.sp-member-quote {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}


/* ── Feature split ──────────────────────────────────────── */
.sp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  padding: 64px 48px 64px;
}
.sp-feature-photo {
  overflow: hidden;
  min-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.sp-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-feature-copy {
  padding: 72px 64px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-feature-copy h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  margin-top: 8px;
}
.sp-feature-copy > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sp-tick-list {
  list-style: none;
  margin-bottom: 28px;
}
.sp-tick-list li {
  font-size: 15px;
  color: var(--text);
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.sp-tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--rose-faint);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='5 12 10 17 19 7' fill='none' stroke='%23A0464A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ── Stats band ─────────────────────────────────────────── */
.sp-stats { background: var(--plum-deep); }
.sp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sp-stats-item {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
}
.sp-stats-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.sp-stats-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.sp-stats-num span {
  font-size: 30px;
  color: var(--rose-light);
  letter-spacing: 0;
}
.sp-stats-item h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}
.sp-stats-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}


/* ── Why choose ─────────────────────────────────────────── */
.sp-why {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-why-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 88px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.sp-why-lead { position: sticky; top: 96px; }
.sp-why-h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 16px;
}
.sp-why-content p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
}
.sp-why-content p em { font-style: italic; color: var(--text); }
.sp-why-cta-row {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.sp-why-join {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  margin-bottom: 14px;
}
.sp-why-join:hover { text-decoration: underline; }
.sp-why-faq {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.sp-why-faq a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sp-why-faq a:hover { color: var(--plum-deep); }


/* ── Reviews ────────────────────────────────────────────── */
.sp-reviews { background: var(--bg); }
.sp-reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.sp-reviews-header .sp-eyebrow { margin-bottom: 16px; }
.sp-reviews-header h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sp-reviews-header h2 em {
  font-style: italic;
  color: var(--rose);
}
.sp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.sp-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
}
.sp-review-mark {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 0.9;
  color: var(--rose);
  margin-bottom: 12px;
  opacity: 0.55;
}
.sp-review p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sp-review-attr {
  font-size: 13px;
  color: var(--text-light);
}
.sp-reviews-footer { text-align: center; }


/* ── CTA band ───────────────────────────────────────────── */
.sp-cta-band {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  overflow: hidden;
}
.sp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(63,40,64,0.72), rgba(63,40,64,0.84));
}
.sp-cta-inner {
  position: relative;
  z-index: 1;
  padding: 96px 48px 88px;
}
.sp-cta-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sp-cta-heading em { font-style: italic; }
.sp-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-base);
  margin-bottom: 4px;
}
.sp-cta-btn:hover { background: #8B3B3F; }
.sp-cta-free {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}


/* ── Footer ─────────────────────────────────────────────── */
.sp-footer { background: var(--plum-deep); }
.sp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px;
  align-items: start;
}
.sp-footer-logo { height: 30px; display: block; margin-bottom: 12px; }
.sp-footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.sp-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--t-fast);
}
.sp-footer-col a:hover { color: rgba(255,255,255,0.9); }
.sp-footer-copy {
  font-size: 12px;
  text-align: right;
  line-height: 1.9;
  color: rgba(255,255,255,0.35);
}
