/* ============================================================
   ROYAL BROS — Premium Luxury Men's Salon
   style.css  v3.0  (WA Black, Text Readability, SS Label)
   ============================================================ */


/* ── Variables ── */
:root {
  --black:        #080808;
  --black-soft:   #101010;
  --black-card:   #141414;
  --black-border: #1e1e1e;
  --black-hover:  #1a1a1a;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-dark:    #9e7828;
  --gold-subtle:  rgba(201,168,76,.08);
  --gold-glow:    rgba(201,168,76,.25);
  --beige:        #f5f0e8;
  --beige-dark:   #e0d5c0;
  --white:        #ffffff;
  --text-body:    #c8c0b4;
  --text-muted:   #8a8078;
  --text-light:   #e0d8cc;

  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --radius:       4px;
  --radius-lg:    10px;
  --radius-xl:    16px;
  --trans:        all 0.32s cubic-bezier(.4,0,.2,1);
  --shadow-sm:    0 4px 16px rgba(0,0,0,.35);
  --shadow:       0 10px 40px rgba(0,0,0,.5);
  --shadow-gold:  0 4px 24px rgba(201,168,76,.22);
  --nav-h:        80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; }
body   { background: var(--black); color: var(--text-body); font-family: var(--font-body); font-weight: 300; line-height: 1.85; overflow-x: hidden; }
img    { max-width: 100%; height: auto; display: block; }
a      { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover{ color: var(--gold-light); }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); }

p  { font-size: 1rem; line-height: 1.85; color: var(--text-light); }

/* ── Layout ── */
.container  { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }
.section-sm { padding: 64px 0; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.bg-soft     { background: var(--black-soft); }

.gold-line {
  display: block; width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 14px auto 22px;
}
.gold-line.left { margin-left: 0; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title   { margin-bottom: 14px; }
.section-subtitle{
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-outline {
  border: 1px solid rgba(201,168,76,.5); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-whatsapp {
  background: #111111;
  color: var(--white);
  border: 1px solid rgba(201,168,76,.45);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.btn-whatsapp:hover {
  background: #1c1c1c;
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,.18);
}
.btn-whatsapp svg { opacity: .85; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1.visible { transition-delay: .12s; }
.fade-in-delay-2.visible { transition-delay: .24s; }
.fade-in-delay-3.visible { transition-delay: .36s; }
.fade-in-delay-4.visible { transition-delay: .48s; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding: 0;
  transition: background .38s ease, backdrop-filter .38s ease, border-color .38s ease, height .32s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--black-border);
  height: 68px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); transition: height .32s ease;
}
#navbar.scrolled .nav-inner { height: 68px; }

/* Logo */
.nav-logo        { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img    { height: 60px; width: auto; object-fit: contain; transition: var(--trans); }
#navbar.scrolled .nav-logo-img { height: 48px; }
.nav-logo-text   {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 700;
  color: var(--white); letter-spacing: .03em;
}
.nav-logo-text em { font-style: italic; color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin: 0 32px;
}
.nav-links > li > a {
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-light);
  padding: 8px 12px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-links > li > a:hover       { color: var(--gold); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a.active      { color: var(--gold); }
.nav-arrow { font-size: .6rem; opacity: .6; transition: var(--trans); }
.nav-dropdown:hover .nav-arrow  { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown    { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(14,14,14,.98);
  border: 1px solid var(--black-border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 8px 0; min-width: 210px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open  .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: .82rem; color: var(--text-light);
  letter-spacing: .06em; transition: var(--trans);
}
.dropdown-menu li a:hover { background: var(--gold-subtle); color: var(--gold); padding-left: 26px; }

/* Nav Right CTA */
.nav-cta           { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone-link    { display: flex; align-items: center; gap: 7px; color: var(--text-light); font-size: .82rem; letter-spacing: .05em; }
.nav-phone-link:hover { color: var(--gold); }
.nav-phone-icon    { font-size: .9rem; }
.nav-phone-num     { font-weight: 500; }
.nav-book-btn      { padding: 10px 22px; font-size: 11px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 10px; z-index: 1001;
}
.ham-line {
  display: block; width: 24px; height: 1.8px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans); transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ── Mobile Menu ── */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 997;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: var(--trans);
}
.mobile-menu.open ~ .menu-backdrop,
#mobileMenu.open + .menu-backdrop { opacity: 1; visibility: visible; }

/* wait – backdrop is sibling in DOM; target it via JS class */
.menu-backdrop.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1002;
  width: min(360px, 90vw);
  background: var(--black-soft);
  border-left: 1px solid var(--black-border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner { display: flex; flex-direction: column; height: 100%; }

.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--black-border);
}
.mobile-logo-img { height: 45px; width: auto; object-fit: contain; }
.mobile-logo .nav-logo-text { font-size: 1.4rem; }

.mobile-close {
  width: 36px; height: 36px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--trans);
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }

.mobile-nav {
  display: flex; flex-direction: column;
  padding: 16px 0; flex: 1;
}
.mobile-nav a {
  display: block; padding: 13px 28px;
  font-size: .95rem; font-weight: 400; color: var(--text-light);
  letter-spacing: .06em; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--trans);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); padding-left: 36px; }
.mobile-sub { background: rgba(0,0,0,.3); }
.mobile-sub a {
  font-size: .84rem; color: var(--text-muted);
  padding-left: 40px !important;
}
.mobile-sub a:hover { color: var(--gold-light); padding-left: 48px !important; }

.mobile-menu-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--black-border);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-wa-btn   { justify-content: center; width: 100%; }
.mobile-call-btn {
  text-align: center; padding: 12px;
  font-size: .82rem; color: var(--text-muted);
  border: 1px solid var(--black-border); border-radius: var(--radius);
  transition: var(--trans);
}
.mobile-call-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0a0800 0%, #1a1400 40%, #080808 100%);
  transform: scale(1.08);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
.hero-bg.has-photo {
  background-size: cover; background-position: center 30%;
  filter: brightness(.22) saturate(.6) contrast(1.1);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.15); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(4,4,4,.92) 0%, rgba(4,4,4,.5) 55%, rgba(4,4,4,.1) 100%),
    linear-gradient(to bottom, rgba(4,4,4,.3) 0%, transparent 40%, rgba(4,4,4,.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 740px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 2px; font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.25; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.72);
  margin-bottom: 40px; max-width: 520px; font-weight: 300; line-height: 1.85;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }


/* ── Trust Bar ── */
.trust-bar {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 30px 0;
}
.trust-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-subtle); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.trust-value { font-size: 1.15rem; font-weight: 600; color: var(--white); font-family: var(--font-head); }
.trust-label { font-size: .78rem; color: var(--text-light); letter-spacing: .06em; margin-top: 2px; }
.trust-divider { width: 1px; height: 38px; background: var(--black-border); }

/* ── Services Grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans);
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent; transition: border-color .3s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { border-color: rgba(201,168,76,.35); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; position:relative; }
.service-card-img img {
  width:100%; height:100%; object-fit:cover; transition: transform .5s ease;
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
  position:absolute; inset:0;
}
.service-card:hover .service-card-img img { transform: scale(1.09); }
.service-card-body { padding: 26px 24px; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.38rem; margin-bottom: 10px; }
.service-card-body p  { font-size: .97rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.75; flex: 1; }
.service-price {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--black-border);
  margin-top: auto;
}
.price-from { font-size: .73rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.price-val  { font-family: var(--font-head); font-size: 1.65rem; color: var(--gold); line-height: 1; }

/* ── Gallery ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 56px;
}
.gallery-item      { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; min-height:420px; }
.gallery-item img  {
  width:100%; height:100%; object-fit:cover; min-height:200px;
  transition: transform .52s ease;
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-head); font-size: 1rem; color: var(--gold); font-style: italic; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image {
  position: relative;
  overflow: visible; /* allow badge to slightly overlay */
}
.why-image img {
  width:100%; height:560px; min-height:320px;
  object-fit:cover; object-position:center;
  border-radius:var(--radius-lg); filter:brightness(.82);
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
  display:block;
  border: 1px solid rgba(201,168,76,.12);
}
.why-badge-float {
  position: absolute; bottom: 28px; right: 16px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-left: 3px solid var(--gold);
  padding: 20px 26px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow);
}
.why-badge-float .num { font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.why-badge-float .lbl { font-size: .7rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.why-features { margin-top: 38px; display: flex; flex-direction: column; gap: 24px; }
.why-feature  { display: flex; gap: 18px; align-items: flex-start; }
.why-feature-icon {
  width: 48px; height: 48px; background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.why-feature h4 { font-size: 1.1rem; margin-bottom: 5px; font-family: var(--font-head); }
.why-feature p  { font-size: .95rem; color: var(--text-light); line-height: 1.75; }

/* ── Membership ── */
.membership-section { background: var(--black-soft); }
.membership-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 24px; margin-top: 56px;
}
.membership-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 38px 28px;
  text-align: center; position: relative; transition: var(--trans);
}
.membership-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg,rgba(20,16,0,.9) 0%,var(--black-card) 80%);
}
.membership-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 18px; border-radius: 2px; white-space: nowrap;
}
.membership-icon {
  width: 62px; height: 62px; background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 18px;
}
.membership-card h3    { font-size: 1.55rem; margin-bottom: 6px; }
.membership-price      { font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); margin: 16px 0; }
.membership-price span { font-size: .95rem; color: var(--text-muted); }
.membership-perks      { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.membership-perks li   { font-size: .95rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 10px; }
.membership-perks li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 24px; margin-top: 56px;
}
.testimonial-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--trans);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-head); font-size: 5rem; color: rgba(201,168,76,.08);
  line-height: 1;
}
.testimonial-card:hover { border-color: rgba(201,168,76,.28); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-head); font-size: 1.1rem; font-style: italic;
  color: var(--white); line-height: 1.8; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--black-border); }
.author-avatar img {
  width:100%; height:100%; object-fit:cover;
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
}
.author-name { font-size: .95rem; font-weight: 500; color: var(--white); }
.author-tag  { font-size: .78rem; color: var(--text-light); margin-top: 3px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--black); }

/* ── Booking CTA ── */
.booking-cta {
  background: linear-gradient(135deg,#0a0800 0%,#151000 50%,#080808 100%);
  border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border);
  text-align: center; padding: 110px 0;
}
.booking-cta h2 { margin-bottom: 14px; }
.booking-cta p  { color: var(--text-muted); margin-bottom: 40px; }
.booking-btns   { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ── Map ── */
.map-section { padding: 80px 0 0; }
.map-wrapper { display: grid; grid-template-columns: 1fr 2fr; border: 1px solid var(--black-border); border-radius: var(--radius-lg); overflow: hidden; }
.map-info { background: var(--black-card); padding: 52px 40px; }
.map-info h3 { font-size: 1.8rem; margin-bottom: 8px; }
.map-info p  { font-size: 1rem; color: var(--text-light); margin-bottom: 34px; }
.map-details { display: flex; flex-direction: column; gap: 20px; }
.map-detail  { display: flex; gap: 14px; align-items: flex-start; }
.map-detail-icon {
  width: 36px; height: 36px; background: var(--gold-subtle);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.map-detail-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 3px; }
.map-detail-value { font-size: .95rem; color: var(--white); line-height: 1.6; }
.map-embed { position:relative; min-height:420px; }  .map-embed iframe { position:absolute; inset:0; width:100%; height:100%; min-height:420px; border:0; display:block; }

/* ── Footer ── */
.site-footer { background: var(--black-soft); border-top: 1px solid var(--black-border); }
.footer-top  { padding: 80px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 52px; }

.footer-brand .footer-logo-link { display: inline-block; margin-bottom: 20px; }
.footer-logo-img  { height: 56px; width: auto; object-fit: contain; }
.footer-logo-text { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.footer-logo-text em { font-style: italic; color: var(--gold); }
.footer-brand p { font-size: .95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 26px; }

.social-links { display: flex; gap: 10px; }
.social-link  {
  width: 38px; height: 38px; background: var(--black-card);
  border: 1px solid var(--black-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--trans);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }

.footer-col h4 {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--white);
  margin-bottom: 22px; padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .95rem; color: var(--text-light);
  display: inline-flex; align-items: center; gap: 7px; transition: var(--trans);
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: .8rem; opacity: .6; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--text-light); }
.fc-icon { font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: var(--text-light); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-hours { margin-top: 18px; }
.footer-hours p { font-size: .85rem; color: var(--text-light); margin-bottom: 5px; }
.footer-hours span { color: var(--gold-light); font-weight: 500; }

.footer-bottom {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 22px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: .85rem; color: var(--text-light); }
.footer-copy strong { color: var(--gold); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a  { font-size: .85rem; color: var(--text-light); }
.footer-legal a:hover { color: var(--gold); }
.fl-sep { color: var(--black-border); }

/* ── Floating WhatsApp ── */
.floating-wa {
  position: fixed; bottom: 90px; right: 28px; z-index: 899;
  width: 58px; height: 58px;
  background: #111111;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.5), 0 0 0 0 rgba(201,168,76,0);
  animation: waBounce 3.2s ease-in-out infinite;
  transition: var(--trans);
}
.floating-wa svg { width: 28px; height: 28px; opacity: .9; }
.floating-wa:hover {
  transform: scale(1.1) !important;
  background: #1a1a1a;
  border-color: var(--gold);
  box-shadow: 0 6px 32px rgba(201,168,76,.2);
  animation: none;
}
@keyframes waBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }

.floating-wa-label {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(4px);
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 11.5px; color: var(--white); white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.floating-wa:hover .floating-wa-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   SALON SHASTRA TOGGLE
   ============================================================ */
#ss-toggle-wrap {
  position: fixed; bottom: 25px; right: 25px; z-index: 900;
}

/* Trigger Button */
.ss-trigger {
  height: 42px;
  padding: 0 16px 0 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f0c02, #1e1800);
  border: 1px solid rgba(201,168,76,.4);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(0,0,0,.55);
  transition: var(--trans); cursor: pointer;
  color: rgba(201,168,76,.75);
  white-space: nowrap;
}
.ss-trigger:hover,
.ss-trigger.active {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.6), 0 0 0 4px rgba(201,168,76,.07);
  color: var(--gold);
}
.ss-trigger-inner {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ss-trigger-name {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: inherit;
  transition: var(--trans);
}

/* Popup Card */
.ss-popup {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  width: 236px;
  background: #0d0b05;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.06);
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(10px) scale(.96);
  transition: opacity .32s ease, transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
  pointer-events: none;
}
.ss-popup.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.ss-popup-header {
  display: flex; justify-content: flex-end;
  padding: 10px 12px 0;
}
.ss-close-btn {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex;
  align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-muted); cursor: pointer;
  transition: var(--trans); line-height: 1;
  border: 1px solid transparent;
}
.ss-close-btn:hover { background: rgba(201,168,76,.12); color: var(--gold); border-color: rgba(201,168,76,.3); }

.ss-popup-body {
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 24px 26px; text-align: center;
}
.ss-logo-ring {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,16,0,.9), rgba(10,8,0,.9));
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px rgba(201,168,76,.04);
}
.ss-powered {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.ss-brand {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  color: var(--gold); margin-bottom: 5px; line-height: 1.2;
}
.ss-tagline {
  font-size: .85rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 18px;
}
.ss-visit-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); border-radius: var(--radius);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: var(--trans);
}
.ss-visit-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── Inner page header ── */
.page-hero {
  padding: 140px 0 72px;  /* desktop; see @media 768 for mobile */
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-40%; right:-8%;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 10px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; color: var(--text-muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--black-border); }

/* ── Content Layout (service/blog detail) ── */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; padding: 88px 0; }
.content-main h2 { font-size: 1.95rem; margin: 44px 0 16px; }
.content-main h3 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--white); }
.content-main p  { font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 20px; }
.content-main ul { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.content-main ul li { font-size: 1rem; color: var(--text-light); display: flex; gap: 12px; line-height: 1.7; }
.content-main ul li::before { content: '◆'; color: var(--gold); font-size: .45rem; margin-top: 8px; flex-shrink: 0; }
.content-main img { border-radius: var(--radius-lg); margin: 32px 0; width:100%; max-height:440px; object-fit:cover; }
.content-main a   { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 22px;
}
.sidebar-card h4 { font-size: .85rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--black-border); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: .95rem; color: var(--text-light);
  padding: 11px 14px; background: var(--black);
  border-radius: var(--radius); border: 1px solid var(--black-border);
  display: flex; align-items: center; gap: 10px; transition: var(--trans);
}
.sidebar-links a::before { content: '✂'; font-size: .72rem; color: var(--gold); }
.sidebar-links a:hover { color: var(--gold); border-color: rgba(201,168,76,.3); padding-left: 18px; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 28px; margin-top: 56px; }
.blog-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans);
}
.blog-card:hover { border-color: rgba(201,168,76,.28); transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; position:relative; }
.blog-card-img img {
  width:100%; height:100%; object-fit:cover; transition: transform .52s ease;
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
  position:absolute; inset:0;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 28px 24px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text-light); margin-bottom: 10px; }
.blog-cat  { color: var(--gold); font-weight: 500; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.blog-card p  { font-size: .95rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.75; }
.read-more { font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 88px 0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--text-light); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 14px 18px;
  font-family: var(--font-body); font-size: 1rem; color: #ffffff;
  transition: var(--trans); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(201,168,76,.03); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--black-card); }

/* ── About ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 100px 0; }
.about-story img {
  width:100%; height:500px; object-fit:cover;
  border-radius:var(--radius-lg); filter:brightness(.82);
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 28px; margin-top: 56px; }
.team-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: var(--trans);
}
.team-card:hover { border-color: rgba(201,168,76,.28); transform: translateY(-4px); }
.team-card img {
  width:100%; height:265px; object-fit:cover; filter:brightness(.85);
  transition: var(--trans);
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
}
.team-card:hover img { filter: brightness(.92); }
.team-card-body { padding: 20px; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card span { font-size: .78rem; color: var(--gold); }

/* ── Gallery Page ── */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.gallery-page-grid .gallery-item { height: 285px; }
.gallery-page-grid .gallery-item img { height:100%; object-fit:cover; width:100%; }

.filter-btn       { transition: var(--trans); }
.filter-btn.active{ background: var(--gold) !important; color: var(--black) !important; border-color: var(--gold) !important; }

/* ── 404 ── */
.err-num { font-family: var(--font-head); font-size: 8rem; color: var(--gold); opacity: .18; line-height: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid    { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-badge-float { right: 0; }
  .map-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .nav-links, .nav-phone-link { display: none; }
  .hamburger { display: flex; }
  .nav-book-btn { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  :root { --nav-h: 68px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item.tall { grid-row: span 1; }
  .content-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 44px; }
  .about-story img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .why-badge-float { position: static; margin-top: 20px; display: inline-block; }
  .why-image img { height: 340px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero { padding: 110px 0 52px; }
  .blog-post-hero { min-height: 340px; }
  .floating-wa { bottom: 96px; right: 20px; }
  #ss-toggle-wrap { bottom: 20px; right: 16px; }
}
@media (max-width: 540px) {
  .hero-btns    { flex-direction: column; align-items: flex-start; }
  .booking-btns { flex-direction: column; align-items: center; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ss-popup { width: 210px; right: -8px; }
}

/* ============================================================
   BLOG INDIVIDUAL PAGE — v3.0
   ============================================================ */

/* ── Blog Post Hero ── */
.blog-post-hero {
  position: relative; padding: 0;
  min-height: 520px; display: flex; align-items: flex-end;
  overflow: hidden;
}
.blog-post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.3) saturate(.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.blog-post-hero:hover .blog-post-hero-bg { transform: scale(1.07); }
.blog-post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.6) 50%, rgba(8,8,8,.2) 100%);
}
.blog-post-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 64px;
}
.blog-post-hero .breadcrumb { margin-bottom: 20px; }

.blog-post-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.15; margin-bottom: 24px;
  max-width: 820px;
}
.blog-post-title em { font-style: italic; color: var(--gold); }

.blog-post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.bpm-author {
  display: flex; align-items: center; gap: 12px;
}
.bpm-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold);
  flex-shrink: 0;
}
.bpm-avatar img { width:100%; height:100%; object-fit:cover; }
.bpm-author-name { font-size: .9rem; font-weight: 500; color: var(--white); }
.bpm-author-role { font-size: .72rem; color: var(--gold); letter-spacing: .08em; }
.bpm-divider { width: 1px; height: 32px; background: rgba(255,255,255,.12); }
.bpm-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: var(--text-muted);
}
.bpm-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Blog Article Layout ── */
.blog-article-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding: 72px 0 96px;
  align-items: start;
}

/* ── Table of Contents ── */
.toc-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 40px;
}
.toc-card h4 {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.toc-list { display: flex; flex-direction: column; gap: 4px; counter-reset: toc; }
.toc-list a {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-light); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--trans); text-decoration: none;
  counter-increment: toc;
}
.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: .72rem; color: var(--gold); font-weight: 600;
  flex-shrink: 0; margin-top: 2px; letter-spacing: .05em;
}
.toc-list a:hover { color: var(--gold); padding-left: 6px; }
.toc-list li:last-child a { border-bottom: none; }

/* ── Article Body ── */
.blog-article-body { }
.blog-article-body h2 {
  font-size: 1.75rem;
  margin: 52px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black-border);
  position: relative;
}
.blog-article-body h2::before {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.blog-article-body h3 {
  font-size: 1.25rem; margin: 32px 0 12px;
  color: var(--gold-light);
}
.blog-article-body p {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.95; margin-bottom: 22px;
}
.blog-article-body strong { color: var(--white); font-weight: 600; }
.blog-article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.blog-article-body a:hover { color: var(--gold-light); }
.blog-article-body ul,
.blog-article-body ol {
  margin: 20px 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.blog-article-body ul li,
.blog-article-body ol li {
  font-size: 1rem; color: var(--text-light);
  display: flex; gap: 14px; line-height: 1.75;
}
.blog-article-body ul li::before {
  content: '◆'; color: var(--gold);
  font-size: .4rem; margin-top: 9px; flex-shrink: 0;
}
.blog-article-body ol { counter-reset: ol-counter; }
.blog-article-body ol li::before {
  counter-increment: ol-counter;
  content: counter(ol-counter) '.';
  color: var(--gold); font-weight: 700;
  font-size: .88rem; flex-shrink: 0;
  min-width: 20px; margin-top: 1px;
}
.blog-article-body img {
  width: 100%; border-radius: var(--radius-lg);
  margin: 36px 0; max-height: 460px; object-fit: cover;
  border: 1px solid var(--black-border);
}

/* ── Pull Quote ── */
.pull-quote {
  margin: 44px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute; top: -12px; left: 24px;
  font-family: var(--font-head); font-size: 5rem;
  color: rgba(201,168,76,.2); line-height: 1;
}
.pull-quote p {
  font-family: var(--font-head); font-size: 1.25rem !important;
  font-style: italic; color: var(--white) !important;
  margin: 0 !important; line-height: 1.65 !important;
}
.pull-quote cite {
  display: block; margin-top: 12px;
  font-size: .78rem; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase;
  font-style: normal;
}

/* ── Info Box ── */
.info-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px; margin: 36px 0;
}
.info-box-title {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.info-box p { font-size: .95rem !important; margin: 0 !important; }

/* ── Article Tags ── */
.article-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 44px 0 0; padding-top: 28px;
  border-top: 1px solid var(--black-border);
}
.article-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 2px; font-size: .72rem;
  color: var(--text-muted); letter-spacing: .1em;
  text-transform: uppercase; transition: var(--trans);
}
.article-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── Share Bar ── */
.share-bar {
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0; padding: 20px 24px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); flex-wrap: wrap;
}
.share-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); margin-right: 4px;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; transition: var(--trans); cursor: pointer;
  border: 1px solid var(--black-border); color: var(--text-light);
  background: var(--black);
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-btn.wa   { color: #4ade80; border-color: rgba(74,222,128,.25); }
.share-btn.wa:hover { background: rgba(74,222,128,.08); border-color: #4ade80; }

/* ── Author Bio Card ── */
.author-bio-card {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; margin: 52px 0;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
}
.author-bio-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0;
}
.author-bio-avatar img { width:100%; height:100%; object-fit:cover; }
.author-bio-name { font-size: 1.1rem; margin-bottom: 2px; }
.author-bio-role { font-size: .75rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.author-bio-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ── Related Posts ── */
.related-posts { padding: 72px 0; border-top: 1px solid var(--black-border); }
.related-posts .section-label { margin-bottom: 8px; }
.related-posts h2 { margin-bottom: 40px; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ── Article CTA Banner ── */
.article-cta-banner {
  margin: 52px 0;
  padding: 40px 36px;
  background: linear-gradient(135deg, #0f0c02 0%, #1a1400 50%, #0a0800 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.article-cta-banner h3 {
  font-size: 1.4rem; margin-bottom: 6px;
}
.article-cta-banner p {
  font-size: .9rem; color: var(--text-muted);
  margin: 0 !important;
}

/* ── Progress Bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Sidebar blog-specific ── */
.sidebar-toc { position: sticky; top: 96px; }
.sidebar-share-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: var(--black); border: 1px solid var(--black-border);
  border-radius: var(--radius); font-size: .82rem;
  color: var(--text-light); transition: var(--trans); cursor: pointer; margin-bottom: 8px;
}
.sidebar-share-btn:hover { border-color: var(--gold); color: var(--gold); }
.sidebar-share-btn.wa { color: #4ade80; border-color: rgba(74,222,128,.2); }
.sidebar-share-btn.wa:hover { background: rgba(74,222,128,.06); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-article-wrap { grid-template-columns: 1fr; gap: 44px; }
  .sidebar-toc { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .blog-post-hero { min-height: 420px; }
  .blog-post-title { font-size: 1.75rem; }
  .blog-post-meta { gap: 14px; }
  .bpm-divider { display: none; }
  .author-bio-card { flex-direction: column; gap: 16px; }
  .article-cta-banner { flex-direction: column; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .share-bar { gap: 8px; }
}

/* ============================================================
   PERFORMANCE & ACCESSIBILITY ADDITIONS  v4.0
   ============================================================ */

/* ── Prevent CLS: reserve space for lazy-loaded images ── */
img {
  max-width: 100%; height: auto; display: block;
  /* Prevents layout shift while loading */
}
.service-card-img img,
.blog-card-img img,
.gallery-item img,
.team-card img {
  width: 100%;
  /* aspect-ratio ensures space reserved before load */
}
.service-card-img  { aspect-ratio: 4/3; }
.blog-card-img     { aspect-ratio: 16/9; }

/* content-visibility: auto REMOVED — it prevents IntersectionObserver
   from detecting off-screen .fade-in elements, breaking all scroll animations.
   CLS prevention is handled via aspect-ratio on image containers instead. */

/* will-change removed from cards — interferes with translateY initial state on fade-in.
   Applied only after animation via .animation-done class below. */
.animation-done { will-change: auto; }

/* ── Skip to main content (accessibility) ── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--black);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── Focus styles (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Reduced motion (accessibility) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { animation: none; transform: scale(1); }
  .floating-wa { animation: none; }
}

/* ── Print styles ── */
@media print {
  #navbar, .floating-wa, #ss-toggle-wrap, .mobile-menu,
  .booking-cta { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; }
  h1,h2,h3 { color: #000; page-break-after: avoid; }
}

/* ── High contrast mode support ── */
@media (forced-colors: active) {
  .btn-gold { forced-color-adjust: none; }
  #navbar { border-bottom: 1px solid ButtonText; }
}

/* ── Ensure sections have proper ARIA landmark spacing ── */
main { display: block; }
section + section { margin-top: 0; }

/* ── Address element styling ── */
address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Visually hidden (screen reader only) ── */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ============================================================
   LOCATION CARD  (contact page)
   ============================================================ */
.location-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 480px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.06);
  transition: var(--trans);
}
.location-card:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(201,168,76,.12);
  transform: translateY(-4px);
}
.location-card-city {
  font-family: var(--font-head);
  font-size: 1.55rem; font-weight: 600;
  color: var(--gold); margin-bottom: 24px;
  letter-spacing: .01em;
  text-transform: capitalize;
}

/* Info rows */
.lc-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.lc-row  {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .92rem; color: var(--text-light); line-height: 1.65;
}
.lc-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 8px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: var(--trans);
}
.lc-row:hover .lc-icon {
  background: rgba(201,168,76,.16);
  border-color: rgba(201,168,76,.4);
}
.lc-icon svg { width: 15px; height: 15px; color: var(--gold); }
.lc-text strong { display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px; }
.lc-text a { color: var(--text-light); text-decoration: none; }
.lc-text a:hover { color: var(--gold); }

/* Divider */
.lc-divider {
  height: 1px; background: rgba(255,255,255,.06); margin-bottom: 22px;
}

/* Three small action buttons */
.lc-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.lc-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 13px 8px;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer; text-decoration: none;
  transition: background .28s, border-color .28s, color .28s, transform .22s, box-shadow .28s;
  position: relative; overflow: hidden;
}
/* Gold sweep on hover */
.lc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(201,168,76,.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.lc-btn:hover::before { transform: translateX(100%); }
.lc-btn:hover {
  border-color: rgba(201,168,76,.45);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,76,.1);
}
.lc-btn:active { transform: translateY(-1px); }
.lc-btn svg   { width: 18px; height: 18px; color: inherit; transition: color .28s; }
/* Individual button accent colours on hover */
.lc-btn.call:hover   { border-color: rgba(130,200,255,.4); color: #82c8ff; box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 12px rgba(130,200,255,.08); }
.lc-btn.wa:hover     { border-color: rgba(74,222,128,.4);  color: #4ade80; box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 12px rgba(74,222,128,.08); }
.lc-btn.map:hover    { border-color: rgba(255,180,80,.4);  color: #ffb450; box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 12px rgba(255,180,80,.08); }

/* Big Book Now button */
.lc-book-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, transform .22s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(201,168,76,.25);
  position: relative; overflow: hidden;
}
.lc-book-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 25%, rgba(255,255,255,.14) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.lc-book-btn:hover::before { transform: translateX(100%); }
.lc-book-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,.38);
}
.lc-book-btn:active { transform: translateY(0); }
.lc-book-btn svg { width: 17px; height: 17px; }

/* Contact page layout with card */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 72px 0;
}
.contact-cards-stack {
  display: flex; flex-direction: column; gap: 20px;
}

@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-card { max-width: 100%; }
  .lc-actions { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .lc-actions { grid-template-columns: 1fr 1fr; }
  .lc-btn.map { grid-column: span 2; }
}

/* ============================================================
   VISION & MISSION  (about page)
   ============================================================ */
.vision-mission-section {
  padding: 96px 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.vision-mission-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 65%);
  pointer-events: none;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.vm-card {
  position: relative;
  padding: 48px 40px;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--trans);
}
.vm-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,.18);
  transition: border-color .3s;
}
.vm-card:hover::before { border-color: rgba(201,168,76,.4); }
.vm-card.vision {
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #0a0900 100%);
}
.vm-card.mission {
  background: linear-gradient(135deg, #080808 0%, #0e0e0e 60%, #050505 100%);
}
/* Huge watermark letter */
.vm-watermark {
  position: absolute; top: -16px; right: 20px;
  font-family: var(--font-head);
  font-size: 11rem; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,.04);
  pointer-events: none; user-select: none;
  transition: color .4s;
}
.vm-card:hover .vm-watermark { color: rgba(201,168,76,.07); }
/* Icon ring */
.vm-icon-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px rgba(201,168,76,.03);
  transition: var(--trans);
}
.vm-card:hover .vm-icon-ring {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,.06), var(--shadow-gold);
}
.vm-icon-ring svg { width: 26px; height: 26px; color: var(--gold); }
.vm-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.vm-card h3 {
  font-size: 1.7rem; margin-bottom: 16px; color: var(--white);
}
.vm-card p {
  font-size: .97rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 0;
}
/* Pillars list */
.vm-pillars {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px; list-style: none; padding: 0;
}
.vm-pillars li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text-light);
}
.vm-pillars li::before {
  content: '';
  width: 18px; height: 2px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Gold separator line between v/m cards */
.vm-separator {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.3), transparent);
  align-self: stretch;
  display: none; /* shown only in two-col */
}

@media (max-width: 840px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 40px 28px; }
  .vm-watermark { font-size: 8rem; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 88px 0; background: var(--black-soft); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-top: 60px;
  align-items: start;
}

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .28s, box-shadow .28s;
}
.faq-item.open,
.faq-item:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px;
  background: transparent; border: none; cursor: pointer;
  text-align: left; gap: 16px;
  color: var(--white); font-family: var(--font-body);
  font-size: 1rem; font-weight: 500; line-height: 1.5;
}
.faq-question:hover { color: var(--gold-light); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform .3s ease, background .25s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: rgba(201,168,76,.15);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease, padding .28s ease;
}
.faq-answer:not([hidden]) {
  max-height: 400px;
  padding: 0 24px 22px;
}
/* Override hidden for CSS animation */
.faq-answer[hidden] { display: block !important; max-height: 0; padding: 0 24px; }

.faq-answer p {
  font-size: .95rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 14px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .82rem; font-weight: 600; color: var(--gold);
  letter-spacing: .06em; text-transform: uppercase;
  transition: gap .2s, color .2s;
}
.faq-link:hover { gap: 8px; color: var(--gold-light); }

/* ── FAQ Sidebar CTA ── */
.faq-cta { position: sticky; top: calc(var(--nav-h) + 20px); }
.faq-cta-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 14px; padding: 32px 26px; text-align: center;
  box-shadow: 0 8px 36px rgba(0,0,0,.3);
}
.faq-cta-icon {
  font-size: 2.2rem; margin-bottom: 12px; display: block;
}
.faq-cta-card h4 {
  font-size: 1.1rem; margin-bottom: 8px; color: var(--white);
}
.faq-cta-card > p {
  font-size: .85rem; color: var(--text-muted); margin-bottom: 20px;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
}
@media (max-width: 600px) {
  .faq-question { font-size: .9rem; padding: 16px 18px; }
  .faq-answer:not([hidden]) { padding: 0 18px 18px; }
}

/* ============================================================
   SOCIAL LINKS — enhanced hover
   ============================================================ */
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  transition: background .25s, border-color .25s, color .25s, transform .22s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(201,168,76,.14);
  border-color: rgba(201,168,76,.4);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* ── Contact Form: white text on dark background ── */
.contact-form .form-group label { color: rgba(255,255,255,.7); }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  color: #ffffff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.contact-form .form-group select option { background: #1a1a1a; color: #fff; }

/* ── Service card: Book Now button — always vertically centred with price ── */
.service-price .btn-gold {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
  padding: 11px 20px;
  font-size: .78rem;
}

/* ── Slightly larger body copy in cards / sections ── */
.why-feature p,
.testimonial-text,
.blog-card-body p,
.membership-perks li,
.section-subtitle {
  font-size: 1rem;
}

/* ── Book Now: service card button ── */
.btn-book-now {
  flex-shrink: 0;
  align-self: center;
  padding: 11px 22px !important;
  font-size: .77rem !important;
  white-space: nowrap;
  letter-spacing: .16em;
}

/* ============================================================
   IMAGE PLACEHOLDER — elegant dark frame until real photos uploaded
   ============================================================ */
img {
  /* Ensure all images show dark bg while loading or if src is placeholder */
  background-color: #0d0c05;
}
img[data-src] {
  /* Images not yet lazy-loaded: show dark placeholder */
  background: linear-gradient(135deg, #0d0c05 0%, #141200 60%, #080808 100%);
}


/* ============================================================
   MOBILE IMPROVEMENTS — Services, Membership, About
   max-width: 768px  (phones + small tablets)
   ============================================================ */

/* ── Services detail page: image ── */
@media (max-width: 768px) {
  .content-main img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 20px 0;
  }
  .content-layout {
    padding: 48px 0 32px;
    gap: 36px;
  }
  .content-main h2 { font-size: 1.5rem; margin: 28px 0 12px; }
  .content-main h3 { font-size: 1.15rem; margin: 22px 0 10px; }

  /* sidebar stacks below on mobile — reduce padding */
  .sidebar { position: static; margin-top: 0; }
  .sidebar-card { padding: 20px; margin-bottom: 16px; }

  /* ── Membership page ── */
  .membership-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-top: 36px;
  }
  .membership-card {
    padding: 28px 20px;
  }
  .membership-card h3    { font-size: 1.35rem; }
  .membership-price      { font-size: 2.1rem; }
  .membership-perks li   { font-size: .88rem; }

  /* "How It Works" 4-col grid → 2-col on mobile */
  .how-it-works-grid,
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-top: 36px !important;
  }

  /* ── About Us page ── */
  .about-story {
    padding: 48px 0 !important;
    gap: 32px;
  }
  .about-story img { height: 260px; object-fit: cover; }

  /* Stats 4-col → 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Values 3-col → 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 36px !important;
  }

  /* Vision/Mission grid */
  .vm-grid { gap: 20px; }
  .vm-card  { padding: 32px 20px; }
  .vm-card h3 { font-size: 1.2rem; }
  .vm-card p  { font-size: .9rem; }
  .vm-pillars li { font-size: .85rem; }

  /* Team grid min card width */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
  }
  .team-card-body h4   { font-size: 1rem; }
  .team-card-body span { font-size: .75rem; }
}

/* ── Extra small phones (< 420px) ── */
@media (max-width: 420px) {
  .membership-card { padding: 24px 16px; }
  .membership-price { font-size: 1.8rem; }

  /* How It Works → single col on very small screens */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

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

  .content-main img { max-height: 200px; }

  .page-hero h1 { font-size: 1.75rem; }
  .about-story img { height: 200px; }
}


/* ============================================================
   SERVICE ROW — replaces inline grid on services.php
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.service-row-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
/* Alternating layout: reversed rows push image to right */
.service-row-img.reversed { order: 2; }
.service-row-img.reversed ~ .service-row-text { order: 1; }

/* Mobile: single column, image always on top */
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .service-row-img,
  .service-row-img.reversed { order: 0 !important; }
  .service-row-text          { order: 1 !important; }
  .service-row-photo         { height: 240px; border-radius: 8px; }
}

@media (max-width: 420px) {
  .service-row-photo { height: 200px; }
  .service-row       { margin-bottom: 44px; gap: 18px; }
}



/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section { background: var(--black-deep, #0a0a0a); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  background: var(--black-card, #141414);
  border: 1px solid var(--black-border, #222);
  border-radius: var(--radius, 12px);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans, all .3s ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark, #b8860b), var(--gold, #d4af37), var(--gold-light, #f0d060));
  opacity: 0;
  transition: var(--trans, all .3s ease);
}

.why-card:hover {
  border-color: var(--gold, #d4af37);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light, #f0ebe0);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.why-card p {
  font-size: .92rem;
  color: var(--text-muted, #888);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-card { padding: 28px 20px; }
}
