/* =========================
   THEME & RESET
   ========================= */
:root {
  --gold:   #d2aa6d;
  --gold-2: #c89e5a;
  --sand:   #caa76f;
  --sand-2: #b88d51;

  --bg:   #000;
  --bg-2: #111;
  --text: #fff;
  --muted:#ddd;

  --container: 1200px;
  --radius: 12px;

  /* Per-page hero image (override on a page if needed) */
  --hero-image: url('https://pierismassage.com/wp-content/uploads/2024/10/7.png');
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { max-width: 100%; height: auto; display: block; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* =========================
   HEADER & NAV
   ========================= */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--gold);
  padding: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: box-shadow .3s ease, background .3s ease;
}
header.is-stuck {
  background: linear-gradient(0deg, rgba(210,170,109,0.96), rgba(210,170,109,1));
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

header .logo { display: inline-flex; align-items: center; gap: 12px; }
header .logo img { height: 48px; width: auto; display: block; }
header .logo .logo-phone { font-weight: 800; font-size: 0.95rem; color: #000; text-decoration: none; }
header .logo .logo-phone:hover,
header .logo .logo-phone:focus { text-decoration: underline; }

/* base nav */
nav ul { list-style: none; display: flex; gap: 1rem; padding-left: 0; }
nav ul > li { position: relative; }
nav a {
  color: #000; text-decoration: none; font-weight: 700;
  display: block; padding: 10px 14px; cursor: pointer;
}

/* Submenu (default hidden; JS toggles .open on parent <li>) */
.submenu {
  display: none;
  position: absolute; left: 0;
  background: var(--gold);
  border: 2px solid var(--gold-2);
  border-radius: 10px;
  min-width: 220px;
  padding: 0; margin: 0; list-style: none;
  z-index: 999;
  overflow: hidden;
}
.submenu li { display: block; }
.submenu a { color: #000; padding: 10px 14px; white-space: nowrap; }

/* Mobile nav toggle */
.menu-toggle { display: none; background: #000; color: #fff; border: 0; padding: 8px 10px; border-radius: 8px; }

/* ----- Mobile behavior: slide-out panel ----- */
@media (max-width: 960px) {
  .menu-toggle { display: inline-block; position: relative; z-index: 1002; }

  /* slide-out container */
  #primary-nav{
    position: fixed;
    top: var(--header-h, 72px);             /* adjust if your header is taller/shorter */
    right: 0;
    width: min(85vw, 340px);
    height: calc(100vh - var(--header-h, 72px));
    background: var(--gold);
    border-left: 2px solid var(--gold-2);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1001;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #primary-nav.open { transform: translateX(0); }

  /* Only toggle the TOP-LEVEL UL */
  #primary-nav > ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  #primary-nav.open > ul { display: flex; }

  #primary-nav > ul > li { width: 100%; }
  #primary-nav a { padding: 12px 16px; }

  /* Submenu becomes accordion (stays hidden until parent .open) */
  #primary-nav .submenu {
    display: none;
    position: static;
    border: 0; border-radius: 0; min-width: 0;
  }
  #primary-nav li.open > .submenu { display: block; }

  /* page overlay */
  .nav-overlay{
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
  }
  body.nav-open { overflow: hidden; }
}

/* ----- Desktop dropdown behavior ----- */
@media (min-width: 961px) {
  header nav ul > li { position: relative; }

  /* place submenu with tiny visual gap */
  header nav li > .submenu { top: calc(100% + 8px); }

  /* show only when .open is present */
  header nav li.open > .submenu { display: block !important; }

  /* never open on simple hover unless .open is set by JS */
  header nav li:hover:not(.open) > .submenu { display: none !important; }

  /* hover bridge to remove dead zone */
  header nav li > .submenu::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -8px; height: 8px;
  }
}

/* =========================
   HERO
   ========================= */
.hero {
  background: var(--hero-image) center/cover no-repeat;
  min-height: 400px;
  display: grid; place-items: center;
  position: relative; text-align: center; overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.hero > * { position: relative; z-index: 1; }
.hero-text h1, .hero h1 {
  color: #fff; font-size: clamp(2rem, 4vw, 2.8rem);
  text-shadow: 0 8px 28px rgba(0,0,0,.55);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-block;
  background: #000; color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px; text-decoration: none;
  border: 2px solid transparent; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.black { background: #000; color: #fff; font-weight: 800; border-radius: 25px; }
.btn.black:hover { background: #222; }
.btn.gold { background: var(--gold); color: #000; font-weight: 800; }
.btn.gold:hover { background: #e1c17f; }
.cta-buttons .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.25); }

/* =========================
   MASSEUSES GRID
   ========================= */
.masseuses { padding: 4rem 1rem; background: #000; }
.masseuse-heading { text-align: center; font-size: 2rem; letter-spacing: 2px; color: #dcdcdc; font-weight: 800; }
.masseuse-subheading { text-align: center; font-size: 1rem; font-weight: 800; margin-bottom: 2.5rem; color: #fff; text-transform: uppercase; }
.masseuse-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; justify-content: center;
}
.masseuse-card {
  border-radius: 12px; overflow: hidden; background: transparent; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.masseuse-card:hover { transform: translateY(-8px); box-shadow: 0 14px 34px rgba(0,0,0,.45); filter: brightness(1.03); }
.masseuse-card img {
  width: 356px; height: 390px; object-fit: cover;
  border: 2px solid var(--gold); border-bottom: 0; display: block; margin: 0 auto; border-radius: 8px;
}
.masseuse-name {
  background: var(--gold); color: #000; padding: 0.75rem 1rem; font-family: Georgia, serif;
  font-weight: 800; font-size: 1.2rem; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
}
.masseuse-description { text-align: center; max-width: 900px; margin: 3rem auto 1rem; color: #fff; font-size: .95rem; line-height: 1.7; }
.masseuse-btn-wrapper { text-align: center; margin-top: 1.5rem; }

/* =========================
   FEATURES
   ========================= */
.features-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers items on small screens */
  align-items: flex-start;   /* keeps icons/text aligned at the top */
  gap: 2rem;                 /* modern way to space items */
  background: var(--gold);
  padding: 3rem 1rem;
  text-align: center;
}

.features-new .feature {
  flex: 1 1 180px;           /* flexible width but minimum 180px */
  max-width: 220px;          /* keeps from stretching too wide */
  margin: 0 auto;            /* centers within flex slot */
}

.features-new .feature img {
  width: 56px;               /* slightly bigger for clarity */
  height: 56px;
  margin: 0 auto 0.75rem;    /* centers icon */
  display: block;
}

.features-new .feature h4 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 0.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;     /* cleaner look */
}

.features-new .feature p {
  font-size: 0.9rem;
  color: #111;
  text-transform: uppercase;
  line-height: 1.4;
}

.call-now-wrapper {
  flex-basis: 100%;         /* full row in flex layout */
  text-align: center;
  margin-top: 2rem;
}

.btn.black {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.black:hover {
  background: #333;
}


/* =========================
   THERAPIES (cards)
   ========================= */
.therapies { padding: 3rem 1rem; background: #000; color: #fff; }
.therapies h2 { text-align: center; margin-bottom: 2rem; }
.therapy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.therapy-card { background: #111; padding: 1.5rem; border-radius: 12px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 10px 24px rgba(0,0,0,.35); }
.therapy-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: .9rem; }
.therapy-card h4 { color: var(--gold); margin: .3rem 0 .4rem; }
.therapy-card p { flex: 1; }

/* =========================
   HIGHLIGHT & INFO BAR
   ========================= */
.highlight { background: #111; color: #fff; width: 100%; padding: 4rem 2rem; }
.highlight-container { max-width: var(--container); margin: 0 auto; text-align: center; }
.highlight-container h2 { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.highlight-container p { font-size: 1.1rem; line-height: 1.8; }

.info-bar { background: var(--gold); color: #000; padding: 2rem; text-align: center; font-weight: 800; font-size: .9rem; }

/* =========================
   REVIEWS (global section)
   ========================= */
.reviews { padding: 3rem 1rem; background: #000; color: #fff; }
.reviews h2 { text-align: center; margin-bottom: 2.5rem; font-size: 2rem; color: var(--gold); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: stretch; }
.review-card {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border-left: 5px solid var(--gold);
  padding: 1.5rem; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,.5);
  display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s ease;
}
.review-card:hover { transform: translateY(-5px); }
.review-card h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: .75rem; }
.review-card p { font-size: 1rem; line-height: 1.6; color: #ddd; }

/* =========================
   CTA
   ========================= */
.cta-section { background: var(--gold); text-align: center; padding: 2rem 1rem; color: #000; }
.cta-buttons { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =========================
   FAQ
   ========================= */
.faq { padding: 3rem 1rem; background: #000; color: #fff; }
.faq h2 { text-align: center; margin-bottom: 2rem; }
.faq-item { margin-bottom: 1rem; border: 1px solid #333; }
.faq-question {
  width: 100%; padding: 1rem; text-align: left; background: #111; color: var(--gold);
  font-size: 1rem; border: none; outline: none; cursor: pointer;
}
.faq-answer { padding: 0 1rem 1rem; display: none; background: #111; color: #fff; }

/* =========================
   GALLERY
   ========================= */
.gallery { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gal-item { overflow: hidden; border-radius: var(--radius); background: #000; border: 2px solid var(--gold); transition: .25s ease transform, .25s ease box-shadow; }
.gal-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gal-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.45); }
.gal-cap { padding: 10px 14px; background: var(--gold); color: #000; font-weight: 800; }

/* =========================
   MASSAGE TYPES (cards)
   ========================= */
.massage-types { padding: 60px 0; }
.types-header { text-align: center; max-width: var(--container); margin: 0 auto 28px; padding: 0 16px; }
.types-header h2 { font-size: clamp(22px, 3.2vw, 30px); margin: 0 0 10px; }
.types-header p { color: var(--muted); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.type-card {
  background: var(--bg-2); border: 1px solid #222; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.type-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.45); border-color: var(--gold); }
.type-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-bottom: 2px solid var(--gold); }
.type-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.type-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.type-title h3 { margin: 0; font-size: 1.05rem; color: var(--gold); }
.type-desc { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.type-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.type-actions .btn { border-radius: 999px; padding: 10px 14px; font-weight: 800; border: 2px solid var(--gold); }
.type-actions .btn.gold { background: var(--gold); color: #000; border-color: var(--gold); }
.type-actions .btn.outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.type-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.type-tag { background: #0d0d0d; border: 1px solid #222; color: #bbb; padding: 4px 10px; border-radius: 999px; font-size: .8rem; }

/* =========================
   FOOTER
   ========================= */
.site-footer, footer { background: #111; color: #fff; padding: 2rem 1rem; }
.footer-content, .foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.site-footer h4, .foot h4 { color: var(--gold); margin-bottom: .5rem; }
.footer-note { text-align: center; margin-top: 2rem; font-size: .8rem; color: #aaa; }
.map iframe { width: 100%; height: 160px; border: 0; border-radius: 10px; }

/* =========================
   PAGE-LEVEL UTILITIES
   ========================= */
.erotic-intro { padding: 3rem 1rem; background: var(--gold); text-align: center; color: #000; }
.erotic-intro h2 { font-size: 2rem; }
.erotic-intro p { max-width: 800px; margin: 1rem auto; }

.split { display: grid; gap: 28px; grid-template-columns: repeat(12, 1fr); align-items: center; }
.split .text { grid-column: span 7; }
.split .pic  { grid-column: span 5; }
.card { background: var(--bg-2); border: 1px solid #222; border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 34px rgba(0,0,0,.35); }
.pic img { width: 100%; border-radius: var(--radius); border: 2px solid var(--gold); aspect-ratio: 16/11; object-fit: cover; }
@media (max-width: 960px) { .split .text, .split .pic { grid-column: 1 / -1; } }

.contact-wrap { background: #0b0b0b; border: 1px solid #222; border-radius: 16px; padding: 24px; max-width: 920px; margin: 0 auto; }
form .grid { display: grid; gap: 14px; }
label { font-size: .9rem; color: #bbb; }
input, textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #333; background: #111; color: #fff; }
textarea { min-height: 140px; resize: vertical; }

.model-img { width: 356px; height: 390px; object-fit: cover; border-radius: var(--radius); border: 2px solid var(--gold); display: block; margin: 0 auto; }

section { padding: 60px 0; }
.section-dark { background: var(--bg); }
.section-gold { background: var(--gold); color: #000; }

h2 { font-size: clamp(22px,3.2vw,30px); margin: 0 0 14px; }
h3 { font-size: clamp(18px,2.5vw,24px); margin: 0 0 10px; }
.bullets { columns: 1; padding-left: 18px; margin: 0; }
.bullets li { margin: 6px 0; }
@media (min-width: 860px){ .bullets { columns: 2; } }

/* =========================
   PROFILE LAYOUT
   ========================= */
.profile-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px; }
.profile-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.p-photo { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--gold); background: #000; }
.p-photo.tall img { width: 100%; height: 420px; object-fit: cover; display: block; }
.p-photo.wide { grid-column: 1 / -1; }
.p-photo.wide img { width: 100%; height: 360px; object-fit: cover; display: block; }
.profile-side { display: grid; gap: 16px; align-content: start; }
.p-card { background: #101010; border: 1px solid #222; border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 34px rgba(0,0,0,.35); }
.p-head { text-align: center; }
.p-name { font-size: 28px; letter-spacing: 1px; margin: 0; }
.p-sub  { color: var(--muted); margin-top: 2px; font-weight: 700; }
.p-rate { margin-top: 10px; font-size: 1rem; }
.p-rate span { color: var(--muted); margin-right: 6px; }
.p-title { color: var(--gold); margin: 0 0 10px; font-size: 1.05rem; }
.p-stats { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.p-stats li { display: flex; justify-content: space-between; border-bottom: 1px dashed #2a2a2a; padding-bottom: 6px; }
.p-stats li span { color: #bbb; }
.p-stats li b { color: #fff; }
.p-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.p-chips span { background: #0d0d0d; border: 1px solid #222; color: #bbb; padding: 6px 10px; border-radius: 999px; font-size: .85rem; font-weight: 700; }
.p-table { width: 100%; border-collapse: collapse; }
.p-table td { padding: 10px 0; border-bottom: 1px solid #1d1d1d; }
.p-table td:last-child { text-align: right; font-weight: 800; }
.p-note { display: block; margin-top: 10px; color: #bbb; font-size: .85rem; }
.p-contact .p-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.p-bio { grid-column: 1 / -1; margin-top: 6px; }
@media (max-width: 1024px) { .profile-wrap { grid-template-columns: 1fr; } .profile-photos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .profile-photos { grid-template-columns: 1fr; } .p-photo.tall img { height: 380px; } .p-photo.wide img { height: 300px; } .p-contact .p-actions { grid-template-columns: 1fr; } }

/* =========================
   PRICING PAGE (scoped)
   ========================= */
body.pricing-page { background: var(--sand); color: #000; }

/* Headline text forced black on pricing */
body.pricing-page .headline { background: var(--sand); padding: 34px 0 18px; text-align: center; }
body.pricing-page .headline h1 { margin: 0; font-size: clamp(22px,3.2vw,30px); letter-spacing: .5px; color: #000; }
body.pricing-page .headline p { color: #000; }

body.pricing-page .pricing { padding: 24px 0 60px; }
body.pricing-page .cards { display: grid; gap: 24px; grid-template-columns: repeat(12, 1fr); }
body.pricing-page .left, body.pricing-page .right, body.pricing-page .full { grid-column: span 6; }
@media (max-width: 980px) {
  body.pricing-page .left, body.pricing-page .right, body.pricing-page .full { grid-column: 1 / -1; }
}

body.pricing-page .card { background: #111; color: #fff; border: 1px solid #222; border-radius: var(--radius); padding: 20px 20px 12px; box-shadow: 0 12px 38px rgba(0,0,0,.35); }
body.pricing-page .card.gold { background: var(--sand); color: #000; border-color: var(--sand-2); }
body.pricing-page .card h3 { margin: 0 0 8px; font-size: clamp(18px,2.4vw,22px); }
body.pricing-page .card .muted { opacity: .85; }

body.pricing-page ul.clean { margin: 8px 0 14px; padding-left: 18px; }
body.pricing-page ul.clean li { margin: 4px 0; }

body.pricing-page .price-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: .98rem; }
body.pricing-page .price-table th, 
body.pricing-page .price-table td { border-bottom: 1px solid rgba(255,255,255,.15); padding: 10px 8px; text-align: left; }
body.pricing-page .price-table thead th { font-weight: 800; }
body.pricing-page .price-table td:nth-child(2), 
body.pricing-page .price-table th:nth-child(2),
body.pricing-page .price-table td:nth-child(3), 
body.pricing-page .price-table th:nth-child(3) { text-align: right; }

body.pricing-page .note { background: #1a1a1a; color: #fff; border: 1px solid #333; border-radius: 10px; padding: 12px; margin-top: 10px; font-size: .95rem; }
body.pricing-page .card.gold .note { background: #2b2518; color: #fff; border-color: #4a3d28; }
body.pricing-page .note a { color: var(--gold); text-decoration: none; font-weight: 700; }

body.pricing-page .extras-list { list-style: none; margin: 10px 0 0; padding: 0; }
body.pricing-page .extras-list li { padding: 10px 0; border-top: 1px solid rgba(0,0,0,.2); }
body.pricing-page .extras-list li:first-child { border-top: 0; }

/* =========================
   CONTACT PAGE
   ========================= */
body.contact-page .contact-hero { padding: 42px 0 20px; background: #000; color: #fff; text-align: center; }
body.contact-page .contact-hero h1 { margin: 0; font-size: clamp(28px, 4.2vw, 44px); letter-spacing: .5px; }
body.contact-page .pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
  background: var(--gold); color: #000; border: 2px solid var(--gold-2);
  border-radius: 999px; padding: 10px 16px; font-weight: 800; text-decoration: none;
}
body.contact-page .lead { max-width: 980px; margin: 18px auto 24px; text-align: center; color: #e8e0cf; }

body.contact-page .contact-tiles {
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 20px auto 0; max-width: var(--container); padding: 0 16px;
}
body.contact-page .contact-tile {
  background: var(--gold); color: #000; border-radius: 14px; padding: 22px;
  display: grid; place-items: center; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,.35); font-weight: 800;
}
body.contact-page .contact-tile span { font-size: 1.1rem; margin-bottom: 4px; }

body.contact-page .contact-details { padding: 22px 0 40px; background: #000; }
body.contact-page .contact-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
body.contact-page .contact-grid .card {
  background: var(--bg-2); border: 1px solid #222; border-radius: var(--radius);
  padding: 18px; box-shadow: 0 10px 34px rgba(0,0,0,.35);
}
body.contact-page .contact-grid .card h3 { color: var(--gold); margin: .2rem 0 .5rem; font-size: 1.05rem; }
body.contact-page .contact-grid .card p { color: #ddd; margin: .25rem 0; }

/* =========================
   REVIEWS PAGE
   ========================= */
body.reviews-page .reviews-hero { padding: 42px 0 18px; background: #000; color: #fff; text-align: center; }
body.reviews-page .reviews-hero h1 { margin: 0; font-size: clamp(26px, 4vw, 44px); letter-spacing: .5px; }
body.reviews-page .reviews-hero p { margin-top: 6px; color: #e9e1d0; font-weight: 700; }
body.reviews-page .review-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }

/* Language switcher (top-right look, inherits nav styling) */
.lang-switcher {
  margin-left: auto; /* pushes to the end on wide screens */
  display: flex;
  align-items: center;
}
.lang-switcher select {
  appearance: none;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 6px 10px;
  font: inherit;
  cursor: pointer;
}
.lang-switcher select:focus {
  outline: 2px solid #c9a26a;
  outline-offset: 2px;
}

/* Basic RTL support */
html[dir="rtl"] { direction: rtl; }
html[dir="rtl"] nav ul { flex-direction: row-reverse; }
html[dir="rtl"] .dropdown .submenu { left: auto; right: 0; text-align: right; }
html[dir="rtl"] .masseuse-grid,
html[dir="rtl"] .therapy-grid,
html[dir="rtl"] .review-grid { direction: rtl; }

/* Mobile: keep it neat */
@media (max-width: 768px) {
  .lang-switcher { margin: 8px 0 0; }
  .lang-switcher select { width: 100%; }
}

/* Screen reader only */
.sr-only {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
}

/* FAQ */
.faq .faq-answer { display: none; }
.faq .faq-item.open .faq-answer { display: block; }

/* Simple reveal (tweak to taste) */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.show { opacity: 1; transform: none; }

/* Optional: tweak text alignment and list direction in RTL */
body.rtl { direction: rtl; }
body.rtl nav ul { direction: rtl; }
body.rtl .dropdown .submenu { text-align: right; }
