/* ============================================================
   Mumbai Hookup - Main Stylesheet
   Extracted from Figma Make design. No frameworks.
   ============================================================ */

/* ─── CSS Variables (from theme.css) ─────────────────────── */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #1a0812;
  --card: #fffbfc;
  --card-foreground: #1a0812;
  --primary: #d94f6b;
  --primary-foreground: #ffffff;
  --secondary: #fbe8ee;
  --secondary-foreground: #7c1d4f;
  --muted: #fff0f4;
  --muted-foreground: #9b6677;
  --accent: #7c1d4f;
  --accent-foreground: #ffffff;
  --destructive: #c0392b;
  --border-color: rgba(217, 79, 107, 0.15);
  --ring: #d94f6b;
  --radius: 1rem;
  --radius-sm: calc(var(--radius) - 0.25rem);
  --radius-md: calc(var(--radius) - 0.125rem);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 0.25rem);

  /* Design tokens */
  --gradient-primary: linear-gradient(135deg, #d94f6b, #e8835a);
  --gradient-warm: linear-gradient(135deg, #d94f6b 20%, #e8835a 80%);
  --gradient-hero: linear-gradient(140deg, #fff5f7 0%, #ffeaea 45%, #fff3e8 100%);
  --gradient-section: linear-gradient(135deg, #fff0f4 0%, #fff5ee 100%);
  --gradient-section-alt: linear-gradient(135deg, #fff5ee 0%, #fff0f4 100%);
  --gradient-cta: linear-gradient(135deg, #c94060 0%, #d94f6b 30%, #e8835a 65%, #f4a261 100%);
  --gradient-card-icon: linear-gradient(135deg, #ffe4ec, #ffd0c0);
  --gradient-avatar: linear-gradient(135deg, #d94f6b, #e8835a);
  --color-badge-bg: #ffe4ec;
  --color-badge-text: #b03055;
  --color-footer: #1a0812;
  --color-star: #f4a261;
  --color-star-empty: #e5e7eb;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--background);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--foreground);
}

p {
  line-height: 1.6;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

/* Two-column grid for image+text sections */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 79, 107, 0.3);
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(217, 79, 107, 0.4);
  transform: scale(1.03);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.4);
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  padding: 0.875rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  padding: 0.875rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: scale(1.03);
}

.btn-white:active {
  transform: scale(0.97);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ─── Header / Navigation ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .header-ctas { display: flex; }
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.625rem;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  transition: background 0.15s;
}

.mobile-menu-btn:hover {
  background: var(--secondary);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 1rem;
}

.mobile-drawer a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  min-height: 3rem;
  padding: 0.8125rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.mobile-drawer a:hover {
  background: var(--secondary);
}

.mobile-drawer .mobile-ctas {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.mobile-drawer .mobile-ctas .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .mobile-drawer { display: none; }
}

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-blob-1 {
  position: absolute;
  top: 2.5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(64px);
  pointer-events: none;
  background: #ffcdd5;
}

.hero-blob-2 {
  position: absolute;
  bottom: -5rem;
  right: 0;
  width: 31.25rem;
  height: 31.25rem;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(64px);
  pointer-events: none;
  background: #f4a261;
}

.hero-content {
  position: relative;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3.5rem;
  }
  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-text {
  order: 2;
}

@media (min-width: 1024px) {
  .hero-text { order: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(3rem, 4.2vw, 3.75rem);
  }

  .hero-title-first-line {
    white-space: nowrap;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-top: 0.125rem;
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border-color);
}

.hero-image-wrapper {
  position: relative;
  order: 1;
}

@media (min-width: 1024px) {
  .hero-image-wrapper { order: 2; }
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  aspect-ratio: 4 / 5;
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-image { max-width: none; }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,18,0.45) 0%, rgba(217,79,107,0.08) 50%, transparent 70%);
}

.hero-image-decor {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 75%;
  height: 75%;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffe4ec, #ffd0c0);
  z-index: -1;
}

/* Floating cards on hero image */
.hero-float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float-card.match {
  bottom: 6rem;
  left: -1rem;
  max-width: 200px;
}

.hero-float-card.online {
  top: 4rem;
  right: -0.5rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
  .hero-float-card.match { left: -2rem; }
  .hero-float-card.online { right: -1.5rem; }
}

.hero-float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  fill: var(--primary);
}

.hero-float-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
}

.hero-float-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-online-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-online-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}

/* ─── Trust Features ────────────────────────────────────── */
.trust-section {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(5, 1fr); }
}

.trust-card {
  background: #fff5f7;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.trust-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.trust-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card-icon);
}

.trust-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.trust-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ─── Locations Grid ────────────────────────────────────── */
.locations-section {
  background: var(--gradient-section);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.location-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.2s, transform 0.2s;
}

.location-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.location-card:hover img {
  transform: scale(1.05);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,18,0.78) 0%, rgba(26,8,18,0.1) 55%, transparent 80%);
}

.location-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.location-card-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
}

.location-card-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.location-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(217,79,107,0.88);
  color: #ffffff;
  margin-top: 0.5rem;
}

.location-card-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ─── How It Works ──────────────────────────────────────── */
.how-section {
  background: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-serif);
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(217,79,107,0.3);
}

.how-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ─── Featured Profiles ─────────────────────────────────── */
.profiles-section {
  background: #fff5f7;
}

.profiles-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .profiles-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.profiles-header-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: opacity 0.15s;
  align-self: flex-start;
}

@media (min-width: 640px) {
  .profiles-header-link { align-self: auto; }
}

.profiles-header-link:hover {
  opacity: 0.75;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .profiles-grid { grid-template-columns: repeat(6, 1fr); }
}

.profile-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.profile-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transform: translateY(-0.25rem);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.04);
}

.profile-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,18,0.88) 0%, rgba(26,8,18,0.05) 55%, transparent 70%);
}

.profile-online-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.9);
  color: var(--foreground);
}

.profile-online-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.profile-like-btn {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  background: rgba(255,255,255,0.88);
}

.profile-like-btn:hover {
  transform: scale(1.1);
}

.profile-like-btn:active {
  transform: scale(0.95);
}

.profile-like-btn.liked {
  background: var(--primary);
}

.profile-like-btn svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  transition: color 0.2s, fill 0.2s;
  fill: none;
}

.profile-like-btn.liked svg {
  color: #ffffff;
  fill: #ffffff;
}

.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
}

.profile-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

.profile-location svg {
  width: 0.75rem;
  height: 0.75rem;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.profile-location span {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-bio {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Lifestyle Section ─────────────────────────────────── */
.lifestyle-section {
  background: #ffffff;
}

.lifestyle-image-wrapper {
  position: relative;
}

.lifestyle-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  aspect-ratio: 4 / 5;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-photo-banner {
  position: relative;
  aspect-ratio: 15 / 7;
  margin: 0 0 3rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #eadde0;
  box-shadow: 0 20px 45px -24px rgba(46, 17, 25, 0.45);
}

.content-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-photo-banner::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(20, 8, 12, 0.78));
  pointer-events: none;
}

.content-photo-caption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

@media (max-width: 639px) {
  .content-photo-banner {
    aspect-ratio: 4 / 3;
    margin-bottom: 2.25rem;
    border-radius: 1.15rem;
  }

  .content-photo-caption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.875rem;
  }
}

.lifestyle-image-decor {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffe4ec, #ffd0c0);
  z-index: -1;
}

@media (max-width: 639px) {
  .hero-image-decor,
  .lifestyle-image-decor {
    right: 0;
  }
}

.faq-question {
  margin: 0;
  font: inherit;
}

.lifestyle-text {
  /* spacing handled by split-grid gap */
}

.lifestyle-text h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .lifestyle-text h2 { font-size: 2.25rem; }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--color-badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ─── Hookup Etiquette ──────────────────────────────────── */
.etiquette-section {
  background: var(--gradient-section-alt);
}

.etiquette-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .etiquette-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .etiquette-grid { grid-template-columns: repeat(4, 1fr); }
}

.etiquette-card {
  background: #ffffff;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.etiquette-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.etiquette-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card-icon);
  margin-bottom: 1rem;
}

.etiquette-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.etiquette-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.etiquette-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ─── Safety Section ────────────────────────────────────── */
.safety-section {
  background: #ffffff;
}

.safety-image-wrapper {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .safety-image-wrapper { display: block; }
}

.safety-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  aspect-ratio: 1 / 1;
}

.safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,8,18,0.28));
}

.safety-image-decor {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffe4ec, #ffd0c0);
  z-index: -1;
}

.safety-text h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .safety-text h2 { font-size: 2.25rem; }
}

.safety-text > p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.safety-tips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.safety-tip {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: background 0.15s;
}

.safety-tip:hover {
  background: var(--secondary);
}

.safety-tip-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card-icon);
  flex-shrink: 0;
}

.safety-tip-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.safety-tip h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.safety-tip p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.safety-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-section {
  background: #fff5f7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-stars svg.filled {
  color: var(--color-star);
  fill: var(--color-star);
}

.testimonial-stars svg.empty {
  color: #d1d5db;
  fill: #e5e7eb;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--gradient-avatar);
  flex-shrink: 0;
}

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

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
}

.faq-container {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .faq-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .faq-container {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: background 0.15s;
}

.faq-trigger:hover {
  background: var(--secondary);
}

.faq-trigger span {
  padding-right: 1rem;
}

.faq-trigger svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-content {
  max-height: 20rem;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.faq-footer a {
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.15s;
}

.faq-footer a:hover {
  opacity: 0.75;
}

/* ─── Final CTA ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.cta-highlights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 50%, rgba(255,255,255,0.18) 0%, transparent 55%),
              radial-gradient(circle at 85% 50%, rgba(255,255,255,0.12) 0%, transparent 55%);
}

.cta-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3.5rem; }
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand { grid-column: span 1; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 2rem;
  height: 2rem;
}

.footer-logo .logo-text {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 20rem;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-domain {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ─── About Page ────────────────────────────────────────── */
.about-hero {
  background: var(--gradient-section);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .about-hero h1 { font-size: 3rem; }
}

.about-hero p {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.about-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-card {
  background: #fff5f7;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 2rem;
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.about-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ─── FAQ Page ──────────────────────────────────────────── */
.faq-page-hero {
  background: var(--gradient-section);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.faq-page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-page-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

/* ─── Contact Page ──────────────────────────────────────── */
.contact-hero {
  background: var(--gradient-section);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ffcdd5;
  border-radius: 0.75rem;
  background: #fff5f7;
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,79,107,0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #fff5f7;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 1.5rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ─── Login Page ────────────────────────────────────────── */
.login-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-section);
  padding: 4rem 1rem;
}

.login-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid #ffcdd5;
}

.login-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card-header .logo {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-card h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.login-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.login-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ffcdd5;
  border-radius: 0.75rem;
  background: #fff5f7;
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,79,107,0.12);
}

.login-form .btn {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
}

.login-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.login-footer a {
  color: var(--primary);
  font-weight: 600;
}

.login-footer a:hover {
  opacity: 0.75;
}

/* ─── Privacy / Terms Pages ─────────────────────────────── */
.legal-hero {
  background: var(--gradient-section);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-hero p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.legal-content {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.legal-content .legal-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .legal-content .legal-inner { padding: 0 1.5rem; }
}

/* Quick-nav ToC */
.legal-toc {
  background: #fff5f7;
  border: 1px solid #ffcdd5;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.legal-toc h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2rem;
}

@media (max-width: 639px) {
  .legal-toc ol { grid-template-columns: 1fr; }
}

.legal-toc ol li {
  font-size: 0.8125rem;
  line-height: 1.7;
}

.legal-toc ol li a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.15s;
}

.legal-toc ol li a:hover {
  color: var(--primary);
}

/* Section blocks */
.legal-block {
  scroll-margin-top: 5rem;
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.legal-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-block p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.legal-block ul li {
  color: var(--muted-foreground);
  line-height: 1.7;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  margin-bottom: 0.125rem;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.legal-block a {
  color: var(--primary);
  font-weight: 500;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-block strong {
  color: var(--foreground);
}

/* ─── 404 / Not Found ───────────────────────────────────── */
.not-found-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-section);
  padding: 4rem 1rem;
}

.not-found-section h1 {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.not-found-section p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* ─── Utilities ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
}

.visible {
  display: block;
}

/* ─── Responsive: Large Screens ─────────────────────────── */
@media (min-width: 1200px) {
  .container {
    max-width: 80rem;
  }
}

/* ─── Responsive: Small Screens ─────────────────────────── */
@media (max-width: 639px) {
  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    width: 100%;
    max-width: none;
    font-size: 2.3rem;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-title-break {
    display: none;
  }

  .hero-title-first-line::after {
    content: " ";
  }

  .hero-desc {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-val {
    font-size: 1.25rem;
  }

  .hero-float-card.match {
    left: -0.5rem;
    bottom: 4rem;
  }

  .hero-float-card.online {
    top: 2rem;
    right: -0.25rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ─── Print Styles ──────────────────────────────────────── */
@media print {
  .site-header,
  .mobile-drawer,
  .cta-section,
  .site-footer,
  .mobile-menu-btn {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
