/* ============================================================
   LoveFinder Español — shared stylesheet
   Paleta: Baya Apasionada / Ciruela / Cobre Cálido / crema rosado
   ============================================================ */

:root {
  --ink: #2C1F2A;
  --ink-soft: #6E5866;
  --cream: #FBF1EC;
  --cream-panel: #F5E2D8;
  --berry: #A6285A;
  --berry-dark: #7C1D44;
  --plum: #5B3357;
  --plum-dark: #3E2239;
  --copper: #D98A3D;
  --copper-dark: #B06B27;
  --line: #E8D3C8;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(44, 31, 42, 0.10);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
a { color: var(--plum); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--berry-dark); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Signature element: conversation-dots divider ---------- */
.dots-divider {
  height: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 6px;
  background: var(--white);
  overflow: hidden;
}
.dots-divider span {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { color: var(--berry); }
.logo-mark {
  width: 30px;
  height: 28px;
  object-fit: contain;
  flex: none;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-login {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--plum);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}
.btn-login:hover { border-color: var(--berry); color: var(--berry-dark); }

.btn-primary {
  display: inline-block;
  background: var(--berry);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: none;
}
.btn-primary:hover { background: var(--berry-dark); }
.btn-primary.small { padding: 9px 18px; font-size: 0.88rem; }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero-media-wrap { position: relative; }
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: linear-gradient(120deg, var(--plum), var(--cream-panel));
  color: transparent;
}
.hero-overlay-title {
  position: absolute;
  left: 5%;
  right: 50%;
  bottom: 14%;
  margin: 0;
  color: #FFFFFF;
  text-shadow: 0 3px 20px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
  .hero-overlay-title { right: 38%; bottom: 10%; font-size: 1.5rem; }
}
.hero-body { background: var(--white); padding: 40px 0 36px; }
.eyebrow {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(91,51,87,0.09);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 640px; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.cta-note { font-size: 0.9rem; color: var(--ink-soft); }

.news-strip { background: var(--plum-dark); color: #F3E9F1; font-size: 0.88rem; font-weight: 600; }
.news-strip .wrap { padding: 10px 24px; }
.news-strip strong { color: var(--copper); font-weight: 800; }

/* ---------- Sections ---------- */
.section { padding: 48px 0; }
.section.alt { background: var(--cream-panel); }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.check-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--plum); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 2px;
}

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

.card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }

.social-line { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); margin-top: 26px; }
.social-line .dots { display: flex; gap: 6px; }
.social-line .dots span { width: 9px; height: 9px; border-radius: 50%; }
.social-line .dots span:nth-child(1) { background: var(--berry); }
.social-line .dots span:nth-child(2) { background: var(--copper); }
.social-line .dots span:nth-child(3) { background: var(--plum); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.feature .tick {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--berry); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 15px;
}

.steps { display: grid; gap: 18px; }
.step { display: flex; gap: 16px; }
.step .num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-panel); border: 2px solid var(--plum); color: var(--plum-dark);
  font-family: 'Fraunces', serif; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  background: var(--white); border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px; box-shadow: var(--shadow); font-style: italic;
}
.quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; color: var(--plum); font-size: 0.9rem; }

/* FAQ (native details/summary accordion) */
.faq-toc { background: var(--white); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); margin-bottom: 30px; }
.faq-toc ol { padding-left: 20px; margin: 0; columns: 2; column-gap: 32px; }
@media (max-width: 700px) { .faq-toc ol { columns: 1; } }
.faq-toc li { margin-bottom: 8px; break-inside: avoid; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 4px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--berry);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 4px 20px; color: var(--ink-soft); margin: 0; }

.qa-list { display: grid; gap: 16px; }
.qa-list .card p { margin: 6px 0 0; color: var(--ink-soft); }
.qa-list .card strong { color: var(--ink); }

/* Nav footer link row */
.page-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.page-nav .wrap { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.page-nav a { font-size: 0.9rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.page-nav a:hover { color: var(--berry); }

/* Sibling-brand row */
.partner-section { padding: 34px 0; }
.partner-section h2 { font-size: 1.1rem; text-align: center; color: var(--ink-soft); }
.region-row { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: 10px; }
.region-row a { font-weight: 700; }

/* Footer */
.site-footer { background: var(--ink); color: #EFE3EA; padding: 26px 0; font-size: 0.85rem; text-align: center; }
.site-footer p { margin: 0 0 6px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #EFE3EA;
  font-size: 0.82rem;
  font-weight: 600;
}
.trust-badge img { border-radius: 4px; }
.trust-badge:hover { color: var(--copper); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 16px;
  font-size: 0.78rem;
}
.footer-legal a {
  color: #C9B7C4;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--copper); text-decoration: underline; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  width: 50%;
  max-width: 420px;
  min-width: 280px;
  background: var(--plum-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(44, 31, 42, 0.45);
  padding: 20px 22px;
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #F3E9F1;
}
.cookie-banner a {
  color: var(--copper);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner a:hover { color: #F0B368; }
.btn-cookie-accept {
  flex: none;
  font-family: 'Fraunces', serif;
  background: var(--berry);
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
}
.btn-cookie-accept:hover { background: var(--berry-dark); }
@media (max-width: 600px) {
  .cookie-banner {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}

.center { text-align: center; }
.mt-40 { margin-top: 40px; }
