/* ==========================================================================
   Suchita JI ? Luxury Design System
   Palette: Pure/Warm White ? Charcoal #111 ? Champagne Gold ? Soft Beige
   Type: Cormorant Garamond (display) + Manrope (body)
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-warm: #f9f7f4;
  --bg-soft: #f1ede6;
  --bg-dark: #0e0e0e;
  --bg-footer: #080808;

  /* Ink */
  --text: #161616;
  --text-muted: #6a6560;
  --text-light: #f8f5f0;
  --text-on-dark: #d8d2c8;

  /* Metal */
  --gold: #c4a574;
  --gold-light: #dfc7a4;
  --gold-deep: #9a7b4f;
  --beige: #ebe4d8;
  --warm-gray: #8c877f;

  /* Lines & depth ? quieter = more expensive */
  --border: rgba(14, 14, 14, 0.06);
  --border-gold: rgba(196, 165, 116, 0.32);
  --shadow-sm: 0 2px 12px rgba(14, 14, 14, 0.03);
  --shadow-md: 0 16px 48px rgba(14, 14, 14, 0.06);
  --shadow-lg: 0 32px 80px rgba(14, 14, 14, 0.09);
  --shadow-lift: 0 20px 50px rgba(14, 14, 14, 0.1);

  /* Geometry ? hairline luxury, not soft UI */
  --radius: 2px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Spacing scale (8pt) */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 1.0625rem;
  --text-lg: 1.125rem;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-body: 1.8;

  --header-h: 88px;
  --container: min(1180px, calc(100% - 4rem));
  --measure: 62ch;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --transition: 0.45s var(--ease);
  --transition-fast: 0.25s var(--ease-soft);
  --duration-reveal: 0.9s;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body,
h1,
h2,
h3,
h4,
ul,
p,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--bg-dark);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p + p {
  margin-top: 1rem;
}

.text-area h1,
.text-area h2,
.text-area h3 {
  padding-bottom: 0.75rem;
  text-transform: none;
  line-height: 1.25;
  background: none;
  -webkit-text-fill-color: unset;
}

strong {
  font-weight: 600;
  color: var(--bg-dark);
}

/* Layout */
.container {
  width: var(--container);
  margin-inline: auto;
}

.sec-padd {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.sec-padd-sm {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.items-center {
  align-items: center;
}

.col-4-8 {
  grid-template-columns: minmax(240px, 0.9fr) 1.4fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.col-2 {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: left;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.cta-group--hero { margin-top: 1.5rem; }
.cta-group--center { justify-content: center; margin-bottom: 2.5rem; }
.section-head--spaced { margin-top: 3rem; }
.prose-center { max-width: 70ch; margin-inline: auto; }
.prose-wide { margin: 3rem auto 0; max-width: 75ch; }
.eyebrow--on-dark { color: var(--gold) !important; }
.heading-on-dark { color: #fff !important; }
.link-on-dark { color: var(--gold-light) !important; }
.link-on-dark:hover { color: var(--gold) !important; }
.footer-legal { border: 0 !important; padding-bottom: 1.5rem !important; }
.gallery-more { margin-top: 2rem; }
.bg-dark .section-head p a { color: var(--gold-light); }
.bg-dark .section-head a { color: var(--gold-light); }
.bg-dark .section-head a:hover { color: var(--gold); }
/* Lazy image placeholder reduces perceived CLS */
img.lazyload { background: var(--bg-soft); }
img.lazyloaded { background: transparent; }
/* Content images keep reserved space */
.intro-media img,
.profile img,
.gallery-item img {
  content-visibility: auto;
}
/* Link card lists */
.link-card ul { margin-top: 0.75rem; padding-left: 1.1rem; list-style: disc; }
.link-card ul li { margin-bottom: 0.45rem; color: var(--text-muted); list-style: disc; }
/* Contact form labels */
.form-card label { display:block; font-size:0.75rem; letter-spacing:0.08em; text-transform:uppercase; font-weight:600; color:var(--warm-gray); margin:0 0 0.4rem; }
.map-cta { margin-top: 0.75rem; }

.petternBg {
  background: var(--bg-warm) !important;
}

.petternBg img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.boady-overlay {
  display: none;
}

.boady-overlay.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Header ? sticky glass
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.menu-wrwpper,
header:not(.site-header) {
  /* legacy wrapper support */
}

nav {
  width: 100%;
  height: var(--header-h);
  background: transparent;
  border-bottom: none;
}

nav .navbar {
  max-width: 1200px;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.brand a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bg-dark);
  letter-spacing: 0.02em;
}

.brand a:hover {
  color: var(--gold-deep);
}

.brand span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

nav .navbar .bx-menu,
nav .navbar .nav-links .side-bar-logo .logo-name,
nav .navbar .nav-links .side-bar-logo .menu-close,
nav .navbar .ham-ico {
  display: none;
}

nav .navbar .logo,
nav .navbar .nav-links .links {
  display: flex;
  align-items: center;
}

nav .navbar .nav-links {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav .navbar .nav-links .links {
  gap: 0.15rem;
}

nav .navbar .nav-links .links li {
  list-style: none;
  position: relative;
  padding: 0 0.35rem;
}

nav .navbar .nav-links .links li a {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  position: relative;
  display: inline-block;
}

nav .navbar .nav-links .links li a::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.15rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

nav .navbar .nav-links .links li a:hover,
nav .navbar .nav-links .links li a[aria-current="page"] {
  color: var(--gold-deep);
  text-shadow: none;
}

nav .navbar .nav-links .links li a:hover::after,
nav .navbar .nav-links .links li a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--bg-dark);
  color: var(--text-light) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--bg-dark);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: transparent;
  color: var(--bg-dark) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bg-dark);
  position: relative;
  transition: var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bg-dark);
  border-color: var(--bg-dark);
}

.btn-outline:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: var(--gold-light);
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.btn-whatsapp {
  background: #111111;
  color: var(--text-light);
  border-color: var(--gold);
}

.btn-whatsapp:hover {
  background: var(--gold-deep);
  color: #fff;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero .desk {
  display: block;
}

.hero .mob {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.25) 0%, rgba(17, 17, 17, 0.55) 45%, rgba(17, 17, 17, 0.88) 100%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.55) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
  color: var(--text-light);
  max-width: 720px;
  margin-left: max(1.5rem, calc((100% - min(1140px, calc(100% - 3rem))) / 2));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.hero-brand span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.hero h1,
.hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--beige);
  line-height: 1.35;
  max-width: 28ch;
  background: none;
  -webkit-text-fill-color: unset;
  text-transform: none;
}

.hero-lead {
  margin-top: 1rem;
  color: rgba(247, 244, 239, 0.78);
  font-size: 1rem;
  max-width: 42ch;
  line-height: 1.7;
}

/* Legacy banner support ? upgraded look */
.banner {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
  background: var(--bg-dark);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.75));
  pointer-events: none;
}

.banner img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
}

.mob {
  display: none !important;
}

.page-hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.page-hero--media {
  min-height: min(56vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: var(--bg-dark);
}

.page-hero--media::before {
  display: none;
}

.page-hero--media .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--media .hero-media picture,
.page-hero--media .hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.page-hero--media .hero-overlay {
  z-index: 1;
}

.page-hero--media .container {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.75rem, 6vw, 4.5rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 149, 108, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(232, 223, 210, 0.06), transparent 40%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  max-width: 18ch;
}

.page-hero p {
  color: var(--text-on-dark);
  max-width: 52ch;
  margin-top: 1rem;
  opacity: 0.85;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.25rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb [aria-current="page"] {
  color: var(--beige);
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
}

/* ==========================================================================
   Cards / Profiles
   ========================================================================== */
.escorts-profile {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.profile {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.profile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.profile img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.profile:hover img {
  transform: scale(1.04);
}

.escorts-name {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.escorts-name span {
  display: block;
  font-size: 1.05rem;
  font-family: var(--font-display);
  text-align: center;
  padding: 0.85rem 0.5rem;
  color: var(--bg-dark);
  letter-spacing: 0.04em;
}

/* Feature / trust cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature-card h3 {
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 1.5rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition);
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(184, 149, 108, 0.25), transparent 60%);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: #fff;
}

.location-card span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.location-card small {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.35rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffefb 0%, var(--bg-warm) 100%);
  box-shadow: var(--shadow-md);
}

.price-card .badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184, 149, 108, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.price-card h3 {
  margin-bottom: 0.5rem;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--bg-dark);
  margin: 1rem 0 0.35rem;
}

.price-card .amount small {
  font-size: 1rem;
  color: var(--warm-gray);
}

.price-card .desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

table tr td {
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  padding: 1rem 1.25rem;
  color: var(--text);
}

table tr:last-child td {
  border-bottom: none;
}

table tr td:first-child {
  font-weight: 600;
  color: var(--bg-dark);
  width: 40%;
}

table tr:hover td {
  background: var(--bg-warm);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bg-dark);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "?";
}

.faq-item .faq-answer {
  padding: 0 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

/* Section headers */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.75rem;
}

.section-head .eyebrow {
  color: var(--gold-deep);
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--text-muted);
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-soft {
  background: var(--bg-soft);
}

.bg-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.bg-dark h2,
.bg-dark h3 {
  color: #fff;
}

.bg-dark p {
  color: var(--text-on-dark);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
  border: none;
}

/* Content prose */
.prose {
  max-width: 70ch;
}

.prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
}

.prose a {
  border-bottom: 1px solid var(--border-gold);
}

.intro-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Gallery masonry */
.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(17, 17, 17, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 12, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius);
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.form-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.form-filed,
.form-text,
.form-card input,
.form-card textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-filed,
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
  height: auto;
  min-height: 52px;
}

.form-text,
.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-filed:focus,
.form-text:focus,
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.15);
  outline: none;
}

input[type="Submit"],
.form-card button[type="submit"],
.btn-submit {
  background: var(--bg-dark);
  color: #fff;
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  width: 100%;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
}

input[type="Submit"]:hover,
.form-card button[type="submit"]:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.map-placeholder {
  min-height: 280px;
  background:
    linear-gradient(135deg, var(--bg-soft), var(--beige)),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(17, 17, 17, 0.03) 20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.map-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

/* Link cards */
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.link-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.link-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.link-card h3 {
  margin-bottom: 0.5rem;
}

.code-box {
  width: 100%;
  min-height: 80px;
  padding: 1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  background: var(--bg-warm);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  color: var(--text);
  resize: vertical;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 2rem auto 0;
  padding-left: 1.75rem;
  border-left: 1px solid var(--border-gold);
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 108, 0.2);
}

.timeline-item h3 {
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.25rem;
}

.value-item h3 {
  margin: 0.75rem 0 0.5rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Poster */
.poster {
  overflow: hidden;
}

.poster img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* WhatsApp legacy */
.whatsapp {
  background: var(--bg-dark);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
}

.whatsapp img {
  width: auto;
  margin-right: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer,
footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  clear: both;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand:hover {
  color: var(--gold-light);
}

.site-footer p,
footer p {
  color: rgba(232, 226, 216, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer h3,
.site-footer h4,
footer h3,
footer h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  background: none;
  -webkit-text-fill-color: unset;
  text-transform: none;
}

.site-footer ul li,
footer ul li {
  float: none;
  margin-bottom: 0.55rem;
}

.site-footer ul li a,
footer ul li a {
  color: rgba(232, 226, 216, 0.72);
  font-size: 0.9rem;
  margin-right: 0;
  transition: color var(--transition), padding-left var(--transition);
}

.site-footer ul li a:hover,
footer ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: rgba(232, 226, 216, 0.72);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 149, 108, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(232, 226, 216, 0.65);
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* Legacy footer floats */
.md-6 {
  width: auto;
  float: none;
  padding: 0;
}

footer .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cp-ryt {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-ryt p {
  font-size: 0.85rem;
  margin: 0.35rem 0;
}

/* Float CTA ? premium paired contact buttons */
.float {
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  z-index: 999;
  display: grid;
  gap: 0.7rem;
}

.float a,
.float-btn {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.94);
  border: 1px solid rgba(196, 165, 116, 0.55);
  box-shadow:
    0 4px 16px rgba(14, 14, 14, 0.18),
    0 12px 28px rgba(14, 14, 14, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  text-decoration: none;
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    color 0.4s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.float-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.float-btn--call {
  color: var(--gold-light);
}

.float-btn--whatsapp {
  color: #25d366;
}

.float a:hover,
.float a:focus-visible,
.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-4px) scale(1.05);
  background: var(--bg-dark);
  border-color: var(--gold);
  box-shadow:
    0 8px 24px rgba(14, 14, 14, 0.22),
    0 18px 40px rgba(196, 165, 116, 0.16);
  outline: none;
}

.float a:hover .float-icon,
.float a:focus-visible .float-icon {
  transform: scale(1.06);
}

.float-btn--call:hover,
.float-btn--call:focus-visible {
  color: var(--gold);
}

.float-btn--whatsapp:hover,
.float-btn--whatsapp:focus-visible {
  color: #5ef08a;
  border-color: rgba(37, 211, 102, 0.55);
}

.float a:active {
  transform: translateY(-1px) scale(1.02);
}

#toTopBtn {
  position: fixed;
  bottom: 1.25rem;
  left: 1rem;
  z-index: 98;
  color: var(--bg-dark);
  font-size: 1.1rem;
  font-weight: 600;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

#toTopBtn.is-visible {
  display: inline-flex;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* Staggered reveals keep inline transition-delay from JS */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    animation: none !important;
    transform: none !important;
  }
}

/* Ensure picture fills absolute hero frame */
.hero-media picture {
  position: absolute;
  inset: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .escorts-profile {
    grid-template-columns: repeat(4, 1fr);
  }

  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 991px) {
  .col-4-8 {
    grid-template-columns: 1fr;
  }

  .col-4-8 .intro-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .feature-grid,
  .testimonial-grid,
  .pricing-grid,
  .pricing-grid-4,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle,
  nav .navbar .ham-ico {
    display: inline-flex;
  }

  nav .navbar .ham-ico {
    width: 28px;
    height: auto;
    cursor: pointer;
  }

  nav .navbar {
    justify-content: space-between;
    padding: 0;
  }

  nav .navbar .nav-links {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 320px;
    width: 82%;
    height: 100vh;
    background: #fff;
    padding: 0;
    line-height: 1.5;
    transform: translateX(-105%);
    transition: transform 0.4s var(--ease);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  nav .navbar .nav-links.is-open {
    transform: translateX(0);
  }

  /* legacy left style from JS */
  nav .navbar .nav-links[style*="left: 0"],
  nav .navbar .nav-links[style*="left:0"] {
    transform: translateX(0);
    left: 0 !important;
  }

  nav .navbar .nav-links .side-bar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  nav .navbar .nav-links .side-bar-logo .logo-name a {
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 1.5rem;
  }

  nav .navbar .nav-links .side-bar-logo .menu-close,
  nav .navbar .nav-links .side-bar-logo img {
    display: block;
    width: 22px;
    cursor: pointer;
  }

  nav .navbar .nav-links .links {
    display: block;
    margin-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  nav .navbar .nav-links .links li {
    padding: 0;
    border-bottom: 1px solid var(--border);
  }

  nav .navbar .nav-links .links li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }

  nav .navbar .nav-links .links li a::after {
    display: none;
  }

  nav .navbar img.ham-ico,
  nav .navbar .menu-close {
    display: block;
  }

  .desk {
    display: none !important;
  }

  .mob,
  .hero .mob {
    display: block !important;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1.5rem;
  }

  .banner img {
    height: min(70vh, 520px);
  }

  .text-area h1,
  .text-area h2,
  .text-area h3 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    line-height: 1.25;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 68px;
    --container: calc(100% - 2rem);
  }

  .escorts-profile {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .feature-grid,
  .testimonial-grid,
  .pricing-grid,
  .pricing-grid-4,
  .values-grid,
  .location-grid,
  .link-cards,
  .col-2,
  footer .row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0.5rem;
  }

  .md-6 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nowcalling .lcol,
  .nowcalling .rcol {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .hero-brand {
    font-size: 2.5rem;
  }

  .float a,
  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-icon {
    width: 20px;
    height: 20px;
  }
}

/* Bottom call bar (legacy) */
.nowcalling {
  display: none;
}

.lcol,
.rcol {
  float: left;
  width: 50%;
}

.lcol a,
.rcol a {
  display: block;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

.lcol {
  background-color: var(--bg-dark);
}

.rcol {
  background-color: var(--gold-deep);
}

.cat-box {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.cat-box .col {
  background: var(--bg-soft);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.cat-box .col h2 {
  color: var(--bg-dark);
  background: none;
  -webkit-text-fill-color: unset;
  text-align: center;
}

.category {
  background: var(--bg-warm);
}

.blure {
  background: none !important;
}

.social {
  display: flex;
  margin-top: 1.5rem;
  padding: 0;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 108, 0.15);
  width: 42px;
  height: 42px;
  margin-right: 0.75rem;
  border-radius: 50%;
}

.select-option {
  background: rgba(17, 17, 17, 0.72);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 90px;
  left: 4rem;
  width: 30%;
  border: 1px solid var(--border-gold);
  z-index: 3;
}

.select-option label {
  color: #fff;
  font-weight: 600;
  margin-right: 5px;
  margin-bottom: 0;
}

.select-option select {
  background: #fff;
  padding: 9px 10px;
  border-radius: 4px;
  border: none;
  width: 45%;
}

/* ==========================================================================
   CREATIVE DIRECTION LAYER ? International Luxury Elevation
   Spacing, type rhythm, quieter cards, world-class hero/footer/CTA
   ========================================================================== */

body {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  letter-spacing: 0.01em;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 40%, #ffffff 100%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  letter-spacing: -0.015em;
  font-weight: 500;
}

h1 { font-size: clamp(2.35rem, 4.2vw, 3.65rem); line-height: var(--leading-tight); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.75rem); line-height: var(--leading-snug); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

.container { width: var(--container); }

.sec-padd {
  padding: clamp(4.5rem, 9vw, var(--space-8)) 0;
}

.sec-padd-sm {
  padding: clamp(3rem, 6vw, var(--space-7)) 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: var(--space-3);
}

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  font-weight: 500;
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: 2.25rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-head .eyebrow {
  display: inline-block;
}

.section-head .eyebrow::before {
  display: none;
}

.section-head .eyebrow {
  padding-left: 0;
}

.divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-4) auto;
  opacity: 0.9;
}

/* Header ? quieter glass, more air */
.site-header {
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border-bottom: 1px solid rgba(14, 14, 14, 0.04);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(14, 14, 14, 0.04), 0 12px 40px rgba(14, 14, 14, 0.03);
}

nav { height: var(--header-h); }

.brand {
  gap: 0.15rem;
}

a.brand,
.brand {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--bg-dark);
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.brand span {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--gold-deep);
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
}

nav .navbar .nav-links .links li a {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  color: rgba(22, 22, 22, 0.72);
}

nav .navbar .nav-links .links li a::after {
  height: 1px;
  bottom: 0.2rem;
  background: var(--gold-deep);
}

.header-cta {
  padding: 0.8rem 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  border-radius: var(--radius);
  background: var(--bg-dark);
}

.header-cta:hover {
  background: transparent;
  border-color: var(--gold-deep);
  color: var(--bg-dark) !important;
}

/* Buttons ? no cheap gradients */
.btn {
  padding: 1.05rem 2.1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  border-radius: var(--radius);
  min-height: 52px;
}

.btn-gold {
  background: var(--gold);
  color: #0e0e0e;
  border-color: var(--gold);
  box-shadow: none;
}

.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-outline-light:hover {
  transform: translateY(-2px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.cta-group {
  gap: 1rem;
  margin-top: var(--space-5);
}

/* Hero ? editorial, full-bleed, brand-first */
.hero {
  min-height: min(100vh, 920px);
  min-height: 100svh;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.35) 35%, rgba(8, 8, 8, 0.82) 100%),
    linear-gradient(105deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.12) 55%, transparent 75%);
}

.hero-content {
  max-width: 680px;
  padding: 0 0 clamp(4.5rem, 10vw, 7.5rem);
  margin-left: max(2rem, calc((100% - min(1180px, calc(100% - 4rem))) / 2));
}

.hero-brand {
  font-size: clamp(3.25rem, 8vw, 5.75rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  line-height: 0.92;
}

.hero-brand span {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  opacity: 0.95;
}

.hero-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 1.35rem;
  border: none;
  opacity: 0.85;
}

.hero .hero-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(235, 228, 216, 0.92);
  max-width: 26ch;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin-top: 1.15rem;
  font-size: 0.95rem;
  max-width: 36ch;
  color: rgba(247, 244, 239, 0.68);
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.hero-content .cta-group {
  margin-top: 2.25rem;
}

/* Page heroes ? quieter, more gallery-like */
.page-hero {
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: #0a0a0a;
}

.page-hero::before {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(196, 165, 116, 0.14), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35));
}

.page-hero h1 {
  max-width: 16ch;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 1.35rem;
  font-size: 1.02rem;
  max-width: 42ch;
  opacity: 0.75;
}

.breadcrumb {
  margin-bottom: 1.75rem;
}

.breadcrumb ol {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Profiles ? framed like editorial portraits */
.escorts-profile {
  gap: 1.35rem 1.15rem;
}

.profile {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.profile:hover {
  transform: translateY(-8px);
  box-shadow: none;
  border-color: transparent;
}

.profile > img,
.profile a img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.profile {
  display: flex;
  flex-direction: column;
}

.profile img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.profile:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow-lift);
}

.escorts-name {
  background: transparent;
  border: none;
  padding-top: 0.85rem;
}

.escorts-name span {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0;
  color: var(--bg-dark);
}

/* Feature cards ? editorial, not SaaS */
.feature-grid {
  gap: 1.75rem;
}

.feature-card {
  padding: 2.5rem 2rem 2.25rem;
  border: none;
  border-top: 1px solid var(--border-gold);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.45);
}

.feature-card .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Location cards ? destination plaques */
.location-grid {
  gap: 0.85rem;
}

.location-card {
  min-height: 180px;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, #1a1814 0%, #0e0e0e 100%);
  border: 1px solid rgba(196, 165, 116, 0.12);
}

.location-card::before {
  background: linear-gradient(145deg, rgba(196, 165, 116, 0.18), transparent 55%);
}

.location-card:hover {
  border-color: rgba(196, 165, 116, 0.45);
  transform: translateY(-5px);
}

.location-card span {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.location-card small {
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* Pricing ? quieter luxury */
.price-card {
  padding: 2.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: none;
  background: var(--bg);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.price-card.featured {
  background: #fbf9f6;
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.price-card .amount {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price-card .badge {
  border-radius: var(--radius);
  letter-spacing: 0.2em;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-deep);
}

/* Testimonials ? quote-led */
.testimonial {
  padding: 2.5rem 2rem;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-gold);
  border-radius: 0;
}

.testimonial p {
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial cite {
  letter-spacing: 0.18em;
  margin-top: 1.5rem;
}

/* FAQ */
.faq-item summary {
  font-size: 1.35rem;
  padding: 1.5rem 2.5rem 1.5rem 0;
  letter-spacing: -0.01em;
}

.faq-item {
  border-bottom-color: rgba(14, 14, 14, 0.08);
}

/* Forms */
.form-card {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.form-filed,
.form-text,
.form-card input,
.form-card textarea {
  background: var(--bg-warm);
  border: none;
  border-bottom: 1px solid rgba(14, 14, 14, 0.12);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
}

.form-filed:focus,
.form-text:focus,
.form-card input:focus,
.form-card textarea:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
  background: #fff;
}

/* Gallery */
.gallery-masonry {
  column-gap: 1.15rem;
}

.gallery-item {
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover::after {
  background: rgba(14, 14, 14, 0.2);
}

.intro-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 165, 116, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

/* Link cards */
.link-card {
  padding: 2.25rem;
  border: none;
  border-top: 1px solid var(--border-gold);
  border-radius: 0;
  background: transparent;
}

.link-card:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--gold);
}

/* Footer ? memorable editorial close */
.site-footer,
footer {
  padding: clamp(5rem, 10vw, 7.5rem) 0 0;
  background:
    linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
  position: relative;
}

.site-footer::before,
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 4rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.45), transparent);
}

.footer-brand {
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.15rem;
}

.footer-grid {
  gap: 3rem 2.5rem;
  padding-bottom: 3.5rem;
}

.site-footer h3,
footer h3 {
  font-size: 0.6875rem !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-light) !important;
  margin-bottom: 1.5rem;
}

.site-footer ul li a,
footer ul li a {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.footer-bottom {
  padding: 1.65rem 0;
  border-top-color: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-color: rgba(196, 165, 116, 0.28);
  font-family: var(--font-display);
  font-size: 1rem;
}

/* Dark CTA bands */
.bg-dark {
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(196, 165, 116, 0.08), transparent 50%),
    #0e0e0e;
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-soft {
  background: linear-gradient(180deg, var(--bg-soft), #f7f4ef);
}

.petternBg {
  background:
    linear-gradient(180deg, var(--bg-warm) 0%, #f7f4ef 100%) !important;
}

/* Reveal ? slower, more cinematic */
.reveal {
  transform: translateY(36px);
  transition: opacity var(--duration-reveal) var(--ease), transform var(--duration-reveal) var(--ease);
}

/* Float CTAs ? quieter metal (paired with base .float-btn) */
.float a,
.float-btn {
  width: 54px;
  height: 54px;
}

#toTopBtn {
  background: var(--beige);
  color: var(--bg-dark);
  width: 46px;
  height: 46px;
  font-size: 0.95rem;
}

/* Location page identity accents */
body.city-sikkim .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(160, 190, 200, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.1), transparent 50%);
}
body.city-mizoram .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(120, 160, 130, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.1), transparent 50%);
}
body.city-manipur .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(180, 120, 120, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.1), transparent 50%);
}
body.city-kerala .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(90, 140, 120, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.12), transparent 50%);
}
body.city-visakhapatnam .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(100, 150, 190, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.1), transparent 50%);
}
body.city-ooty .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(140, 160, 120, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.12), transparent 50%);
}
body.city-nashik .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(150, 100, 130, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.1), transparent 50%);
}
body.city-raipur .page-hero::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(190, 140, 90, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196, 165, 116, 0.12), transparent 50%);
}

body.city-sikkim .eyebrow--on-dark,
body.city-mizoram .eyebrow--on-dark,
body.city-manipur .eyebrow--on-dark,
body.city-kerala .eyebrow--on-dark,
body.city-visakhapatnam .eyebrow--on-dark,
body.city-ooty .eyebrow--on-dark,
body.city-nashik .eyebrow--on-dark,
body.city-raipur .eyebrow--on-dark {
  letter-spacing: 0.28em;
}

/* Prose rhythm */
.prose,
.prose-wide,
.prose-center {
  max-width: var(--measure);
}

.prose p,
.text-area p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(22, 22, 22, 0.82);
}

.text-area h2,
.prose h2 {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.col-4-8 {
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

/* Poster cinematic crop */
.poster img {
  max-height: 380px;
  filter: contrast(1.02) saturate(0.92);
}

/* Table luxury */
table {
  box-shadow: none;
  border: 1px solid var(--border);
}

table tr td {
  padding: 1.15rem 1.35rem;
  font-size: 0.95rem;
}

/* Map */
.map-placeholder {
  min-height: 320px;
  border: none;
  box-shadow: var(--shadow-sm);
  background:
    linear-gradient(145deg, #f3efe8, #ebe4d8);
}

@media (max-width: 991px) {
  :root {
    --header-h: 72px;
    --container: calc(100% - 2.5rem);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1.25rem;
    text-align: left;
  }

  .hero-brand {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
  }

  .feature-card {
    border-top: 1px solid var(--border-gold);
    padding: 2rem 0.25rem;
  }

  .eyebrow {
    padding-left: 0;
  }

  .eyebrow::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .sec-padd {
    padding: clamp(3.5rem, 12vw, 5rem) 0;
  }

  .location-card {
    min-height: 140px;
  }

  .btn {
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
  }
}

/* Pass 2 ? finishing craft */
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light) !important;
  margin: 0 0 1rem !important;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.site-footer .footer-grid > div:first-child > p:not(.footer-tagline) {
  max-width: 32ch;
}

.page-hero .eyebrow {
  padding-left: 0;
}

.page-hero .eyebrow::before {
  display: none;
}

.hero-content .btn-outline-light {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.04);
}

.hero-content .btn-gold {
  box-shadow: 0 8px 32px rgba(196, 165, 116, 0.25);
}

.hero-content .btn-gold:hover {
  box-shadow: 0 12px 40px rgba(196, 165, 116, 0.35);
}

/* Quieter section alternating rhythm */
main > section.sec-padd + section.sec-padd.bg-warm,
main > section.bg-warm + section.sec-padd:not(.bg-dark):not(.bg-soft) {
  position: relative;
}

/* Price card featured crown line */
.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.timeline-item::before {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(196, 165, 116, 0.15);
}

.values-grid .value-item {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border-gold);
}

.value-item h3 {
  font-size: 1.4rem;
}

/* Contact conversion emphasis */
.contact-layout .cta-group .btn-primary {
  min-width: 200px;
}

/* Selection color ? brand metal */
::selection {
  background: rgba(196, 165, 116, 0.28);
  color: #0e0e0e;
}

/* Image framing polish */
.profile img {
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.94) contrast(1.02);
}

.profile:hover img {
  filter: saturate(1) contrast(1.04);
}

.gallery-item img {
  transition: transform 0.85s var(--ease);
}

/* Header brand hover */
a.brand:hover {
  color: var(--bg-dark);
  opacity: 0.85;
}

a.brand:hover span {
  color: var(--gold);
}

.related-links { display:flex; flex-wrap:wrap; gap:0.75rem 1.25rem; justify-content:center; margin-top:2rem; padding-top:1.5rem; border-top:1px solid rgba(14,14,14,0.06); }
.related-links a { font-size:0.75rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:500; }
.hub-note { font-size:0.95rem; color:var(--text-muted); margin-top:1rem; }

/* ==========================================================================
   FINAL AWARDS POLISH ? pixel craft, hover discipline, responsive finesse
   ========================================================================== */

/* Optical type tuning */
h1, h2, h3, h4 {
  text-wrap: balance;
}

.hero-brand {
  text-wrap: balance;
}

.hero .hero-title {
  font-weight: 400;
  font-variation-settings: normal;
}

.section-head {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  text-wrap: balance;
}

/* Remove unfinished button ripple (never wired) ? replace with clean inset wash */
.btn::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn-outline::after,
.btn-outline-light::after {
  background: linear-gradient(180deg, rgba(196, 165, 116, 0.12), transparent 60%);
}

/* Hover only on real pointers ? no sticky lift on touch */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-outline-light:hover,
  .btn-gold:hover {
    transform: translateY(-2px);
  }

  .profile:hover {
    transform: translateY(-8px);
  }

  .location-card:hover {
    transform: translateY(-5px);
  }

  .price-card:hover {
    transform: translateY(-6px);
  }

  .gallery-item:hover img {
    transform: scale(1.04);
  }

  nav .navbar .nav-links .links li a:hover {
    color: var(--bg-dark);
  }
}

@media (hover: none) {
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-outline-light:hover,
  .btn-gold:hover,
  .profile:hover,
  .location-card:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Header ? one-pixel perfection */
.site-header {
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

nav .navbar {
  gap: 2rem;
}

nav .navbar .nav-links .links {
  gap: 0.1rem;
}

nav .navbar .nav-links .links li a {
  transition: color 0.35s var(--ease);
}

nav .navbar .nav-links .links li a::after {
  transition: transform 0.45s var(--ease);
}

.header-cta {
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Hero ? slower cinematic zoom, refined overlay */
.hero-media img {
  animation: heroZoom 28s var(--ease-soft) infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.28) 32%, rgba(8, 8, 8, 0.78) 78%, rgba(8, 8, 8, 0.9) 100%),
    linear-gradient(100deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.15) 48%, transparent 72%);
}

.hero-content {
  animation: heroFade 1.1s var(--ease) both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-rule {
  width: 56px;
  opacity: 1;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), transparent);
}

.hero-lead {
  font-weight: 400;
}

/* Page hero ? more air, sharper H1 measure */
.page-hero {
  padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3.75rem, 7vw, 5.75rem);
}

.page-hero--media {
  padding: 0;
  min-height: min(56vh, 520px);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero--media h1 {
  max-width: 16ch;
}

/* Profiles ? caption optical alignment */
.escorts-profile {
  gap: 1.5rem 1.25rem;
}

.escorts-name {
  padding-top: 1rem;
}

.escorts-name span {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.profile img {
  transition: transform 1s var(--ease), box-shadow 1s var(--ease), filter 1s var(--ease);
}

/* Feature cards ? equal rhythm */
.feature-card {
  padding: 2.75rem 1.75rem 2.5rem;
  transition: background 0.45s var(--ease);
}

.feature-card .icon {
  color: var(--gold-deep);
  opacity: 0.9;
}

.feature-card h3 {
  letter-spacing: -0.01em;
}

/* Location plaques ? hover metal sheen */
.location-card {
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  min-height: 188px;
}

.location-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.location-card span {
  font-size: 1.55rem;
}

.location-card small {
  margin-top: 0.5rem;
  font-size: 0.625rem;
}

/* Pricing ? amount optical polish */
.price-card {
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.price-card .amount {
  font-variant-numeric: lining-nums;
  font-feature-settings: "tnum" 0;
}

.price-card .desc {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--warm-gray);
}

.price-card .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* FAQ ? smoother open affordance */
.faq-item summary {
  transition: color 0.35s var(--ease);
}

.faq-item summary:hover {
  color: var(--gold-deep);
}

.faq-item summary::after {
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
  font-weight: 300;
  color: var(--gold);
}

.faq-item[open] summary {
  color: var(--bg-dark);
}

.faq-answer {
  animation: faqIn 0.45s var(--ease);
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Forms ? quieter focus; refine spacing */
.form-card label {
  margin-bottom: 0.5rem;
}

.form-filed,
.form-text,
.form-card input,
.form-card textarea {
  margin-bottom: 1.15rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

input[type="Submit"],
.form-card button[type="submit"] {
  margin-top: 0.35rem;
  letter-spacing: 0.18em;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Gallery ? softer overlay, slower zoom */
.gallery-item {
  transition: box-shadow 0.5s var(--ease);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  transition: transform 1.1s var(--ease);
}

.gallery-item::after {
  transition: background 0.5s var(--ease);
}

.lightbox {
  backdrop-filter: blur(6px);
  transition: opacity 0.35s var(--ease);
}

.lightbox-close {
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
}

/* Intro frame ? thinner gold hairline */
.intro-media::after {
  border-color: rgba(196, 165, 116, 0.28);
  inset: 10px;
  border-radius: calc(var(--radius-lg) - 2px);
  opacity: 0.85;
}

/* Footer ? denser craft */
.footer-brand {
  transition: color 0.4s var(--ease);
}

.footer-tagline {
  font-size: 1.3rem;
  opacity: 0.95;
}

.site-footer ul li a {
  transition: color 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.footer-social a {
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.footer-social a:hover {
  transform: translateY(-2px);
}

/* Related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: center;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(14, 14, 14, 0.06);
}

.related-links a {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.related-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.related-links a:hover {
  color: var(--gold-deep);
}

.related-links a:hover::after {
  transform: scaleX(1);
}

.hub-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.15rem;
  line-height: 1.7;
}

/* Float ? motion already defined on .float-btn */

#toTopBtn {
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}

#toTopBtn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Table */
table thead td {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-gray);
  background: var(--bg-warm);
}

table tr td {
  transition: background 0.3s var(--ease);
}

/* Divider optical center */
.divider {
  width: 48px;
}

/* Mobile performance: kill fixed body gradient */
@media (max-width: 991px) {
  body {
    background: var(--bg);
    background-attachment: scroll;
  }

  .hero-media img {
    animation: none;
    transform: scale(1.03);
  }

  .hero-content {
    animation: none;
  }

  .intro-media::after {
    inset: 8px;
  }

  .escorts-profile {
    gap: 1.15rem 0.85rem;
  }

  .page-hero h1 {
    max-width: 18ch;
  }
}

@media (max-width: 767px) {
  .sec-padd {
    padding: clamp(3.75rem, 11vw, 5.25rem) 0;
  }

  .btn {
    min-height: 50px;
    padding: 0.95rem 1.5rem;
  }

  .cta-group {
    gap: 0.75rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-brand {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }

  .hero-rule {
    margin: 1.25rem 0 1.1rem;
  }

  .location-card {
    min-height: 148px;
    padding: 1.35rem;
  }

  .location-card span {
    font-size: 1.35rem;
  }

  .price-card {
    padding: 2.25rem 1.5rem;
  }

  .float {
    bottom: 1rem;
    right: 0.75rem;
    gap: 0.55rem;
  }

  .float a,
  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-icon {
    width: 20px;
    height: 20px;
  }

  .form-card {
    padding: 1.75rem 1.35rem;
  }

  .footer-grid {
    gap: 2.25rem;
  }

  .related-links {
    gap: 0.75rem 1.1rem;
    justify-content: flex-start;
  }
}

/* Tablet sweet spot */
@media (min-width: 768px) and (max-width: 1100px) {
  .escorts-profile {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }

  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    gap: 1.5rem;
  }

  .col-4-8 {
    gap: 2.5rem;
  }
}

/* Large desktop ? more generous measure */
@media (min-width: 1400px) {
  :root {
    --container: min(1240px, calc(100% - 5rem));
  }

  .hero-content {
    max-width: 720px;
  }
}

/* Icon stroke alignment inside value/feature blocks */
.value-item .icon,
.feature-card .icon {
  display: block;
}

/* Breadcrumb quieter on dark heroes */
.page-hero .breadcrumb ol {
  opacity: 0.85;
}

/* Selection on dark surfaces */
.bg-dark ::selection,
.page-hero ::selection,
.hero ::selection {
  background: rgba(196, 165, 116, 0.35);
  color: #fff;
}

/* Responsive <picture> heroes ? fill without stretch */
.hero-media picture,
.page-hero--media .hero-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img,
.page-hero--media .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero.page-hero--media {
  padding: 0 !important;
  min-height: min(56vh, 520px);
  display: flex;
  align-items: flex-end;
}

.page-hero.page-hero--media::before {
  display: none !important;
}

.page-hero.page-hero--media .container {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.75rem, 6vw, 4.5rem);
}

@media (max-width: 767px) {
  .page-hero.page-hero--media {
    min-height: min(62vh, 560px);
  }
}

/* ==========================================================================
   Featured Locations ? destination cards (homepage highlight)
   Desktop 4 ? Tablet 2 ? Mobile 1 ? 4:5 media ? lazy below-fold
   ========================================================================== */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.destination-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 14, 14, 0.06);
  border: 1px solid rgba(14, 14, 14, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  height: 100%;
}

.destination-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.destination-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.destination-card__media picture,
.destination-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.destination-card__media img {
  transition: transform 0.85s var(--ease);
}

.destination-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
}

.destination-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bg-dark);
  margin: 0;
  line-height: 1.2;
}

.destination-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: color 0.35s var(--ease), gap 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(14, 14, 14, 0.1);
    border-color: rgba(196, 165, 116, 0.28);
    color: inherit;
  }

  .destination-card:hover .destination-card__media img {
    transform: scale(1.06);
  }

  .destination-card:hover .destination-card__cta {
    color: var(--gold);
    gap: 0.65rem;
  }
}

@media (max-width: 1100px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .destination-card__body {
    padding: 1.25rem 1.15rem 1.35rem;
  }
}
