/* ============================================================
   WHITE PREMIUM — TRUE EDGE TO EDGE — FULL SYSTEM
============================================================ */

:root{
  --bg:#ffffff;
  --paper:#ffffff;
  --soft:#f8fafc;
  --ink:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;

  --brand:#6d28d9;
  --brand-soft:#ede9fe;
  --gold:#d4af37;

  --radius:14px;
  --shadow:0 12px 34px rgba(2,6,23,.10);
  --shadow-soft:0 6px 18px rgba(2,6,23,.06);
}

/* ================= RESET ================= */

*{margin:0;padding:0;box-sizing:border-box}
html,body{width:100%;height:100%;overflow-x:hidden}
body{
  background:var(--bg);
  color:var(--ink);
  font:15px/1.55 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* ================= LAYOUT ================= */

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 18px;
}


/* true full bleed */
.hero,.section,.agency,.usp,.content-slice,.longtext,.journal,.duo,.footer,.util,.header,.hotel-hero,.hotel-content{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* ================= UTIL BAR ================= */

/* ============================================================
   HEADER SYSTEM — DESKTOP + MOBILE
============================================================ */

/* ---------- UTILITY BAR ---------- */

.util{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.util__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:34px;
  gap:12px;
}

.util__left,
.util__right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.util__link{
  font-size:12.5px;
  color:var(--muted);
  white-space:nowrap;
}


/* ---------- MAIN HEADER ---------- */

.header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  z-index:80;
}

.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
  gap:16px;
}


/* ---------- BRAND ---------- */

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand__logo{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--brand),#a78bfa);
  box-shadow:0 8px 24px rgba(109,40,217,.35);
  flex:0 0 auto;
}

.brand__name{
  font-size:15px;
  font-weight:700;
  line-height:1.1;
}

.brand__tag{
  font-size:12px;
  color:var(--muted);
  line-height:1.2;
}


/* ---------- DESKTOP NAV ---------- */

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  list-style:none;
  padding:0;
  margin:0;
}

.nav li{margin:0}

.nav a{
  font-size:14px;
  font-weight:600;
  color:#0f172a;
  padding:6px 2px;
  transition:.15s ease;
}

.nav a:hover{color:var(--brand)}


/* ---------- HEADER ACTIONS ---------- */

.theme-toggle{
  display:flex;
  align-items:center;
}

.themeBtn{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}


/* ---------- MOBILE MENU BUTTON ---------- */

.menu{
  display:none;
  padding:6px 12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}
/* ---------- MOBILE NAV PANEL ---------- */

.mobile{
  position:fixed;
  inset:0;
  background:#fff;
  padding:90px 22px 22px;
  z-index:120;
  display:none;
}

.mobile.is-open{display:block}

.mobile ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mobile a{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
}

.mobile__toggle{
  margin-top:28px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--muted);
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:980px){
  .nav{display:none}
  .menu{display:inline-flex;align-items:center}
}

/* ================= HERO ================= */

.hero{
  background:linear-gradient(180deg,#fff,#fbfbfd);
}
.hero__row{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  padding:18px 0;
  align-items:center;
}
@media(max-width:980px){.hero__row{grid-template-columns:1fr}}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--muted);
}
.hero h1{
  margin:4px 0 6px;
  font-size:clamp(24px,3vw,38px);
}
.lede{color:#475569}
.ticklist{margin:8px 0 10px;padding-left:18px}
.hero__art{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(2,6,23,.14);
}

/* ================= SECTIONS ================= */

.section{padding:14px 0}
.section--tight{padding-top:6px}
.section__title{
  font-size:14px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#6b7280;
  margin:4px 0 8px;
}

/* ================= GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media(max-width:1180px){.grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:820px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.grid{grid-template-columns:1fr}}

/* ================= PROFILE CARDS ================= */

.card{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}
.card:hover{box-shadow:var(--shadow)}

.card__thumb{
  position:relative;
  background:#f3f4f9;
  min-height:260px;
}
.card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.badge{
  position:absolute;
  top:8px;left:8px;
  background:linear-gradient(135deg,#f4d27a,#caa24d);
  color:#1a1405;
  font-weight:700;
  font-size:12px;
  border-radius:999px;
  padding:5px 9px;
}
.badge--area{
  left:auto;right:8px;
  background:rgba(255,255,255,.9);
  color:#111;
}
.card__thumb .badge + .badge--area{top:36px}

.card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:8px 10px;
}
.card__row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:8px;
  min-height:24px;
}
.card__name{
  font-weight:700;
  max-width:70%;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  line-height:1.25;
}
.price{font-weight:800}

.card__meta{
  font-size:12.5px;
  color:var(--muted);
  margin-top:2px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.card__tags{
  margin-top:auto;
  padding-top:6px;
  display:flex;
  gap:6px;
}
.chip{
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  background:#f5f6fb;
}

/* ================= HOTEL PAGE ================= */

.hotel-hero{
  background:linear-gradient(180deg,#fff,#f8fafc);
}
.hotel-hero .hero__row{padding:22px 0}

.hotel-content{
  background:#fff;
  padding:20px 0;
}
.hotel-content p{
  margin:10px 0;
  color:#334155;
  line-height:1.7;
}

/* ================= AGENCY ================= */

.agency__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:16px 0;
  align-items:center;
}
@media(max-width:980px){.agency__row{grid-template-columns:1fr}}
.agency__art{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

/* ================= DUO ================= */

.duo{
  background:radial-gradient(120% 120% at 10% 10%, #1a2040, #0e1328);
  color:#e5e7eb;
  padding:28px 0;
}
.duo__accent{color:#facc15}
.duo__row{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
  margin:14px 0;
}
@media(max-width:980px){.duo__row{grid-template-columns:1fr}}
.duo__art{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}

/* ================= USP ================= */

.usp{
  background:linear-gradient(135deg,#6d28d9,#4c1d95);
  color:#fff;
}
.usp__row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  padding:14px 0;
}
@media(max-width:980px){.usp__row{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.usp__row{grid-template-columns:1fr}}

/* ================= JOURNAL ================= */

.journal__title{text-align:center;margin:14px 0 10px}
.journal__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media(max-width:1180px){.journal__grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:820px){.journal__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.journal__grid{grid-template-columns:1fr}}

.post{
  display:grid;
  gap:8px;
  padding:10px;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}
.post:hover{box-shadow:var(--shadow)}
.post img{border-radius:10px}

./* ============================================================
   FOOTER — PREMIUM CLEAN LAYOUT
============================================================ */
/* ============================================================
   FOOTER — VISUAL SEPARATION & PREMIUM CONTRAST
============================================================ */

.footer{
  background:linear-gradient(180deg,#f8fafc,#f1f5f9);
  border-top:1px solid #e5e7eb;
}

/* top section */

.footer__top{
  background:transparent;
}

/* headings stronger */

.footer h4{
  color:#0f172a;
}

/* links slightly muted but readable */

.footer .links a{
  color:#334155;
}

.footer .links a:hover{
  color:var(--brand);
}

/* brand block contrast */

.footer__brand{
  background:rgba(255,255,255,.65);
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px 14px 12px;
  box-shadow:0 10px 30px rgba(2,6,23,.06);
}

.footer__brand .brand__logo{
  box-shadow:0 8px 24px rgba(109,40,217,.35);
}

/* bottom bar darker */

.footer__bottom{
  background:#0f172a;
  border-top:0;
}

.footer__legal{
  color:#cbd5f5;
}

.footer__legal p{
  color:#cbd5f5;
}

.footer__legal p + p{
  color:#94a3b8;
}

.footer{
  background:#ffffff;
  border-top:1px solid var(--line);
  margin-top:30px;
}

/* ---------- TOP ---------- */

.footer__top{
  padding:26px 0 18px;
}

.footer__cols{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:22px;
  align-items:flex-start;
}

@media(max-width:1100px){
  .footer__cols{
    grid-template-columns:1fr 1fr 1fr;
  }
}

@media(max-width:820px){
  .footer__cols{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .footer__cols{
    grid-template-columns:1fr;
  }
}


/* ---------- BRAND ---------- */

.footer__brand .brand{
  align-items:flex-start;
}

.footer__brand .brand__logo{
  width:42px;
  height:42px;
  border-radius:14px;
}

.footer__brand .brand__name{
  font-size:16px;
}

.footer__brand small{
  font-size:13px;
  color:var(--muted);
}


/* ---------- HEADINGS ---------- */

.footer h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:10px;
  color:#334155;
}


/* ---------- LINKS ---------- */

.footer .links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer .links a{
  font-size:13.5px;
  color:#334155;
  transition:.15s ease;
}

.footer .links a:hover{
  color:var(--brand);
}


/* ---------- CONTACT LIST ---------- */

.footer .links li{
  font-size:13.5px;
  color:#334155;
}

.footer .links li:not(:has(a)){
  color:var(--muted);
}


/* ---------- BOTTOM ---------- */

.footer__bottom{
  background:#f8fafc;
  border-top:1px solid var(--line);
}

.footer__legal{
  padding:12px 0;
  text-align:center;
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

.footer__legal p{
  margin:0;
}

.footer__legal p + p{
  margin-top:6px;
  font-size:12px;
  opacity:.8;
}


/* ---------- MOBILE CTA SAFE SPACING ---------- */

@media(max-width:820px){
  body{padding-bottom:56px}
}

/* ============================================================
   FOOTER CTA BAND — PREMIUM CONVERSION STRIP
============================================================ */

.footer-cta{
  background:linear-gradient(135deg,var(--brand),#4c1d95);
  color:#fff;
}

.footer-cta__inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  padding:22px 0;
}

@media(max-width:820px){
  .footer-cta__inner{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* text */

.footer-cta h3{
  margin:0;
  font-size:20px;
  font-weight:800;
}

.footer-cta p{
  margin:4px 0 0;
  opacity:.9;
  font-size:14px;
}

/* actions */

.footer-cta__actions{
  display:flex;
  gap:12px;
  align-items:center;
}

@media(max-width:820px){
  .footer-cta__actions{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* buttons */

.footer-cta .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  white-space:nowrap;
  border:0;
  cursor:pointer;
  transition:.15s ease;
}

/* whatsapp */

.btn-whatsapp{
  background:#22c55e;
  color:#052e16;
}

.btn-whatsapp:hover{
  background:#16a34a;
}

/* call */

.btn-call{
  background:#ffffff;
  color:#0f172a;
}

.btn-call:hover{
  background:#f1f5f9;
}

/* ============================================================
   SINGLE PROFILE — PREMIUM HERO + GALLERY
============================================================ */

.sp-wrap{
  background:#fff;
  overflow-x:hidden;
}

/* ================= HERO LAYOUT ================= */

.sp-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:12px 0;
}

/* desktop split */
@media(min-width:900px){
  .sp-hero{
    grid-template-columns:1.05fr .95fr;
    gap:22px;
    padding:18px 0;
    align-items:center;
  }
}

/* ================= GALLERY ================= */

.sp-gallery{
  position:relative;
  width:100%;
}

/* slides container */
.sp-slides{
  display:flex;
  flex-wrap:nowrap;
  width:100%;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(2,6,23,.18);
}

/* hide scrollbar */
.sp-slides::-webkit-scrollbar{display:none}
.sp-slides{scrollbar-width:none}

/* each slide */
.sp-slide{
  flex:0 0 100%;
  width:100%;
  scroll-snap-align:center;
  position:relative;
  background:#f1f5f9;
}

/* image frame */
.sp-slide img{
  width:100%;
  height:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
  display:block;
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}

/* premium hover motion (desktop only) */
@media(min-width:900px){
  .sp-slide:hover img{
    transform:scale(1.04);
  }
}

/* ================= THUMBNAILS (DESKTOP) ================= */

.sp-thumbs{
  display:none;
}

@media(min-width:900px){
  .sp-thumbs{
    display:flex;
    gap:10px;
    margin-top:10px;
    overflow-x:auto;
  }

  .sp-thumb{
    border:0;
    padding:0;
    background:none;
    border-radius:10px;
    overflow:hidden;
    cursor:pointer;
    opacity:.5;
    transition:.2s ease;
    flex:0 0 auto;
  }

  .sp-thumb.active{opacity:1}

  .sp-thumb img{
    width:64px;
    height:86px;
    object-fit:cover;
    display:block;
    border-radius:10px;
  }
}

/* ================= HERO INFO ================= */

.sp-hero-info{
  padding:4px 18px 10px;
}

@media(min-width:900px){
  .sp-hero-info{
    padding:0 18px;
  }
}

.sp-area{
  display:inline-block;
  background:#ede9fe;
  color:#4c1d95;
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
  margin-bottom:6px;
}

.sp-name{
  font-size:26px;
  line-height:1.15;
  margin:4px 0;
}

.sp-age{
  color:#64748b;
  font-weight:400;
}

.sp-tagline{
  color:#475569;
  margin:6px 0 10px;
}

.sp-price{
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
}

.sp-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= DETAILS ================= */

.sp-details{
  background:#f8fafc;
  padding:14px 0 18px;
}

.sp-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:0 18px;
}

@media(min-width:980px){
  .sp-inner{
    grid-template-columns:2fr 1fr;
    gap:22px;
  }
}

/* ================= BOOKING CARD ================= */

.sp-book{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 34px rgba(2,6,23,.10);
}

.sp-book h3{
  margin-bottom:8px;
}

.sp-points{
  list-style:none;
  padding:0;
  margin:0 0 12px;
}

.sp-points li{
  font-size:14px;
  margin:4px 0;
}

.sp-btn-full{
  width:100%;
  text-align:center;
  margin-top:6px;
}


/* ============================================================
   FEATURED IMAGE SIZE FIX — PREMIUM PORTRAIT FRAME
============================================================ */

/* main gallery frame */

.sp-slides{
  max-width:520px;
  margin:0 auto;
}

/* keep desktop balanced */

@media(min-width:900px){
  .sp-slides{
    max-width:480px;
  }
}

/* slide frame */

.sp-slide{
  aspect-ratio:3 / 4;
  background:#f1f5f9;
}

/* image itself */

.sp-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 25%;
  border-radius:20px;
}

/* premium frame effect */

.sp-slides{
  background:#fff;
  padding:6px;
  border-radius:24px;
  box-shadow:
    0 20px 50px rgba(2,6,23,.18),
    inset 0 0 0 1px rgba(255,255,255,.6);
}

/* smooth motion */

.sp-slide img{
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
}

@media(min-width:900px){
  .sp-slide:hover img{
    transform:scale(1.05);
  }
}

/* ================= MOBILE CTA SAFE ================= */

@media(max-width:900px){
  body{ padding-bottom:56px; }
}


/* ============================================================
   HOTEL LANDING PAGES — PREMIUM EDGE-TO-EDGE
   Applies to: hotel templates and hotel CPT pages
============================================================ */

.hotel-wrap{
  background:#fff;
}

/* ---------- HERO ---------- */

.hotel-hero{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  padding:22px 0;
}

.hotel-hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
}

@media(max-width:980px){
  .hotel-hero-inner{grid-template-columns:1fr}
}

.hotel-hero h1{
  font-size:clamp(22px,3vw,38px);
  margin:4px 0 8px;
}

.hotel-hero p{
  color:var(--muted);
  max-width:640px;
}

.hotel-hero-img{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(2,6,23,.14);
}

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

/* ---------- CONTENT / SEO ---------- */

.hotel-content{
  padding:18px 0;
}

.hotel-content h2{
  font-size:20px;
  margin:14px 0 6px;
}

.hotel-content h3{
  font-size:16px;
  margin:12px 0 4px;
}

.hotel-content p{
  color:#1f2937;
  margin:8px 0;
  line-height:1.6;
}

.hotel-content ul{
  padding-left:18px;
  margin:6px 0 10px;
}

.hotel-content li{
  margin:4px 0;
}

/* ---------- FEATURED PROFILES NEAR HOTEL ---------- */

.hotel-profiles{
  background:#f8fafc;
  padding:18px 0;
}

.hotel-profiles h2{
  margin-bottom:10px;
}

.hotel-profiles .grid{
  margin-top:8px;
}

/* ---------- TRUST / CTA BAND ---------- */

.hotel-cta{
  background:linear-gradient(135deg,var(--brand),#4c1d95);
  color:#fff;
  padding:20px 0;
}

.hotel-cta-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
}

@media(max-width:820px){
  .hotel-cta-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
}

.hotel-cta h3{
  margin:0;
  font-size:18px;
}

.hotel-cta p{
  margin:4px 0 0;
  opacity:.9;
}

.hotel-cta .btn{
  white-space:nowrap;
}

/* ---------- FAQ BLOCK ---------- */

.hotel-faq{
  background:#fff;
  padding:18px 0;
}

.hotel-faq h2{
  margin-bottom:10px;
}

.hotel-faq-item{
  border-bottom:1px solid var(--line);
  padding:10px 0;
}

.hotel-faq-item h4{
  font-size:14px;
  margin-bottom:4px;
}

.hotel-faq-item p{
  font-size:14px;
  color:#374151;
}

/* ---------- MOBILE CTA ---------- */

.hotel-mobile-cta{
  display:none;
}

@media(max-width:820px){
  .hotel-mobile-cta{
    position:fixed;
    bottom:0;left:0;right:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-top:1px solid var(--line);
    z-index:100;
  }
  .hotel-mobile-cta a{
    padding:14px;
    text-align:center;
    font-weight:700;
  }
}

/* ============================================================
   PREMIUM PROFILE DATA VISUAL UPGRADE
============================================================ */

/* ---------- HERO INFO CARD FEEL ---------- */

.sp-hero-info{
  background:#ffffff;
  border-radius:18px;
  padding:14px 16px 16px;
  box-shadow:0 14px 36px rgba(2,6,23,.08);
}

@media(min-width:900px){
  .sp-hero-info{
    padding:18px 20px 20px;
  }
}

/* ---------- NAME + AREA ---------- */

.sp-area{
  background:linear-gradient(135deg,#ede9fe,#f5f3ff);
  color:#4c1d95;
  font-weight:600;
}

.sp-name{
  font-size:28px;
  font-weight:800;
  letter-spacing:-.02em;
}

.sp-age{
  font-size:16px;
  margin-left:6px;
}

/* ---------- TAGLINE ---------- */

.sp-tagline{
  font-size:14px;
  color:#475569;
  font-style:italic;
}

/* ---------- BADGES ---------- */

.sp-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:6px 0 10px;
}

.badge{
  font-size:11px;
  font-weight:800;
  padding:5px 10px;
  border-radius:999px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.badge--verify{
  background:#dcfce7;
  color:#065f46;
}

.badge--featured{
  background:linear-gradient(135deg,#fde68a,#f59e0b);
  color:#3b2f00;
}

.badge--online{
  background:#e0f2fe;
  color:#075985;
}

.badge--tour{
  background:#fef3c7;
  color:#92400e;
}

.badge--off{
  background:#f1f5f9;
  color:#475569;
}

/* ---------- PRICE ---------- */

.sp-price{
  font-size:22px;
  font-weight:900;
  color:#0f172a;
}

/* ---------- CTA BUTTONS ---------- */

.sp-actions .btn{
  flex:1;
  justify-content:center;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
}


/* ============================================================
   PROFILE DETAILS GRID — PREMIUM SPECS
============================================================ */

.sp-specs{
  margin-top:18px;
}

.sp-specs-title{
  font-size:16px;
  font-weight:800;
  margin-bottom:10px;
}

/* grid */

.sp-specs-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 12px;
}

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

/* spec card */

.sp-spec{
  background:#ffffff;
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 8px 24px rgba(2,6,23,.06);
  border:1px solid #eef2f7;
}

.sp-spec-label{
  display:block;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#64748b;
  margin-bottom:2px;
}

.sp-spec-value{
  font-size:14px;
  font-weight:800;
  color:#0f172a;
}


/* ============================================================
   ABOUT SECTION POLISH
============================================================ */

.sp-about h2{
  font-size:20px;
  font-weight:900;
}

.sp-text p{
  margin:8px 0;
  color:#1f2937;
}


/* ============================================================
   BOOKING CARD — PREMIUM PANEL
============================================================ */

.sp-book{
  position:sticky;
  top:90px;
  border-radius:18px;
  padding:16px;
  box-shadow:0 18px 40px rgba(2,6,23,.12);
}

.sp-book h3{
  font-size:18px;
  font-weight:900;
}

.sp-points li{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13.5px;
}

.sp-btn-full{
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
}


/* ============================================================
   GALLERY FRAME — MORE PREMIUM
============================================================ */

.sp-slides{
  background:#ffffff;
  padding:6px;
  border-radius:22px;
}

.sp-slide img{
  border-radius:18px;
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
}

@media(min-width:900px){
  .sp-slide:hover img{
    transform:scale(1.05);
  }
}


/* ============================================================
   MOBILE CTA BAR — STRONGER VISUAL
============================================================ */

.sp-mobile-cta{
  box-shadow:0 -8px 24px rgba(2,6,23,.12);
}

.sp-mobile-cta a{
  font-size:15px;
}


/* ============================================================
   FRONT PAGE — PREMIUM CONTENT TYPOGRAPHY
============================================================ */

/* ---------- GLOBAL CONTENT TUNING ---------- */

.section{
  padding:56px 0;
}

.section--tight{
  padding:40px 0;
}

.section__title{
  text-align:center;
  margin-bottom:18px;
}

.section__title span{
  display:inline-block;
  font-size:26px;
  font-weight:800;
  letter-spacing:-.02em;
}

@media(max-width:640px){
  .section{ padding:38px 0; }
  .section__title span{ font-size:22px; }
}

/* ---------- HERO COPY ---------- */

.hero__copy h1{
  font-size:42px;
  line-height:1.1;
  letter-spacing:-.02em;
}

.hero__copy .lede{
  font-size:16px;
  color:#475569;
  line-height:1.7;
  margin:10px 0;
}

.hero__copy .ticklist{
  margin:14px 0;
}

.hero__copy .ticklist li{
  font-size:14px;
  color:#1f2937;
}

@media(max-width:820px){
  .hero__copy h1{ font-size:30px; }
}

/* ---------- CARD META TEXT ---------- */

.card__meta{
  font-size:13px;
  color:#475569;
  line-height:1.4;
}

/* ---------- AGENCY SECTION ---------- */

.agency{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.agency__copy h2{
  font-size:28px;
  line-height:1.2;
  margin-bottom:10px;
}

.agency__copy p{
  font-size:15px;
  line-height:1.75;
  color:#334155;
  margin-bottom:12px;
}

/* ---------- DUO SECTION ---------- */

.duo{
  background:#fff;
}

.duo__row{
  gap:32px;
  margin-bottom:42px;
}

.duo__copy h2{
  font-size:26px;
  line-height:1.25;
  margin-bottom:10px;
}

.duo__copy p{
  font-size:15px;
  line-height:1.7;
  color:#334155;
  margin-bottom:10px;
}

.duo__accent{
  color:var(--brand);
}

/* ---------- USP BLOCK ---------- */

.usp{
  background:#0f172a;
  color:#fff;
}

.usp__item h4{
  font-size:16px;
  margin-bottom:4px;
}

.usp__item p{
  font-size:13px;
  color:#cbd5f5;
}

/* ---------- SEO SUPPORT CONTENT SECTION ---------- */

.section p{
  max-width:880px;
  margin:0 auto 12px;
  font-size:15px;
  line-height:1.75;
  color:#334155;
}

/* Headings inside content blocks */

.section h2,
.section h3{
  max-width:880px;
  margin:0 auto 14px;
  font-weight:800;
  letter-spacing:-.01em;
}

/* ---------- PREMIUM READABILITY ---------- */

p + p{
  margin-top:10px;
}

p strong{
  color:#0f172a;
}

/* ---------- MOBILE TUNING ---------- */

@media(max-width:640px){

  .agency__copy h2,
  .duo__copy h2{
    font-size:22px;
  }

  .agency__copy p,
  .duo__copy p,
  .section p{
    font-size:14px;
  }

}
/* ============================================================
   BUTTON SYSTEM — PREMIUM CTA
============================================================ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 22px;
  border-radius:999px;

  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;

  background:linear-gradient(135deg,#6d28d9,#4c1d95);
  color:#fff !important;

  border:0;
  cursor:pointer;
  text-decoration:none !important;

  box-shadow:0 10px 26px rgba(109,40,217,.35);
  transition:all .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 36px rgba(109,40,217,.45);
}

.btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(109,40,217,.35);
}

/* Ghost / outline */

.btn--ghost{
  background:#fff;
  color:#4c1d95 !important;
  border:2px solid #ddd6fe;
  box-shadow:none;
}

.btn--ghost:hover{
  background:#ede9fe;
  box-shadow:0 8px 22px rgba(2,6,23,.12);
}

/* Full width CTA */

.sp-btn-full,
.btn-full{
  width:100%;
}

/* Center helper */

.center{
  text-align:center;
}

/* ============================================================
   GENERIC PAGES — TRUE EDGE-TO-EDGE LAYOUT
============================================================ */

/* Full bleed wrapper */
.page-wrap{
  background:#ffffff;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow-x:hidden;
}

/* Full width section */
.page-wrap .section{
  width:100%;
  padding:56px 0;
}

/* Inner readable content */
.page-content{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 22px;
}

/* Title */
.page-title{
  font-size:36px;
  line-height:1.15;
  margin-bottom:18px;
  letter-spacing:-.02em;
}

/* Body text */
.page-text{
  font-size:15px;
  line-height:1.75;
  color:#334155;
}

/* Headings */
.page-text h2{
  margin:30px 0 10px;
  font-size:24px;
  font-weight:800;
  letter-spacing:-.01em;
}

.page-text h3{
  margin:24px 0 8px;
  font-size:19px;
  font-weight:700;
}

/* Paragraphs */
.page-text p{
  margin-bottom:14px;
}

/* Lists */
.page-text ul{
  margin:10px 0 20px 22px;
}

.page-text li{
  margin:6px 0;
}

/* Mobile */
@media(max-width:820px){

  .page-title{
    font-size:28px;
  }

  .page-wrap .section{
    padding:36px 0;
  }

  .page-content{
    padding:0 16px;
  }

  .page-text{
    font-size:14px;
  }

}

/* ============================================================
   CONTACT PAGE — PREMIUM BOOKING LAYOUT
============================================================ */

.contact-hero{
  max-width:900px;
  margin:0 auto 40px;
  text-align:center;
}

.contact-hero h1{
  font-size:34px;
  margin-bottom:10px;
}

.contact-lead{
  font-size:16px;
  color:#475569;
  line-height:1.7;
  margin-bottom:18px;
}

.contact-cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* Info grid */

.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:1100px;
  margin:0 auto 48px;
}

.contact-box{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 12px 28px rgba(2,6,23,.08);
}

.contact-box h3{
  font-size:16px;
  margin-bottom:8px;
}

.contact-box p,
.contact-box li{
  font-size:14px;
  color:#334155;
  line-height:1.6;
}

.contact-box ul{
  margin:8px 0 10px 18px;
}

/* Trust block */

.contact-trust{
  max-width:900px;
  margin:0 auto 48px;
  text-align:center;
}

.contact-trust h2{
  font-size:24px;
  margin-bottom:10px;
}

.contact-trust p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
  margin-bottom:10px;
}

/* Final CTA */

.contact-final-cta{
  text-align:center;
  padding:40px 0 10px;
}

.contact-final-cta h2{
  font-size:26px;
  margin-bottom:8px;
}

.contact-final-cta p{
  color:#475569;
  margin-bottom:14px;
}

/* Mobile */

@media(max-width:900px){

  .contact-info-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:26px;
  }

}

/* ============================================================
   RATES PAGE — PREMIUM PRICING LAYOUT
============================================================ */

.rates-hero{
  max-width:900px;
  margin:0 auto 42px;
  text-align:center;
}

.rates-hero h1{
  font-size:34px;
  margin-bottom:10px;
}

.rates-lead{
  font-size:16px;
  color:#475569;
  line-height:1.7;
}

/* Pricing cards */

.rates-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1100px;
  margin:0 auto 50px;
}

.rate-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  text-align:center;
  box-shadow:0 14px 36px rgba(2,6,23,.08);
}

.rate-card h3{
  font-size:18px;
  margin-bottom:6px;
}

.rate-price{
  font-size:22px;
  font-weight:800;
  color:#4c1d95;
  margin:10px 0 14px;
}

.rate-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.rate-card li{
  font-size:14px;
  margin:6px 0;
  color:#334155;
}

/* Highlighted card */

.rate-card.featured{
  background:linear-gradient(180deg,#ede9fe,#ffffff);
  border:2px solid #ddd6fe;
}

/* Details blocks */

.rates-details,
.rates-guidelines{
  max-width:900px;
  margin:0 auto 48px;
}

.rates-details h2,
.rates-guidelines h2{
  font-size:24px;
  margin-bottom:10px;
}

.rates-details h3{
  font-size:18px;
  margin:22px 0 8px;
}

.rates-details p,
.rates-guidelines p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
  margin-bottom:10px;
}

.rates-guidelines ul{
  margin:10px 0 14px 20px;
}

.rates-guidelines li{
  margin:6px 0;
  font-size:14px;
}

/* Final CTA */

.rates-final-cta{
  text-align:center;
  padding:40px 0 10px;
}

.rates-final-cta h2{
  font-size:26px;
  margin-bottom:6px;
}

.rates-final-cta p{
  color:#475569;
  margin-bottom:14px;
}

.rates-cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* Mobile */

@media(max-width:900px){

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

  .rates-hero h1{
    font-size:26px;
  }

}

/* ============================================================
   ESCORT SERVICES PAGE — PREMIUM LAYOUT
============================================================ */

.services-hero{
  max-width:900px;
  margin:0 auto 48px;
  text-align:center;
}

.services-hero h1{
  font-size:34px;
  margin-bottom:10px;
}

.services-lead{
  font-size:16px;
  color:#475569;
  line-height:1.7;
  margin-bottom:18px;
}

.services-cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* Services grid */

.services-types{
  max-width:1100px;
  margin:0 auto 50px;
}

.services-types h2{
  text-align:center;
  font-size:26px;
  margin-bottom:18px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.service-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 30px rgba(2,6,23,.08);
}

.service-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.service-card p{
  font-size:14px;
  color:#334155;
  line-height:1.7;
}

/* Areas */

.services-areas{
  max-width:900px;
  margin:0 auto 48px;
}

.services-areas h2{
  font-size:24px;
  margin-bottom:10px;
}

.services-areas p{
  font-size:15px;
  line-height:1.7;
  color:#334155;
  margin-bottom:10px;
}

/* Why */

.services-why{
  max-width:900px;
  margin:0 auto 48px;
}

.services-why h2{
  font-size:24px;
  margin-bottom:10px;
}

.services-why ul{
  margin:10px 0 14px 20px;
}

.services-why li{
  font-size:14px;
  margin:6px 0;
}

.services-why p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
}

/* Booking steps */

.services-booking{
  max-width:900px;
  margin:0 auto 48px;
}

.services-booking h2{
  font-size:24px;
  margin-bottom:10px;
}

.services-booking ol{
  margin:10px 0 14px 20px;
}

.services-booking li{
  margin:8px 0;
  font-size:14px;
}

.services-booking p{
  font-size:15px;
  color:#334155;
  line-height:1.7;
}

/* Final CTA */

.services-final-cta{
  text-align:center;
  padding:40px 0 10px;
}

.services-final-cta h2{
  font-size:26px;
  margin-bottom:8px;
}

.services-final-cta p{
  color:#475569;
  margin-bottom:14px;
}

/* Mobile */

@media(max-width:900px){

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

  .services-hero h1{
    font-size:26px;
  }

}
