/* ========================================
   FindYourLady — Main Stylesheet
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] { display: none !important; }

:root {
  --crimson: #b91c3a;
  --crimson-dark: #8e1530;
  --crimson-light: #d4364f;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --cream: #fdf8f0;
  --cream-dark: #f5ead6;
  --charcoal: #2c2c2c;
  --text: #3d3032;
  --text-light: #7a6d6f;
  --white: #ffffff;
  --green: #22c55e;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Pages --- */
.page {
  display: none;
  min-height: 100vh;
}

.page.active { display: block; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.logo span { color: var(--crimson); }

.nav-cta {
  background: var(--crimson);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.geo-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.matches-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--crimson);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
  transition: background var(--transition);
}

.matches-btn:hover { background: var(--crimson-dark); }

.matches-btn svg { width: 16px; height: 16px; }

.match-badge {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.nav-back {
  background: transparent;
  color: var(--crimson);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid var(--crimson);
  transition: all var(--transition);
}

.nav-back:hover {
  background: var(--crimson);
  color: var(--white);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a0a10 0%, #3d0f1e 30%, #5c1a2a 60%, #2a0e18 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(185, 28, 58, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 680px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: var(--white);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(185, 28, 58, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(185, 28, 58, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-hero { animation: pulse 2.5s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(185, 28, 58, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(185, 28, 58, 0.55); }
}

.hero-note {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Trust Badges --- */
.trust {
  padding: 80px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-badge { padding: 32px 24px; }

.trust-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(185, 28, 58, 0.08), rgba(201, 168, 76, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
}

.trust-icon svg { width: 26px; height: 26px; }

.trust-badge h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.trust-badge p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- Testimonials --- */
.testimonials { padding: 80px 0 100px; background: var(--cream); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--charcoal);
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.testimonial-img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--cream-dark);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--crimson); }

/* --- Footer --- */
.footer { background: var(--charcoal); padding: 48px 0; }
.footer-inner { text-align: center; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo span { color: var(--gold); }

.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 20px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-copy { color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; }

/* --- Loading Screen --- */
#loading {
  background: linear-gradient(135deg, #1a0a10 0%, #3d0f1e 40%, #2a0e18 100%);
  display: none;
  align-items: center;
  justify-content: center;
}

#loading.active { display: flex; }

.loading-content { text-align: center; }

.spinner {
  width: 56px; height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text { color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; font-weight: 500; }

/* ========================================
   LOCATION PROMPT
   ======================================== */

#locationPrompt {
  background: linear-gradient(135deg, #1a0a10 0%, #3d0f1e 40%, #2a0e18 100%);
  display: none;
  align-items: center;
  justify-content: center;
}

#locationPrompt.active { display: flex; }

.loc-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
}

.loc-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.loc-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.loc-icon svg { width: 100%; height: 100%; }

.loc-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.loc-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.loc-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.loc-btn:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.loc-skip {
  display: block;
  margin-top: 18px;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}

.loc-skip:hover { color: rgba(255, 255, 255, 0.8); }

/* ========================================
   SWIPE PAGE
   ======================================== */

.navbar-matches {
  background: rgba(253, 248, 240, 0.96);
}

.swipe-viewport {
  position: fixed;
  top: 58px; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 2.1 / 3;
  max-height: calc(100vh - 220px);
}

/* Swipe card */
.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
  cursor: grab;
}

.swipe-card:active { cursor: grabbing; }
.swipe-card.behind { pointer-events: none; transform: scale(0.94) translateY(12px); filter: brightness(0.92); }
.swipe-card.far-behind { pointer-events: none; transform: scale(0.88) translateY(24px); filter: brightness(0.85); opacity: 0.7; }

.swipe-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Card info overlay */
.swipe-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 20px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  color: var(--white);
  pointer-events: none;
}

.swipe-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.swipe-card-distance {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.swipe-card-distance::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.swipe-card-bio {
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0.9;
  margin-bottom: 8px;
}

/* Interest tags on card */
.swipe-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.swipe-card-tag {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(4px);
}

/* Verified badge */
.swipe-card-verified {
  position: absolute;
  top: 14px; right: 14px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.9);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
  pointer-events: none;
}

.swipe-card-verified svg { width: 16px; height: 16px; }

/* Info button */
.swipe-card-info-btn {
  position: absolute;
  bottom: 20px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  cursor: pointer;
  transition: background var(--transition);
  pointer-events: auto;
}

.swipe-card-info-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* LIKE / NOPE stamps */
.swipe-stamp {
  position: absolute;
  top: 40px;
  padding: 8px 20px;
  border: 4px solid;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.swipe-stamp-like { left: 24px; color: var(--green); border-color: var(--green); transform: rotate(-15deg); }
.swipe-stamp-nope { right: 24px; color: #ef4444; border-color: #ef4444; transform: rotate(15deg); }

/* Counter & actions */
.card-counter { margin-top: 14px; font-size: 0.8rem; color: var(--text-light); font-weight: 500; text-align: center; }

.swipe-actions { display: flex; gap: 28px; margin-top: 18px; }

.swipe-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.swipe-btn svg { width: 26px; height: 26px; }
.swipe-btn-pass { background: var(--white); color: #ef4444; }
.swipe-btn-pass:hover { background: #fef2f2; transform: scale(1.1); box-shadow: 0 6px 24px rgba(239, 68, 68, 0.25); }
.swipe-btn-like { background: var(--white); color: var(--green); }
.swipe-btn-like:hover { background: #f0fdf4; transform: scale(1.1); box-shadow: 0 6px 24px rgba(74, 222, 128, 0.3); }

/* Empty state */
.swipe-empty { text-align: center; padding: 40px 20px; }
.swipe-empty-icon { width: 72px; height: 72px; margin: 0 auto 20px; color: var(--crimson); opacity: 0.3; }
.swipe-empty-icon svg { width: 100%; height: 100%; }
.swipe-empty h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; color: var(--charcoal); }
.swipe-empty p { color: var(--text-light); font-size: 0.95rem; }

/* Swipe tutorial */
.swipe-tutorial {
  position: fixed;
  top: 58px; left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  animation: tutFadeIn 0.4s ease;
}

@keyframes tutFadeIn { from { opacity: 0; } to { opacity: 1; } }

.tut-hand { width: 48px; height: 48px; color: var(--white); animation: tutSwipe 2.5s ease-in-out infinite; }
.tut-hand svg { width: 100%; height: 100%; }

@keyframes tutSwipe {
  0%, 100% { transform: translateX(0);    opacity: 0.9; }
  30%      { transform: translateX(70px);  opacity: 1; }
  50%      { transform: translateX(70px);  opacity: 0.4; }
  55%      { transform: translateX(0);     opacity: 0.3; }
  60%      { transform: translateX(0);     opacity: 0.9; }
  80%      { transform: translateX(-70px); opacity: 1; }
  95%      { transform: translateX(-70px); opacity: 0.4; }
}

.tut-labels { display: flex; gap: 60px; align-items: center; }
.tut-label { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; }
.tut-label svg { width: 22px; height: 22px; }
.tut-pass { color: #ef4444; }
.tut-like { color: var(--green); }
.tut-text { font-size: 0.9rem; opacity: 0.7; margin-top: -8px; }

/* ========================================
   IT'S A MATCH SCREEN
   ======================================== */

.match-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 10, 16, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: matchFadeIn 0.4s ease;
}

.match-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  line-height: 1;
}

.match-close:hover { background: rgba(255, 255, 255, 0.3); }

@keyframes matchFadeIn { from { opacity: 0; } to { opacity: 1; } }

.match-content {
  text-align: center;
  padding: 40px 24px;
  max-width: 360px;
  width: 100%;
}

.match-hearts {
  position: relative;
  width: 80px;
  height: 60px;
  margin: 0 auto 20px;
}

.match-heart { position: absolute; }

.match-heart-lg {
  width: 48px; height: 48px;
  color: var(--crimson);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  animation: matchBounce 0.6s ease;
}

.match-heart-sm {
  width: 28px; height: 28px;
  color: var(--crimson-light);
  top: 0; right: 8px;
  opacity: 0.7;
  animation: matchFloat 1.5s ease infinite;
}

@keyframes matchBounce {
  0% { transform: translateX(-50%) scale(0); }
  50% { transform: translateX(-50%) scale(1.2); }
  100% { transform: translateX(-50%) scale(1); }
}

@keyframes matchFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.match-screen h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.match-screen p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.match-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.match-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.match-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
}

.match-btn-view {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.match-btn-view:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.match-btn-keep {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: var(--white);
  border: none;
}

.match-btn-keep:hover {
  box-shadow: 0 4px 20px rgba(185, 28, 58, 0.4);
}

/* ========================================
   FULL PROFILE VIEW
   ======================================== */

.profile-view {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--cream);
  overflow-y: auto;
  animation: pvSlideUp 0.35s ease;
}

@keyframes pvSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.pv-inner {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.pv-close {
  position: fixed;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  line-height: 1;
}

.pv-close:hover { background: rgba(0, 0, 0, 0.7); }

/* Gallery */
.pv-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
  overflow: hidden;
}

.pv-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.pv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
  line-height: 1;
}

.pv-arrow:hover { background: rgba(0,0,0,0.6); }
.pv-arrow-left { left: 12px; }
.pv-arrow-right { right: 12px; }

.pv-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.pv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.pv-dot.active {
  background: var(--white);
  width: 20px;
  border-radius: 4px;
}

/* Profile body */
.pv-body {
  padding: 28px 24px 40px;
}

.pv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.pv-location {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pv-section {
  margin-bottom: 24px;
}

.pv-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pv-section p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.pv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pv-tag {
  padding: 6px 16px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.pv-message-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

/* ========================================
   MATCHES DRAWER
   ======================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  animation: tutFadeIn 0.25s ease;
}

.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 340px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  animation: drawerSlide 0.3s ease;
}

@keyframes drawerSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.drawer-close {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition);
}

.drawer-close:hover { background: var(--cream-dark); }

.drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  cursor: pointer;
}

.drawer-item:hover { background: var(--cream); }

.drawer-item-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.drawer-item-info { flex: 1; }

.drawer-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.drawer-item-sub {
  font-size: 0.78rem;
  color: var(--crimson);
  font-weight: 500;
}

.drawer-item-view {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--crimson);
  flex-shrink: 0;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 900px) {
  .trust-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-content { padding: 100px 16px 60px; }
  .btn-primary { padding: 14px 36px; font-size: 1rem; }
  .trust { padding: 56px 0; }
  .testimonials { padding: 56px 0 72px; }
  .footer-links { flex-direction: column; gap: 14px; }
  .section-title { margin-bottom: 36px; }
  .nav-cta { padding: 8px 18px; font-size: 0.82rem; }

  .card-stack { max-width: 340px; }
  .swipe-card-name { font-size: 1.35rem; }
  .swipe-btn { width: 54px; height: 54px; }
  .swipe-btn svg { width: 22px; height: 22px; }

  .loc-card { padding: 36px 24px; }

  .match-screen h2 { font-size: 1.6rem; }
  .match-photo { width: 80px; height: 80px; }
}
