/* ══════════════════════════════════
   NATALIIA HREBENIUK — MUA WEBSITE
   ══════════════════════════════════ */

:root {
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --gold-dk: #a8882e;
  --dark:    #0d0d0d;
  --dark2:   #111111;
  --dark3:   #181818;
  --dark4:   #1e1e1e;
  --light:   #f5f0ea;
  --grey:    #777;
  --white:   #fff;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --radius:  8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--gold-dk), var(--gold-lt)); border-radius: 4px; }

h1,h2,h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
em { font-style: italic; color: var(--gold); }
a  { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-dark { background: var(--dark2); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { margin-bottom: 12px; }
.section-sub { color: var(--grey); font-size: 0.88rem; margin-top: 8px; }
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* Pulse on hero CTA */
.btn-gold.btn-magnetic {
  animation: none;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--gold);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto 0;
  animation: loaderLine 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { opacity: 0.4; transform: scale(0.97); }
  50%      { opacity: 1;   transform: scale(1.03); }
}
@keyframes loaderLine {
  0%,100% { transform: scaleX(0.3); opacity: 0.3; }
  50%      { transform: scaleX(1);   opacity: 1;   }
}

/* ── SITE PARTICLES (global fixed overlay) ── */
.site-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.025) 0%, rgba(201,168,76,0.012) 35%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  will-change: left, top;
}

/* ══ WHATSAPP FLOAT ══ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-lt), var(--gold-dk));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(13,13,13,0.92);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover, .back-to-top:active {
  background: var(--gold); color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ── BOTTOM GLOW ── */
.bottom-glow {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold-dk) 20%, var(--gold-lt) 50%, var(--gold-dk) 80%, transparent 100%);
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.bottom-glow.show {
  opacity: 1;
  animation: bottomPulse 2.5s ease-in-out infinite;
}
@keyframes bottomPulse {
  0%, 100% { opacity: 0.4; box-shadow: none; }
  50%       { opacity: 1; box-shadow: 0 0 16px rgba(201,168,76,0.5); }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(13,13,13,0.98);
  border-top: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  transform: translateY(100%);
  transition: transform 0.55s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1180px; margin: 0 auto; }
.cookie-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
}
.cookie-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text strong { display: block; color: var(--cream); font-size: 0.9rem; margin-bottom: 4px; font-family: var(--font-sans); }
.cookie-text p { font-size: 0.78rem; color: rgba(245,240,234,0.55); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--gold); }
.cookie-manage {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px; margin-bottom: 16px;
}
.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-row > div:first-child strong { font-size: 0.8rem; color: var(--cream); font-family: var(--font-sans); display: block; }
.cookie-toggle-row > div:first-child span { font-size: 0.72rem; color: rgba(245,240,234,0.45); }
.cookie-toggle--on { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.05em; white-space: nowrap; }
.cookie-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0; background: rgba(255,255,255,0.12);
  border-radius: 22px; cursor: pointer; transition: 0.3s;
}
.cookie-slider::before {
  content: ''; position: absolute; width: 16px; height: 16px;
  left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(18px); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn {
  padding: 10px 20px; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark); border: none;
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}
.cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.cookie-decline {
  background: transparent; color: rgba(245,240,234,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.25); color: rgba(245,240,234,0.75); }
.cookie-manage-btn {
  background: transparent; color: rgba(245,240,234,0.45);
  border: 1px solid rgba(255,255,255,0.08); margin-right: auto;
}
.cookie-manage-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ══ NAVBAR ══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding: 0 32px;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none; transition: opacity 0.3s; gap: 3px;
  margin-left: -18px;
}
.logo-letters {
  font-family: var(--font-serif); font-size: 1.55rem;
  letter-spacing: 1px; color: var(--gold); font-weight: 400;
}
.logo-sub {
  font-size: 0.48rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,240,234,0.38); font-weight: 500; white-space: nowrap;
}
.logo:hover { opacity: 0.8; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; color: rgba(245,240,234,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-ig {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 8px 18px; border-radius: var(--radius); font-weight: 600 !important;
}
.nav-ig:hover { background: var(--gold-lt) !important; }
.nav-ig::after { display: none !important; }
.burger { display: none; background: none; border: none; color: var(--light); font-size: 1.5rem; cursor: pointer; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -15%;
  background: url('images/img_p1_0.jpeg') center 42% / cover no-repeat;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(13,13,13,0.5) 0%,
      rgba(13,13,13,0.15) 30%,
      rgba(13,13,13,0.3) 65%,
      rgba(13,13,13,0.95) 100%
    ),
    linear-gradient(to right,
      rgba(13,13,13,0.95) 0%,
      rgba(13,13,13,0.4) 18%,
      rgba(13,13,13,0) 30%,
      rgba(13,13,13,0) 70%,
      rgba(13,13,13,0.4) 82%,
      rgba(13,13,13,0.95) 100%
    );
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13,13,13,0.55) 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3; padding: 0 24px;
  max-width: 900px;
}

/* Text reveal animations */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s var(--ease) forwards;
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s var(--ease) 0.3s forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealScript {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Script name wrapper handles the entrance */
.script-name-wrap {
  display: block;
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  animation: revealScript 1s var(--ease) 0.55s forwards;
}

.hero-sub {
  font-size: 0.78rem; letter-spacing: 6px; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 20px; font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  animation-delay: 0.2s;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.0; margin-bottom: 28px; color: var(--white);
}
.script-name {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 1.05;
  font-weight: 400;
  background: linear-gradient(90deg,
    var(--gold-dk) 0%,
    var(--gold-lt) 30%,
    #fff8e7 50%,
    var(--gold-lt) 70%,
    var(--gold-dk) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 300% center; } }

.hero-location {
  color: rgba(245,240,234,0.65); font-size: 0.8rem; letter-spacing: 2px;
  margin-bottom: 52px; animation-delay: 0.7s;
}
.hero-location i { color: var(--gold); margin-right: 6px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation-delay: 0.9s; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.scroll-hint span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.5s ease infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ══ TICKER STRIP ══ */
.ticker-strip {
  background: rgba(201,168,76,0.05);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.ticker-strip::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.ticker-strip::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.ticker-inner {
  display: inline-flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}
.ticker-set span {
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0.85;
}
.ticker-set .t-dot {
  color: rgba(201,168,76,0.35) !important;
  font-size: 0.45rem !important;
  letter-spacing: 0 !important;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ ABOUT ══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 12px; overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.25);
  border-radius: 12px; pointer-events: none;
}
.about-img-frame::after {
  content: '';
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; z-index: 0;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 12px; display: block;
  transition: transform 0.7s var(--ease);
}
.about-img-wrap:hover .about-photo { transform: scale(1.02); }

.about-img-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  z-index: 2;
}
.badge-num {
  font-family: var(--font-serif); font-size: 2.4rem; line-height: 1;
  font-weight: 600;
}
.badge-txt { font-size: 0.65rem; letter-spacing: 1px; text-align: center; line-height: 1.4; margin-top: 4px; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: rgba(245,240,234,0.68); margin-bottom: 14px; font-size: 0.9rem; }
.about-text strong { color: var(--gold); font-weight: 600; }
.perks { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(245,240,234,0.7); }
.perk i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.about-stats {
  display: flex; gap: 40px; margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif);
  font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }

/* ══ SERVICES ══ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 40px 30px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(135deg, rgba(28,24,16,0.9) 0%, var(--dark3) 100%);
}

.service-glow {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  transition: transform 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-glow { opacity: 1; transform: scale(2); }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.1rem; color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.15);
  transform: scale(1.1);
}
.service-card { cursor: pointer; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: rgba(245,240,234,0.58); font-size: 0.85rem; line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 12px; border-radius: 20px;
  background: rgba(201,168,76,0.06);
}
.service-book-hint {
  display: flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(201,168,76,0.5);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.service-book-hint i { font-size: 0.55rem; transition: transform 0.3s; }
.service-card:hover .service-book-hint {
  opacity: 1; transform: translateY(0); color: var(--gold);
}
.service-card:hover .service-book-hint i { transform: translateX(4px); }

.services-cta { text-align: center; margin-top: 64px; }
.services-cta p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }

/* ══ HAIR ══ */
.hairstyles { background: var(--dark); }
.hair-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.hair-item {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.hair-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hair-item:hover img { transform: scale(1.08); }
.hair-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  transform: translateY(4px); opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}
.hair-item:hover span { transform: translateY(0); opacity: 1; }

/* ══ PORTFOLIO ══ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 52px; }
.portfolio-item {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 10px; cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.portfolio-overlay i {
  font-size: 1.4rem; color: var(--gold); margin-bottom: 8px;
  transform: scale(0.7); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.portfolio-overlay span {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); font-weight: 600;
  transform: translateY(8px); opacity: 0;
  transition: transform 0.4s var(--ease) 0.05s, opacity 0.4s var(--ease) 0.05s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-overlay i { transform: scale(1); opacity: 1; }
.portfolio-item:hover .portfolio-overlay span { transform: translateY(0); opacity: 1; }
.portfolio-divider {
  display: flex; align-items: center; gap: 24px;
  margin: 64px 0 36px;
}
.pdiv-line { flex: 1; height: 1px; background: rgba(201,168,76,0.18); }
.portfolio-divider .section-tag { white-space: nowrap; }
.portfolio-divider .section-tag::before,
.portfolio-divider .section-tag::after { display: none; }

/* Hair grid inside portfolio */
.portfolio .hair-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 52px;
}
.portfolio .hair-item { cursor: pointer; }
.portfolio .hair-item .portfolio-overlay { display: none; }

.portfolio-cta { text-align: center; }
.portfolio-cta p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }

/* ══ TESTIMONIALS ══ */
.testimonials { background: var(--dark); }
.reviews-track-wrap { position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 24px;
  transition: transform 0.6s var(--ease);
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 40px 32px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.review-card:hover::before { opacity: 1; }

.review-quote-icon {
  color: rgba(201,168,76,0.2); font-size: 2rem; margin-bottom: 12px;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p {
  color: rgba(245,240,234,0.68); font-size: 0.88rem; line-height: 1.85;
  font-style: italic; margin-bottom: 24px;
}
.review-author { display: flex; flex-direction: column; gap: 3px; }
.review-author strong { font-size: 0.85rem; color: var(--light); font-style: normal; }
.review-author span { font-size: 0.72rem; color: var(--grey); letter-spacing: 1px; }
.reviews-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.reviews-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer; transition: all 0.3s;
}
.reviews-dots .dot.active {
  background: var(--gold); transform: scale(1.4);
}

/* ══ FAQ ══ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 26px;
  color: var(--light); font-family: var(--font-sans); font-size: 0.9rem;
  font-weight: 500; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q i { color: var(--gold); transition: transform 0.4s var(--ease); font-size: 0.75rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { padding: 0 26px 22px; color: rgba(245,240,234,0.62); font-size: 0.87rem; line-height: 1.8; }

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: rgba(245,240,234,0.6); margin-bottom: 36px; font-size: 0.9rem; }
.contact-links { display: flex; flex-direction: column; gap: 18px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  color: rgba(245,240,234,0.72); font-size: 0.87rem;
  transition: color 0.3s; cursor: pointer;
}
.contact-link.no-link { cursor: default; }
.contact-link i {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.contact-link .fab.fa-whatsapp { color: #25D366; }
.contact-link div { display: flex; flex-direction: column; }
.contact-link div strong { font-size: 0.78rem; color: var(--light); margin-bottom: 1px; }
.contact-link div span { font-size: 0.78rem; color: var(--grey); }
.contact-link:hover { color: var(--gold); }
.contact-link:hover i { background: rgba(201,168,76,0.15); transform: scale(1.08); }

/* Form */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.65rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--grey); margin-bottom: 9px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 13px 16px;
  color: var(--light); font-family: var(--font-sans); font-size: 0.88rem;
  outline: none; transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
}
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: 0.73rem; color: var(--grey); margin-top: 14px; }
.privacy-check { margin-bottom: 8px; }
.privacy-label {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 0.78rem; color: var(--grey); line-height: 1.5;
  font-family: var(--font-sans); letter-spacing: 0.03em;
}
.privacy-label input[type="checkbox"] { display: none; }
.privacy-label .chk-box {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1.5px solid rgba(201,168,76,0.4); border-radius: 4px;
  background: transparent; position: relative;
  transition: border-color 0.25s, background 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.privacy-label .chk-box::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
  margin-bottom: 2px;
}
.privacy-label input:checked ~ .chk-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-color: var(--gold);
}
.privacy-label input:checked ~ .chk-box::after { transform: rotate(45deg) scale(1); }
.privacy-label:hover .chk-box { border-color: rgba(201,168,76,0.7); }
.privacy-label a { color: var(--gold); text-decoration: underline; }

/* Service multi-picker */
.label-hint { font-style: normal; font-size: 0.62rem; color: var(--grey); letter-spacing: 1px; }
.service-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-opt { cursor: pointer; }
.srv-opt input { display: none; }
.srv-opt span {
  display: block; padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; font-size: 0.75rem;
  color: rgba(245,240,234,0.65); font-family: var(--font-sans);
  transition: all 0.2s; user-select: none;
}
.srv-opt:hover span { border-color: rgba(201,168,76,0.35); color: var(--gold); }
.srv-opt input:checked + span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark); border-color: var(--gold); font-weight: 600;
  box-shadow: 0 3px 12px rgba(201,168,76,0.25);
}

/* Date picker button */
.date-picker-btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 13px 16px;
  color: rgba(245,240,234,0.5); font-family: var(--font-sans); font-size: 0.88rem;
  cursor: pointer; transition: border-color 0.3s, background 0.3s, color 0.3s;
  text-align: left;
}
.date-picker-btn:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.04);
  color: var(--light);
}
.date-picker-btn.has-date {
  color: var(--light); border-color: rgba(201,168,76,0.3);
}
.date-picker-btn i:first-child { color: var(--gold); }
.date-picker-btn span { flex: 1; }
.date-arrow {
  color: var(--grey); font-size: 0.8rem;
  transition: transform 0.3s;
}
.date-picker-btn:hover .date-arrow { transform: translateX(3px); }

/* ══ CALENDAR MODAL ══ */
.cal-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 20px;
}
.cal-modal-overlay.open { opacity: 1; visibility: visible; }
.cal-modal {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px; padding: 36px;
  width: 100%; max-width: 440px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  max-height: 90vh; overflow-y: auto;
}
.cal-modal-overlay.open .cal-modal {
  transform: translateY(0) scale(1);
}
.cal-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--grey); cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.cal-modal-close:hover { background: rgba(255,255,255,0.12); color: var(--light); }
.cal-modal-head { margin-bottom: 24px; }
.cal-modal-head h3 { font-size: 1.5rem; margin-top: 4px; }
.cal-nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cal-month-title {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--light);
  letter-spacing: 1px;
}
.cal-nav {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; width: 34px; height: 34px;
  color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: all 0.2s;
}
.cal-nav:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.cal-year-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px; margin-top: -6px;
}
.cal-year-title {
  font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 3px;
  color: var(--gold); font-weight: 600; min-width: 52px; text-align: center;
}
.cal-year-nav {
  background: none; border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px; width: 26px; height: 26px;
  color: rgba(201,168,76,0.6); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; transition: all 0.2s;
}
.cal-year-nav:hover { background: rgba(201,168,76,0.1); color: var(--gold); border-color: var(--gold); }

.cal-days-header {
  display: grid; grid-template-columns: repeat(7,1fr);
  text-align: center; margin-bottom: 8px;
}
.cal-days-header span {
  font-size: 0.6rem; letter-spacing: 1px; color: var(--grey);
  padding: 4px 0; text-transform: uppercase;
}
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-cell {
  background: none; border: 1px solid transparent; border-radius: 9px;
  aspect-ratio: 1; font-size: 0.82rem; color: var(--light);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-sans);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cal-cell:hover:not(:disabled) {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3); color: var(--gold);
}
.cal-cell.selected {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark); border-color: var(--gold); font-weight: 600;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.cal-cell.past { color: rgba(255,255,255,0.18); cursor: not-allowed; }
.cal-cell.sunday { color: rgba(255,255,255,0.22); cursor: not-allowed; }
.cal-cell.empty { border: none; cursor: default; }
.cal-cell.today:not(.selected) {
  color: var(--gold); font-weight: 600;
}
.cal-cell.today:not(.selected)::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

/* Time section in modal */
.cal-time-section {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeInUp 0.4s var(--ease);
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.cal-time-label {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.cal-time-label i { color: var(--gold); }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 9px 14px;
  font-size: 0.77rem; color: rgba(245,240,234,0.7);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-sans);
}
.time-slot:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); }
.time-slot.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--dark); border-color: var(--gold); font-weight: 600;
}

/* Modal footer */
.cal-modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
}
.cal-selected {
  font-size: 0.8rem; color: var(--grey); flex: 1;
}
.cal-selected.has-date { color: var(--gold); }
#calConfirmBtn:disabled { opacity: 0.4; pointer-events: none; }

/* ══ PORTFOLIO LIGHTBOX ══ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--light); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--light); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover { background: rgba(201,168,76,0.2); transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { background: rgba(201,168,76,0.2); transform: translateY(-50%) scale(1.1); }
.lightbox-img-wrap {
  max-width: 80vw; max-height: 82vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 82vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: lbZoom 0.3s var(--ease);
}
@keyframes lbZoom { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); white-space: nowrap;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0 36px;
  text-align: center;
}
.footer-logo { font-family: var(--font-serif); font-size: 2.2rem; letter-spacing: 7px; color: var(--gold); margin-bottom: 8px; }
.footer-tagline { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); margin-bottom: 30px; }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 30px; }
.footer-social a {
  width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.18); }

/* ══ SCROLL ANIMATIONS ══ */
.fade-up, .fade-left, .fade-right { opacity: 0; transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.visible    { opacity: 1 !important; transform: none !important; }

/* ── BOOKING BADGE ── */
.booking-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 20px; padding: 8px 20px;
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,240,234,0.75); margin-bottom: 20px;
  animation-delay: 0.1s;
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: badgePulse 2.2s ease infinite;
}
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ══ RESPONSIVE ══ */
/* ══ RESPONSIVE ══ */

/* ── Large tablet / small desktop ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio .hair-grid { grid-template-columns: repeat(4,1fr); }
  .review-card { flex: 0 0 calc(50% - 12px); }
  .contact-grid { gap: 48px; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 12px; bottom: 16px; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio .hair-grid { grid-template-columns: repeat(3,1fr); }
  .review-card { flex: 0 0 100%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: clamp(2.8rem, 7vw, 5rem); }
  .script-name { font-size: clamp(4rem, 11vw, 8rem); }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-btns { width: 100%; justify-content: flex-end; }
  .logo-sub { font-size: 0.44rem; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98); padding: 24px; gap: 20px;
    border-top: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .logo-sub { display: none; }
  .logo { margin-left: -8px; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .script-name { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .booking-badge { font-size: 0.58rem; padding: 7px 14px; }
  .hero-sub { font-size: 0.68rem; letter-spacing: 4px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio .hair-grid { grid-template-columns: repeat(2,1fr); }

  /* About */
  .about-stats { gap: 16px; }
  .about-img-badge { display: none; }
  .about-img-frame::after { display: none; }
  .stat-num { font-size: 2rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .service-picker { gap: 6px; }
  .srv-opt span { padding: 8px 12px; font-size: 0.72rem; }

  /* Calendar modal */
  .cal-modal { padding: 24px 16px; max-height: 88vh; overflow-y: auto; }
  .cal-modal-head h3 { font-size: 1.2rem; }
  .time-slots { gap: 6px; }
  .time-slot { padding: 8px 11px; font-size: 0.72rem; }
  .cal-modal-footer { flex-direction: column; gap: 12px; align-items: stretch; }
  .cal-modal-footer .btn { justify-content: center; }

  /* Lightbox */
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
  .lightbox-img-wrap { max-width: 95vw; }
  .lightbox-close { top: 12px; right: 12px; }

  /* Floats */
  .wa-float { bottom: 18px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { bottom: 78px; right: 16px; width: 42px; height: 42px; font-size: 0.8rem; }

  /* Cookie */
  .cookie-banner { padding: 16px 18px; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline, .cookie-manage-btn { flex: 1; text-align: center; }
  .cookie-manage-btn { margin-right: 0; width: 100%; }

  /* Ticker */
  .ticker-set span { font-size: 0.56rem; letter-spacing: 2px; }
  .ticker-set { gap: 24px; padding-right: 24px; }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
  .section-tag::before, .section-tag::after { margin: 0 5px; }

  /* Scroll hint */
  .scroll-hint { display: none; }
}

/* ── Small phones ── */
@media (max-width: 380px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio .hair-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 2.2rem; }
  .script-name { font-size: 3.2rem; }
  .contact-form-wrap { padding: 20px 14px; }
}

/* ── Touch devices: hide cursor glow + disable parallax space ── */
@media (hover: none) {
  .cursor-glow { display: none; }
  .hero-bg { inset: 0; will-change: auto; }
}
