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

/* ─────────────────────────────────────────
   PALETTE , Navy · Champagne · Rose · Ivory
   ───────────────────────────────────────── */
:root {
  /* Navy (replaces every black) */
  --navy-deep:   #0A0A0A;
  --navy:        #0A0A0A;
  --navy-mid:    #0A0A0A;
  --navy-light:  #111111;

  /* Champagne gold */
  --gold:        #C9A96E;
  --gold-light:  #D4B87A;
  --gold-glow:   rgba(201,169,110,0.12);

  /* Rose / crimson */
  --rose:        #C4515C;
  --rose-deep:   #A83842;

  /* Warm whites */
  --ivory:       #FFFFFF;
  --pearl:       #FFFFFF;
  --white:       #FFFFFF;

  /* Text greys */
  --smoke:       #8A8A8A;
  --charcoal:    #2D2D2D;

  /* Legacy aliases used by accordion JS */
  --black:       #0A0A0A;
  --crimson:     #C4515C;
  --soft-white:  #FFFFFF;
  --light-gray:  #FFFFFF;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	
  --title-font: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
body h2 *, body h3 *, body h4 * {
	text-transform: none;
}
::selection {
    background: var(--gold-light) !important;
    color: #fff;
}
::-moz-selection {
    background: var(--gold-light) !important;
    color: #000;
}
/* ── GLOBAL BUTTONS ── */
.hero-cta, .exclusive-cta, .find-love-cta, .learn-more-cta,
.about-cta, .elite-cta, .online-dating-cta, .expert-cta-button,
.service-cta, .nav-cta, .form-submit {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
}

h1, h1 *, h2, h2 *, h3, h3 *, h4, h5, h6 {
	font-family: var(--title-font) !important;
}
/* ── BODY TEXT OVERRIDES ── */
.section-body,
.exclusive-content p,
.find-love-content p,
.about-content p, body .elementor-widget-container li {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.9;
  font-weight: 300; color: var(--smoke);
}
.find-love-content p strong {
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  font-size: 15px; line-height: 1.9;
}

/* ── NAV ── */
.main-nav {
  background: #0A0A0A;
  padding: 0 52px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-container {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
}
.nav-logo-section { display: flex; align-items: center; }
body .nav-logo-img { height: 62px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links li {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: color 0.3s;
}
.nav-links li:hover { color: var(--gold); }
.nav-links li.has-dropdown::after { content: ' ▾'; font-size: 9px; }
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border: none !important; cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: none !important;
}
.nav-cta:hover { background: var(--rose-deep) !important; transform: translateY(-1px); }

/* Soft floating orb */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
  filter: blur(100px);
  top: -200px; right: -100px;
}
.hero-container { max-width: 1160px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 820px; position: relative; z-index: 2; }

/* H1, SEO anchor, styled as Inter eyebrow */
.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}

/* hero-subhead, the BIG Playfair emotional headline */
.hero-subhead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 400; line-height: 1.08;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-subhead em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* hero-body, punchy subline */
.hero-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.7;
  margin-bottom: 40px; max-width: 560px;
}

.hero-cta {
  display: inline-flex !important; align-items: center; background: var(--rose) !important;
  color: var(--white) !important;
  padding: 16px 36px !important;
  border: none !important; cursor: pointer;
  transition: all 0.4s var(--ease) !important;
}
.hero-cta::after { display: none; }
.hero-cta:hover {
  background: var(--rose-deep) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(196,81,92,0.3) !important;
}

/* ── STATS BAND ── */
.stats-band {
  background: #0A0A0A;
  padding: 36px 52px 10px;
}
.stats-band::before { display: none; }
.stats-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center; padding-top: 0; margin-bottom: 4px;
}
.stats-heading::after { display: none; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1160px; margin: 0 auto; gap: 0;
}
.stat-item {
  text-align: center; padding: 20px 16px 26px;
  border: none;
}
.stat-item:last-child { border: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── EXCLUSIVE / BESPOKE ── */
.exclusive-section { padding: 72px 52px; background: #FFFFFF; }
.exclusive-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 48px;
  white-space: normal;
}
.exclusive-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.exclusive-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  color: #444444; line-height: 1.9; margin-bottom: 16px;
}
.exclusive-cta {
  display: inline-flex !important; align-items: center;
  background: transparent !important;
  color: var(--gold) !important;
  padding: 12px 28px !important; margin-top: 12px;
  border: 1px solid var(--gold) !important; cursor: pointer;
  transition: all 0.3s var(--ease) !important;
}
.exclusive-cta:hover { background: var(--gold) !important; color: #0A0A0A !important; }
.exclusive-image { width: 100%; height: 420px; object-fit: cover; }

/* ── SERVICES ── */
.services-section { padding: 60px 52px 88px; background: #0A0A0A; }
.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: var(--white); letter-spacing: -0.01em;
  text-align: center; margin-bottom: 48px;
  white-space: normal;
}
.services-heading::after { display: none; }
.services-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,auto); gap: 2px;
  background: var(--navy);
}
.service-image-slot { width: 100%; height: 100%; overflow: hidden; min-height: 300px; }
.service-image-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card {
  background: rgba(255,255,255,0.04);
  color: var(--white); padding: 44px 28px 36px;
  text-align: center; min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
  padding-bottom: 0; border-bottom: none;
}
.service-card h3::after { display: none; }
.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.62);
  margin-bottom: 24px; flex: 1;
}
.service-cta {
  display: inline-flex !important; align-items: center;
  background: transparent !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  border: 1px solid rgba(201,169,110,0.35) !important; cursor: pointer;
  transition: all 0.3s !important;
}
.service-cta:hover { background: var(--gold) !important; color: #0A0A0A !important; }

/* ── ELITE BANNER ── */
.elite-section {
  background: #6B7280;
  padding: 72px 52px; text-align: center; position: relative;
}
.elite-overlay {
  background: #0A0A0A !important;
  border: 1px solid rgba(201,169,110,0.6) !important;
  padding: 48px 80px !important;
  max-width: 1100px; margin: 0 auto;
}
.elite-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: var(--gold) !important;
  letter-spacing: -0.01em; margin-bottom: 28px; line-height: 1.2;
}
.elite-cta {
  display: inline-flex !important; align-items: center;
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 13px 32px !important;
  border: none !important; cursor: pointer;
  transition: all 0.3s !important;
}
.elite-cta:hover { background: var(--rose-deep) !important; transform: translateY(-2px); }

/* ── FIND LOVE / HIGH CALIBRE ── */
.find-love-section { padding: 72px 52px; background: #0A0A0A; }
.find-love-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: var(--white); letter-spacing: -0.01em;
  text-align: center; margin-bottom: 48px; white-space: normal;
}
.find-love-heading::after { display: none; }
.find-love-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.find-love-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.9; margin-bottom: 16px;
}
.find-love-cta {
  display: inline-flex !important; align-items: center;
  background: var(--rose) !important; color: var(--white) !important;
  padding: 13px 28px !important; margin-top: 12px;
  border: none !important; cursor: pointer;
  transition: all 0.3s var(--ease) !important;
}
.find-love-cta:hover { background: var(--rose-deep) !important; transform: translateY(-2px); }
.find-love-image { width: 100%; height: 420px; object-fit: cover; }

/* ── HOW WE WORK ── */
.how-we-work-section { padding: 72px 52px; background: #FFFFFF; }
.how-we-work-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 12px;
}
.how-we-work-heading::after { display: none; }
.how-we-work-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: #444444;
  text-align: center; max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.how-we-work-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.process-steps { position: relative; }
.process-step {
  margin-bottom: 4px; position: relative; padding-left: 64px;
  padding-top: 16px; padding-bottom: 16px; padding-right: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.07); cursor: pointer;
  transition: background 0.3s;
}
.accordion-step:hover { background: rgba(201,169,110,0.04); }
.step-number {
  position: absolute; left: 0; top: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400;
  color: var(--gold); width: 52px; text-align: right; line-height: 1;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #0A0A0A; margin-bottom: 0;
}
.step-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  color: #444444; line-height: 1.7;
}
.process-image { width: 100%; height: 460px; object-fit: cover; }
.process-image-overlay { display: none; }
.learn-more-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  background: transparent !important; color: var(--gold) !important;
  padding: 12px 28px !important; margin-top: 20px;
  border: 1px solid var(--gold) !important; cursor: pointer;
  transition: all 0.3s var(--ease) !important;
}
.learn-more-cta:hover { background: var(--gold) !important; color: #0A0A0A !important; }

/* ── EXPERT CTA / BANNER TWO ── */
.expert-cta-section {
  padding: 72px 52px; background: #6B7280; text-align: center;
}
.expert-cta-container {
  max-width: 1100px; margin: 0 auto;
  padding: 48px 80px; border: 1px solid rgba(201,169,110,0.6); background: #0A0A0A;
}
.expert-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; text-transform: none;
  color: var(--gold); letter-spacing: -0.01em; margin-bottom: 16px;
}
.expert-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); max-width: 640px;
  margin: 0 auto 32px; line-height: 1.8;
}
.expert-cta-button {
  display: inline-flex !important; align-items: center;
  background: var(--rose) !important; color: var(--white) !important;
  padding: 15px 36px !important; border: none !important; cursor: pointer;
  transition: all 0.4s var(--ease) !important;
}
.expert-cta-button::after { display: none; }
.expert-cta-button:hover {
  background: var(--rose-deep) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(196,81,92,0.3) !important;
}

/* ── ABOUT ── */
.about-section { padding: 72px 52px; background: #FFFFFF; }
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 48px; white-space: normal;
}
.about-heading::after { display: none; }
.about-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image { width: 100%; height: 460px; object-fit: cover; object-position: top; }
.about-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: #444444; line-height: 1.9; margin-bottom: 16px;
}
.about-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  background: transparent !important; color: var(--gold) !important;
  padding: 12px 28px !important; margin-top: 12px;
  border: 1px solid var(--gold) !important; cursor: pointer;
  transition: all 0.3s var(--ease) !important;
}
.about-cta:hover { background: var(--gold) !important; color: #0A0A0A !important; }

/* ── ONLINE DATING / FINAL BANNER ── */
.online-dating-section {
  background: #6B7280;
  padding: 72px 52px; text-align: center;
}
.online-dating-overlay {
  background: #0A0A0A !important;
  border: 1px solid rgba(201,169,110,0.6) !important;
  padding: 48px 80px !important; max-width: 1100px; margin: 0 auto;
}
.online-dating-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 44px); font-weight: 400; text-transform: none;
  color: var(--gold) !important; letter-spacing: -0.01em;
  margin-bottom: 32px; line-height: 1.2;
}
.online-dating-cta {
  display: inline-flex !important; align-items: center;
  background: var(--rose) !important; color: var(--white) !important;
  padding: 15px 36px !important; border: none !important; cursor: pointer;
  transition: all 0.4s var(--ease) !important;
}
.online-dating-cta:hover { background: var(--rose-deep) !important; transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 72px 52px; background: var(--white); }
.testimonials-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 8px; white-space: normal;
}
.testimonials-heading::after { display: none; }
.testimonials-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; color: #444444;
  text-align: center; margin-top: 8px; margin-bottom: 52px;
}
.testimonials-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.testimonial-card {
  padding: 36px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 2px solid rgba(201,169,110,0.35);
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.06); }
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300; font-style: normal;
  color: var(--charcoal); line-height: 1.85;
}
.testimonial-quote::before { display: none; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--gold);
  font-style: normal; line-height: 0; vertical-align: -8px;
}
.testimonial-author {
  display: flex; align-items: center;
  justify-content: center; margin-top: 28px; gap: 12px;
}
.author-initial {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 500; border-radius: 0;
}
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(201,169,110,0.4);
  cursor: pointer; transition: all 0.3s;
}
.nav-dot.active { background: var(--gold); border-color: var(--gold); }
.nav-dot:hover { border-color: var(--gold); }

/* ── CONTACT ── */
.contact-section { padding: 88px 64px; background: #FFFFFF; }
.contact-container {
  max-width: 580px; margin: 0 auto; background: var(--white);
  padding: 56px 48px; box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 400; text-transform: none;
  color: #0A0A0A; text-align: center; margin-bottom: 8px;
}
.contact-heading::after { display: none; }
.contact-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 300; color: #444444;
  text-align: center; margin-top: 8px; margin-bottom: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: #444444; display: block; margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  border: 1px solid #E5E5E5; background: #FFFFFF; color: #444444;
  outline: none; transition: border-color 0.3s, background 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-privacy-text p {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 300; color: #444444; line-height: 1.5;
}
.form-checkbox { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 20px; }
.form-checkbox input { margin-top: 4px; accent-color: var(--gold); }
.form-checkbox label {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300;
  color: #444444; line-height: 1.5;
}
.form-submit {
  width: 100%; background: var(--rose) !important;
  color: var(--white) !important; padding: 16px 32px !important;
  border: none !important; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.form-submit:hover { background: var(--rose-deep) !important; }

/* ── LOCATION ── */
.location-section { padding: 80px 52px; background: var(--white); }
.location-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 40px;
}
.location-heading::after { display: none; }
.location-map { width: 100%; height: 400px; background: #E8E8E8; }
.location-map img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOR GENTLEMEN / FOR WOMEN DUAL PANELS ── */
.dual-cta-section { padding: 48px 52px 72px; background: var(--white); }
.dual-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; text-transform: none;
  color: #0A0A0A; letter-spacing: -0.01em;
  text-align: center;
  max-width: 1160px; margin: 0 auto 40px;
}
.dual-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  max-width: 1160px; margin: 0 auto;
  align-items: stretch;
}
.dual-cta-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 52px clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.dual-cta-men {
  background: #0A0A0A;
}
.dual-cta-women {
  background: #111111;
}
.dual-cta-content {
  position: relative; z-index: 2;
}
.dual-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.dual-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
  text-transform: none; letter-spacing: -0.01em;
}
.dual-cta-card h3::after { display: none; }
.dual-cta-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 28px; max-width: 420px;
}
.dual-cta-btn {
  display: inline-flex; align-items: center; margin-top: auto;
  background: var(--rose);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); padding: 13px 28px;
  text-decoration: none; transition: all 0.3s var(--ease);
  border: none;
}
.dual-cta-btn:hover { background: var(--rose-deep); transform: translateY(-2px); }
.dual-cta-btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
}
.dual-cta-btn-outline:hover {
  background: var(--white) !important;
  color: #1a1a1a !important;
  transform: translateY(-2px);
}
.find-love-content li {
	color: #fff !important;
}
.white-btn a.elementor-button .elementor-button-text {
	color: var(--rose);
}
@media (max-width: 768px) {
  .dual-cta-grid { grid-template-columns: 1fr; }
  .dual-cta-card { min-height: 360px; }
}


@media (max-width: 1024px) {
  .exclusive-inner, .find-love-inner, .how-we-work-inner, .about-inner {
    grid-template-columns: 1fr; gap: 48px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .expert-cta-container, .online-dating-overlay { padding: 40px 32px !important; }
}
@media (max-width: 768px) {
  .main-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 32px; min-height: 400px; }
  .hero-h1 { font-size: 40px; }
  .stats-band, .exclusive-section, .services-section, .elite-section,
  .find-love-section, .how-we-work-section, .expert-cta-section,
  .about-section, .online-dating-section, .testimonials-section,
  .contact-section, .location-section, .footer { padding: 60px 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
}

/* =========================
   SWIPER LAYOUT FIX
========================= */
.testimonials-section .swiper-wrapper {
    display: flex;
}

.testimonials-section .swiper-slide {
    height: auto;
    display: flex;
}

/* =========================
   CARD LAYOUT
========================= */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
    padding: 25px;
    border-radius: 0;
    background: #fff;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-quote {
    flex-grow: 1;
}

/* REMOVE OLD EXPAND FEATURE */
.quote-text.expanded {
    -webkit-line-clamp: 5;
}

/* REMOVE BUTTON COMPLETELY */
.testimonial-toggle {
    display: none !important;
}

/* =========================
   AUTHOR
========================= */
.testimonial-author {
    margin-top: 20px;
}

/* =========================
   NAVIGATION BUTTONS
========================= */
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-light);
    top: 65%;
    transition: all 0.2s ease;
}

/* REMOVE DEFAULT ICON */
.testimonials-section .swiper-button-next:after,
.testimonials-section .swiper-button-prev:after {
    content: '';
}

/* CUSTOM ARROW */
.testimonials-section .swiper-button-next::before,
.testimonials-section .swiper-button-prev::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--gold-light);
    border-right: 2px solid var(--gold-light);
    transform: rotate(45deg);
}

/* LEFT ARROW */
.testimonials-section .swiper-button-prev::before {
    transform: rotate(-135deg);
}

/* HOVER EFFECT */
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
    background: var(--gold-light);
}

.testimonials-section .swiper-button-next:hover::before,
.testimonials-section .swiper-button-prev:hover::before {
    border-color: #fff;
}

/* =========================
   PAGINATION DOTS
========================= */
.testimonials-section .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--gold-light);
}

/* =========================
   PREVENT PARTIAL SLIDES
========================= */
.testimonials-section {
    overflow: hidden;
}

.rpi-review_us {
	text-transform: uppercase !important;
	border-radius: 0 !important;
}

.rpi-content .rpi-card-inner {
	border-radius: 0 !important;
}

body a.rpi-name {
	color: #0A0A0A !important;
}

.rpi-header .rpi-name, .rpi-header .rpi-scale {
	font-family: 'Playfair Display', serif !important;
	font-style: italic;
}
.rpi-header .rpi-card-inner {
	border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
	.rpi .rpi-ltgt.rpi-lt, .rpi .rpi-ltgt.rpi-gt {
	  display: none !important;
	} 
}

.rpi-cards .rpi-card:nth-child(n+10) {
    display: none !important;
}

body a.elementor-button .elementor-button-text {
    font-family: "Inter", Sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 1.32px;
   	color: #FFFFFF;
}

body .elementor-button {
	min-width: unset !important;
}

body a.elementor-button:hover, body .custom-btn a:hover {
	background: var(--rose-deep) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(196, 81, 92, 0.3) !important;
	border: none !important;
}

body a.elementor-button:hover .elementor-button-text, body .custom-btn a:hover .elementor-button-text {
	color: #fff !important;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu a {
	border: none !important;
}

.ti-widget.ti-goog.ti-disable-font .ti-widget-container, .ti-widget.ti-goog.ti-disable-font .ti-widget-container *, .ti-widget.ti-goog.ti-disable-font .ti-enable-widget {
	font-family: 'Inter', sans-serif !important;
	font-weight: 300 !important;
}

.dtc-testimonials-grid-section {
    padding: 0;
}

.dtc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dtc-testimonials-grid .testimonial-card {
    background: #fff;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dtc-testimonials-grid .testimonial-quote {
    margin: 0 0 25px;
    line-height: 1.8;
    color: #555;
}

.dtc-testimonials-grid .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-style: normal;
    line-height: 0;
    vertical-align: -8px;
}

.dtc-testimonials-grid .quote-text {
    font-size: 15px;
}

.dtc-testimonials-grid .testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    font-weight: 600;
    color: #222;
}

/* Tablet */
@media (max-width: 991px) {
    .dtc-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .dtc-testimonials-grid {
        grid-template-columns: 1fr;
    }
}