/* =====================================================
   COLOURS BEAUTY STUDIO — Stylesheet v3
   Fonts: Playfair Display + Montserrat + Great Vibes
   FIXES: Hero height, gallery filter, footer image
   ===================================================== */

:root {
  --gold: #C9A96E;
  --gold-lt: #E8D5A3;
  --gold-dk: #9A7B4F;
  --gold-glow: rgba(201,169,110,.3);
  --navy: #1A1F3A;
  --navy2: #252B50;
  --dark: #0D0F1E;
  --cream: #FDF8F0;
  --cream2: #F5EDD8;
  --rose: #C4627A;
  --green: #25D366;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --muted: #666;
  --fd: 'Playfair Display', serif;
  --fb: 'Montserrat', sans-serif;
  --fs: 'Great Vibes', cursive;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--cream); color: var(--text); overflow-x: hidden; }
/* Custom cursor only on pointer devices (not touch/mobile) */
@media (pointer: fine) {
  body { cursor: none; }
  .cur-dot, .cur-ring { display: block; }
}
@media (pointer: coarse) {
  /* Touch device — hide custom cursor, show normal cursor */
  .cur-dot, .cur-ring { display: none !important; }
}

/* ---- CURSOR ---- */
.cur-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; transition: transform .1s; }
.cur-ring { width: 34px; height: 34px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998; transition: width .3s, height .3s, opacity .3s; }

/* ---- PRELOADER ---- */
#preloader { position: fixed; inset: 0; background: var(--navy); z-index: 999999; display: flex; align-items: center; justify-content: center; transition: opacity .6s, visibility .6s; }
#preloader.gone { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-logo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 14px; animation: plpulse 1.5s infinite; }
@keyframes plpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,.4); } 50% { box-shadow: 0 0 0 16px rgba(201,169,110,0); } }
.pl-name { font-family: var(--fs); font-size: 28px; color: var(--gold); margin-bottom: 18px; }
.pl-bar { width: 160px; height: 2px; background: rgba(255,255,255,.1); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.pl-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); animation: plfill 2.2s ease forwards; }
@keyframes plfill { from { width:0; } to { width:100%; } }

/* ---- OFFER BANNER ---- */
.offer-banner {
  background: linear-gradient(135deg, #C9A96E, #9A7B4F);
  color: var(--white);
  text-align: center;
  padding: 10px 44px 10px 12px;
  font-size: 13px;
  font-weight: 500;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  line-height: 1.5;
}
.offer-banner strong { font-weight: 800; }
.offer-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white); font-size: 16px; cursor: pointer;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s;
}
.offer-close:hover { background: rgba(0,0,0,.2); }

/* ---- NAVBAR ---- */
/* top is set dynamically by JS — never override it in CSS */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(13,15,30,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 0 rgba(201,169,110,.25), 0 4px 30px rgba(0,0,0,.4);
}
.nav-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px;
}

/* ---- NAVBAR LOGO — Premium redesign ---- */
.nav-logo {
  display: flex; align-items: center;
  gap: 14px; text-decoration: none;
  flex-shrink: 0;
}
/* Gold ring around logo image */
.nav-logo-img-wrap {
  position: relative;
  width: 52px; height: 52px; flex-shrink: 0;
}
.nav-logo-img-wrap::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg, var(--gold-lt) 90deg, var(--gold) 180deg, var(--gold-dk) 270deg, var(--gold) 360deg);
  z-index: 0;
  animation: logo-spin 8s linear infinite;
}
/* Stop spinning animation on touch devices & reduced motion */
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .nav-logo-img-wrap::before { animation: none; }
}
@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.nav-logo-img-wrap::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: var(--dark);
  z-index: 1;
}
.nav-logo img {
  position: relative; z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 3px;
}
/* Brand text */
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-main {
  font-family: var(--fs);
  font-size: 26px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.5px;
}
.nav-brand-main span { color: var(--gold); }
.nav-brand-sub {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,.75);
  line-height: 1;
}

.nav-links { display: flex; gap: 20px; list-style: none; margin-left: auto; }
.nav-links a { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.75); text-decoration: none; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white); text-decoration: none;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.nav-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ---- MOBILE MENU ---- */
.mob-menu { position: fixed; inset: 0; background: var(--navy); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform .5s var(--ease); }
.mob-menu.open { transform: translateX(0); }
.mob-x { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
.mob-menu ul { list-style: none; text-align: center; }
.mob-menu ul li { margin: 16px 0; }
.mob-menu ul a { font-family: var(--fd); font-size: 26px; color: var(--white); text-decoration: none; transition: color .3s; }
.mob-menu ul a:hover { color: var(--gold); }
.mob-wa { margin-top: 28px; padding: 14px 28px; background: var(--green); color: var(--white); text-decoration: none; font-weight: 700; border-radius: 4px; font-size: 14px; }

/* ---- HERO ---- */
/* BUG FIX: Reduced hero to use flex row with constrained image, no position:absolute overflow */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  /* padding-top is set dynamically by JS (banner height + navbar height + gap) */
  padding: 160px 80px 60px 80px;
  gap: 40px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,98,122,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 15% 80%, rgba(201,169,110,.08) 0%, transparent 50%),
              linear-gradient(135deg, #0D0F1E 0%, #1A1F3A 60%, #0D1628 100%);
}
.ptcl-wrap { position: absolute; inset: 0; pointer-events: none; }
.ptcl { position: absolute; border-radius: 50%; background: var(--gold); opacity: 0; animation: ptcl-fly var(--dur,9s) var(--dly,0s) infinite; }
@keyframes ptcl-fly { 0% { transform: translateY(100vh); opacity: 0; } 10% { opacity: .4; } 90% { opacity: .15; } 100% { transform: translateY(-5vh); opacity: 0; } }

/* Hero LEFT */
.hero-left { position: relative; z-index: 2; flex: 1; max-width: 560px; }
.hero-cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.cert-pill { padding: 5px 12px; border: 1px solid rgba(201,169,110,.4); border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: var(--gold); background: rgba(201,169,110,.08); }
.hero-h1 { margin-bottom: 16px; }
.scr-hero { display: block; font-family: var(--fs); font-size: clamp(56px,7vw,96px); color: var(--gold); line-height: 1; }
.hero-sub { display: block; font-family: var(--fd); font-size: clamp(16px,2vw,26px); font-weight: 400; color: rgba(255,255,255,.88); letter-spacing: 3px; text-transform: uppercase; margin-top: -6px; }
.hero-tagline { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 24px; }
.hero-tagline em { color: var(--gold-lt); font-style: normal; }

/* Offer box in hero */
.hero-offer-box {
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 4px; padding: 12px 18px; margin-bottom: 24px;
  font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.6;
}
.offer-tag { display: inline-block; background: var(--gold); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-bottom: 6px; }
.hero-offer-box strong { color: var(--gold-lt); font-size: 15px; display: block; margin-top: 2px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-gold { display: inline-block; padding: 13px 32px; background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; transition: transform .3s, box-shadow .3s; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--gold-glow); }
.btn-outline-w { display: inline-block; padding: 13px 28px; border: 1.5px solid rgba(255,255,255,.3); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; transition: border-color .3s, background .3s; }
.btn-outline-w:hover { border-color: var(--gold); background: rgba(201,169,110,.1); }
.hero-nums { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hn { text-align: center; }
.hn strong { display: block; font-family: var(--fd); font-size: 30px; font-weight: 700; color: var(--gold); }
.hn span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hn-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

/* Hero RIGHT — BUG FIX: Image is a flex child, constrained height */
.hero-right {
  position: relative; z-index: 2;
  flex: 0 0 auto;
  /* FIX: use max-height tied to viewport minus navbar */
  max-height: calc(100vh - 160px);
  display: flex; flex-direction: column; align-items: center;
}
.hero-img-box {
  position: relative;
  height: 100%;
  max-height: calc(100vh - 200px);
}
.hero-img-box img {
  height: 100%;
  max-height: calc(100vh - 200px);
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 0 40px rgba(201,169,110,.12));
  display: block;
}
.hero-name-chip {
  position: absolute; bottom: 10px; right: 0;
  background: rgba(26,31,58,.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,.2);
  padding: 12px 18px; border-radius: 4px; text-align: right;
}
.scr-sm { display: block; font-family: var(--fs); font-size: 26px; color: var(--gold); line-height: 1.2; }
.hero-name-chip span:last-child { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.scroll-down { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent); animation: scl 2s infinite; }
@keyframes scl { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- MARQUEE ---- */
.marquee { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); padding: 13px 0; overflow: hidden; }
.marquee-inner { display: flex; white-space: nowrap; animation: mq 32s linear infinite; }
.marquee-inner span { padding: 0 26px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); font-weight: 700; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SHARED ---- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.eyebrow { display: block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.light-ey { color: var(--gold-lt); }
.sec-title { font-family: var(--fd); font-size: clamp(30px,4vw,54px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.light-title { color: var(--white); }
.scr-gold { font-family: var(--fs); color: var(--gold); font-size: 1.15em; }
.sec-desc { font-size: 14px; color: var(--muted); max-width: 520px; line-height: 1.7; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 0 auto; }
.gold-bar { width: 56px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 16px 0 24px; }

/* ---- ABOUT ---- */
.about { padding: 110px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
/* BUG FIX: Single image only, no floating second image */
.about-imgs { position: relative; }
.about-main { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.about-main img { width: 100%; height: 520px; object-fit: cover; object-position: top; transition: transform .6s; }
.about-main:hover img { transform: scale(1.04); }
.about-badge { position: absolute; top: 32px; left: -28px; background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--white); padding: 18px 22px; border-radius: 4px; text-align: center; box-shadow: 0 8px 24px var(--gold-glow); }
.about-badge strong { display: block; font-family: var(--fd); font-size: 34px; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 10px; letter-spacing: 1px; opacity: .9; }
.cert-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.cert-tag { display: inline-block; padding: 7px 14px; background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.22); border-radius: 2px; font-size: 11px; font-weight: 600; color: var(--gold-dk); }
.about-text p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.about-sig { padding: 20px 0; border-top: 1px solid rgba(201,169,110,.18); border-bottom: 1px solid rgba(201,169,110,.18); margin: 24px 0; }
.scr-sig { display: block; font-family: var(--fs); font-size: 48px; color: var(--gold); line-height: 1.2; }
.sig-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

/* ---- AMBASSADOR ---- */
.ambassador { padding: 110px 0; background: var(--navy); position: relative; overflow: hidden; }
.amb-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(196,98,122,.07) 0%, transparent 60%); }
.amb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; }
/* amb-imgs holds both images; position:relative needed for abs child */
.amb-imgs { position: relative; padding-bottom: 20px; }
.amb-main { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3); position: relative; }
.amb-main img { width: 100%; height: 460px; object-fit: cover; object-position: top; transition: transform .6s; }
.amb-main:hover img { transform: scale(1.04); }
.amb-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26,31,58,.88) 0%, transparent 100%); padding: 40px 22px 18px; font-family: var(--fs); font-size: 22px; color: var(--gold); }
/* Parachute product image — overlapping badge style bottom-right */
.amb-prod {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,.45);
  border: 3px solid rgba(201,169,110,.35);
  z-index: 3;
  background: var(--white);
}
.amb-prod img { width: 100%; display: block; }
.amb-text .sec-title { color: var(--white); }
.amb-yrs { display: flex; align-items: center; gap: 20px; margin: 20px 0 24px; }
.a-yr { text-align: center; }
.a-yr strong { display: block; font-family: var(--fd); font-size: 38px; font-weight: 700; color: var(--gold); }
.a-yr span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.a-yr-sep { width: 1px; height: 44px; background: rgba(255,255,255,.12); }
.amb-quote { font-size: 15px; font-family: var(--fd); font-style: italic; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 14px; }
.amb-text p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 18px; }
.amb-pts { margin: 20px 0; }
.amb-pt { font-size: 13px; color: rgba(255,255,255,.55); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.amb-pt:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.btn-gold-ol { display: inline-block; margin-top: 18px; padding: 13px 32px; border: 1.5px solid var(--gold); color: var(--gold); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; transition: background .3s, color .3s; }
.btn-gold-ol:hover { background: var(--gold); color: var(--white); }

/* ---- SERVICES ---- */
.services { padding: 110px 0; background: var(--cream2); position: relative; overflow: hidden; }
.svc-wm { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--fd); font-size: 240px; font-weight: 700; color: rgba(0,0,0,.02); letter-spacing: -8px; pointer-events: none; white-space: nowrap; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.svc-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .4s, box-shadow .4s; position: relative; }
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.feat-svc { border: 1px solid rgba(201,169,110,.2); box-shadow: 0 8px 40px rgba(201,169,110,.15); }
.svc-ribbon { position: absolute; top: 14px; right: 14px; z-index: 2; background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--white); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; font-weight: 700; }
.svc-img { height: 200px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 22px; }
.svc-body.solo-body { padding: 28px; }
.svc-list-card { display: flex; align-items: stretch; }
.svc-ico { font-size: 28px; margin-bottom: 10px; display: block; }
.svc-body h3 { font-family: var(--fd); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.svc-body p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.price-tag { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; padding: 10px 14px; background: rgba(201,169,110,.07); border: 1px solid rgba(201,169,110,.18); border-radius: 4px; margin-bottom: 16px; }
.price-tag span { font-size: 11px; color: var(--muted); }
.price-tag strong { font-family: var(--fd); font-size: 24px; color: var(--gold-dk); font-weight: 600; }
.disc-note { font-size: 11px; color: #2a7a3a; font-weight: 700; width: 100%; }
.price-tag.custom strong { font-size: 18px; color: var(--navy); }
.svc-cta { display: inline-block; color: var(--gold-dk); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; transition: letter-spacing .3s; }
.svc-cta:hover { letter-spacing: 3px; }
.svc-ul { list-style: none; margin-bottom: 20px; }
.svc-ul li { font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,.05); }

/* Discount CTA block */
.discount-cta { margin-top: 60px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 8px; overflow: hidden; }
.dc-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px 48px; flex-wrap: wrap; }
.dc-tag { display: inline-block; background: var(--gold); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px; }
.dc-left h3 { font-family: var(--fd); font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.dc-left p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 480px; }
.btn-wa-offer { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--green); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; transition: transform .3s, box-shadow .3s; white-space: nowrap; }
.btn-wa-offer:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.35); }

/* ---- GALLERY ---- */
.gallery { padding: 110px 0; background: var(--cream); }
.gtabs { display: flex; justify-content: center; gap: 0; margin: 36px 0; flex-wrap: wrap; border: 1px solid rgba(201,169,110,.22); border-radius: 4px; overflow: hidden; width: fit-content; margin-left: auto; margin-right: auto; }
.gtab { padding: 11px 22px; background: transparent; border: none; cursor: pointer; font-family: var(--fb); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border-right: 1px solid rgba(201,169,110,.18); transition: background .3s, color .3s; }
.gtab:last-child { border-right: none; }
.gtab.active, .gtab:hover { background: var(--gold); color: var(--white); }

/* BUG FIX: Gallery grid uses auto rows so hidden items don't leave gaps */
/* BUG FIX: Items use display:none when filtered out — NO opacity/blur issues */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  /* Auto rows — adjusts to visible content */
}
.gi {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 220px;
  /* BUG FIX: Default visible */
  display: block;
}
.gi.hidden-item {
  /* BUG FIX: Truly hidden — no blur effect on remaining */
  display: none !important;
}
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gi:hover img { transform: scale(1.07); }
.gi-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,31,58,.75) 0%, transparent 50%); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 18px; }
.gi:hover .gi-ov { opacity: 1; }
.gi-ov span { font-family: var(--fd); font-size: 16px; color: var(--white); }
.gal-cta { text-align: center; margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-insta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 2px; transition: transform .3s, box-shadow .3s; }
.btn-insta:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(220,39,67,.35); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 110px 0; position: relative; background: var(--navy); }
.testi-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 60%, rgba(196,98,122,.07) 0%, transparent 60%); }
.tgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: auto auto; gap: 18px; margin-top: 52px; }
.tcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 28px; position: relative; transition: transform .4s, background .4s; }
.tcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); }
.feat-tcard { grid-row: span 2; background: linear-gradient(135deg, rgba(201,169,110,.1), rgba(196,98,122,.06)); border-color: rgba(201,169,110,.2); }
.tq { font-family: var(--fd); font-size: 72px; color: var(--gold); opacity: .12; line-height: 1; margin-bottom: -18px; }
.tstars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-family: var(--fd); font-size: 15px; font-style: italic; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 22px; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tauthor img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--gold); }
.tav { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dk), var(--rose)); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.tauthor strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; }
.tauthor span { color: rgba(255,255,255,.38); font-size: 11px; }

/* ---- ACADEMY ---- */
.academy { padding: 110px 0; background: var(--cream); }
.acad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.acad-text p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.course-list { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.crow { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--cream2); border-radius: 4px; border-left: 3px solid var(--gold); transition: transform .3s; }
.crow:hover { transform: translateX(5px); }
.cico { font-size: 20px; flex-shrink: 0; }
.crow strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.crow span { font-size: 12px; color: var(--muted); }
.acad-stats { display: flex; gap: 0; border: 1px solid rgba(201,169,110,.18); border-radius: 4px; overflow: hidden; margin: 24px 0; }
.astat { flex: 1; text-align: center; padding: 16px 14px; border-right: 1px solid rgba(201,169,110,.18); }
.astat:last-child { border-right: none; }
.astat strong { display: block; font-family: var(--fd); font-size: 26px; color: var(--gold); font-weight: 600; }
.astat span { font-size: 10px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
/* BUG FIX: Single image in academy — no second half-visible image */
.acad-img-wrap { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); position: relative; }
.acad-img-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: top; transition: transform .6s; }
.acad-img-wrap:hover img { transform: scale(1.04); }
.acad-img-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26,31,58,.8) 0%, transparent 100%); padding: 36px 22px 18px; }
.scr-sm { font-family: var(--fs); font-size: 24px; color: var(--gold); }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; background: var(--cream2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; margin-top: 52px; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 16px; }
.ccard { display: flex; align-items: flex-start; gap: 14px; background: var(--white); padding: 20px; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.cic { font-size: 26px; flex-shrink: 0; }
.ccard strong { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.ccard p, .ccard a { font-size: 13px; color: var(--muted); text-decoration: none; line-height: 1.7; }
.ccard a:hover { color: var(--gold); }
.btn-wa-big { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; background: var(--green); color: var(--white); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 6px; transition: transform .3s, box-shadow .3s; }
.btn-wa-big:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,.35); }
.btn-gmaps { display: flex; align-items: center; justify-content: center; padding: 13px; border: 1.5px solid var(--navy); color: var(--navy); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 6px; transition: background .3s, color .3s; }
.btn-gmaps:hover { background: var(--navy); color: var(--white); }
.map-box { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.map-box iframe { display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 52px; padding: 72px 40px 52px; max-width: 1320px; margin: 0 auto; }
.ft-logo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 14px; display: block; }
/* BUG FIX: Only logo image in footer brand, NO second image */
.ft-name-text { font-family: var(--fs); font-size: 28px; color: var(--gold); display: block; margin-bottom: 10px; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 250px; margin-bottom: 18px; }
.ft-socials { display: flex; gap: 10px; margin-top: 4px; }
.ft-soc { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, box-shadow .3s; }
.ft-soc:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.ft-wa { background: var(--green); }
.ft-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.ft-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.ft-col ul { list-style: none; }
.ft-col ul li { color: rgba(255,255,255,.4); font-size: 12px; margin-bottom: 10px; }
.ft-col a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s; }
.ft-col a:hover { color: var(--gold); }
.ft-col p { color: rgba(255,255,255,.4); font-size: 12px; margin-bottom: 9px; }
.ft-wa-cta { display: inline-block; margin-top: 12px; padding: 10px 16px; background: rgba(37,211,102,.15); color: var(--green); text-decoration: none; font-size: 12px; font-weight: 700; border: 1px solid rgba(37,211,102,.3); border-radius: 4px; transition: background .3s; }
.ft-wa-cta:hover { background: var(--green); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 22px 40px; max-width: 1320px; margin: 0 auto; text-align: center; color: rgba(255,255,255,.22); font-size: 11px; }

/* ---- FLOATING ACTION BUTTONS (WhatsApp + Instagram) ---- */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
/* Shared style for both buttons */
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
/* WhatsApp */
.float-btn.float-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
}
/* Instagram */
.float-btn.float-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 70%, #bc1888 100%);
  box-shadow: 0 4px 20px rgba(188,24,136,.35);
}
/* Pulse ring on WhatsApp only */
.float-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid #25D366;
  animation: fp 2s infinite;
  pointer-events: none;
}
@keyframes fp { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }

/* Tooltip labels on hover */
.float-btn::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.float-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile — slightly smaller */
@media (max-width: 600px) {
  .float-btns { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 52px; height: 52px; }
  /* Hide tooltips on touch */
  .float-btn::before { display: none; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero { padding: 120px 40px 60px; }
  .about-grid, .acad-grid { gap: 52px; }
  .amb-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .feat-tcard { grid-column: span 2; grid-row: span 1; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================
   RESPONSIVE — TABLET 900px
   ============================ */
@media (max-width: 900px) {
  .nav-links, .nav-book-btn { display: none; }
  .hamburger { display: flex; }

  /* FIX 1: Show "Beauty Studio" in nav on mobile — user needs to see full name */
  .nav-brand-sub { display: block; font-size: 8px; letter-spacing: 2px; }
  .nav-brand-main { font-size: 22px; }

  /* Trust strip scrolls horizontally on mobile */
  .trust-strip { padding: 18px 0; }
  .trust-inner { justify-content: flex-start; padding: 0 16px; }
  .trust-badge { padding: 0 14px; }

  /* Hero stacks vertically */
  .hero { padding: 120px 24px 60px; flex-direction: column; text-align: center; align-items: center; }
  .hero-left { max-width: 100%; }
  .hero-cert-row { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-nums { justify-content: center; }

  /* Hero image constrained on tablet */
  .hero-right { max-height: 320px; width: 100%; justify-content: center; }
  .hero-img-box { max-height: 300px; }
  .hero-img-box img { max-height: 300px; }
  .hero-name-chip { display: none; }

  /* All 2-col grids go single col */
  .about-grid, .amb-grid, .acad-grid { grid-template-columns: 1fr; }
  .about-badge { left: 14px; top: 14px; }

  /* Ambassador product image — inline on mobile */
  .amb-prod { position: static; width: 140px; margin-top: 14px; border: 2px solid rgba(201,169,110,.3); border-radius: 6px; }
  .amb-imgs { padding-bottom: 0; display: flex; flex-direction: column; align-items: flex-start; }

  /* Contact, footer */
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Gallery 2 cols */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gtabs { flex-wrap: wrap; width: 100%; border-radius: 4px; }
  .gtab { flex: 1; min-width: 72px; font-size: 10px; padding: 10px 8px; }

  /* Offer banner */
  .offer-banner { font-size: 11px; padding: 10px 40px 10px 10px; }

  /* Discount CTA stacks */
  .dc-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .dc-left p { max-width: 100%; }

  /* FIX 2: Float buttons — move to bottom-left on mobile so they don't overlap right-side content */
  .float-btns { right: 12px; bottom: 16px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 22px; height: 22px; }
  /* Hide tooltip on touch */
  .float-btn::before { display: none; }
}

/* ============================
   RESPONSIVE — MOBILE 600px
   ============================ */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav-wrap { padding: 0 16px; }

  /* FIX 3: Hero content — add right padding so text doesn't hide under float buttons */
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-h1 { padding-right: 0; }
  .hero-tagline { padding-right: 0; font-size: 13px; }

  /* Single column everything */
  .svc-grid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .feat-tcard { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Gallery 2 cols on phone */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi { height: 160px; }

  /* Images */
  .about-main img { height: 320px; }
  .acad-img-wrap img { height: 320px; }

  /* Typography */
  .hero-sub { font-size: 13px; letter-spacing: 1.5px; }
  .scr-hero { font-size: clamp(44px, 12vw, 68px); }

  /* Stats */
  .hn-sep { display: none; }
  .hero-nums { gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* Cert pills */
  .hero-cert-row { gap: 6px; flex-direction: column; align-items: center; }
  .cert-pill { font-size: 9px; padding: 5px 10px; }

  /* Offer box compact */
  .hero-offer-box { padding: 10px 14px; }

  /* Float buttons extra small on phones */
  .float-btns { right: 10px; bottom: 14px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; min-width: 46px; min-height: 46px; }
  .float-btn svg { width: 20px; height: 20px; }
}

/* Extra rules that belong in 600px block */
@media (max-width: 600px) {
  /* Trust strip compact */
  .tbadge-text strong { font-size: 11px; }
  .tbadge-text span { font-size: 9px; }
  .tbadge-icon { font-size: 20px; }
  /* Footer */
  .footer-grid { padding: 40px 16px 32px; }
  .footer-bottom { padding: 18px 16px; font-size: 10px; }
  /* FAQ */
  .faq-seo { padding: 48px 0; }
  .faq-item h3 { font-size: 15px; }
  /* Service card images shorter */
  .svc-img { height: 160px; }
  /* Testimonial grid */
  .tgrid { gap: 14px; margin-top: 32px; }
}

/* ============================
   RESPONSIVE — SMALL 380px
   ============================ */
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gi { height: 220px; }
  .hero-nums { justify-content: center; }
  .scr-hero { font-size: 44px; }
}

/* ---- TRUST BADGES STRIP ---- */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid rgba(201,169,110,.18);
  border-bottom: 1px solid rgba(201,169,110,.18);
  padding: 22px 40px;
  overflow-x: auto;
}
.trust-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px; flex-shrink: 0;
}
.tbadge-icon { font-size: 26px; flex-shrink: 0; }
.tbadge-text { display: flex; flex-direction: column; gap: 1px; }
.tbadge-text strong { font-size: 12px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.tbadge-text span { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; white-space: nowrap; }
.trust-sep { width: 1px; height: 36px; background: rgba(201,169,110,.25); flex-shrink: 0; }

/* ISO special pill style */
.iso-pill {
  background: linear-gradient(135deg, rgba(201,169,110,.2), rgba(154,123,79,.15)) !important;
  border-color: rgba(201,169,110,.5) !important;
  color: var(--gold-dk) !important;
  font-weight: 700 !important;
}
.iso-tag {
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(154,123,79,.08)) !important;
  border-color: rgba(201,169,110,.4) !important;
  color: var(--gold-dk) !important;
  font-weight: 700 !important;
}

/* ---- SEO FAQ SECTION ---- */
.faq-seo {
  padding: 80px 0;
  background: var(--cream2);
  border-top: 1px solid rgba(201,169,110,.15);
}
.faq-seo h2 {
  font-family: var(--fd);
  font-size: clamp(24px,3vw,40px);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,.2);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(201,169,110,.2); }
.faq-item h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-item h3::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 24px;
}
.faq-item a { color: var(--gold-dk); font-weight: 600; text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* ============================
   MOBILE TOUCH IMPROVEMENTS
   ============================ */

/* Better tap highlighting on mobile */
a, button {
  -webkit-tap-highlight-color: rgba(201,169,110,.2);
  touch-action: manipulation; /* Removes 300ms tap delay */
}

/* Ensure all interactive elements have min 44px touch target */
.gtab { min-height: 44px; }
.nav-book-btn { min-height: 40px; }
.btn-gold, .btn-outline-w, .btn-wa-hero,
.btn-wa-big, .btn-gmaps, .btn-gold-ol,
.btn-wa-offer, .btn-insta, .svc-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.float-btn { min-width: 52px; min-height: 52px; }

/* Smooth scroll on iOS */
html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

/* Prevent text selection on UI elements */
.nav-wrap, .offer-banner, .marquee, .trust-strip, .float-btns {
  -webkit-user-select: none;
  user-select: none;
}

/* Better mobile image display */
img { max-width: 100%; height: auto; display: block; }
