/*
Theme Name:  Gem Gents Salon
Theme URI:   https://www.globalviision.com
Author:      GlobalViision (www.globalviision.com)
Description: Premium luxury gents salon theme — Business Bay, Dubai, UAE. Gold, midnight navy & deep burgundy accents. Mobile-first, SEO/AEO/GEO optimised. Built by GlobalViision.com.
Version:     3.0.0
License:     GNU General Public License v2 or later
Text Domain: gem-gents-salon
Tags: salon,barbershop,men,gents,grooming,dubai,uae,gold,luxury,responsive,mobile-first,seo,aeo,geo
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — GEM GENTS SALON | BUSINESS BAY, DUBAI
   Palette: Gold · Midnight Navy · Charcoal · Cream White
   Built by GlobalViision.com
═══════════════════════════════════════════════════════════ */
:root {
  /* FONTS */
  --f-head:   'Playfair Display', 'Georgia', serif;
  --f-body:   'Inter', system-ui, -apple-system, sans-serif;
  --f-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* GOLD — Primary Brand */
  --gold:        #C8960C;
  --gold-lt:     #F0B429;
  --gold-dk:     #9A6F00;
  --gold-glow:   0 0 18px rgba(200,150,12,0.55), 0 0 40px rgba(200,150,12,0.25);
  --gold-soft:   rgba(200,150,12,0.10);
  --gold-border: rgba(200,150,12,0.30);

  /* NAVY — Secondary Brand */
  --navy:        #0F1E3C;
  --navy-lt:     #1A2F57;
  --navy-dk:     #080E1E;
  --navy-soft:   rgba(15,30,60,0.08);

  /* BURGUNDY — Accent */
  --burg:        #7B1E3A;
  --burg-lt:     #A02850;
  --burg-soft:   rgba(123,30,58,0.09);

  /* GREEN — Success / Tick */
  --green:       #1A7F3C;
  --green-lt:    #22A04E;
  --green-soft:  rgba(26,127,60,0.09);

  /* WHITE PALETTE */
  --white:       #FFFFFF;
  --off-white:   #F9F8F5;
  --cream:       #FDF9F0;
  --light-grey:  #F2F1EE;
  --border-lt:   #E8E5E0;
  --border:      #D4CFC5;

  /* TEXT */
  --text:        #1A1A1A;
  --text-md:     #3D3D3D;
  --text-lt:     #6B6B6B;
  --text-xs:     #9A9A9A;

  /* NAV */
  --nav-bg:      #FFFFFF;
  --nav-text:    #1A1A1A;
  --nav-hover:   var(--gold);

  /* FOOTER */
  --footer-bg:   #0F1E3C;
  --footer-text: rgba(255,255,255,0.75);

  /* SHADOWS */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.14);

  /* RADIUS */
  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* TRANSITIONS */
  --t:    0.26s;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--f-body);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dk); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold); }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--white); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1,h2,h3 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -0.01em;
}
h4,h5,h6 { font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-lt); font-size: .97rem; line-height: 1.82; margin-bottom: 1.25rem; }

.txt-gold   { background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.txt-navy   { color: var(--navy); }
.txt-white  { color: var(--white); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container       { width: 92%; max-width: 1280px; margin: 0 auto; position: relative; }
.site-wrapper    { display: flex; flex-direction: column; min-height: 100vh; }
.site-content    { flex: 1; }
.content-area    { width: 67%; float: left; }
.sidebar-area    { width: 29%; float: right; }
.clearfix::after { content: ''; display: table; clear: both; }
.full-width .content-area { width: 100%; float: none; }

/* ═══════════════════════════════════════════
   GLOW BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.1rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--f-body);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .4s var(--ease);
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: var(--white);
  box-shadow: var(--gold-glow), 0 4px 16px rgba(200,150,12,.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(200,150,12,.70), 0 8px 30px rgba(200,150,12,.40);
  color: var(--white);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy), var(--navy-lt));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,30,60,.35);
}
.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(15,30,60,.50);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dk);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--gold-glow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm  { padding: .55rem 1.35rem; font-size: .78rem; }
.btn-lg  { padding: 1.05rem 2.6rem; font-size: .98rem; }
.btn-wa  { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.4); }
.btn-wa:hover { background: #1fad54; color: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  padding: .42rem 0;
  font-size: .73rem;
  color: rgba(255,255,255,.80);
}
.top-bar a { color: rgba(255,255,255,.85); transition: color var(--t); }
.top-bar a:hover { color: var(--gold-lt); }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}
.top-bar-left  { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-pill {
  background: var(--gold);
  color: var(--white);
  padding: .16rem .8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ═══════════════════════════════════════════
   SITE HEADER — Fixed logo size, no overflow
═══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(200,150,12,.15), 0 1px 0 rgba(200,150,12,.06);
}
.site-header.scrolled {
  box-shadow: 0 4px 35px rgba(200,150,12,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;          /* tighter padding = compact header */
  gap: 1rem;
}

/* ── Logo — controlled size, no overflow ── */
.site-branding a {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 220px;           /* hard cap on branding width */
}
.site-branding img,
.custom-logo {
  max-height: 48px !important; /* cap logo height */
  max-width:  160px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  color: var(--gold-lt);
  box-shadow: 0 4px 14px rgba(15,30,60,.35);
  flex-shrink: 0;
  letter-spacing: .03em;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--f-head);
  line-height: 1.1;
  white-space: nowrap;
}
.logo-sub {
  font-size: .52rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-dk);
  display: block;
  margin-top: 1px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Main Navigation ── */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
}
.main-navigation ul {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.main-navigation ul li a {
  color: var(--text-md);
  padding: .42rem .78rem;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--t);
  display: block;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--gold-dk);
  background: var(--gold-soft);
  border-bottom-color: var(--gold);
}

/* Dropdowns */
.main-navigation ul li { position: relative; }
.main-navigation ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  min-width: 200px;
  padding: .45rem 0;
  z-index: 200;
  box-shadow: 0 8px 35px rgba(0,0,0,.13), 0 0 0 1px var(--gold-border);
}
.main-navigation ul li:hover > ul { display: block; }
.main-navigation ul li ul li a {
  color: var(--text-md);
  padding: .52rem 1.1rem;
  border-bottom: none;
  font-size: .82rem;
  border-radius: 0;
}
.main-navigation ul li ul li a:hover {
  color: var(--gold-dk);
  background: var(--gold-soft);
  border-bottom: none;
}

/* Header CTA */
.header-actions { flex-shrink: 0; display: flex; align-items: center; gap: .6rem; }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--white);
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--gold-glow);
  transition: all var(--t);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(200,150,12,.65);
  color: var(--white);
}
.btn-nav-call {
  background: var(--navy);
  color: var(--white);
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: all var(--t);
}
.btn-nav-call:hover { background: var(--navy-lt); color: var(--white); }

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-border);
  color: var(--gold-dk);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#nav-close {
  display: none;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   SECTION TAGS
═══════════════════════════════════════════ */
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .22rem .85rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  width: fit-content;
}
.s-tag-gold  { background: var(--gold-soft); color: var(--gold-dk); border: 1px solid var(--gold-border); }
.s-tag-navy  { background: var(--navy-soft); color: var(--navy);    border: 1px solid rgba(15,30,60,.20); }
.s-tag-green { background: var(--green-soft); color: var(--green);  border: 1px solid rgba(26,127,60,.25); }

/* ═══════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════ */
.section-hd          { margin-bottom: 3.5rem; }
.section-hd.center   { text-align: center; }
.section-hd.center .s-tag { margin-left: auto; margin-right: auto; }
.section-hd p        { color: var(--text-lt); max-width: 580px; margin-top: .6rem; }
.section-hd.center p { margin-left: auto; margin-right: auto; }

.section-white   { background: var(--white);     padding: 90px 0; }
.section-cream   { background: var(--cream);     padding: 90px 0; }
.section-offwhite{ background: var(--off-white); padding: 90px 0; }
.section-navy    { background: var(--navy);      padding: 90px 0; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-hd p { color: rgba(255,255,255,.70); }

/* ═══════════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════════ */
.ticker-bar {
  overflow: hidden;
  padding: .6rem 0;
  background: linear-gradient(90deg, var(--navy-dk), var(--navy), var(--navy-lt), var(--gold-dk), var(--navy-lt), var(--navy));
  background-size: 300%;
  animation: ticker-bg 10s ease infinite;
}
@keyframes ticker-bg { 0%,100%{ background-position:0% } 50%{ background-position:100% } }
.ticker-track { display: inline-flex; animation: ticker-scroll 40s linear infinite; white-space: nowrap; }
.ticker-item  { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.88); padding: 0 2.2rem; }
.ticker-item::before { content: '✦  '; color: var(--gold-lt); opacity: .85; }
@keyframes ticker-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ═══════════════════════════════════════════
   HERO — SALON HOMEPAGE
═══════════════════════════════════════════ */
.salon-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 50%, #152344 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-border);
}
.salon-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,12,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.salon-hero::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,150,12,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.salon-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Hero left */
.salon-eyebrow {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.salon-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  display: block;
}
.salon-h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 1rem; }
.salon-h1 .line1 { display: block; color: var(--white); }
.salon-h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.salon-tagline {
  font-family: var(--f-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
}
.salon-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.salon-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.salon-trust-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
  text-shadow: 0 0 16px rgba(200,150,12,.45);
}
.salon-trust-lbl {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}

/* Hero right */
.salon-hero-img-box {
  background: linear-gradient(145deg, rgba(200,150,12,.12), rgba(15,30,60,.4));
  border-radius: var(--r-xl);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0,0,0,.30), 0 0 40px rgba(200,150,12,.15);
  position: relative;
  overflow: hidden;
}
.salon-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.salon-floating-badge {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.20), 0 0 20px rgba(200,150,12,.20);
  z-index: 2;
}
.salon-floating-badge.b1 { top: -16px; right: -16px; }
.salon-floating-badge.b2 { bottom: -16px; left: -16px; }
.sfb-num { font-size: 1.7rem; font-weight: 700; color: var(--gold-dk); display: block; line-height: 1; }
.sfb-lbl { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-xs); }

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,.10), 0 0 30px rgba(200,150,12,.12);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
  transition: all var(--t);
}
.svc-card:hover .svc-icon { background: var(--gold); box-shadow: var(--gold-glow); }
.svc-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .55rem;
  font-family: inherit;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}
.svc-card p   { font-size: .87rem; color: var(--text-lt); margin: 0; line-height: 1.7; }
.svc-price    { font-size: 1rem; font-weight: 700; color: var(--gold-dk); margin-top: .8rem; }
.svc-price span { font-size: .72rem; color: var(--text-xs); font-weight: 400; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-dk);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1rem;
  transition: all var(--t);
}
.svc-card:hover .svc-link { gap: .7rem; color: var(--navy); }

/* ═══════════════════════════════════════════
   STATS ROW
═══════════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  text-align: center;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}
.stat-box:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.10), 0 0 25px rgba(200,150,12,.15); border-color: var(--gold-border); }
.stat-num { font-size: 2.6rem; font-weight: 700; display: block; line-height: 1; margin-bottom: .3rem; font-family: var(--f-head); color: var(--gold-dk); text-shadow: 0 0 20px rgba(200,150,12,.35); }
.stat-lbl { font-size: .67rem; color: var(--text-xs); text-transform: uppercase; letter-spacing: .14em; }

/* ═══════════════════════════════════════════
   TEAM GRID
═══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  text-align: center;
}
.team-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.10), 0 0 25px rgba(200,150,12,.12); }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-lt)); }
.team-body   { padding: 1.2rem; }
.team-name   { font-weight: 700; color: var(--text); font-size: .98rem; margin-bottom: .22rem; }
.team-role   { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dk); margin-bottom: .6rem; }
.team-stars  { color: var(--gold); font-size: .85rem; text-shadow: 0 0 10px rgba(200,150,12,.5); }
.team-exp    { font-size: .75rem; color: var(--text-xs); margin-top: .3rem; }

/* ═══════════════════════════════════════════
   PRICING GRID
═══════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  transition: all var(--t) var(--ease);
  position: relative;
}
.price-card.featured {
  border-color: var(--gold-border);
  box-shadow: 0 0 45px rgba(200,150,12,.18), 0 16px 50px rgba(0,0,0,.10);
  transform: scale(1.04);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  color: var(--white);
  padding: .26rem 1.2rem;
  border-radius: 50px;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  box-shadow: var(--gold-glow);
}
.price-tier-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-dk); margin-bottom: .7rem; }
.price-currency   { font-size: 1rem; font-weight: 700; color: var(--text-xs); vertical-align: super; line-height: 1; }
.price-amount     { font-size: 3rem; font-weight: 700; color: var(--gold-dk); line-height: 1; display: inline-block; font-family: var(--f-head); text-shadow: 0 0 20px rgba(200,150,12,.25); }
.price-unit       { font-size: .9rem; color: var(--text-xs); font-weight: 400; }
.price-desc       { font-size: .85rem; color: var(--text-lt); margin: .8rem 0 1.2rem; line-height: 1.65; }
.price-features li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-lt);
  font-size: .87rem;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-features li.unavail::before { content: '✕'; color: var(--border); }
.price-features li.unavail { opacity: .5; }
.price-btn { width: 100%; margin-top: 1.5rem; justify-content: center; }

/* ═══════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  height: 210px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all var(--t);
  border: 1.5px solid var(--border-lt);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { border-color: var(--gold-border); box-shadow: 0 8px 30px rgba(200,150,12,.22); }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }

/* ═══════════════════════════════════════════
   TESTIMONIALS / REVIEWS
═══════════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--t) var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -.8rem;
  right: 1.5rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--gold);
  opacity: .12;
}
.review-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 12px 38px rgba(0,0,0,.09), 0 0 25px rgba(200,150,12,.10); }
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: .08em; margin-bottom: .9rem; }
.review-text  { font-size: .92rem; color: var(--text-lt); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,var(--navy),var(--gold-dk));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .84rem;
  box-shadow: 0 4px 14px rgba(15,30,60,.35);
  flex-shrink: 0;
}
.rev-name { font-weight: 700; color: var(--text); font-size: .88rem; }
.rev-loc  { font-size: .7rem; color: var(--text-xs); }
.rev-badge { font-size: .65rem; color: var(--green); font-weight: 600; margin-top: .15rem; }

/* ═══════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════ */
.booking-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,12,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.booking-info h2 { color: var(--white); }
.booking-info p  { color: rgba(255,255,255,.65); }
.booking-info .s-tag { background: var(--gold-soft); color: var(--gold-lt); border-color: var(--gold-border); }

.booking-form {
  background: var(--white);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: 0 16px 50px rgba(0,0,0,.25), 0 0 30px rgba(200,150,12,.12);
}
.booking-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--text); }
.form-row   { margin-bottom: 1rem; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-md); margin-bottom: .4rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .72rem 1rem;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  font-family: var(--f-body);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,.12);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-note     { font-size: .74rem; color: var(--text-xs); margin-top: .3rem; }
.form-submit   { width: 100%; margin-top: .5rem; justify-content: center; font-size: .9rem; padding: 1rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-item { border: 1.5px solid var(--border-lt); border-radius: var(--r-lg); margin-bottom: .6rem; overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.faq-item.open, .faq-item:hover { border-color: var(--gold-border); box-shadow: 0 4px 20px rgba(200,150,12,.10); }
.faq-q {
  width: 100%; background: var(--white); border: none;
  padding: 1.2rem 1.4rem; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; color: var(--text); font-size: .93rem;
  font-weight: 600; cursor: pointer; font-family: var(--f-body); text-align: left; transition: background var(--t);
}
.faq-item.open .faq-q { background: var(--cream); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-soft); border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold-dk); flex-shrink: 0; transition: all .3s var(--ease);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); border-color: var(--gold); transform: rotate(45deg); box-shadow: var(--gold-glow); }
.faq-a { display: none; background: var(--cream); padding: 0 1.4rem 1.2rem; }
.faq-a p { color: var(--text-lt); font-size: .9rem; margin: 0; line-height: 1.78; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,150,12,.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 740px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 2.2rem; }
.cta-buttons  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   LOCATION STRIP — Dubai Areas
═══════════════════════════════════════════ */
.locations-strip { background: var(--cream); border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); padding: 18px 0; }
.loc-inner  { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .75rem; }
.loc-label  { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-dk); margin-right: .5rem; }
.loc-badge  {
  display: flex; align-items: center; gap: .4rem;
  background: var(--white); border: 1.5px solid var(--border-lt); border-radius: 50px;
  padding: .3rem .9rem; font-size: .72rem; color: var(--text-lt); font-weight: 500;
  transition: all var(--t);
}
.loc-badge:hover { border-color: var(--gold-border); color: var(--gold-dk); background: var(--gold-soft); box-shadow: 0 2px 12px rgba(200,150,12,.15); }
.loc-badge .loc-icon { font-size: .7rem; }

/* ═══════════════════════════════════════════
   FOOTER — Navy Base, Gold Accents
═══════════════════════════════════════════ */
.site-footer { background: var(--navy); border-top: 3px solid var(--gold-dk); }

.footer-gold-bar {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt), var(--gold-dk));
  background-size: 300%;
  animation: fgb 8s ease infinite;
  padding: .55rem 0;
}
@keyframes fgb { 0%,100%{ background-position:0% } 50%{ background-position:100% } }
.footer-gold-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem; font-size: .72rem; color: var(--white); font-weight: 600;
}
.footer-gold-bar-inner a { color: var(--white); }

.footer-main { padding: 65px 0 45px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; }

.footer-col h5 {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold-lt); margin-bottom: 1.2rem; padding-bottom: .55rem;
  border-bottom: 2px solid rgba(200,150,12,.20);
}
.footer-col ul li { padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-col ul li:last-child { border-bottom: none; }
.footer-col ul li a {
  color: rgba(255,255,255,.60); font-size: .85rem; transition: all var(--t);
  display: flex; align-items: center; gap: .4rem;
}
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: .3rem; }
.footer-col ul li a::before { content: '›'; color: var(--gold-dk); opacity: 0; transition: opacity var(--t); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-brand-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.footer-brand-logo .logo-mark { background: linear-gradient(135deg,var(--gold-dk),var(--gold)); color: var(--white); }
.footer-brand-logo .logo-name { color: var(--white); }
.footer-brand-logo .logo-sub  { color: var(--gold-lt); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.75; margin: .5rem 0 1.2rem; }

.social-links { display: flex; gap: .45rem; flex-wrap: wrap; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(200,150,12,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-size: .72rem; font-weight: 700;
  transition: all var(--t); text-decoration: none;
}
.soc-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: var(--gold-glow); }

.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.footer-contact-text { font-size: .84rem; color: rgba(255,255,255,.60); line-height: 1.55; }
.footer-contact-text a { color: rgba(255,255,255,.70); }
.footer-contact-text a:hover { color: var(--gold-lt); }

/* Newsletter */
.nl-wrap   { margin-top: 1.4rem; }
.nl-input  {
  width: 100%; background: rgba(255,255,255,.08); border: 1.5px solid rgba(200,150,12,.25);
  border-radius: 8px; padding: .68rem 1rem; color: var(--white); font-size: .86rem;
  outline: none; transition: border-color var(--t); margin-bottom: .5rem; font-family: var(--f-body);
}
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.nl-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,12,.12); }
.nl-btn {
  width: 100%; background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  color: var(--white); border: none; border-radius: 8px; padding: .72rem;
  font-weight: 700; font-size: .84rem; cursor: pointer; font-family: var(--f-body);
  transition: all var(--t); text-transform: uppercase; letter-spacing: .07em;
}
.nl-btn:hover { box-shadow: var(--gold-glow); }

.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0; }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .8rem; font-size: .76rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-built  { font-size: .7rem; color: rgba(255,255,255,.25); }
.footer-built a{ color: rgba(255,255,255,.4); }
.footer-built a:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  border-bottom: 3px solid var(--gold-border);
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -100px; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,12,.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.65); }
.breadcrumb {
  display: flex; gap: .45rem; align-items: center;
  font-size: .74rem; color: rgba(255,255,255,.45); margin-top: .8rem; flex-wrap: wrap;
}
.breadcrumb a     { color: rgba(255,255,255,.45); }
.breadcrumb a:hover{ color: var(--gold-lt); }
.breadcrumb .sep  { color: var(--gold-dk); opacity: .6; }
.breadcrumb .current { color: var(--gold-lt); font-weight: 600; }

/* ═══════════════════════════════════════════
   CARDS (Universal)
═══════════════════════════════════════════ */
.card-white {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.card-white:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.10), 0 0 30px rgba(200,150,12,.12);
}
.card-white::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card-white:hover::before { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   SEARCH
═══════════════════════════════════════════ */
.search-form { display: flex; gap: .5rem; }
.search-form input[type="search"] {
  flex: 1; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: .65rem 1rem; font-size: .86rem; outline: none;
  color: var(--text); transition: border-color var(--t); font-family: var(--f-body);
}
.search-form input[type="search"]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,12,.10); }
.search-form button {
  background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  color: var(--white); border: none; border-radius: 8px;
  padding: .65rem 1.1rem; cursor: pointer; font-weight: 700; transition: all var(--t);
}
.search-form button:hover { box-shadow: var(--gold-glow); }

/* ═══════════════════════════════════════════
   BLOG CARD
═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.post-card {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.post-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.10); }
.post-card-thumb { height: 190px; overflow: hidden; background: linear-gradient(135deg,var(--navy),var(--navy-lt)); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-body { padding: 1.5rem; }
.post-meta  { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; flex-wrap: wrap; }
.post-cat   { background: var(--gold-soft); color: var(--gold-dk); border-radius: 50px; padding: .18rem .7rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.post-date  { font-size: .72rem; color: var(--text-xs); }
.post-read  { font-size: .72rem; color: var(--text-xs); }
.post-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; line-height: 1.4; display: block; }
.post-title:hover { color: var(--gold-dk); }
.post-excerpt { font-size: .86rem; color: var(--text-lt); line-height: 1.7; margin: 0; }
.post-card-footer { padding: .8rem 1.5rem 1.2rem; border-top: 1px solid var(--border-lt); display: flex; justify-content: space-between; align-items: center; }
.read-more { font-size: .78rem; font-weight: 700; color: var(--gold-dk); text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: .3rem; transition: all var(--t); }
.read-more:hover { gap: .6rem; color: var(--navy); }

/* ═══════════════════════════════════════════
   WIDGET SIDEBAR
═══════════════════════════════════════════ */
.widget {
  background: var(--white);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold-dk); margin-bottom: 1rem; padding-bottom: .65rem;
  border-bottom: 2px solid var(--gold-soft);
}
.widget ul li { padding: .4rem 0; border-bottom: 1px solid var(--border-lt); font-size: .86rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-lt); transition: color var(--t); }
.widget ul li a:hover { color: var(--gold-dk); }

/* ═══════════════════════════════════════════
   ENTRY CONTENT
═══════════════════════════════════════════ */
.entry-content { color: var(--text-lt); font-size: 1rem; line-height: 1.85; }
.entry-content h2,.entry-content h3 { color: var(--text); margin: 2.2rem 0 1rem; font-weight: 700; }
.entry-content h2 { font-size: 1.65rem; }
.entry-content h3 { font-size: 1.3rem; }
.entry-content p  { margin-bottom: 1.4rem; }
.entry-content a  { color: var(--gold-dk); border-bottom: 1px solid rgba(200,150,12,.3); }
.entry-content a:hover { color: var(--navy); }
.entry-content blockquote { border-left: 4px solid var(--gold); background: var(--cream); padding: 1.3rem 1.5rem; border-radius: 0 var(--r) var(--r) 0; margin: 2rem 0; font-style: italic; }
.entry-content code { background: var(--off-white); color: var(--burg); padding: .15rem .4rem; border-radius: 4px; font-size: .9em; }

/* ═══════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════ */
.pagination { display: flex; gap: .35rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .75rem;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--text-md); font-size: .87rem; transition: all var(--t);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  border-color: transparent; color: var(--white); box-shadow: var(--gold-glow);
}

/* ═══════════════════════════════════════════
   404
═══════════════════════════════════════════ */
.error-404 { text-align: center; padding: 90px 0; }
.code-404 {
  font-size: clamp(6rem,14vw,10rem); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg,var(--gold-dk),var(--gold-lt),var(--navy));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; filter: drop-shadow(0 0 40px rgba(200,150,12,.35));
}

/* ═══════════════════════════════════════════
   SCROLL TOP + WA FLOAT
═══════════════════════════════════════════ */
#scroll-top {
  position: fixed; bottom: 5.5rem; left: 1.5rem;
  width: 42px; height: 42px;
  background: var(--white); border: 1.5px solid var(--gold-border);
  color: var(--gold-dk); border-radius: 10px; font-size: 1rem;
  cursor: pointer; z-index: 990; opacity: 0; pointer-events: none;
  transition: all .3s; display: flex; align-items: center; justify-content: center;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--gold); color: var(--white); box-shadow: var(--gold-glow); }

#wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 990; box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s; text-decoration: none;
}
#wa-float:hover { transform: scale(1.12); }
#wa-float .wa-tooltip {
  position: absolute; right: 62px; background: var(--text); color: var(--white);
  font-size: .72rem; padding: .3rem .7rem; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
#wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   MARK + SKIP LINK + FOCUS
═══════════════════════════════════════════ */
mark { background: rgba(200,150,12,.18); color: var(--gold-dk); border-radius: 3px; padding: 0 2px; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--gold); color: var(--white); padding: .5rem 1.2rem; border-radius: 0 0 8px 8px; font-weight: 700; z-index: 99999; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scale-in { opacity: 0; transform: scale(.96); transition: opacity .5s ease, transform .5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════
   MAPS EMBED
═══════════════════════════════════════════ */
.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1.5px solid var(--gold-border); box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: none; }

/* ═══════════════════════════════════════════
   ABOUT SECTION (Two column)
═══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-box { position: relative; }
.about-img-main { border-radius: var(--r-xl); overflow: hidden; height: 440px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 170px; height: 170px; border-radius: var(--r-xl);
  border: 4px solid var(--white);
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -16px; left: -16px;
  background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  color: var(--white); border-radius: var(--r-xl);
  padding: 1rem 1.2rem; text-align: center;
  box-shadow: var(--gold-glow);
}
.about-badge .num { font-size: 1.8rem; font-weight: 700; display: block; line-height: 1; }
.about-badge .lbl { font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; opacity: .85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.8rem; }
.about-feat-item { display: flex; align-items: flex-start; gap: .6rem; }
.about-feat-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.about-feat-text strong { display: block; font-size: .88rem; color: var(--text); font-weight: 700; }
.about-feat-text span   { font-size: .8rem; color: var(--text-xs); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile First
═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid    { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .stats-row    { grid-template-columns: repeat(2,1fr); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .content-area, .sidebar-area { width: 100%; float: none; }
  .salon-hero-grid, .booking-grid, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .pricing-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .salon-hero { padding: 60px 0 50px; }
  .about-img-main { height: 300px; }
  .about-img-accent, .about-badge { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar { display: none; }

  /* Mobile nav overlay */
  .main-navigation {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,20,40,.97);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
  }
  .main-navigation.active { display: flex; }
  .main-navigation ul { flex-direction: column; align-items: center; gap: .2rem; }
  .main-navigation ul li a {
    font-size: 1.4rem;
    font-family: var(--f-head);
    font-weight: 700;
    padding: .75rem 2rem;
    border-bottom: none;
    color: var(--white);
  }
  .main-navigation ul li a:hover { color: var(--gold-lt); background: none; }
  .main-navigation ul li ul { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); border-radius: var(--r); }
  .main-navigation ul li ul li a { font-size: 1rem; color: rgba(255,255,255,.75); }

  #nav-close   { display: flex; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: var(--white); }
  .menu-toggle { display: flex; }
  .btn-nav-cta, .btn-nav-call { display: none; }

  /* Header compact */
  .header-inner { padding: .6rem 0; }
  .logo-name { font-size: 1.05rem; }
  .logo-sub  { display: none; }

  /* Sections */
  .section-white, .section-cream, .section-offwhite, .section-navy { padding: 55px 0; }
  .booking-section { padding: 55px 0; }
  .cta-section { padding: 55px 0; }

  /* Grids collapse */
  .services-grid, .pricing-grid, .reviews-grid, .team-grid,
  .gallery-grid, .blog-grid, .stats-row { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .about-features { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { padding: 40px 0 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Hero */
  .salon-trust { gap: 1.4rem; }
  .salon-hero-img-box { height: 280px; }
  .salon-floating-badge { display: none; }

  /* Section header max-width release */
  .section-hd.center p { max-width: 100%; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .container { width: 95%; }
  .btn { padding: .75rem 1.5rem; font-size: .82rem; }
  .booking-form { padding: 1.5rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}