/* ==========================================================================
   Kindled — single page dating site
   Design tokens
   ========================================================================== */
:root {
  --bg-deep: #24121f;
  --bg-deep-2: #341b34;
  --panel: #2e1728;
  --rose: #e8546b;
  --rose-soft: #f3899b;
  --gold: #d4a857;
  --cream: #fbf3ec;
  --blush: #f4d9de;
  --muted: #c9aec2;
  --line: rgba(251, 243, 236, 0.12);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px rgba(12, 4, 10, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--muted); }

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

section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(232, 84, 107, 0.35);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(232, 84, 107, 0.45); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(212, 168, 87, 0.08); }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(36, 18, 31, 0.86);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand span { color: var(--rose); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blush);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--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 + signature "connection rings" visual
   ========================================================================== */
.hero {
  padding: 190px 0 120px;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 84, 107, 0.28), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(212, 168, 87, 0.16), transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--rose-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline-swash {
  display: block;
  width: 220px;
  max-width: 60%;
  height: 10px;
  margin-top: 6px;
}

/* marquee strip */
.marquee-wrap {
  margin-top: 64px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.marquee-track span strong { color: var(--gold); font-weight: 600; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.hero p.lead {
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  max-width: 460px;
  color: var(--muted);
}
.hero-ctas { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(36px, 5vw, 56px);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.hero-stats div span { font-size: 0.8rem; color: var(--muted); }

.rings-wrap {
  position: relative;
  height: clamp(260px, 34vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(251, 243, 236, 0.18);
}
.ring-a {
  width: clamp(190px, 24vw, 300px);
  height: clamp(190px, 24vw, 300px);
  left: 18%;
  background: radial-gradient(circle at 35% 30%, rgba(232, 84, 107, 0.55), rgba(232, 84, 107, 0.05) 70%);
  animation: driftA 7s ease-in-out infinite;
}
.ring-b {
  width: clamp(190px, 24vw, 300px);
  height: clamp(190px, 24vw, 300px);
  right: 14%;
  background: radial-gradient(circle at 65% 65%, rgba(212, 168, 87, 0.55), rgba(212, 168, 87, 0.05) 70%);
  animation: driftB 7s ease-in-out infinite;
}
@keyframes driftA {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(24px) translateY(-10px); }
}
@keyframes driftB {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-24px) translateY(10px); }
}
.spark {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: pulseSpark 2.6s ease-in-out infinite;
}
@keyframes pulseSpark {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.chip {
  position: absolute;
  background: rgba(251, 243, 236, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chip-1 { top: 8%; left: 0; }
.chip-2 { bottom: 10%; right: 2%; }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #58d66c; }

.float-deco {
  position: absolute;
  color: var(--gold);
  opacity: 0.55;
  font-size: 1rem;
  animation: floatDeco 5.5s ease-in-out infinite;
}
.deco-1 { top: 4%; right: 30%; font-size: 1.3rem; animation-delay: 0s; }
.deco-2 { bottom: 6%; left: 6%; color: var(--rose-soft); animation-delay: 1.2s; }
.deco-3 { top: 46%; right: 2%; font-size: 0.8rem; animation-delay: 2.4s; }
@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--bg-deep-2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.about-copy p { font-size: 1.02rem; color: var(--blush); }
.value-list { display: flex; flex-direction: column; gap: 26px; }
.value-item {
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 40px;
}
.value-item h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: 6px; }
.value-item p { margin: 0; font-size: 0.92rem; }

/* ==========================================================================
   Matches
   ========================================================================== */
.matches { background: var(--bg-deep); }

.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-pill {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.filter-pill:hover { border-color: var(--gold); color: var(--cream); }
.filter-pill.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  border-color: transparent;
  color: var(--cream);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.match-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px 24px;
  text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  transition-delay: var(--stagger, 0s);
}
.match-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.match-card.hidden-card { display: none; }

.ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 168, 87, 0.16);
  color: var(--gold);
}
.ribbon.online { background: rgba(88, 214, 108, 0.16); color: #6be089; }

.avatar-wrap { position: relative; width: 78px; margin: 0 auto 18px; }
.avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bg-deep);
  font-weight: 600;
}
.status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #58d66c;
  border: 3px solid var(--panel);
}
.status-dot.away { background: var(--muted); }

.match-card h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 2px; }
.match-card .loc { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.bio-line { font-size: 0.82rem; color: var(--blush); margin-bottom: 14px; min-height: 2.6em; }

.tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
}

.compat-ring {
  --pct: 90;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--gold) calc(var(--pct) * 1%), rgba(251, 243, 236, 0.08) 0);
  position: relative;
}
.compat-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--panel);
}
.compat-ring span {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cream);
}

.match-card .btn { width: 100%; padding: 10px; font-size: 0.82rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--bg-deep-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(251, 243, 236, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose-soft);
  background: rgba(251, 243, 236, 0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; margin-top: 12px; color: var(--muted); min-height: 1.2em; }

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-card h3 { color: var(--cream); font-size: 1.2rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(232, 84, 107, 0.15);
  color: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row .label { font-size: 0.75rem; color: var(--muted); }
.contact-row .value { font-size: 0.95rem; color: var(--cream); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h3 { color: var(--cream); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--muted); font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==========================================================================
   Floating call / whatsapp buttons
   ========================================================================== */
.float-actions {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.call { background: linear-gradient(135deg, var(--rose), var(--rose-soft)); }
.float-btn.whatsapp { background: linear-gradient(135deg, #25d366, #1eb857); }
.float-btn .ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.6;
  animation: floatPulse 2.2s ease-out infinite;
}
.float-btn.call .ring-pulse { color: var(--rose); }
.float-btn.whatsapp .ring-pulse { color: #25d366; }
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}
.float-btn .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.float-btn:hover .tooltip { opacity: 1; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ring-a, .ring-b, .spark, .ring-pulse { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .rings-wrap { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .navbar .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(36, 18, 31, 0.97);
    padding: 26px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .hero { padding-top: 150px; }
  .float-btn .tooltip { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 130px; }
  .hero-stats { gap: 22px; }
  .hero-ctas .btn { flex: 1 1 auto; text-align: center; }
  .marquee-track span { font-size: 0.76rem; }
  .contact-card { padding: 28px 22px; }
  .value-item { flex-direction: column; gap: 10px; }
  .float-actions { right: 16px; bottom: 18px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
}