/* Rahaxxx — modern red & white UI (Kenya) */
:root {
  --red: #c41e3a;
  --red-deep: #8b1428;
  --red-bright: #e85d72;
  --bg-deep: #faf7f8;
  --bg-card: #ffffff;
  --bg-elevated: #fff8f9;
  --accent: #c41e3a;
  --accent-dim: #9e1830;
  --accent-glow: rgba(196, 30, 58, 0.28);
  --accent-soft: rgba(196, 30, 58, 0.1);
  --violet-soft: rgba(196, 30, 58, 0.12);
  --text: #1a1012;
  --text-muted: #6b5458;
  --border: rgba(196, 30, 58, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --shadow-card: 0 12px 40px rgba(196, 30, 58, 0.08);
  --shadow-hover: 0 24px 56px rgba(196, 30, 58, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Animated colour wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 80% at 10% 20%, rgba(196, 30, 58, 0.09), transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(232, 93, 114, 0.12), transparent 45%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 255, 255, 0.9), transparent 55%);
  animation: bodyAurora 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bodyAurora {
  0% {
    filter: hue-rotate(0deg) saturate(1);
    opacity: 1;
  }
  50% {
    filter: hue-rotate(-6deg) saturate(1.08);
    opacity: 0.95;
  }
  100% {
    filter: hue-rotate(4deg) saturate(1.05);
    opacity: 1;
  }
}

body.nav-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--red-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Subtle grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: max(0.75rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.75rem
    max(1rem, env(safe-area-inset-left));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(196, 30, 58, 0.06);
}

.logo {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  z-index: 2;
}

.logo:hover {
  color: var(--text);
}

.logo span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo .logo-suffix {
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.12);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

#site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 0.35rem 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 450;
  padding: 0.4rem 0;
  text-decoration: none;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 550;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform 0.15s var(--ease-out), box-shadow 0.25s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

button,
.btn,
.nav-toggle,
.faq-q,
.city-suggestion-btn {
  touch-action: manipulation;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #e02d4a 0%, var(--red) 40%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 36px rgba(196, 30, 58, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border: 1.5px solid rgba(196, 30, 58, 0.35);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--red-deep);
  background: var(--accent-soft);
  box-shadow: var(--shadow-card);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: grid;
  align-items: center;
  padding: 3rem 4vw 4rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 90% at 50% -25%, rgba(196, 30, 58, 0.22), transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 35%, rgba(232, 93, 114, 0.18), transparent 52%),
    radial-gradient(ellipse 65% 50% at 8% 65%, rgba(255, 255, 255, 0.95), transparent 48%),
    linear-gradient(180deg, #fff8f9 0%, #faf7f8 100%);
  pointer-events: none;
  animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% {
    opacity: 1;
    filter: hue-rotate(0deg) saturate(1);
  }
  100% {
    opacity: 0.97;
    filter: hue-rotate(6deg) saturate(1.06);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 30, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 30, 58, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.45;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--accent) 45%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  min-height: 360px;
}

.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.hero__float {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196, 30, 58, 0.2);
  box-shadow: var(--shadow-hover);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.hero__float:hover {
  box-shadow: 0 28px 72px rgba(196, 30, 58, 0.22);
}

.hero__float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: photoTint 14s ease-in-out infinite alternate;
}

@keyframes photoTint {
  0% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.1) brightness(1.03);
  }
  100% {
    filter: saturate(1.05) brightness(1.01);
  }
}

.hero__float--1 {
  width: 58%;
  aspect-ratio: 3/4;
  top: 0;
  right: 0;
  z-index: 3;
  animation: float-a 7s ease-in-out infinite;
}

.hero__float--2 {
  width: 52%;
  aspect-ratio: 3/4;
  bottom: 8%;
  left: 0;
  z-index: 2;
  animation: float-b 8s ease-in-out infinite;
}

.hero__float--3 {
  width: 38%;
  aspect-ratio: 1;
  top: 38%;
  right: 32%;
  z-index: 1;
  border-radius: 50%;
  animation: float-a 9s ease-in-out infinite reverse;
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero__stat {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  z-index: 4;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(196, 30, 58, 0.18);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font);
  color: var(--accent);
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Marquee */
.marquee-wrap {
  border-block: 1px solid var(--border);
  background: linear-gradient(
    90deg,
    rgba(196, 30, 58, 0.06),
    rgba(255, 255, 255, 0.85),
    rgba(232, 93, 114, 0.08)
  );
  background-size: 200% 100%;
  animation: marqueeBg 24s linear infinite;
  overflow: hidden;
}

@keyframes marqueeBg {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.marquee {
  display: flex;
  gap: 3rem;
  padding: 1rem 0;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee.is-paused {
  animation-play-state: paused;
}

.marquee span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee span strong {
  color: var(--accent);
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4vw;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #ffffff, var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 58, 0.28);
}

.stat-item strong {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 4.5rem 4vw 5rem;
}

.section--tight {
  padding-top: 3rem;
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 0 0 0.75rem;
}

.section-head h2 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.02rem;
}

/* Marketing / about copy */
.prose-block {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.prose-block strong {
  color: var(--text);
  font-weight: 600;
}

.prose-block a.domain-link {
  color: var(--accent);
  font-weight: 600;
}

.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.prose-columns h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--text);
}

.prose-columns ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.prose-columns li {
  margin-bottom: 0.4rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.area-tags span {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .prose-columns {
    grid-template-columns: 1fr;
  }
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bento__card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}

.bento__card:hover {
  border-color: rgba(196, 30, 58, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.bento__card--wide {
  grid-column: span 2;
}

.bento__card--tall {
  grid-row: span 2;
}

.bento__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.bento__card h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.bento__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg-card));
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--red-deep));
  border-radius: 10px;
  box-shadow: 0 6px 18px var(--accent-glow);
}

.step h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin: 0.5rem 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.t-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.t-card__stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.t-card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.t-card footer {
  font-size: 0.85rem;
  color: var(--text);
}

.t-card footer cite {
  font-style: normal;
  font-weight: 600;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q .chev {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--accent);
}

.faq-item.is-open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq-item.is-open .faq-a {
  max-height: 480px;
}

.faq-a-inner code {
  font-size: 0.88em;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--text);
}

.faq-a-inner {
  padding: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  margin: 0 4vw 4rem;
  padding: 3rem 2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(196, 30, 58, 0.2);
  background:
    radial-gradient(ellipse 90% 100% at 15% 20%, rgba(255, 255, 255, 0.95), transparent 55%),
    radial-gradient(ellipse 70% 80% at 85% 80%, var(--violet-soft), transparent 50%),
    linear-gradient(135deg, #c41e3a 0%, #8b1428 55%, #5c0d1a 100%);
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 56px rgba(196, 30, 58, 0.25);
  animation: ctaPulse 16s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
  0% {
    filter: saturate(1);
  }
  100% {
    filter: saturate(1.08);
  }
}

.cta-band h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.cta-band .btn-primary:hover {
  filter: brightness(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

/* Escort grid */
.escort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.escort-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.escort-card:hover {
  border-color: rgba(196, 30, 58, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.escort-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-elevated);
}

.escort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.escort-card:hover img {
  transform: scale(1.05);
}

.escort-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 8, 12, 0.82));
  opacity: 0;
  transition: opacity 0.35s;
}

.escort-card:hover .escort-card__overlay {
  opacity: 1;
}

.escort-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.escort-card h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
}

.escort-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7dcda8;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(125, 205, 168, 0.12);
  border: 1px solid rgba(125, 205, 168, 0.25);
}

.escort-badge svg {
  flex-shrink: 0;
}

.escort-card .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.escort-card .meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0.65rem;
}

.escort-rating {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.escort-rating .stars {
  color: var(--accent);
}

.rating-num {
  font-weight: 600;
  color: var(--text);
}

.escort-card .btn {
  width: 100%;
}

/* Browse toolbar */
.browse-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.browse-toolbar__left,
.browse-toolbar__right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.search-wrap {
  position: relative;
  min-width: 200px;
}

.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-wrap input {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.5rem;
  margin: 0;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.browse-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.browse-count strong {
  color: var(--accent);
  font-weight: 600;
}

.nearby-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: var(--radius);
}

.nearby-bar select {
  max-width: 140px;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.nearby-bar #nearby-status {
  flex: 1;
  min-width: 160px;
  font-size: 0.88rem;
}

.escort-distance {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* City / town autocomplete (browse) */
.city-autocomplete {
  position: relative;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
}

.city-autocomplete label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.city-autocomplete-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

#city-search {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin: 0;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.city-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0.25rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  z-index: 50;
}

.city-suggestions li {
  margin: 0;
}

.city-suggestion-btn {
  display: block;
  width: 100%;
  padding: 0.55rem 0.9rem;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
  font-family: var(--font-sans);
}

.city-suggestion-btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.filters select {
  max-width: 200px;
  margin: 0;
  padding: 0.65rem 1rem;
  border-radius: 10px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 8, 12, 0.55);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(196, 30, 58, 0.18);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s var(--ease-out);
}

.modal.is-open .modal__panel {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.modal__close:hover {
  background: rgba(196, 30, 58, 0.18);
}

.modal__inner {
  padding: 1.5rem;
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.modal__grid img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.modal__grid h2 {
  font-family: var(--font);
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
}

.modal__meta {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.modal__rating {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.modal__copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

/* Forms */
.form-page {
  min-height: calc(100vh - var(--header-h));
  padding: 3rem 4vw 5rem;
  display: grid;
  place-items: start center;
}

.form-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-hover);
}

.form-card h1 {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.form-card > p.sub {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}

label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(196, 30, 58, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-actions .btn {
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  text-align: center;
}

/* Sign up — user vs escort */
.signup-role {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
}

.signup-role__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.signup-role__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.signup-role__opt span {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.signup-role__opt small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.signup-role__opt:has(input:checked) {
  border-color: rgba(196, 30, 58, 0.45);
  background: var(--accent-soft);
}

.signup-role__opt:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.signup-form--hidden {
  display: none !important;
}

@media (max-width: 520px) {
  .signup-role {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.28);
}

.price-card.featured {
  border-color: rgba(196, 30, 58, 0.45);
  box-shadow: 0 12px 48px rgba(196, 30, 58, 0.12);
}

.price-card .badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--red-deep));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.price-card .amount small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-card li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 3rem 4vw;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fff5f6 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: left;
}

.site-footer .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.disclaimer {
  font-size: 0.78rem;
  opacity: 0.9;
  max-width: 720px;
  margin: 0.75rem auto 0;
  line-height: 1.5;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid rgba(196, 30, 58, 0.28);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s, transform 0.28s;
  z-index: 600;
  pointer-events: none;
  max-width: min(400px, calc(100vw - 2rem));
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav backdrop (shown via JS when drawer open) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(26, 8, 12, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.nav-backdrop.is-visible {
  display: block;
}

@media (min-width: 769px) {
  .nav-backdrop {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__visual {
    order: -1;
    min-height: 320px;
  }

  .hero__card-stack {
    margin: 0 auto;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__card--wide {
    grid-column: span 2;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  #site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    max-width: calc(100vw - 3rem);
    background: rgba(255, 250, 251, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    padding: calc(var(--header-h) + 1rem) 1.25rem max(2rem, env(safe-area-inset-bottom)) 1.25rem;
    padding-top: max(calc(var(--header-h) + 1rem), calc(env(safe-area-inset-top) + var(--header-h) * 0.5));
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 200;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }

  #site-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .btn {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--wide {
    grid-column: span 1;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .browse-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 3rem max(1rem, env(safe-area-inset-left)) 3.5rem max(1rem, env(safe-area-inset-right));
  }

  .section--tight {
    padding-top: 2rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero {
    min-height: unset;
    padding: 2rem max(1rem, env(safe-area-inset-left)) 2.5rem max(1rem, env(safe-area-inset-right));
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero p.lead {
    font-size: 1.02rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    min-height: 260px;
  }

  .hero__card-stack {
    max-width: min(100%, 380px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stat {
    right: max(0.25rem, env(safe-area-inset-right));
    bottom: 0;
    padding: 0.75rem 1rem;
  }

  .hero__stat strong {
    font-size: 1.45rem;
  }

  .marquee span {
    font-size: 0.72rem;
  }

  .cta-band {
    margin-left: max(1rem, env(safe-area-inset-left));
    margin-right: max(1rem, env(safe-area-inset-right));
    padding: 2rem 1.25rem;
  }

  .modal {
    padding: 0 max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
    padding-top: max(0.75rem, env(safe-area-inset-top));
    place-items: end center;
  }

  .modal__panel {
    max-height: min(92vh, 100dvh);
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
    max-width: none;
  }

  .modal__inner {
    padding: 1.25rem;
  }

  .modal__grid img {
    max-height: min(50vh, 360px);
    object-fit: cover;
  }

  .escort-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .search-wrap {
    min-width: 0;
    width: 100%;
  }

  .city-autocomplete {
    max-width: none;
    width: 100%;
  }

  .nearby-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nearby-bar .btn,
  .nearby-bar select {
    width: 100%;
    max-width: none;
  }

  .filters select {
    max-width: none;
    width: 100%;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .form-page {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }

  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .toast {
    right: max(1rem, env(safe-area-inset-right));
    left: max(1rem, env(safe-area-inset-left));
    bottom: max(1rem, env(safe-area-inset-bottom));
    max-width: none;
  }

  .site-footer {
    padding: 2.5rem max(1rem, env(safe-area-inset-left)) max(2rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-right));
  }

  .faq-q {
    padding: 1rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .hero__visual {
    min-height: 220px;
  }

  .hero__float--1 {
    width: 54%;
  }

  .hero__float--2 {
    width: 48%;
    bottom: 4%;
  }

  .hero__float--3 {
    width: 34%;
    right: 28%;
    top: 36%;
  }

  .stats-strip {
    gap: 1rem;
  }

  .stat-item {
    padding: 1.25rem 0.85rem;
  }

  .prose-columns {
    grid-template-columns: 1fr;
  }

  .area-tags {
    gap: 0.4rem;
  }

  .area-tags span {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}
