:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #5b6675;
  --soft: #f5f7fa;
  --line: #dce2ea;
  --brand: #8f2346;
  --brand-dark: #651932;
  --accent: #1f6f78;
  --gold: #b8892d;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(24, 33, 47, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 0;
}

a {
  color: var(--brand);
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  z-index: 20;
}

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

.site-header {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

.logo-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.logo-brand img {
  display: block;
  width: 200px;
  max-width: 54vw;
  height: auto;
}

.brand span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.button {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(143, 35, 70, 0.22);
}

.nav-links .button {
  color: var(--white);
}

.button:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--brand);
  background: var(--white);
  border-color: rgba(143, 35, 70, 0.25);
}

.container,
.article-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 78% 30%, rgba(31, 111, 120, 0.2), transparent 34%),
    linear-gradient(135deg, #fff8f8, #edf7f8);
  border-bottom: 1px solid var(--line);
}

.brand-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111823;
}

.brand-hero-media {
  position: absolute;
  inset: 0;
}

.brand-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 35, 0.5), rgba(17, 24, 35, 0.22) 48%, rgba(17, 24, 35, 0.02)),
    linear-gradient(180deg, rgba(17, 24, 35, 0.04), rgba(17, 24, 35, 0.32));
}

.brand-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.brand-hero-copy {
  position: relative;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.25rem 5rem;
  color: var(--white);
}

.brand-hero-copy .lead {
  color: rgba(255, 255, 255, 0.88);
}

.brand-hero-copy .eyebrow {
  color: #f4c86b;
}

.brand-hero-copy h1 {
  max-width: 720px;
}

.brand-hero-copy .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.intro-strip {
  padding: 1.2rem 0;
  background: var(--brand);
  color: var(--white);
}

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

.intro-grid div {
  display: grid;
  gap: 0.15rem;
}

.intro-grid strong {
  font-size: 1rem;
}

.intro-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.visual-section {
  padding: 5rem 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.visual-grid.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.82fr);
}

.visual-grid.reverse .visual-copy {
  order: 2;
}

.visual-copy {
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.image-stack,
.image-frame {
  position: relative;
}

.stack-main,
.image-frame img,
.split-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-main {
  aspect-ratio: 4 / 3;
}

.image-frame img {
  aspect-ratio: 3 / 2;
}

.stat-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 220px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1.15;
}

.compact-section {
  padding: 4.25rem 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.steps-row article {
  padding: 1.4rem;
  background: var(--white);
}

.steps-row span {
  color: var(--gold);
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.split-image img {
  aspect-ratio: 4 / 5;
}

.split-copy {
  max-width: 620px;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.mini-links a {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta {
  padding: 5rem 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), #203b45);
}

.final-cta-inner {
  text-align: center;
}

.final-cta h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .eyebrow {
  color: #f4c86b;
}

.articles-hero {
  padding: 5rem 0 3rem;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    url("assets/profile-intention.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.not-found-hero {
  padding: 6rem 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    url("assets/hero-serious-dating.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.not-found-hero h1 {
  max-width: 720px;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-list-grid .article-card h2 {
  font-size: 1.35rem;
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.4rem 1.25rem 3.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 1rem;
  max-width: 780px;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
}

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

h3 {
  margin: 1.1rem 0 0.45rem;
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  width: 156px;
  height: 45px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(24, 33, 47, 0.16);
}

.app-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-app-badge {
  margin-top: 0.9rem;
  box-shadow: none;
}

.fine-print,
.disclosure {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-panel-body {
  padding: 1.25rem;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.score strong {
  color: var(--brand);
  font-size: 2.5rem;
  line-height: 1;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin: 0.65rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
}

section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--soft);
}

.grid-3,
.grid-2,
.article-grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.article-card,
.note-box,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.article-card,
.note-box {
  padding: 1.25rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-card a {
  color: var(--ink);
  text-decoration: none;
}

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

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fae8ef;
  font-size: 0.78rem;
  font-weight: 850;
}

.cta-band {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: #fff8fa;
}

.cta-band p,
.card p:last-child {
  margin-bottom: 0;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.american-dating {
  padding: 4.5rem 0 5rem;
  background: #f4f2f4;
}

.american-dating-heading {
  text-align: center;
}

.american-dating-heading h2 {
  margin-bottom: 2.4rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 500;
  color: #30343f;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem 2rem;
}

.city-card {
  position: relative;
  min-height: 178px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background-color: #60788c;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(24, 33, 47, 0.08);
}

a.city-card {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

a.city-card:hover {
  text-decoration-color: var(--white);
}

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 35, 0.02), rgba(17, 24, 35, 0.54));
}

.city-card span {
  position: relative;
  z-index: 1;
  padding: 0 1rem 0.85rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.city-wide {
  grid-column: span 2;
}

.city-new-york {
  background-image: url("https://images.unsplash.com/photo-1534430480872-3498386e7856?auto=format&fit=crop&w=900&q=80");
}

.city-los-angeles {
  background-image: url("https://images.unsplash.com/photo-1515896769750-31548aa180ed?auto=format&fit=crop&w=900&q=80");
}

.city-chicago {
  background-image: url("https://images.unsplash.com/photo-1494522855154-9297ac14b55f?auto=format&fit=crop&w=900&q=80");
}

.city-miami {
  background-image: url("assets/miami.png");
}

.city-san-francisco {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=900&q=80");
}

.city-washington {
  background-image: url("https://images.unsplash.com/photo-1501466044931-62695aada8e9?auto=format&fit=crop&w=900&q=80");
}

.city-dallas {
  background-image: url("https://unsplash.com/photos/JliXJH8FJCM/download?force=true&w=1200");
}

.city-atlanta {
  background-image: url("https://images.unsplash.com/photo-1575917649705-5b59aaa12e6b?auto=format&fit=crop&w=900&q=80");
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
  padding-top: 2.25rem;
  padding-bottom: 4rem;
}

.article {
  max-width: 780px;
}

.article h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.article-meta,
.breadcrumbs {
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.article p,
.article li {
  color: #334052;
}

.article ul,
.article ol {
  padding-left: 1.3rem;
}

.article-figure {
  margin: 2rem 0;
}

.article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-figure figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.sidebar {
  position: sticky;
  top: 5.5rem;
}

.sidebar .card {
  box-shadow: none;
}

.legal-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #131a24;
  color: #d7dde6;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
    padding-bottom: 0;
  }

  .nav {
    align-items: center;
    padding: 0.7rem 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
  }

  .hero-grid,
  .intro-grid,
  .visual-grid,
  .visual-grid.reverse,
  .steps-row,
  .split-feature,
  .article-list-grid,
  .grid-3,
  .grid-2,
  .city-grid,
  .article-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .city-wide {
    grid-column: auto;
  }

  .city-grid {
    gap: 1rem;
  }

  .city-card {
    min-height: 210px;
  }

  .hero-grid {
    padding-top: 3rem;
  }

  section {
    padding: 3rem 0;
  }

  .brand-hero {
    min-height: auto;
    height: calc(100vh - 176px);
    max-height: 680px;
  }

  .brand-hero-media::after {
    background:
      linear-gradient(180deg, rgba(17, 24, 35, 0.02), rgba(17, 24, 35, 0.38) 48%, rgba(17, 24, 35, 0.7)),
      linear-gradient(90deg, rgba(17, 24, 35, 0.46), rgba(17, 24, 35, 0.08));
  }

  .brand-hero-media img {
    object-position: 61% center;
  }

  .brand-hero-copy {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .brand-hero-copy h1 {
    max-width: 520px;
    font-size: 2.7rem;
  }

  .brand-hero-copy .lead {
    max-width: 500px;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .visual-grid.reverse .visual-copy {
    order: 0;
  }

  .section-heading {
    display: block;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar {
    position: static;
  }

  .mobile-sticky {
    display: none;
  }

  .mobile-sticky .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
    gap: 0.65rem;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.65rem 0.95rem;
  }

  .nav-links a:not(.button) {
    font-size: 1rem;
  }

  .nav-links .button {
    width: auto;
    min-height: auto;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .logo-brand img {
    width: 210px;
    max-width: 68vw;
  }

  .brand-hero {
    height: calc(100vh - 176px);
    min-height: 560px;
    max-height: 640px;
  }

  .brand-hero-media img {
    object-position: 62% center;
  }

  .brand-hero-copy {
    padding: 6.5rem 1rem 2.35rem;
  }

  .brand-hero-copy h1 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .brand-hero-copy .lead {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.42;
  }

  .brand-hero-copy .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
  }

  .hero-actions .button,
  .hero-actions .button-secondary,
  .hero-actions .app-badge,
  .cta-actions .button,
  .cta-actions .button-secondary {
    width: auto;
  }

  .brand-hero-copy .button-secondary {
    display: none;
  }
}
