:root{
  --black:#0a0a0a;
  --black-2:#141414;
  --black-3:#1c1c1c;
  --red:#e2102e;
  --red-dark:#a80c22;
  --red-glow:#ff2d4d;
  --white:#f5f5f5;
  --grey:#9a9a9a;
  --border:#2a2a2a;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--black);
  color:var(--white);
  font-family:'Merriweather', Georgia, serif;
  line-height:1.65;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
section{padding:96px 0;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding:16px 40px;
  border-radius:50px;
  font-weight:700;
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  transition:all .25s ease;
  cursor:pointer;
  border:2px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  color:#fff;
  box-shadow:0 8px 24px rgba(226,16,46,.35);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(226,16,46,.5);
}
.btn-outline{
  background:transparent;
  border:2px solid var(--red);
  color:var(--white);
}
.btn-outline:hover{
  background:var(--red);
}

/* ---------- Header ---------- */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(10,10,10,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:1180px;
  margin:0 auto;
}
.logo{
  font-size:26px;
  font-weight:800;
  letter-spacing:.5px;
}
.logo span{color:var(--red);}
nav ul{display:flex;gap:32px;}
nav ul li a{
  font-size:14px;
  font-weight:600;
  color:var(--grey);
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:color .2s;
}
nav ul li a:hover{color:var(--red);}
.nav-collapse{display:contents;}
.nav-cta{display:flex;gap:14px;align-items:center;}
.nav-cta a.login{font-size:14px;font-weight:600;color:var(--white);}
.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:4px;
}
.burger span{width:26px;height:2px;background:var(--white);transition:transform .25s ease, opacity .25s ease;}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.active span:nth-child(2){opacity:0;}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:180px 0 110px;
  min-height:680px;
  display:flex;
  align-items:center;
  background:var(--black);
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-bg img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.08) brightness(.78);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(10,10,10,.97) 0%, rgba(10,10,10,.9) 26%, rgba(10,10,10,.58) 52%, rgba(10,10,10,.18) 76%, rgba(10,10,10,.05) 100%),
    radial-gradient(ellipse at 15% 15%, rgba(226,16,46,.22), transparent 55%);
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-2px;left:0;right:0;
  height:120px;
  background:linear-gradient(to bottom, transparent, var(--black));
  z-index:1;
}
.hero > .container{
  position:relative;
  z-index:2;
  width:100%;
}
.hero-copy{max-width:620px;}
.hero-tag{
  display:inline-block;
  padding:8px 18px;
  border:1px solid var(--red);
  border-radius:50px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:24px;
}
.hero h1{
  font-size:52px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:24px;
}
.hero h1 .accent{color:var(--red);}
.hero p.sub{
  font-size:18px;
  color:var(--grey);
  max-width:520px;
  margin-bottom:36px;
}
.hero-ctas{display:flex;gap:18px;flex-wrap:wrap;}
.hero-stats{
  display:flex;
  gap:40px;
  margin-top:48px;
}
.hero-stats div strong{
  display:block;
  font-size:28px;
  color:var(--red);
  font-weight:800;
}
.hero-stats div span{
  font-size:13px;
  color:var(--grey);
}
/* ---------- Media frames (placeholder images) ---------- */
.media-frame{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--black-3);
}
.media-frame img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.hero-badge{
  position:absolute;
  z-index:2;
  bottom:40px;right:40px;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px 20px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow:0 12px 30px rgba(0,0,0,.5);
}
.hero-badge .dot{width:10px;height:10px;border-radius:50%;background:#2ecc71;}
.hero-badge strong{display:block;font-size:14px;}
.hero-badge span{font-size:12px;color:var(--grey);}

/* ---------- Section headings ---------- */
.section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 56px;
}
.eyebrow{
  display:inline-block;
  color:var(--red);
  font-weight:700;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-head h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:16px;
}
.section-head p{color:var(--grey);font-size:16px;}

/* ---------- About ---------- */
.about{background:var(--black-2);}
.about-content{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.about-content .eyebrow{margin-bottom:10px;}
.about-content h1,
.about-content h2{font-size:34px;font-weight:800;margin-bottom:22px;}
.about-content p{color:var(--grey);margin-bottom:18px;font-size:16px;text-align:left;}
.about-content p strong{color:var(--white);}
.about-content .btn{margin-top:12px;}

/* ---------- Simple content pages (no hero) ---------- */
.simple-page{padding:180px 0 100px;}
@media (max-width:960px){
  .simple-page{padding:150px 0 80px;}
}
.error-page{max-width:640px;margin:0 auto;text-align:center;}
.error-page .eyebrow{margin-bottom:14px;}
.error-page h1{font-size:40px;font-weight:800;margin-bottom:20px;}
.error-page p{color:var(--grey);font-size:17px;line-height:1.7;margin-bottom:32px;}
.error-page p a{color:var(--red);text-decoration:underline;}

/* ---------- How it works ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.step{
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:18px;
  padding:36px 26px;
  position:relative;
  transition:transform .25s, border-color .25s;
}
.step:hover{transform:translateY(-6px);border-color:var(--red);}
.step-num{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;
  margin-bottom:22px;
}
.step h3{font-size:19px;font-weight:700;margin-bottom:12px;}
.step p{color:var(--grey);font-size:14.5px;}

/* ---------- Why choose ---------- */
.why{background:var(--black-2);}
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.feature{
  background:var(--black-3);
  border:1px solid var(--border);
  border-radius:18px;
  padding:34px;
  transition:border-color .25s, transform .25s;
}
.feature:hover{border-color:var(--red);transform:translateY(-4px);}
.feature .check{
  width:40px;height:40px;
  border-radius:12px;
  background:rgba(226,16,46,.15);
  color:var(--red);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:800;
  margin-bottom:20px;
}
.feature h3{font-size:18px;font-weight:700;margin-bottom:10px;}
.feature p{color:var(--grey);font-size:14.5px;}

/* ---------- Who uses us ---------- */
.who-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.who-card{
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
}
.who-card .media-frame{aspect-ratio:4/3;border-radius:0;border:none;}
.who-card .media-frame img{object-position:center top;}
.who-card-body{padding:32px;}
.who-card-body h3{font-size:22px;font-weight:800;margin-bottom:14px;color:var(--red);}
.who-card-body p{color:var(--grey);font-size:15px;}

/* ---------- Featured member profiles ---------- */
.profile-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.profile-card{
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  transition:border-color .25s, transform .25s;
}
.profile-card:hover{border-color:var(--red);transform:translateY(-4px);}
.profile-card .media-frame{aspect-ratio:3/4;border-radius:0;border:none;}
.profile-card-body{padding:22px;}
.profile-card-body h3{font-size:19px;font-weight:800;margin-bottom:4px;}
.profile-card-body .profile-meta{color:var(--red);font-size:13px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;margin-bottom:12px;}
.profile-card-body p{color:var(--grey);font-size:14px;}

/* ---------- Explore other cities (link pills) ---------- */
.city-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}
.city-links a{
  display:inline-block;
  padding:12px 26px;
  border:1px solid var(--red);
  border-radius:50px;
  color:var(--white);
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  transition:background .2s, color .2s;
}
.city-links a:hover{background:var(--red);}

/* ---------- Sugar dating in UK (SEO) ---------- */
.seo{background:var(--black-2);}
.section-alt{background:var(--black-2);}
.seo-content{max-width:820px;margin:0 auto;}
.seo-content p{color:var(--grey);margin-bottom:20px;font-size:16px;}
.seo-content strong{color:var(--white);}

/* ---------- Success story ---------- */
.story{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:56px;
  align-items:center;
}
.story .media-frame{aspect-ratio:1/1;}
.story-title{font-size:24px;font-weight:800;margin:8px 0 20px;}
.quote-mark{font-size:80px;color:var(--red);font-weight:800;line-height:.6;margin-bottom:10px;font-family:Georgia,serif;}
.story blockquote{
  font-size:19px;
  line-height:1.8;
  color:var(--white);
  margin-bottom:26px;
}
.story blockquote p + p{margin-top:16px;}
.story-author strong{display:block;font-size:16px;}
.story-author span{color:var(--grey);font-size:14px;}

/* ---------- FAQ ---------- */
.why-faq{background:var(--black-2);}
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{
  border:1px solid var(--border);
  border-radius:14px;
  margin-bottom:16px;
  overflow:hidden;
  background:var(--black-3);
}
.faq-q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 26px;
  cursor:pointer;
  font-weight:700;
  font-size:16px;
}
.faq-q .icon{
  color:var(--red);
  font-size:20px;
  font-weight:800;
  transition:transform .25s;
  flex-shrink:0;
  margin-left:16px;
}
.faq-item.active .faq-q .icon{transform:rotate(45deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  padding:0 26px;
  color:var(--grey);
  font-size:15px;
}
.faq-item.active .faq-a{
  max-height:200px;
  padding:0 26px 22px;
}

/* ---------- Top cities ---------- */
.cities-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.city-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
}
.city-card .media-frame{height:180px;border-radius:0;border:none;}
.city-name{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:18px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
  font-weight:800;
  font-size:18px;
}
.city-name span{color:var(--red);}

/* ---------- Final CTA ---------- */
.final-cta{
  text-align:center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226,16,46,.25), transparent 60%),
    var(--black-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.final-cta h2{font-size:34px;font-weight:800;margin-bottom:16px;}
.final-cta p{color:var(--grey);font-size:17px;margin-bottom:32px;}

/* ---------- Footer ---------- */
footer{padding:60px 0 30px;background:var(--black);}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{font-size:24px;font-weight:800;margin-bottom:16px;}
.footer-logo span{color:var(--red);}
.footer-grid p{color:var(--grey);font-size:14px;}
.footer-col h4{font-size:15px;margin-bottom:18px;text-transform:uppercase;letter-spacing:.5px;}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{color:var(--grey);font-size:14px;transition:color .2s;}
.footer-col ul li a:hover{color:var(--red);}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  color:var(--grey);
  font-size:13px;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom .age{color:var(--red);font-weight:700;}

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .nav-wrap{position:relative;flex-wrap:wrap;}
  .nav-collapse{
    display:none;
    width:100%;
    order:3;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid var(--border);
  }
  .nav-wrap.open .nav-collapse{display:flex;}
  nav ul{flex-direction:column;gap:16px;}
  .nav-cta{flex-direction:column;align-items:stretch;gap:12px;}
  .nav-cta a.login{display:block;text-align:center;padding:10px 0;}
  .burger{display:flex;}
  .story, .who-grid{grid-template-columns:1fr;}
  .hero{min-height:560px;}
  .hero-bg img{object-position:78% center;}
  .hero::before{
    background:
      linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.88) 65%, rgba(10,10,10,.95) 100%),
      radial-gradient(ellipse at 15% 15%, rgba(226,16,46,.22), transparent 55%);
  }
  .hero-copy{max-width:100%;}
  .hero h1{font-size:38px;}
  .hero-badge{display:none;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .features{grid-template-columns:repeat(2,1fr);}
  .cities-grid{grid-template-columns:repeat(2,1fr);}
  .profile-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .steps, .features, .cities-grid, .profile-grid, .footer-grid{grid-template-columns:1fr;}
  .hero{padding:150px 0 80px;}
  .hero h1{font-size:30px;}
  section{padding:64px 0;}
}
