﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* =====================================================================
   W ESCORTS AMSTERDAM â€” Design System
   Inspired by kingslover.com
   ===================================================================== */

/* â”€â”€ 1. Root Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Core palette */
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --bg-light: #F7F5F2;
  --cream: #FAF6F1;
  --border: #E8E4DF;
  --border-light: #F0ECE7;
  --gap-bg: #EEEBE7;

  /* Text */
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --text-light: #BBBBBB;

  /* Accent â€” champagne/gold */
  --accent: #DFCDB2;
  --accent-light: #EDE0D0;
  --accent-dark: #C4A882;
  --accent-bg: #FAF6F1;

  /* Dark */
  --dark: #1A1A1A;
  --dark-hover: #2A2A2A;
  --dark-soft: #333333;

  /* Functional */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #E53935;
  --info: #2196F3;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --header-height: 76px;
  --container-max: 1360px;
  --container-padding: 52px;
  --radius: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Legacy --rose aliases for backward compatibility */
  --rose: #DFCDB2;
  --rose-light: #EDE0D0;
  --rose-dark: #C4A882;
  --rose-bg: #FAF6F1;
}

/* â”€â”€ 2. Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-light);
  color: var(--dark);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
table { border-collapse: collapse; border-spacing: 0; }

/* â”€â”€ 3. Base Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 4vw, 46px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
h5 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-accent { color: var(--accent-dark); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}

/* â”€â”€ 4. Container / Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-lg {
  padding: 96px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 32px;
}

/* â”€â”€ 5. Topbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  font-weight: 400;
}

.topbar a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.topbar a:hover { color: var(--white); }
.topbar span { margin: 0 14px; opacity: 0.3; }

/* â”€â”€ 6. Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 28px;
}

/* Logo */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 2px;
  font-weight: 500;
}

.logo img {
  height: 44px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
header .header-inner > nav > a,
header .header-inner > nav > .nav-drop > a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 8px 14px;
  transition: color var(--duration) var(--ease);
  display: inline-block;
}

.nav a:hover,
.nav a.active,
header .header-inner > nav > a:hover,
header .header-inner > nav > .nav-drop > a:hover {
  color: var(--accent-dark);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

/* Header nav element layout (for unclassed <nav> in header) */
header .header-inner > nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  header .header-inner > nav { display: none; }
}

/* Nav dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: none;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform var(--duration) var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
  z-index: 950;
  padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
}

.nav-dropdown-menu a:hover {
  background: var(--accent-bg);
  color: var(--text-primary);
  padding-left: 24px;
}

/* Header contact buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.header-btn-primary {
  background: var(--dark);
  color: var(--accent);
}

.header-btn-primary:hover {
  background: var(--dark-hover);
  color: var(--white);
}

.header-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.header-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.header-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.header-btn-whatsapp:hover {
  background: #1DA851;
}

.header-btn-phone {
  background: var(--dark);
  color: var(--accent);
}

.header-btn-phone:hover {
  background: var(--dark-hover);
  color: var(--white);
}

.header-btn svg,
.header-btn i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background var(--duration) var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--duration) var(--ease);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 899;
  overflow-y: auto;
  padding: 24px 20px 120px;
}

.mobile-menu.open {
  display: block;
  animation: fadeInDown 0.3s var(--ease);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:hover {
  color: var(--accent-dark);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* â”€â”€ 7. Hero Section (Light) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  background: var(--white);
  text-align: center;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border-light);
}

.hero-light {
  background: var(--cream);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 em,
.hero h1 i {
  color: var(--accent-dark);
  font-style: italic;
}

.hero-lead,
.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* â”€â”€ 8. Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark);
  color: var(--accent);
}

.btn-primary:hover {
  background: var(--dark-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--accent);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  padding: 8px 0;
  letter-spacing: 0.08em;
}

.btn-ghost:hover {
  color: var(--dark);
}

.btn-ghost::after {
  content: '\2192';
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--duration) var(--ease);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 11px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* â”€â”€ 9. Filter / Sort Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  transition: box-shadow 0.3s var(--ease);
}

.filter-bar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-bar-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
  flex-shrink: 0;
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown select,
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 9px 36px 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  min-width: 160px;
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-dropdown select:hover,
.filter-select:hover {
  border-color: var(--accent);
}

.filter-dropdown select:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(223, 205, 178, 0.2);
}

.filter-sort-group {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.filter-sort-btn {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.filter-sort-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.filter-sort-btn.active {
  background: var(--dark);
  color: var(--accent);
  border-color: var(--dark);
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.filter-tag:hover {
  background: var(--accent-light);
}

.filter-tag-remove {
  font-size: 14px;
  line-height: 1;
  opacity: 0.6;
}

.filter-tag-remove:hover {
  opacity: 1;
}

.filter-results-count {
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* â”€â”€ 10. Escort Card Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.escort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0;
}

.escort-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.escort-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* â”€â”€ 11. Escort Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.escort-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.escort-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.escort-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card image */
.escort-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-light);
}

.escort-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.escort-card:hover .escort-card-img img {
  transform: scale(1.04);
}

/* AVAILABLE badge */
.escort-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--dark);
}

.escort-badge-available {
  background: var(--accent);
  color: var(--dark);
}

.escort-badge-new {
  background: var(--dark);
  color: var(--accent);
}

.escort-badge-vip {
  background: var(--accent-dark);
  color: var(--white);
}

/* Quick actions overlay */
.escort-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 1px;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--duration) var(--ease);
  z-index: 2;
}

.escort-card:hover .escort-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.escort-card-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(26, 26, 26, 0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 5px;
  transition: background var(--duration) var(--ease);
}

.escort-card-actions a:hover {
  background: var(--dark);
}

/* Card info */
.escort-card-info {
  padding: 16px;
}

.escort-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.escort-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.escort-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.escort-card-divider {
  color: var(--border);
}

.escort-card-location {
  color: var(--text-muted);
}

.escort-card-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.escort-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}

.escort-card-tag {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-bg);
  color: var(--accent-dark);
}

/* â”€â”€ 12. About / Info Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.info-strip {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-strip-item {
  text-align: center;
}

.info-strip-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 20px;
}

.info-strip-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.info-strip-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About content block */
.about-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-block h2 {
  margin-bottom: 8px;
}

.about-block p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* â”€â”€ 13. Testimonials / Trust Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials {
  background: var(--white);
  padding: 72px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-top: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-rating {
  color: var(--accent-dark);
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

/* Trust indicators */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item svg,
.trust-item i {
  color: var(--accent-dark);
  font-size: 16px;
}

/* â”€â”€ 14. Locations Tag Cloud â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.locations-cloud {
  padding: 56px 0;
  text-align: center;
}

.locations-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.location-tag:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.location-tag-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 2px;
}

/* â”€â”€ 15. CTA Banners â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  text-align: center;
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-banner-dark {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.cta-banner-dark h2 {
  color: var(--white);
}

.cta-banner-dark p {
  color: rgba(255, 255, 255, 0.6);
}

.cta-banner-dark .btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.cta-banner-dark .btn-primary:hover {
  background: var(--white);
}

/* â”€â”€ 16. FAQ Accordion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  padding: 72px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-dark);
  transition: transform var(--duration) var(--ease);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-answer-inner a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
  color: var(--dark);
}

/* â”€â”€ 17. Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* â”€â”€ 18. Mobile Sticky WhatsApp â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-whatsapp-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #25D366;
  padding: 0;
}

.mobile-whatsapp-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-whatsapp-bar svg,
.mobile-whatsapp-bar i {
  font-size: 18px;
}

/* â”€â”€ 19. Breadcrumbs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumbs {
  padding: 16px 0;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

.breadcrumbs-separator {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumbs-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* â”€â”€ 20. Page Hero (Light) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--white);
  text-align: center;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border-light);
}

.page-hero-cream {
  background: var(--cream);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  margin-bottom: 12px;
}

.page-hero-lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* â”€â”€ 21. Profile Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
}

/* Gallery (left column) */
.profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.profile-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-light);
}

.profile-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.profile-gallery-main:hover img {
  transform: scale(1.03);
}

.profile-gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-light);
}

.profile-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.profile-gallery-thumb:hover img {
  transform: scale(1.06);
}

.profile-gallery-thumb.active {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Info (right column) */
.profile-info {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.profile-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 4px;
}

.profile-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--dark);
  margin-bottom: 24px;
}

.profile-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.profile-quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.profile-quick-item {
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.profile-quick-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.profile-quick-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.profile-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.profile-description h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.profile-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.profile-service-tag {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  background: var(--accent-bg);
  color: var(--accent-dark);
  border: 1px solid var(--accent-light);
}

/* â”€â”€ 22. Profile Stats Table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-stats {
  width: 100%;
  margin-bottom: 28px;
}

.profile-stats tr {
  border-bottom: 1px solid var(--border-light);
}

.profile-stats td {
  padding: 10px 0;
  font-size: 14px;
}

.profile-stats td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  width: 40%;
}

.profile-stats td:last-child {
  color: var(--text-secondary);
}

/* Pricing table */
.profile-pricing {
  margin-bottom: 28px;
}

.profile-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.profile-pricing-duration {
  font-size: 14px;
  color: var(--text-secondary);
}

.profile-pricing-amount {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dark);
}

/* â”€â”€ 23. Photo Gallery Lightbox â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
  background: none;
  border: none;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--duration) var(--ease);
  background: none;
  border: none;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* â”€â”€ 24. Review Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reviews-section {
  padding: 48px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 28px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-rating {
  color: var(--accent-dark);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.review-escort {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
}

/* â”€â”€ 25. Blog Article Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.blog-content {
  max-width: 100%;
  overflow-wrap: break-word;
}

.blog-content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}

.blog-content h3 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.blog-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content a:hover {
  color: var(--dark);
}

.blog-content ul,
.blog-content ol {
  margin: 16px 0 24px 24px;
}

.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }

.blog-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.blog-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  font-style: italic;
  color: var(--text-secondary);
}

.blog-content img {
  width: 100%;
  margin: 24px 0;
}

.blog-content table {
  width: 100%;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.blog-content th,
.blog-content td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.blog-content th {
  background: var(--cream);
  font-weight: 600;
  color: var(--text-primary);
}

/* Blog meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.blog-featured-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 32px;
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.blog-sidebar-section {
  margin-bottom: 32px;
}

.blog-sidebar-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.blog-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-sidebar-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration) var(--ease);
}

.blog-sidebar-links a:hover {
  color: var(--accent-dark);
}

/* Blog list/grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.blog-card {
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.blog-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-light);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* â”€â”€ 26. Category / Service Page Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
  align-items: start;
}

.category-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.category-sidebar-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.category-sidebar-links {
  display: flex;
  flex-direction: column;
}

.category-sidebar-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}

.category-sidebar-links a:hover {
  color: var(--accent-dark);
  padding-left: 4px;
}

.category-sidebar-links a.active {
  color: var(--accent-dark);
  font-weight: 600;
}

.category-sidebar-count {
  font-size: 12px;
  color: var(--text-muted);
}

.category-content {
  min-width: 0;
}

.category-intro {
  margin-bottom: 32px;
}

.category-intro h1 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.category-intro p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* â”€â”€ 27. Booking Page Form Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(223, 205, 178, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-dark);
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-submit-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* â”€â”€ 28. Reveal Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* â”€â”€ 29. Utility Classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-accent { background: var(--accent-bg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }

.d-none { display: none; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.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;
}

/* â”€â”€ 30. Responsive â€” 1200px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1200px) {
  .escort-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .profile-layout {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
}

/* â”€â”€ 31. Responsive â€” 1024px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  :root {
    --container-padding: 32px;
  }

  .nav { display: none; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }

  .escort-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }

  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .category-sidebar-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .category-sidebar-links a {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-info {
    position: static;
  }
}

/* â”€â”€ 32. Responsive â€” 768px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --header-height: 64px;
  }

  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }

  .escort-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .escort-card-info {
    padding: 12px;
  }

  .escort-card-name {
    font-size: 15px;
  }

  .escort-card-meta {
    font-size: 12px;
  }

  .escort-card-actions {
    display: none;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .filter-bar-inner {
    flex-wrap: wrap;
  }

  .filter-sort-group {
    margin-left: 0;
    width: 100%;
  }

  .filter-sort-btn {
    flex: 1;
  }

  .hero { padding: 48px 0 36px; }
  .page-hero { padding: 40px 0 32px; }

  .cta-banner { padding: 48px 0; }

  .profile-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Show sticky WhatsApp bar */
  .mobile-whatsapp-bar {
    display: block;
  }

  /* Add bottom padding so content is not hidden by sticky bar */
  body {
    padding-bottom: 52px;
  }
}

/* â”€â”€ 33. Responsive â€” 480px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
  .escort-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .escort-card-info {
    padding: 10px;
  }

  .escort-card-name {
    font-size: 14px;
  }

  .escort-card-meta {
    font-size: 11px;
    gap: 4px;
  }

  .escort-badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .profile-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-quick-info {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .filter-bar-label {
    display: none;
  }

  .filter-dropdown select,
  .filter-select {
    min-width: 0;
    flex: 1;
  }

  .topbar {
    font-size: 10px;
    padding: 8px 0;
  }

  .topbar span { margin: 0 8px; }

  .page-hero-meta {
    flex-direction: column;
    gap: 4px;
  }
}

/* â”€â”€ 34. Print Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    overflow: visible;
  }

  header,
  .topbar,
  .filter-bar,
  .mobile-whatsapp-bar,
  .menu-toggle,
  .mobile-menu,
  .cta-banner,
  .lightbox-overlay {
    display: none !important;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a { text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
  a[href^="#"]::after,
  a[href^="javascript"]::after { content: ''; }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  .escort-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8pt;
  }

  .escort-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .profile-layout {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    border-top: 1px solid #ccc;
    padding-top: 12pt;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUPPLEMENTAL COMPONENTS â€” ecard aliases + page-specific patterns
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ ecard (escort card variant used on gallery + category pages) â”€â”€â”€â”€â”€â”€ */
.ecard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.ecard:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ecard a { text-decoration: none; color: inherit; display: block; }
.ecard-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-light);
}
.ecard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ecard:hover .ecard-photo img { transform: scale(1.04); }
.ecard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--dark);
}
.ecard-info { padding: 14px 16px 16px; }
.ecard-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.ecard-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}
.ecard-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
}
.ecard-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ecard-meta { font-size: 12px; color: var(--text-secondary); }
.loc-pin { width: 12px; height: 12px; flex-shrink: 0; fill: var(--accent-dark); }
.ecard-wm {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: right;
  pointer-events: none;
  z-index: 3;
}
.ecard-wm .wm-main {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.ecard-wm .wm-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* â”€â”€ Header supplemental â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tb-hide { display: inline; }
.open-pill {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-bg);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  flex-shrink: 0;
}
.book-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--dark);
  color: var(--accent);
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}
.book-btn:hover { background: var(--text-primary); color: var(--white); }
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.btn-phone { background: var(--dark); color: var(--accent); }
.btn-phone:hover { background: var(--text-primary); color: var(--white); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1DA851; }
.btn-sms { background: var(--off-white); color: var(--text-primary); border: 1px solid var(--border); }
.btn-sms:hover { border-color: var(--accent); color: var(--accent-dark); }
.m-contact-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.m-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--off-white);
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.m-contact-btn.m-book { background: #25D366; color: var(--white); border-color: #25D366; }

/* â”€â”€ Filter buttons (gallery/index) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--accent); }
.filter-btn.active { background: var(--dark); color: var(--accent); border-color: var(--dark); }
.filter-dropdown { position: relative; }
.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 900;
  display: none;
  flex-direction: column;
  padding: 6px 0;
}
.filter-dropdown.open .filter-dropdown-menu { display: flex; }
.filter-option {
  display: block;
  width: 100%;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-option:hover, .filter-option.selected { background: var(--accent-bg); color: var(--text-primary); }
.filter-count { margin-left: auto; font-size: 12px; color: var(--text-muted); flex-shrink: 0; }
.gallery-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.gallery-filters .filter-btn { padding: 6px 12px; font-size: 11px; }

/* â”€â”€ Trust strip (dark bg) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-strip {
  display: flex;
  justify-content: center;
  background: var(--dark);
  border-top: 1px solid rgba(223,205,178,0.15);
}
.trust-strip .trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
}
.trust-strip .trust-item:last-child { border-right: none; }
.trust-strip .trust-icon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 28px;
  text-align: center;
}
.trust-strip .trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.trust-strip .trust-text span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* â”€â”€ Page hero eyebrow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

/* â”€â”€ Hero contact row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}
.hero-contact a { color: var(--accent-dark); text-decoration: none; font-weight: 500; transition: color var(--duration) var(--ease); }
.hero-contact a:hover { color: var(--text-primary); }
.hero-sep { color: var(--border); }

/* â”€â”€ CTA strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-strip { background: var(--dark); padding: 64px 0; text-align: center; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.cta-strip p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* â”€â”€ About brief (homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-brief { padding: 72px 0; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.about-brief h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 300; color: var(--text-primary); margin-bottom: 20px; letter-spacing: 0.02em; }
.about-brief p { font-size: 15px; color: var(--text-secondary); max-width: 720px; margin: 0 auto 16px; line-height: 1.9; }
.trust-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 900px; margin: 40px auto 0; text-align: left; }
.trust-point { padding: 20px 24px; background: var(--white); border: 1px solid var(--border-light); }
.trust-point strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.trust-point span { font-size: 12px; color: var(--text-muted); }

/* â”€â”€ Locations strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.locations-strip { padding: 56px 0; text-align: center; }
.locations-strip h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 300; color: var(--text-primary); margin-bottom: 24px; letter-spacing: 0.02em; }
.location-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.loc-pill { display: inline-block; padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--text-secondary); background: var(--white); border: 1px solid var(--border); text-decoration: none; transition: all var(--duration) var(--ease); }
.loc-pill:hover { background: var(--accent-bg); border-color: var(--accent); color: var(--accent-dark); }

/* â”€â”€ SEO content grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.seo-content { padding: 72px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.seo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.seo-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text-primary); margin-bottom: 14px; }
.seo-block p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 12px; }

/* â”€â”€ Mobile sticky WhatsApp â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-wa { display: none; position: fixed; bottom: 16px; right: 16px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

/* â”€â”€ Nav drop (inline dropdown nav) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-drop { position: relative; display: inline-block; }
.nav-drop > a { text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-primary); padding: 8px 14px; transition: color var(--duration) var(--ease); display: inline-block; }
.nav-drop > a:hover { color: var(--accent-dark); }
.drop-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg); z-index: 950; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all var(--duration) var(--ease); padding: 8px 0; }
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 9px 20px; font-size: 13px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-secondary); text-decoration: none; transition: all var(--duration) var(--ease); }
.drop-menu a:hover { background: var(--accent-bg); color: var(--text-primary); padding-left: 24px; }
.drop-group-label { padding: 8px 20px 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

/* â”€â”€ Responsive additions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .tb-hide { display: none; }
  .open-pill { display: none; }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .seo-grid { grid-template-columns: 1fr; gap: 32px; }
  .filter-count { display: none; }
  .mobile-wa { display: flex; }
  .btn-sms { display: none; }
  .trust-strip { flex-direction: column; }
  .trust-strip .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px 24px; }
}
@media (max-width: 600px) {
  .trust-points { grid-template-columns: 1fr; }
  .hero-contact { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 900px) {
  .header-contact .btn-phone,
  .header-contact .btn-sms { display: none; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILE PAGE COMPONENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Profile 3-column grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-section {
  padding: 40px 0 64px;
  border-bottom: 1px solid var(--border);
}
.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 32px;
  align-items: start;
}

/* Stats column */
.stats-col {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.stars {
  display: flex;
  gap: 2px;
}
.star, .rev-star {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}
.reviews-btn {
  font-size: 12px;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.reviews-btn:hover { text-decoration: underline; }
.profile-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.profile-loc svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-dark);
  flex-shrink: 0;
}
.sdiv {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.stat-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}
.stat-value a {
  color: var(--accent-dark);
  text-decoration: none;
}
.stat-value a:hover { text-decoration: underline; }
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.cbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  text-align: center;
}
.cbtn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.cbtn-wa { background: #25D366; color: var(--white); }
.cbtn-wa:hover { background: #1DA851; }
.cbtn-book { background: var(--dark); color: var(--accent); }
.cbtn-book:hover { background: var(--text-primary); color: var(--white); }

/* Photo slider column */
.photo-col {}
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 2 / 3;
}
.slides {
  display: flex;
  transition: transform 0.4s var(--ease);
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(26,26,26,0.6);
  color: var(--white);
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
  z-index: 5;
}
.s-btn:hover { background: rgba(26,26,26,0.9); }
.s-prev { left: 8px; }
.s-next { right: 8px; }
.s-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  padding: 0;
  min-height: unset;
}
.sdot.active { background: var(--accent-dark); }

/* Rates column */
.rates-col {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.rates-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 13px;
}
.rates-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.rates-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.rates-table td:last-child {
  font-weight: 600;
  color: var(--accent-dark);
  text-align: right;
}
.cats-label, .locs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 16px 0 8px;
}
.cats-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.cat-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  background: var(--accent-bg);
  border: 1px solid var(--accent);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}
.cat-tag:hover { background: var(--accent); color: var(--dark); }
.loc-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--duration) var(--ease);
}
.loc-link svg { width: 12px; height: 12px; fill: var(--accent-dark); flex-shrink: 0; }
.loc-link:hover { color: var(--accent-dark); }

/* Bio section */
.bio-section { padding: 56px 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
.bio-inner { max-width: 820px; }
.bio-h {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.bio-p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 18px;
}
.bio-p a { color: var(--accent-dark); text-decoration: none; }
.bio-p a:hover { text-decoration: underline; }

/* Gallery grid (mini) */
.gal-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.gal-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gal-thumb {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-light);
}
.gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}
.gal-thumb:hover img { transform: scale(1.05); }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.lb img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
.lb-x, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.lb-x:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-x { top: 16px; right: 16px; width: 44px; height: 44px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lb-count { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 12px; color: rgba(255,255,255,0.5); }

/* Reviews */
.rev-section { padding: 56px 0; background: var(--off-white); }
.rev-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.rev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rev-card { padding: 24px; background: var(--white); border: 1px solid var(--border-light); }
.rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-init { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--accent-dark); }
.rev-type { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.rev-title { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.rev-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.rev-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 10px; }
.rev-by { font-size: 12px; color: var(--text-muted); font-style: italic; }

/* Related section */
.related-section { padding: 56px 0; border-top: 1px solid var(--border); }
.related-h { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: var(--text-primary); margin-bottom: 24px; }

/* Profile breadcrumb nav */
.profile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.profile-nav a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--duration) var(--ease);
}
.profile-nav a:hover { color: var(--accent-dark); }

/* â”€â”€ Profile responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .profile-grid { grid-template-columns: 220px 1fr 240px; gap: 24px; }
}
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .photo-col { order: -1; grid-column: 1 / -1; }
  .stats-col { position: static; }
  .rates-col { position: static; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .profile-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-btns { flex-direction: row; }
  .cbtn { flex: 1; padding: 10px 12px; font-size: 12px; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CRITICAL CSS FIXES â€” missing class definitions
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Utility / reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.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;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
  background: var(--dark);
  color: var(--accent);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  width: auto;
  height: auto;
}

/* Reveal animation delay helpers */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* â”€â”€ Mobile toggle button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.25s var(--ease);
}
.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  align-self: flex-end;
  margin-bottom: 8px;
}

/* â”€â”€ Hero title (index.html) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

/* â”€â”€ Page title + page lead (subpage heroes) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.page-title em { color: var(--accent-dark); font-style: italic; }
.page-lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* â”€â”€ Section label (eyebrow above section titles) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-label span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-bg);
  border: 1px solid var(--accent);
}

/* â”€â”€ Gallery section wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery {
  padding: 32px 0 56px;
}

/* â”€â”€ Breadcrumb â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb {
  padding: 14px 0;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  background: var(--off-white);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb strong { color: var(--text-primary); font-weight: 500; }

/* â”€â”€ FAQ accordion â€” HTML class names used in pages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration) var(--ease);
  font-family: var(--font-body);
}
.faq-q:hover { color: var(--accent-dark); }
.faq-q-text {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--accent-dark);
  transition: transform var(--duration) var(--ease);
  margin-left: 12px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-ans { max-height: 800px; }
.faq-ans-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.faq-ans-inner a { color: var(--accent-dark); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 1100px;
}

/* â”€â”€ Footer column classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-brand {
  grid-column: 1;
}
.f-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.f-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--duration) var(--ease);
  width: fit-content;
}
.footer-wa:hover { background: #1DA851; }
.footer-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-contact-info > a:not(.footer-wa) {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.footer-contact-info > a:not(.footer-wa):hover { color: var(--accent); }
.footer-col {
  /* column in footer grid */
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  display: block;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  display: block;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-legal {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,0.25);
  max-width: 800px;
}
.footer-legal strong { color: rgba(255,255,255,0.45); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* â”€â”€ Filter dropdown: open state fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* JS toggles .open on .filter-dropdown, not .filter-dropdown-menu */
.filter-dropdown.open .filter-dropdown-menu { display: flex; }
/* remove the old incorrect rule */

/* â”€â”€ Nav drop open state (for keyboard nav) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* â”€â”€ Marquee â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

/* â”€â”€ Blog / article inline style backups â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* These are also defined inline in each blog page but aliased here for safety */
.article-hero {
  padding: 60px 0 52px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.article-cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}
.article-date, .article-dot, .post-updated {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.article-title em { font-style: italic; color: var(--accent-dark); }
.article-intro {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.9;
}
.article-body {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.article-inner { max-width: 780px; }
.article-inner p { font-size: 15px; color: var(--text-secondary); line-height: 1.95; margin-bottom: 22px; }
.article-inner h2 { font-family: var(--font-display); font-size: 30px; font-weight: 300; color: var(--text-primary); margin: 48px 0 16px; }
.article-inner h2 em { font-style: italic; color: var(--accent-dark); }
.article-inner strong { color: var(--text-primary); font-weight: 500; }
.article-inner a { color: var(--accent-dark); text-decoration: none; }
.article-inner a:hover { text-decoration: underline; }
.article-inner blockquote { border-left: 2px solid var(--accent); padding: 16px 24px; margin: 32px 0; background: var(--accent-bg); }
.article-inner blockquote p { color: var(--text-primary); font-style: italic; font-size: 16px; margin: 0; }
.post-hero-img { width: 100%; max-height: 520px; object-fit: cover; object-position: center top; display: block; }
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.post-author { font-size: 12px; color: var(--text-muted); }
.post-faq { padding: 56px 0; background: var(--off-white); }
.faq-heading { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 300; margin-bottom: 32px; color: var(--text-primary); }
.faq-q-static { font-family: var(--font-body); font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--text-primary); }
.faq-a-static { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.static { border-bottom: 1px solid var(--border); padding-bottom: 24px; }

/* â”€â”€ Profile extra classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  padding: 56px 0;
  background: var(--dark);
  text-align: center;
}
.cta-pre {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all var(--duration) var(--ease);
}
.btn-out:hover { border-color: var(--accent); color: var(--accent); }
.other-section { padding: 56px 0; border-top: 1px solid var(--border); }
.other-h { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: 24px; color: var(--text-primary); }
.leave-section { padding: 56px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.leave-h { font-family: var(--font-display); font-size: 22px; font-weight: 300; margin-bottom: 24px; color: var(--text-primary); }
.review-form { display: flex; flex-direction: column; gap: 14px; max-width: 600px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea, .field select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--duration) var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-dark); }
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--dark);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  width: fit-content;
}
.submit-btn:hover { background: var(--text-primary); color: var(--white); }
.r-star { width: 14px; height: 14px; fill: var(--accent); }
.rating-row { display: flex; gap: 3px; margin-bottom: 8px; }
.breadcrumb-nav { display: flex; gap: 6px; align-items: center; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb-nav a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--accent-dark); }

/* â”€â”€ Responsive for newly added classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .faq-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-col-title { margin-bottom: 10px; }
  .hero-title { font-size: clamp(26px, 7vw, 48px); }
  .page-title { font-size: clamp(26px, 7vw, 44px); }
}

/* â”€â”€ Footer logo aliases (for pages using logo-main/logo-sub in footer) â”€ */
footer .logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 2px;
}
footer .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

/* â”€â”€ Footer h4 column headers (about.html, blog, etc.) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  display: block;
}
footer ul li a:hover { color: var(--accent); }

/* â”€â”€ About page sidebar card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sidebar-card-title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* â”€â”€ page-hero section (about, services, etc.) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--accent-dark); font-style: italic; }
.page-hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
}

/* â”€â”€ mobile-wa floating button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-wa {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
@media (max-width: 768px) {
  .mobile-wa { display: block; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS FIX ROUND 2 â€” location cards, btn-accent, seo-inner, seo-intro
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ btn-accent (champagne gold filled button) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark);
}

/* â”€â”€ Gallery wrap + header (location pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-wrap {
  padding: 48px 0 64px;
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.gallery-header h2 em { font-style: italic; color: var(--accent-dark); }

/* â”€â”€ SEO inner + intro â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.seo-inner {
  max-width: 860px;
}
.seo-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 32px;
}
.seo-intro em { color: var(--text-primary); font-style: italic; }

/* â”€â”€ Other locations section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.other-locations {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.other-locations h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* â”€â”€ Location card grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .loc-grid { grid-template-columns: 1fr 1fr; }
}

.loc-card {
  display: block;
  padding: 20px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  position: relative;
}
.loc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.loc-ecard-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}
.loc-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.loc-card-arrow {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  color: var(--accent-dark);
  transition: transform var(--duration) var(--ease);
}
.loc-card:hover .loc-card-arrow {
  transform: translateX(4px);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS PATCH ROUND 3 â€” fixes from 10-agent audit
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ massage.html services grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 32px 0;
}
.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--accent-dark);
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}
.service-link {
  margin-top: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.service-link::after { content: ' â†’'; transition: padding var(--duration) var(--ease); }
.service-card:hover .service-link::after { padding-left: 6px; }

/* â”€â”€ partners.html sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partners-section { padding: 56px 0; }
.partner-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.partner-banner-link {
  display: block;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.partner-banner-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.partner-banner-link img { width: 100%; height: auto; display: block; }
.how-section {
  padding: 56px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.how-step {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
}
.how-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.contact-section { padding: 56px 0; }
.contact-box {
  padding: 40px 36px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.contact-box h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent);
  color: var(--dark);
  transition: all var(--duration) var(--ease);
}
.contact-btn:hover { background: var(--accent-light); }
.contact-email { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 14px; }
.section-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 18px;
}

/* â”€â”€ about.html sidebar card + grid primitives â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-content { padding: 48px 0 60px; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 28px 0 12px;
}
.about-body p { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 16px; }
.about-body a { color: var(--accent-dark); }
.sidebar-card {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
}

/* â”€â”€ blog related-articles section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-articles {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.related-articles h2,
.related-articles h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.related-card {
  display: block;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.related-card-cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

/* â”€â”€ location/index.html â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.locations-section { padding: 56px 0; }
.loc-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* â”€â”€ homepage cosmetic .ecard-age + .filter-dropdown-trigger â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ecard-age {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.filter-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}



/* ═══════════════════════════════════════════════════════════════════════
   NEON QUARTER DESIGN SYSTEM — applied site-wide
   Extracted from preview/neon-quarter.html
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0F0F1A;
  --bg-2: #1A1A2E;
  --text: #FFFFFF;
  --text-2: rgba(255,255,255,0.7);
  --text-3: rgba(255,255,255,0.45);
  --magenta: #FF1A6B;
  --cyan: #00E5FF;
  --sodium: #FFB800;
  --neon-green: #00FF88;
  --wa: #25D366;
  --border: rgba(255,255,255,0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Aliases for legacy variable names */
  --white: #1A1A2E;
  --off-white: #1A1A2E;
  --bg-light: #14142A;
  --border-light: rgba(255,255,255,0.05);
  --gap-bg: #0A0A14;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.45);
  --accent: #FF1A6B;
  --accent-light: #FF4D8E;
  --accent-dark: #D90F5A;
  --accent-bg: rgba(255,26,107,0.08);
  --accent-2: #00E5FF;
  --accent-3: #FFB800;
  --dark: #0F0F1A;
  --rose: #FF1A6B;
  --rose-light: #FF4D8E;
  --rose-dark: #D90F5A;
  --rose-bg: rgba(255,26,107,0.08);
}

/* ---------- Base ---------- */
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Ambient radial pulses */
body::before, body::after {
  content: '';
  position: fixed;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  animation: neon-pulse 14s ease-in-out infinite alternate;
}
body::before {
  background: radial-gradient(circle, var(--magenta) 0%, transparent 60%);
  top: -25vw;
  left: -20vw;
}
body::after {
  background: radial-gradient(circle, var(--cyan) 0%, transparent 60%);
  bottom: -25vw;
  right: -20vw;
  animation-delay: -7s;
}
@keyframes neon-pulse {
  from { opacity: 0.06; transform: scale(1); }
  to   { opacity: 0.12; transform: scale(1.15); }
}
body > * { position: relative; z-index: 1; }

a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
}
.eyebrow.cyan { color: var(--cyan); }

/* ---------- Topbar / Header ---------- */
.topbar {
  background: #08080F;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar a { color: rgba(255,255,255,0.7); }
.topbar a:hover { color: var(--magenta); }
.topbar span { opacity: 0.4; }

header,
.site-header {
  background: rgba(15,15,26,0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
header.scrolled,
.site-header.scrolled {
  background: rgba(15,15,26,0.95);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.wordmark .w-mark {
  color: var(--magenta);
  text-shadow: 0 0 14px rgba(255,26,107,0.55);
  font-style: italic;
}
.wordmark .small {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-3);
  margin-left: 6px;
  font-weight: 500;
}
.logo-main { color: #FFFFFF; }
.logo-sub {
  color: var(--magenta);
  letter-spacing: 0.28em;
  text-shadow: 0 0 12px rgba(255,26,107,0.4);
}

/* ---------- Nav ---------- */
.nav a,
header .header-inner > nav > a,
header .header-inner > nav > .nav-drop > a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.6,.2,.2,1);
}
.nav a:hover,
.nav a.active,
header .header-inner > nav > a:hover,
header .header-inner > nav > .nav-drop > a:hover {
  color: var(--text);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.drop-menu,
.nav-dropdown-menu {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.drop-menu a,
.nav-dropdown-menu a { color: var(--text-2); }
.drop-menu a:hover,
.nav-dropdown-menu a:hover {
  background: rgba(255,26,107,0.1);
  color: #FFFFFF;
}
.drop-group-label { color: rgba(255,255,255,0.4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s ease;
  font-family: var(--sans);
  text-transform: uppercase;
}
.btn-primary,
.book-btn {
  background: var(--magenta);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(255,26,107,0.35);
}
.btn-primary:hover,
.book-btn:hover {
  background: #ff3380;
  box-shadow: 0 0 32px rgba(255,26,107,0.6);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 22px rgba(0,229,255,0.25);
}
.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.3);
}
.btn-accent {
  background: var(--magenta);
  color: #FFFFFF;
  border-color: var(--magenta);
  box-shadow: 0 4px 20px rgba(255,26,107,0.4);
}
.btn-accent:hover {
  background: #ff3380;
  border-color: #ff3380;
  box-shadow: 0 0 32px rgba(255,26,107,0.6);
}
.btn-wa,
.btn-whatsapp {
  background: var(--wa);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover,
.btn-whatsapp:hover {
  background: #1ebe5a;
  box-shadow: 0 0 28px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}
.btn-wa svg { width: 16px; height: 16px; }
.btn-glow { box-shadow: 0 0 32px rgba(255,26,107,0.6); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,26,107,0.25) 0%, transparent 45%, rgba(0,229,255,0.25) 100%),
    linear-gradient(to bottom, rgba(15,15,26,0.45) 0%, rgba(15,15,26,0.55) 50%, rgba(15,15,26,0.95) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15,15,26,0.7) 100%);
  z-index: 1;
}
.scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,26,0.45) 0%, rgba(15,15,26,0.55) 50%, rgba(15,15,26,0.95) 100%);
  pointer-events: none;
}
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15,15,26,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
}
.hero h1,
.hero-title,
.page-title,
h1 {
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(255,26,107,0.4);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em,
.hero-title em,
.page-title em,
h1 em {
  font-style: italic;
  color: #FFFFFF;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero p.sub {
  font-size: 18px;
  color: #f4ecd9;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn { padding: 16px 28px; font-size: 13px; }

.hero-meta {
  position: absolute;
  right: 32px;
  bottom: 48px;
  z-index: 3;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.8;
}
.hero-meta strong {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.gradient-text,
.glow-text {
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.glow-text { text-shadow: 0 0 24px rgba(255,26,107,0.45); }

/* ---------- Page hero / section heads ---------- */
.page-hero {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 { color: #FFFFFF; }
.page-hero h1 em { color: var(--magenta); }
.page-hero-lead,
.page-hero-eyebrow,
.page-lead {
  color: var(--text-2);
}

.section-label {
  color: var(--magenta);
  text-shadow: 0 0 12px rgba(255,26,107,0.3);
}
.section-label span {
  background: rgba(255,26,107,0.1);
  border: 1px solid var(--magenta);
  color: var(--magenta);
}
.section-title { color: #FFFFFF; }
.section-head h2,
.h2-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}
.section-head h2 { margin-top: 12px; max-width: 720px; }
.section-head h2 em,
.h2-title em {
  font-style: italic;
  color: var(--magenta);
  text-shadow: 0 0 18px rgba(255,26,107,0.35);
}

section.block { padding: 100px 0; position: relative; z-index: 2; }

/* ---------- Marquee ---------- */
.marquee,
.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 4;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: neon-scroll 32s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee-item .dot,
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sodium);
  box-shadow: 0 0 8px var(--sodium);
  display: inline-block;
  -webkit-text-fill-color: var(--sodium);
}
@keyframes neon-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Filter / Chip (+ aliases) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 14px;
  background: rgba(26,26,46,0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  align-items: center;
}
.chip,
.filter-btn,
.cat-tag,
.loc-link {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .25s ease;
}
.chip:hover,
.filter-btn:hover,
.cat-tag:hover,
.loc-link:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.chip.active,
.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  background: var(--magenta);
  color: #FFFFFF;
  border-color: var(--magenta);
  box-shadow: 0 0 18px rgba(255,26,107,0.45);
}
.filter-label { color: rgba(255,255,255,0.5); }
.filter-count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-right: 12px;
}
.filter-count strong { color: var(--cyan); font-weight: 600; }
.filter-dropdown-menu {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.filter-option { color: rgba(255,255,255,0.75); }
.filter-option:hover {
  background: rgba(255,26,107,0.1);
  color: #FFFFFF;
}

/* ---------- Grid + Card (with .ecard aliases) ---------- */
.grid,
.escort-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) {
  .grid,
  .escort-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .grid,
  .escort-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .grid,
  .escort-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.card,
.ecard {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.6,.2,.2,1);
  cursor: pointer;
}
.card:hover,
.ecard:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(255,26,107,0.5);
  transform: translateY(-4px);
}
.card-img,
.ecard-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a14;
}
.card-img img,
.ecard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.6,.2,.2,1), filter .35s ease;
  filter: saturate(0.95) contrast(1.02);
}
.card:hover .card-img img,
.ecard:hover .ecard-photo img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.05);
}
.card-img::after,
.ecard-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,15,26,0.85) 100%);
  pointer-events: none;
}

.badge,
.ecard-badge,
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--neon-green);
  color: #052b15;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0,255,136,0.55);
}
.badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #052b15;
  animation: neon-blink 1.4s ease-in-out infinite;
}
@keyframes neon-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.badge.neutral {
  background: rgba(255,255,255,0.08);
  color: var(--text-2);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.badge.neutral .pulse { background: var(--text-3); animation: none; }

.card-body,
.ecard-info {
  padding: 18px 18px 20px;
  position: relative;
  z-index: 2;
  background: transparent;
}
.card-name,
.ecard-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: #FFFFFF;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.card-name .age,
.age,
.ecard-age {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.card-loc,
.ecard-loc {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-loc::before,
.ecard-loc::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-price,
.ecard-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255,26,107,0.35);
}
.card-price .small,
.small,
.ecard-meta {
  color: var(--text-3);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.card-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: gap .25s ease;
}
.card:hover .card-cta { gap: 10px; color: #FFFFFF; }
.ecard-wm,
.ecard-wm span,
.pwm,
.pwm-sub {
  color: rgba(255,255,255,0.25);
}

/* ---------- Service / Location / Related cards ---------- */
.service-card,
.loc-card,
.related-card,
.rev-card,
.review-card,
.partner-banner-link,
.how-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all .35s ease;
}
.service-card:hover,
.loc-card:hover,
.related-card:hover,
.partner-banner-link:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(255,26,107,0.25);
}
.service-name,
.loc-ecard-name,
.loc-card-name,
.related-card h3,
.rev-title,
.review-title,
.how-title { color: #FFFFFF; }
.service-desc,
.loc-card-desc,
.how-body { color: var(--text-2); }
.service-num,
.how-num,
.related-card-cat { color: var(--magenta); }
.service-link,
.loc-card-arrow { color: var(--cyan); }

/* ---------- Booking band ---------- */
.band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0B20 0%, #0F0F1A 50%, #061a24 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,26,107,0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(0,229,255,0.22) 0%, transparent 50%);
  pointer-events: none;
}
.band .wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.band h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 26px;
  text-shadow: 0 0 30px rgba(255,26,107,0.35);
}
.band h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.band p {
  color: var(--text-2);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 38px;
  font-weight: 300;
}
.band .btn { padding: 18px 36px; font-size: 14px; }

.band-ornament,
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}
.band-ornament span,
.ornament span {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta));
  box-shadow: 0 0 6px var(--magenta);
}
.band-ornament span:last-child,
.ornament span:last-child {
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 6px var(--cyan);
}
.band-ornament i,
.ornament i {
  width: 6px; height: 6px;
  background: var(--sodium);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--sodium);
}

/* ---------- CTA banners ---------- */
.cta-banner,
.cta-banner-dark,
.cta-section,
.contact-box {
  background: linear-gradient(135deg, rgba(255,26,107,0.12), rgba(0,229,255,0.12)), var(--bg-2);
  border: 1px solid rgba(255,26,107,0.3);
}
.cta-banner h2,
.cta-banner-dark h2,
.cta-h,
.contact-box h2 {
  color: #FFFFFF;
  text-shadow: 0 0 24px rgba(255,26,107,0.3);
}
.cta-banner p,
.cta-banner-dark p,
.cta-sub { color: rgba(255,255,255,0.75); }
.cta-pre { color: var(--magenta); }
.contact-btn {
  background: var(--magenta);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255,26,107,0.35);
}
.contact-btn:hover {
  background: #ff3380;
  box-shadow: 0 0 32px rgba(255,26,107,0.6);
}
.contact-email { color: rgba(255,255,255,0.55); }

/* ---------- Trust / Breadcrumb ---------- */
.trust-strip {
  background: rgba(15,15,26,0.6);
  border-color: var(--border);
}
.trust-strip .trust-text strong { color: #FFFFFF; }
.trust-strip .trust-text span { color: rgba(255,255,255,0.55); }
.trust-strip .trust-icon,
.trust-item svg,
.trust-item i { color: var(--magenta); }
.trust-item { border-color: var(--border); }

.breadcrumb {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb,
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb strong { color: #FFFFFF; }

/* ---------- FAQ / SEO / Article ---------- */
.faq { border-top: 1px solid var(--border); }
.faq h2,
.faq-heading,
.faq-q,
.faq-q-text { color: #FFFFFF; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q:hover { color: var(--magenta); }
.faq-toggle { color: var(--magenta); }
.faq-item.open .faq-q,
.faq-item.open .faq-q-text { color: var(--magenta); }
.faq-ans-inner { color: rgba(255,255,255,0.65); }
.faq-ans-inner a { color: var(--cyan); }

.seo-content {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.seo-block h3 { color: #FFFFFF; }
.seo-block p { color: rgba(255,255,255,0.65); }
.seo-block a { color: var(--cyan); }
.seo-intro { color: var(--text-2); }
.seo-intro em { color: #FFFFFF; }

.article-hero {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.article-title { color: #FFFFFF; }
.article-title em { color: var(--magenta); }
.article-cat { color: var(--magenta); }
.article-date, .article-dot, .post-updated,
.post-meta, .post-author { color: rgba(255,255,255,0.5); }
.article-intro { color: var(--text-2); }
.article-inner p { color: rgba(255,255,255,0.75); }
.article-inner h2 { color: #FFFFFF; }
.article-inner h2 em { color: var(--magenta); }
.article-inner strong { color: #FFFFFF; }
.article-inner a { color: var(--cyan); }
.article-inner blockquote {
  border-left-color: var(--magenta);
  background: rgba(255,26,107,0.08);
}
.article-inner blockquote p { color: #FFFFFF; font-style: italic; }
.article-body { border-bottom: 1px solid rgba(255,255,255,0.06); }
.post-faq,
.related-articles { background: rgba(255,255,255,0.02); }

/* ---------- Profile / Reviews / Gallery ---------- */
.profile-grid,
.profile-section,
.bio-section,
.gal-section,
.gal-grid { background: transparent; }
.profile-name { color: #FFFFFF; }
.profile-tagline { color: var(--magenta); }
.profile-loc { color: rgba(255,255,255,0.6); }
.stat-row { border-color: var(--border); }
.stat-label { color: rgba(255,255,255,0.5); }
.stat-value { color: #FFFFFF; }
.rates-table { background: rgba(255,255,255,0.03); }
.rates-table th { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1); }
.rates-table td { color: #FFFFFF; border-color: rgba(255,255,255,0.06); }
.rates-title,
.gal-h,
.rev-h,
.reviews-heading,
.other-h,
.leave-h { color: #FFFFFF; }
.other-h em { color: var(--magenta); }
.cats-label, .locs-label { color: rgba(255,255,255,0.5); }
.cbtn-wa {
  background: var(--wa);
  color: #FFFFFF;
}
.cbtn-book {
  background: var(--magenta);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255,26,107,0.35);
}
.cbtn-book:hover { box-shadow: 0 0 32px rgba(255,26,107,0.6); }
.bio-p { color: rgba(255,255,255,0.75); }
.bio-p strong { color: #FFFFFF; }
.bio-p a { color: var(--cyan); }
.s-btn {
  background: rgba(15,15,26,0.7);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.15);
}
.s-btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}
.sdot { background: rgba(255,255,255,0.3); }
.sdot.active { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.gal-thumb { background: var(--bg); }
.rev-section,
.leave-section { background: rgba(255,255,255,0.02); }
.leave-section { border-color: rgba(255,255,255,0.06); }
.rev-stars, .star-rating, .r-star,
.r-star.on { color: var(--sodium); }
.rev-byline { color: rgba(255,255,255,0.5); }

/* ---------- Sidebar / Forms ---------- */
.sidebar-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
}
.sidebar-card-title { color: rgba(255,255,255,0.5); }

input, textarea, select {
  background: rgba(255,255,255,0.04) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--magenta) !important;
  box-shadow: 0 0 0 3px rgba(255,26,107,0.15) !important;
  outline: none !important;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
.field label { color: rgba(255,255,255,0.5); }
.submit-btn {
  background: var(--magenta);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255,26,107,0.35);
}
.submit-btn:hover {
  background: #ff3380;
  box-shadow: 0 0 32px rgba(255,26,107,0.6);
}

/* ---------- About / Partners ---------- */
.about-content { background: transparent; }
.about-body h2 { color: #FFFFFF; }
.about-body p { color: var(--text-2); }
.about-body a { color: var(--cyan); }
.how-section {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}
.section-lead { color: var(--text-2); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  background: var(--bg);
  border-left: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a {
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--magenta); }
.mobile-toggle span { background: #FFFFFF; }
.mobile-close { color: #FFFFFF; }
.mobile-wa {
  background: var(--wa);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

/* ---------- Footer ---------- */
footer {
  background: #08080F;
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-brand .wordmark { font-size: 28px; margin-bottom: 18px; display: inline-flex; }
.foot-brand p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}
.foot-col h4,
.footer-heading,
.footer-col-title,
footer h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
  font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a,
.footer-links a,
.footer-col ul li a,
footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color .2s ease;
}
.foot-col a:hover,
.footer-links a:hover,
.footer-col ul li a:hover,
footer ul li a:hover { color: var(--magenta); }
.foot-bottom,
.footer-bottom,
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--magenta); }
.footer-bottom-links { color: rgba(255,255,255,0.4); }
.footer-wa {
  background: var(--wa);
  color: #FFFFFF;
}
.footer-wa:hover { background: #1ebe5a; }
.footer-contact-info > a:not(.footer-wa) { color: rgba(255,255,255,0.4); }
.footer-contact-info > a:not(.footer-wa):hover { color: var(--magenta); }
.footer-copy { color: rgba(255,255,255,0.35); }
footer .logo-main,
.f-logo-main { color: #FFFFFF; }
footer .logo-sub,
.f-logo-sub { color: var(--magenta); }
.footer-brand p { color: rgba(255,255,255,0.45); }

/* ---------- Skip / selection / focus ---------- */
.skip-link {
  background: var(--bg);
  color: var(--magenta);
}
::selection { background: rgba(255,26,107,0.4); color: #FFFFFF; }
::-moz-selection { background: rgba(255,26,107,0.4); color: #FFFFFF; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--magenta) !important;
  outline-offset: 3px;
}

/* ---------- Gallery / other-locations ---------- */
.gallery-header h2 { color: #FFFFFF; }
.gallery-header h2 em { color: var(--magenta); }
.gallery,
.locations-section { background: transparent; }
.other-locations,
.other-locations h2 {
  background: rgba(255,255,255,0.02);
  color: #FFFFFF;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid,
  .escort-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .hero-meta { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .marquee-item { font-size: 17px; gap: 40px; }
  .marquee-track { gap: 40px; }
  .band { padding: 80px 0; }
  section.block { padding: 70px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO-PROFILE — smaller hero variant for inner pages (escort profiles)
   ═══════════════════════════════════════════════════════════════════════ */
.hero.hero-profile {
  min-height: 70vh;
  height: auto;
}
.hero.hero-profile .hero-bg img {
  object-position: center 25%;
}
.hero.hero-profile .hero-content {
  padding: 80px 0 60px;
}
.hero.hero-profile .hero-title {
  font-size: clamp(36px, 6vw, 72px);
}
.hero.hero-profile .hero-sub {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 12px 0 28px;
}
.hero.hero-profile .hero-ctas {
  margin-top: 24px;
}

/* btn-glow alias for primary CTA */
.btn-glow,
.btn-primary.btn-glow {
  background: var(--magenta, #FF1A6B);
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(255,26,107,0.4);
  transition: all 0.25s;
}
.btn-glow:hover {
  background: #FF4D8E;
  box-shadow: 0 0 36px rgba(255,26,107,0.7);
  transform: translateY(-1px);
}

/* hero-eyebrow dot */
.hero-eyebrow .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FF88;
  box-shadow: 0 0 12px #00FF88;
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px #00FF88; }
  50% { opacity: 0.6; box-shadow: 0 0 20px #00FF88; }
}


.hero.hero-subpage {
  min-height: 60vh;
  height: auto;
}
.hero.hero-subpage .hero-content {
  padding: 60px 0 50px;
}
.hero.hero-subpage .hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
}
.hero.hero-subpage .hero-sub {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 12px 0 28px;
  max-width: 720px;
}

/* Marquee on profile pages should also work */
.hero.hero-profile + .marquee,
.hero.hero-subpage + .marquee {
  margin-top: 0;
}

/* hero-sub variant for hero-profile too if missed */
.hero-sub {
  font-family: var(--sans, 'Inter', sans-serif);
  color: rgba(255,255,255,0.7);
}

/* Make sure profile page sections below hero have proper dark bg */
.profile-section,
.bio-section,
.gal-section,
.rev-section,
.other-section,
.leave-section,
.cta-section {
  background: transparent;
}

/* Profile-grid 3-col stays the same but with neon styling on each col */
.stats-col,
.photo-col,
.rates-col {
  background: rgba(255,255,255,0.02);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}
.photo-col { background: transparent; border: none; padding: 0; }
.slider-wrap { border: 1px solid rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════════════
   NEON HARD FIX — override all stray light backgrounds from legacy CSS
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --white: #1A1A2E;
  --off-white: #14142A;
  --bg-light: #0F0F1A;
  --bg-2: #1A1A2E;
}

/* Restore #FFFFFF for the few classes that need WHITE TEXT */
.btn-primary,
.btn-secondary,
.btn-accent,
.btn-wa,
.btn-whatsapp,
.cbtn-wa,
.cbtn-book,
.contact-btn,
.book-btn,
.submit-btn,
.footer-wa,
.btn-glow,
.mobile-wa,
.bg-dark,
.bg-dark *,
.cta-banner-dark h2,
.cta-banner-dark p,
.cta-banner h2,
.cta-banner p,
.cta-h,
.cta-sub,
.hero-title,
.hero-sub,
.profile-name,
.section-title,
.gradient-text,
.ecard-badge,
.trust-strip .trust-text strong,
.footer-wa svg,
.btn-glow svg,
.cbtn-wa svg,
.btn-wa svg {
  color: #FFFFFF;
}

/* Restore white text for hero/btns even when nested */
.hero *,
.hero-content *,
.cta-banner-dark *,
.contact-box *,
.cta-section *,
footer .btn,
footer .btn * {
  color: inherit;
}

/* Hero title cascade fix */
.hero-title { color: #FFFFFF !important; }
.hero-title em { color: #FF1A6B !important; }
.hero-sub { color: rgba(255,255,255,0.75) !important; }

/* Force dark card backgrounds with !important to win against legacy specificity */
section.profile-section,
section.bio-section,
section.gal-section,
section.rev-section,
section.other-section,
section.leave-section,
section.cta-section { background: transparent !important; }

.rev-card,
.rev-grid > *,
.review-card,
.related-card { background: #1A1A2E !important; color: #FFFFFF; }
.rev-card *,
.review-card * { color: rgba(255,255,255,0.85); }
.rev-card .rev-text,
.rev-card .rev-title,
.rev-card .rev-by { color: rgba(255,255,255,0.85); }
.rev-card .rev-title { color: #FFFFFF; font-weight: 600; }

/* Loc-pill on dark */
.loc-pill {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.loc-pill:hover {
  background: rgba(255,26,107,0.1) !important;
  color: #FFFFFF !important;
  border-color: #FF1A6B !important;
}

/* Filter btn override (final) */
.filter-btn {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.1);
}

/* Phone btn -> all WhatsApp green */
.btn-phone { background: #25D366; color: #FFFFFF; }

/* Ensure all input/textarea/select on the dark theme have visible borders */
input, textarea, select {
  background: rgba(255,255,255,0.04);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.12);
}

/* Photo slider wrap dark frame */
.slider-wrap,
.photo-slider {
  background: #0F0F1A;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Stats column subtle dark */
.stats-col {
  background: rgba(255,255,255,0.02);
}
.rates-col {
  background: rgba(255,255,255,0.02);
}

/* Profile name text fix */
.profile-name { color: #FFFFFF !important; }
.profile-loc { color: rgba(255,255,255,0.65) !important; }
.profile-tagline { color: #FF1A6B !important; }

/* Bio paragraph readable */
.bio-p,
.article-inner p,
.about-body p {
  color: rgba(255,255,255,0.78) !important;
}
.bio-h,
.bio-heading,
.gal-h,
.rev-h,
.other-h,
.leave-h,
.cta-h {
  color: #FFFFFF !important;
}

/* Cat tag on dark */
.cat-tag {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.cat-tag:hover {
  border-color: #FF1A6B !important;
  color: #FFFFFF !important;
  background: rgba(255,26,107,0.1) !important;
}


/* ═══ MISSING SLIDER + STATS CSS (from 30-agent audit) ═══ */
.photo-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0F0F1A;
  border: 1px solid rgba(255,255,255,0.1);
}
.photo-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.photo-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}
.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.slider-btn:hover {
  background: #FF1A6B;
  border-color: #FF1A6B;
  box-shadow: 0 0 20px rgba(255,26,107,0.5);
}
.slider-btn.s-prev { left: 12px; }
.slider-btn.s-next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.stats-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 16px 0;
}
.profile-location-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 12px 0;
}
.profile-location-line svg {
  width: 14px;
  height: 14px;
  fill: #FF1A6B;
  flex-shrink: 0;
}
.btn-wa-p {
  background: #25D366 !important;
  color: #FFFFFF !important;
}
.btn-wa-p:hover { background: #1ebe5a !important; }
.btn-book-p {
  background: #FF1A6B !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(255,26,107,0.35);
}
.btn-book-p:hover { box-shadow: 0 0 32px rgba(255,26,107,0.6); }
.cats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* Bio layout for profile.html template */
.bio-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 60px 0;
}
.bio-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
}
.bio-heading {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .bio-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Section-head layout (homepage) */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head > p {
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Hide hero-meta earlier on tablet to avoid CTA overlap */
@media (max-width: 900px) {
  .hero-meta { display: none; }
}

/* FAQ h2 consistency */
.faq h2,
.faq-heading {
  font-family: var(--serif, 'Playfair Display', serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: #FFFFFF;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}

/* ═══ FOOTER FIX — disable global 44px min-height on text links ═══ */
footer ul li a,
.breadcrumb a,
.breadcrumb-nav a,
.nav a,
header nav a,
header nav a,
.drop-menu a,
.nav-dropdown-menu a,
.mobile-menu a,
.footer-bottom a,
.footer-bottom-links a,
.faq-ans-inner a,
.bio-p a,
.article-inner a,
.about-body a,
.topbar a,
.tb-hide a,
.cats-wrap a,
.locs-list a,
p a,
li a,
td a,
small a,
.footer-contact-info > a:not(.footer-wa) {
  min-height: 0 !important;
  height: auto;
}

/* ═══ SVG sizing in ALL buttons (was rendering huge in CTA + footer) ═══ */
.btn svg,
.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.btn-accent svg,
.btn-glow svg,
.btn-wa svg,
.btn-whatsapp svg,
.btn-out svg,
.cta-actions a svg,
.footer-wa svg,
.contact-btn svg,
.mobile-wa svg,
.book-btn svg,
.cbtn svg,
.cbtn-wa svg,
.cbtn-book svg,
.submit-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* All button anchors are flex inline so icon + text align */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-accent,
.btn-glow,
.btn-wa,
.btn-whatsapp,
.btn-out,
.cta-actions a,
.footer-wa,
.contact-btn,
.mobile-wa,
.book-btn,
.cbtn,
.cbtn-wa,
.cbtn-book,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* Footer guaranteed dark — use highest specificity */
body footer[role="contentinfo"],
body footer {
  background: #08080F !important;
  color: rgba(255,255,255,0.6);
}
body footer * {
  color: inherit;
}
body footer .footer-col-title,
body footer h4,
body footer .footer-heading {
  color: rgba(255,255,255,0.5) !important;
}
body footer .f-logo-main,
body footer .logo-main {
  color: #FFFFFF !important;
}
body footer .f-logo-sub,
body footer .logo-sub {
  color: var(--magenta, #FF1A6B) !important;
}
body footer ul li a,
body footer .footer-links a {
  color: rgba(255,255,255,0.55) !important;
}
body footer ul li a:hover,
body footer .footer-links a:hover {
  color: var(--magenta, #FF1A6B) !important;
}
body footer .footer-wa {
  background: #25D366 !important;
  color: #FFFFFF !important;
}
body footer .footer-wa:hover {
  background: #1ebe5a !important;
}
body footer p {
  color: rgba(255,255,255,0.45);
}

/* ═══ HEADER DROPDOWN FIX — ensure dropdowns are never clipped ═══ */
header,
header *,
.site-header,
.site-header *,
.header-inner,
.nav,
header nav,
.nav-drop {
  overflow: visible !important;
}
.drop-menu,
.nav-dropdown-menu {
  z-index: 9999 !important;
  position: absolute !important;
}
/* When header is sticky, the dropdown should still escape it */
header { overflow: visible !important; }

/* ═══ FORCE thin marquee + centered content overrides ═══ */
.marquee,
.marquee-wrap {
  padding: 6px 0 !important;
}
.marquee-item {
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
}
.marquee-track {
  gap: 32px !important;
}
.marquee-dot,
.marquee-item .dot {
  width: 4px !important;
  height: 4px !important;
}
@media (max-width: 640px) {
  .marquee-item { font-size: 11px !important; }
}

/* Hero content centered properly */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-ctas {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Section-head centered */
.section-head {
  text-align: center;
  justify-content: center !important;
  align-items: center !important;
}
.section-head > div { text-align: center; }
.section-head > p { 
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Make sure container content is centered */
.container {
  margin-left: auto;
  margin-right: auto;
}
