/* ============================================================
   Sugar Daddy Surat — Premium Design System
   Ivory / Champagne / Gold / Burgundy / Deep Navy
   ============================================================ */

:root {
  --ivory: #FBF8F3;
  --white: #FFFFFF;
  --champagne: #F1E7D7;
  --champagne-deep: #E7D8C0;
  --gold: #C2A15A;
  --gold-deep: #A8853C;
  --gold-soft: #EADFC7;
  --burgundy: #6E1E2E;
  --burgundy-deep: #571624;
  --navy: #16233B;
  --navy-deep: #0F1A2D;
  --charcoal: #2E2C29;
  --muted: #6F6A61;
  --line: #E4DACA;
  --shadow-sm: 0 4px 14px rgba(22, 35, 59, 0.06);
  --shadow-md: 0 12px 34px rgba(22, 35, 59, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 35, 59, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.22;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin-bottom: 1.1em; }
a  { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--gold-deep); }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Kicker / section headings ---------- */
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-head p { color: var(--muted); }
.section-head h2 + p,
.split h2 + p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 60px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(194, 161, 90, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(194, 161, 90, 0.45);
  color: var(--white);
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: var(--ivory); }
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--champagne); color: var(--navy); }
.btn-ghost {
  color: var(--navy);
  padding: 0.95rem 1.2rem;
}
.btn-ghost:hover { color: var(--gold-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo span { color: var(--gold-deep); font-style: italic; }
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.main-nav { display: flex; gap: 1.7rem; align-items: center; }
.main-nav a {
  color: var(--charcoal);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-deep); }
.nav-actions { display: flex; align-items: center; gap: 0.4rem; }
.nav-actions .btn { padding: 0.7rem 1.5rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (split) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  padding: 5.5rem 0 5rem;
}
.hero-copy .badge-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 60px;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero-copy .badge-line::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-copy h1 em { color: var(--gold-deep); font-style: italic; }
.hero-copy .lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin: 1.4rem 0 2.2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-trust div strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
}
.hero-trust div span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.06em; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero-media .frame img { width: 100%; height: 640px; object-fit: cover; }
.hero-media .float-card {
  position: absolute;
  bottom: 34px; left: -38px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.float-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--champagne);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.float-card strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.float-card small { color: var(--muted); font-size: 0.8rem; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section.tint { background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 100%); }
.section.navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--champagne);
}
.section.navy h2, .section.navy h3 { color: var(--ivory); }
.section.navy p { color: rgba(241, 231, 215, 0.82); }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.split .media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.split ul.check-list { list-style: none; margin: 1.4rem 0 0; }
.check-list li {
  padding: 0.55rem 0 0.55rem 2.2rem;
  position: relative;
  color: var(--charcoal);
}
.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0.4rem;
  color: var(--gold-deep);
}

/* ---------- Role cards ---------- */
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.role-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.role-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.role-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.role-card:hover img { transform: scale(1.05); }
.role-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 45, 0) 30%, rgba(15, 26, 45, 0.88) 100%);
}
.role-card .body { position: relative; padding: 2.4rem; color: var(--ivory); }
.role-card .body h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.5rem; }
.role-card .body p { color: rgba(251, 248, 243, 0.85); margin-bottom: 1.2rem; font-size: 0.98rem; }
.role-card .tagline {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.role-card .card-link {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
}
.role-card .card-link:hover { color: var(--gold-soft); }
.role-card .card-link::after { content: " →"; }

@media (min-width: 1021px) {
  .role-card img { object-position: center 12%; }
}

/* ---------- Profile cards ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.profile-card .photo { position: relative; height: 300px; overflow: hidden; }
.profile-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.verified-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
}
.profile-card .info { padding: 1.5rem 1.6rem 1.7rem; }
.profile-card .info h3 { font-size: 1.25rem; display: flex; align-items: baseline; gap: 0.5rem; }
.profile-card .info h3 span { font-family: var(--sans); font-size: 0.95rem; color: var(--muted); font-weight: 300; }
.profile-card .location { font-size: 0.85rem; color: var(--burgundy); letter-spacing: 0.06em; margin: 0.15rem 0 0.8rem; }
.profile-card .bio { font-size: 0.93rem; color: var(--muted); margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tags span {
  background: var(--champagne);
  color: var(--navy);
  font-size: 0.75rem;
  padding: 0.28rem 0.8rem;
  border-radius: 40px;
  letter-spacing: 0.04em;
}

/* ---------- Lifestyle / city section ---------- */
.city-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.city-band img { width: 100%; height: 480px; object-fit: cover; }
.city-band .caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  background: linear-gradient(180deg, rgba(15,26,45,0) 35%, rgba(15,26,45,0.82) 100%);
  color: var(--ivory);
}
.city-band .caption h3 { color: var(--white); font-size: 1.9rem; margin-bottom: 0.4rem; }
.city-band .caption p { max-width: 560px; color: rgba(251,248,243,0.85); margin-bottom: 0; }
.city-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.6rem; }
.city-list .city-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.city-item h4 { font-size: 1.08rem; margin-bottom: 0.4rem; color: var(--burgundy); }
.city-item p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Timeline (How it works) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 34px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step { text-align: center; position: relative; padding: 0 0.6rem; }
.step .num {
  width: 68px; height: 68px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.section.navy .step .num { background: var(--navy-deep); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0; }
.section.navy .step p { color: rgba(241,231,215,0.75); }

/* ---------- Safety feature list ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .f-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.93rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "“";
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--gold);
  position: absolute;
  top: 0.4rem; left: 1.4rem;
  opacity: 0.5;
  line-height: 1;
}
.testimonial p { color: var(--charcoal); font-size: 0.97rem; margin: 1.4rem 0 1.4rem; font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: 0.9rem; }
.testimonial .who .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.testimonial .who strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.testimonial .who small { color: var(--muted); font-size: 0.8rem; }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.85rem; }

.section.navy .testimonial { background: var(--ivory); }
.section.navy .testimonial p { color: var(--charcoal); }
.section.navy .testimonial .who strong { color: var(--navy-deep); }
.section.navy .testimonial .who small { color: #5c6170; }
.section.navy .testimonial .stars { color: var(--gold-deep); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.6rem;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .chev { color: var(--gold-deep); transition: transform 0.3s ease; font-size: 1.1rem; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p { padding: 0 1.6rem 1.4rem; color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--burgundy) 0%, var(--burgundy-deep) 60%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,161,90,0.28), transparent 70%);
  top: -160px; right: -120px;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(251,248,243,0.85); max-width: 560px; margin: 0 auto 2.2rem; }
.cta-band .hero-ctas { justify-content: center; position: relative; }
.final-cta-section { padding-bottom: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(241, 231, 215, 0.75);
  padding: 4.5rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(241, 231, 215, 0.14);
}
.site-footer .logo { color: var(--ivory); }
.site-footer .logo small { color: rgba(241,231,215,0.5); }
.site-footer p { font-size: 0.92rem; margin-top: 1rem; }
.site-footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul a { color: rgba(241, 231, 215, 0.75); font-size: 0.93rem; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(241, 231, 215, 0.5);
}
.age-note {
  display: inline-block;
  border: 1px solid rgba(194,161,90,0.5);
  color: var(--gold);
  border-radius: 6px;
  padding: 0.1rem 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 640px; margin: 1rem auto 0; color: var(--muted); font-size: 1.08rem; }

/* ---------- Content article ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article h2 { margin: 2.6rem 0 1rem; }
.article h3 { margin: 1.8rem 0 0.7rem; }
.article img.inline {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  border: 5px solid var(--white);
}
.article ul, .article ol { margin: 0 0 1.2rem 1.4rem; }
.article li { margin-bottom: 0.5rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.6rem;
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 161, 90, 0.18);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none;
  background: #F2F7EE;
  border: 1px solid #CBE0BD;
  color: #3F6B2F;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
}
.form-error {
  display: none;
  background: #FBF0F1;
  border: 1px solid #E8C4C9;
  color: var(--burgundy);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.92rem;
}

/* ---------- Login split ---------- */
.login-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 82px);
}
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.login-form-side .form-card { width: 100%; max-width: 440px; }
.login-form-side h1 { font-size: 2.2rem; margin-bottom: 0.4rem; }
.login-form-side .sub { color: var(--muted); margin-bottom: 2rem; }
.login-media-side { position: relative; overflow: hidden; }
.login-media-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-media-side .quote {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  color: var(--ivory);
  z-index: 2;
}
.login-media-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,26,45,0.05) 40%, rgba(15,26,45,0.72) 100%);
}
.login-media-side .quote { z-index: 3; }
.login-media-side .quote p { font-family: var(--serif); font-size: 1.5rem; font-style: italic; margin-bottom: 0.4rem; }
.login-media-side .quote small { letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.75rem; color: var(--gold); }
.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}
.remember-row label { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 0.9rem; font-weight: 300; }
.remember-row input { width: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================================
   NEW COMPONENTS — Sugar Daddy / Sugar Baby Redesign
   ============================================================ */

/* ---------- Full-width image hero ---------- */
.hero-full {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(15, 26, 45, 0.72) 0%, rgba(15, 26, 45, 0.45) 50%, rgba(110, 30, 46, 0.35) 100%);
}
.hero-full-body {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  color: var(--ivory);
}
.hero-full-body h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  margin-bottom: 1.2rem;
}
.hero-full-body .lead {
  font-size: 1.18rem;
  color: rgba(251, 248, 243, 0.85);
  max-width: 580px;
  margin-bottom: 2.2rem;
}
.kicker-light {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.kicker-light::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.btn-outline-light {
  border: 1px solid rgba(251, 248, 243, 0.55);
  color: var(--ivory);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}
.hero-stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 248, 243, 0.2);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: rgba(251, 248, 243, 0.65);
  letter-spacing: 0.06em;
}

/* ---------- Reversed split ---------- */
.split-reverse .media { order: 2; }
.split-reverse > :not(.media) { order: 1; }

/* ---------- Insight cards (numbered) ---------- */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.insight-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--champagne-deep);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
}
.insight-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Guide cards (first meeting) ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.guide-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.guide-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
  color: var(--burgundy);
}
.guide-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Do / Don't cards ---------- */
.do-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
}
.card-header {
  margin-bottom: 1.4rem;
}
.card-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 40px;
}
.card-badge.do {
  background: #F2F7EE;
  color: #3F6B2F;
  border: 1px solid #CBE0BD;
}
.card-badge.dont {
  background: #FBF0F1;
  color: var(--burgundy);
  border: 1px solid #E8C4C9;
}
.do-card ul {
  list-style: none;
  margin: 0;
}
.do-card ul li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.do-card ul li:last-child {
  border-bottom: none;
}
.do-card ul li::before {
  position: absolute;
  left: 0.2rem;
  font-weight: 700;
}
.do-card .check-list li::before {
  content: "✦";
  color: var(--gold-deep);
}
.dont-list li::before {
  content: "✕";
  color: var(--burgundy);
  font-size: 0.85rem;
  left: 0.3rem;
}

/* ---------- Inline links group ---------- */
.inline-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.inline-links .card-link {
  color: var(--burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
}
.inline-links .card-link:hover { color: var(--gold-deep); }
.inline-links .card-link::after { content: " →"; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 0; }
  .hero-media .frame img { height: 520px; }
  .hero-media .float-card { left: 12px; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse .media { order: -1; }
  .split-reverse > :not(.media) { order: 0; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .timeline::before { display: none; }
  .feature-grid, .testimonial-grid, .city-list { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-media-side { display: none; }
  .hero-full { min-height: 500px; }
  .hero-full-body { padding: 4.5rem 0; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-wrap { flex-wrap: wrap; }
  .main-nav, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 1rem;
    margin-top: 0.9rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
  }
  .site-header.nav-open .nav-actions {
    display: flex;
    width: 100%;
    order: 4;
    justify-content: flex-start;
    gap: 0.8rem;
    padding-bottom: 0.6rem;
  }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-media .float-card {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 24px);
  }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 460px; }
  .profile-grid, .feature-grid, .testimonial-grid, .city-list { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.4rem; flex-wrap: wrap; }
  .hero-stats { gap: 1.4rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band { padding: 3rem 1.6rem; }
  .final-cta-section { padding-bottom: 1rem; }
  .city-band .caption { padding: 1.8rem; }
  .hero-full { min-height: 440px; }
  .hero-full-body { padding: 3.5rem 0; }
  .hero-full-body h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .inline-links { flex-direction: column; gap: 1rem; }
}
