
:root {
  --cream: #fffaf5;
  --paper: #fffdf9;
  --blush: #f8e5df;
  --rose: #c7134c;
  --rose-dark: #95103c;
  --wine: #4a0c24;
  --ink: #291f22;
  --muted: #78676b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }

svg { width: 24px; height: 24px; fill: currentColor; }

.site-header {
  align-items: center;
  background: rgba(255, 253, 249, .96);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 86px;
  padding: 0 3.5vw;
  position: relative;
  z-index: 10;
}

.brand {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.035em;
}

.brand span { color: var(--rose); }

nav { display: flex; gap: clamp(1.6rem, 4vw, 4.5rem); }

nav a {
  font-size: .96rem;
  font-weight: 700;
  padding: 1rem 0;
  position: relative;
}

nav a::after {
  background: var(--rose);
  bottom: 7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}

nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }

.login-button {
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  color: var(--rose);
  font-weight: 700;
  justify-self: end;
  padding: .8rem 1.6rem;
}

.login-button:hover, .login-button:focus-visible { background: var(--rose); color: white; }

.hero {
  display: flex;
  min-height: 710px;
  position: relative;
}

.hero-copy {
  align-self: center;
  color: white;
  max-width: 760px;
  padding: 7.5rem 6vw 10rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--rose);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2 {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 5.7vw, 6rem);
  line-height: .98;
  margin: 1.8rem 0 1.6rem;
}

.hero h1 { color: white; text-shadow: 0 3px 22px rgba(44, 4, 19, .35); }
.hero .eyebrow { color: #ffc0d2; }

.hero-intro {
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 590px;
  text-shadow: 0 2px 14px rgba(44, 4, 19, .42);
}

.primary-button {
  background: linear-gradient(135deg, var(--rose), #db245e);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(199, 19, 76, .18);
  color: white;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  min-width: 240px;
  padding: 1.05rem 2rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover, .primary-button:focus-visible {
  box-shadow: 0 16px 35px rgba(199, 19, 76, .27);
  transform: translateY(-2px);
}

.small-print { color: rgba(255,255,255,.9); font-size: .84rem; margin: 1rem 0 0 1.1rem; }
.small-print span { color: #ff9fbb; margin: 0 .4rem; }

.hero-image {
  background: url("images/hero-couple.jpg") center 38% / cover no-repeat;
  filter: saturate(1.14) contrast(1.07);
  inset: 0;
  position: absolute;
  transform: scaleX(-1);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 9, .84) 0%, rgba(9, 9, 11, .62) 42%, rgba(10, 10, 12, .16) 72%, rgba(8, 8, 10, .04) 100%),
    linear-gradient(0deg, rgba(7, 7, 9, .2), rgba(8, 8, 10, .04));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.trust-strip {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, .94);
  border-radius: 28px 28px 0 0;
  bottom: 0;
  box-shadow: 0 -12px 42px rgba(74, 12, 36, .09);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  left: 5%;
  min-height: 110px;
  padding: 1.2rem 2.5rem;
  position: absolute;
  width: 90%;
  z-index: 3;
}

.trust-strip > div {
  align-items: center;
  border-right: 1px solid #efd1d5;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  min-height: 56px;
}

.trust-strip > div:last-child { border-right: 0; }
.trust-strip span { align-items: center; background: var(--blush); border-radius: 50%; color: var(--rose); display: flex; height: 56px; justify-content: center; width: 56px; }
.trust-strip strong { font-size: 1rem; }

.section {
  margin: 0 auto;
  max-width: 1440px;
  padding: 7rem 6vw;
}

.welcome, .how {
  display: grid;
  gap: 9vw;
  grid-template-columns: 1fr 1fr;
}

.section-heading h2, .safety h2, .final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  margin-top: 1rem;
}

.welcome-copy {
  align-self: end;
  font-size: 1.13rem;
  line-height: 1.75;
  max-width: 580px;
}

.welcome-copy p:first-child { font-size: 1.35rem; font-weight: 700; line-height: 1.5; }

.text-link {
  border-bottom: 2px solid var(--rose);
  color: var(--rose);
  display: inline-flex;
  font-weight: 800;
  gap: .8rem;
  margin-top: .8rem;
  padding-bottom: .35rem;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.audience {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1fr;
  padding-top: 1rem;
}

.audience-card {
  background-position: center;
  background-size: cover;
  border-radius: 34px;
  min-height: 580px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 50px rgba(74, 12, 36, .14);
}

.women-card { background-image: url("images/bvp_000kvidova_003.jpg"); background-blend-mode: normal; }
.men-card { background-image: url("images/iStock_000007063889XSmall.jpg"); background-blend-mode: normal; }
.audience-card::before { backdrop-filter: saturate(1.12) contrast(1.09); content: ""; inset: 0; position: absolute; }
.card-shade {
  background:
    linear-gradient(0deg, rgba(6, 6, 8, .92) 0%, rgba(8, 8, 10, .46) 34%, rgba(9, 9, 11, .04) 72%),
    linear-gradient(90deg, rgba(7, 7, 9, .12), rgba(7, 7, 9, .02));
  inset: 0;
  position: absolute;
}
.card-content { bottom: 0; color: white; left: 0; padding: 3rem; position: absolute; }
.card-content h2 { color: white; font-size: clamp(2.8rem, 4vw, 4.5rem); line-height: .98; margin: .7rem 0 1rem; }
.card-content span { display: block; font-size: 1.05rem; line-height: 1.5; max-width: 390px; }

.how { background: var(--paper); }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { border-top: 1px solid #ead7d5; display: grid; gap: 1.4rem; grid-template-columns: 54px 1fr; padding: 1.6rem 0; }
.steps li:last-child { border-bottom: 1px solid #ead7d5; }
.steps b { color: var(--rose); font-family: Georgia, serif; font-size: 1.4rem; }
.steps h3 { font-size: 1.2rem; margin: 0 0 .45rem; }
.steps p { color: var(--muted); line-height: 1.55; margin: 0; }

.safety { align-items: stretch; display: grid; gap: 8vw; grid-template-columns: 48% 1fr; }
.safety-image {
  background:
    linear-gradient(rgba(199, 19, 76, .06), rgba(74, 12, 36, .1)),
    url("images/iStock_000006136125XSmall.jpg") center / cover no-repeat;
  border-radius: 35px;
  box-shadow: 0 22px 50px rgba(74, 12, 36, .14);
  filter: saturate(1.15) contrast(1.06);
  min-height: 560px;
}
.safety-copy { align-self: center; }
.safety-copy > p:not(.eyebrow) { font-size: 1.15rem; line-height: 1.7; max-width: 560px; }

.final-cta {
  background: radial-gradient(circle at 70% 20%, #851039 0, var(--wine) 52%);
  color: white;
  max-width: none;
  text-align: center;
}
.final-cta .eyebrow { color: #ff9fbb; }
.final-cta h2 { color: white; }
.final-cta > p:not(.eyebrow) { font-size: 1.1rem; margin: 1.5rem 0 2rem; }
.light-button { background: white; color: var(--rose); }

footer {
  align-items: center;
  background: #2f0817;
  color: #eedde2;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto 1fr;
  padding: 2.3rem 5vw;
}
.footer-brand, .footer-brand span { color: white; }
footer p { color: #c7aeb6; font-size: .88rem; }
footer div { display: flex; font-size: .82rem; gap: 1.2rem; justify-content: flex-end; }
footer a:hover { color: white; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 74px; }
  nav { display: none; }
  .login-button { padding: .7rem 1rem; }
  .hero-copy { padding: 5rem 7vw 8.5rem; }
  .hero-image { background-position: 58% 38%; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 9, .8), rgba(9, 9, 11, .46)),
      linear-gradient(0deg, rgba(7, 7, 9, .16), rgba(8, 8, 10, .04));
  }
  .trust-strip { left: 3%; width: 94%; }
  .welcome, .how { gap: 3rem; grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .safety { gap: 3rem; grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer div { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 620px) {
  .brand { font-size: 1.2rem; }
  .login-button { font-size: .8rem; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.4rem); }
  .hero { min-height: 740px; }
  .hero-copy { align-self: start; padding-top: 4.5rem; }
  .hero-image { background-position: 62% center; }
  .hero::after {
    background: linear-gradient(90deg, rgba(7, 7, 9, .68), rgba(8, 8, 10, .52));
  }
  .primary-button { width: 100%; }
  .small-print { text-align: center; }
  .trust-strip { gap: .7rem; padding: 1rem; }
  .trust-strip > div { border-right: 0; flex-direction: column; gap: .5rem; text-align: center; }
  .trust-strip span { height: 44px; width: 44px; }
  .trust-strip strong { font-size: .72rem; }
  .section { padding: 5rem 7vw; }
  .audience { padding-top: 0; }
  .audience-card { min-height: 480px; }
  .card-content { padding: 2rem; }
  .safety-image { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
