/* ============================================================
   HER.Beauty — styles.css
   ============================================================ */

/* --- VARIABLES --- */
:root {
  --pink:       #E91E8C;
  --pink-dark:  #C2185B;
  --pink-mid:   #F06292;
  --pink-pale:  #FCE4EC;
  --pink-bg:    #FDF5F9;
  --white:      #FFFFFF;
  --dark:       #1A1025;
  --text:       #3D2B3D;
  --muted:      #8B7B8B;
  --border:     #F0D5E5;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Poppins', sans-serif;

  --radius:    18px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(233, 30, 140, 0.08);
  --shadow-lg: 0 12px 48px rgba(233, 30, 140, 0.16);

  --max-w:     1200px;
  --pad-x:     24px;
  --sec-pad:   100px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--ff-head); line-height: 1.2; }
h1  { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2  { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3  { font-size: clamp(1.15rem, 2vw, 1.45rem); }
em  { font-style: italic; color: var(--pink); }

/* --- LAYOUT HELPERS --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section   { padding: var(--sec-pad) 0; }
.alt-bg    { background: var(--pink-bg); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; color: var(--dark); }
.section-desc  { color: var(--muted); max-width: 520px; font-size: 1rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(233, 30, 140, 0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
}
.btn-map {
  background: var(--pink);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.875rem;
}
.btn-map:hover { background: var(--pink-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(233,30,140,0.1);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s;
}
#navbar.scrolled .nav-logo img { border-color: var(--pink-pale); }
.nav-logo span {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo span { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s;
}
#navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--pink); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(140deg, #5C0035 0%, #A81050 35%, #E91E8C 70%, #F472B6 100%);
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.c1 { width: 700px; height: 700px; top: -240px; right: -200px; }
.c2 { width: 500px; height: 500px; bottom: -200px; left: -180px; }
.c3 { width: 220px; height: 220px; top: 28%; left: 8%;  background: rgba(255,255,255,0.04); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 130px 24px 80px;
}

.hero-logo {
  width: 130px; height: 130px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hero-pill {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 3px 16px rgba(0,0,0,0.18);
}
.hero-headline em { color: #FFD6EC; font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.75;
}

.hero-appt {
  display: inline-block;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 38px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 44px 0 0;
  align-items: start;
}

.about-intro {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-story p { color: var(--muted); margin-bottom: 20px; }

.owner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--pink);
  margin-top: 8px;
}
.owner-avatar {
  width: 48px; height: 48px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}
.owner-info strong { display: block; color: var(--dark); font-size: 1rem; }
.owner-info span   { color: var(--muted); font-size: 0.83rem; }

.creds-panel h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-pale);
  font-family: var(--ff-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.creds-list { display: flex; flex-direction: column; gap: 14px; }
.creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.creds-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.cred-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.4; }
.creds-list strong { display: block; color: var(--dark); font-size: 0.92rem; margin-bottom: 2px; }
.creds-list em     { font-style: normal; color: var(--muted); font-size: 0.8rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.6rem;
  color: var(--pink);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Visual area (photo or icon) */
.svc-visual { height: 200px; position: relative; overflow: hidden; }

.icon-bg {
  background: linear-gradient(135deg, var(--bg1, #FCE4EC), var(--bg2, #F8BBD9));
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-svg { width: 110px; height: 110px; }

.photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .photo-wrap img { transform: scale(1.08); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(233,30,140,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.svc-card:hover .photo-overlay { background: rgba(233,30,140,0.55); }

.view-gallery-btn {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.svc-card:hover .view-gallery-btn { opacity: 1; transform: translateY(0); }

/* Card body */
.svc-body { padding: 22px 24px 24px; }

.svc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.svc-body h3  { color: var(--dark); margin-bottom: 8px; }
.svc-body p   { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }

.svc-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.svc-price span   { font-size: 0.78rem; color: var(--muted); }
.svc-price strong { font-family: var(--ff-head); font-size: 1.25rem; color: var(--pink); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 30px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border: 2px solid var(--border);
  background: var(--white);
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: opacity 0.3s;
}
.g-item.hidden { display: none; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(194,24,91,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-size: 0.8rem; font-weight: 600; }

/* ============================================================
   BOOK NOW
   ============================================================ */
.setmore-wrap {
  max-width: 580px;
  margin: 44px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--pink-pale);
  box-shadow: var(--shadow-lg);
  padding: 52px 40px;
  text-align: center;
}
.setmore-icon { font-size: 3rem; margin-bottom: 14px; }
.setmore-inner h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.35rem; }
.setmore-inner p  { color: var(--muted); font-size: 0.93rem; margin-bottom: 28px; }
.setmore-btn {
  background: var(--pink) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 16px 40px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 24px rgba(233,30,140,0.35) !important;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
  font-family: var(--ff-body) !important;
}
.setmore-btn:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(233,30,140,0.45) !important;
}

.book-divider {
  text-align: center;
  margin: 44px 0 36px;
  position: relative;
  color: var(--muted);
  font-size: 0.875rem;
}
.book-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.book-divider span {
  position: relative;
  background: var(--pink-bg);
  padding: 0 20px;
}

.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.book-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.book-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.book-card.featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink-pale), var(--white));
}

.book-card-icon { font-size: 2rem; flex-shrink: 0; }
.book-card-text strong { display: block; color: var(--dark); font-size: 0.92rem; margin-bottom: 3px; }
.book-card-text span   { font-size: 0.78rem; color: var(--muted); }

.book-tip {
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.book-tip strong { color: var(--text); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  margin-top: 44px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.cc-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-card span,
.contact-card a { color: var(--text); font-size: 0.9rem; line-height: 1.5; }
.contact-card a:hover { color: var(--pink); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-pale), var(--white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p    { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); }

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.footer-brand strong { display: block; color: var(--white); font-family: var(--ff-head); font-size: 1.15rem; }
.footer-brand span   { font-size: 0.78rem; }

.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--pink-mid); }

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.fb-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.78rem;
}
.footer-bottom p + p { margin-top: 4px; opacity: 0.6; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,5,15,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }

#lbImg {
  max-width: min(88vw, 920px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 72px rgba(0,0,0,0.6);
}

.lb-close {
  position: fixed;
  top: 18px; right: 22px;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2001;
}
.lb-close:hover { opacity: 1; transform: rotate(90deg); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3.5rem;
  opacity: 0.65;
  padding: 12px;
  line-height: 1;
  transition: opacity 0.2s;
  user-select: none;
}
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

.lb-caption {
  position: fixed;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-in {
  animation: fadeUp 0.85s ease both;
  opacity: 0;
}
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.38s; }
.d4 { animation-delay: 0.52s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.13s; }
.fd2 { transition-delay: 0.26s; }
.fd3 { transition-delay: 0.39s; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }
  .stats-row      { grid-template-columns: repeat(2, 1fr); }
  .about-layout   { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map    { height: 300px; }
  .book-options   { grid-template-columns: 1fr; max-width: 420px; }
  .footer-main    { justify-content: center; text-align: center; }
  .footer-nav     { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec-pad: 64px; }

  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    z-index: 800;
  }
  .nav-links.open   { right: 0; }
  .nav-links a      { color: var(--dark) !important; font-size: 1.05rem; }
  .nav-cta          { background: var(--pink) !important; color: var(--white) !important; }
  .nav-toggle       { display: flex; }

  .svc-grid         { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-row        { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas        { flex-direction: column; align-items: center; }
  .fresha-placeholder { padding: 36px 24px; }

  .lb-prev { left: 2px; }
  .lb-next { right: 2px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 100px; height: 100px; }
  .gallery-grid { gap: 8px; }
  .stats-row { gap: 14px; }
}
