/* ============================================================
   D'Miras Beauty Salon — Main Stylesheet
   Palette: #111111 | #D4AF37 (Champagne Gold) | #FAF9F6 (Ivory)
   Fonts: Playfair Display | Cormorant Garamond | Poppins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --black:       #111111;
  --black-soft:  #1a1a1a;
  --black-card:  #1c1c1c;
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dark:   #A8892B;
  --rose-gold:   #C0887A;
  --white:       #FFFFFF;
  --ivory:       #FAF9F6;
  --beige:       #F5F1EB;
  --text-muted:  #999999;
  --text-light:  #CCCCCC;
  --border:      rgba(212,175,55,0.2);
  --glass-bg:    rgba(255,255,255,0.05);
  --glass-border:rgba(212,175,55,0.25);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  font-style: italic;
}
.text-gold { color: var(--gold); }
.section-head { text-align: center; margin-bottom: 4rem; }

/* ── Section base ───────────────────────────────────────── */
section { padding: 90px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Gold divider ───────────────────────────────────────── */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.revealed { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.revealed { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────
   LOADING SCREEN
   ───────────────────────────────────────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.loading-logo span { color: var(--gold); }
.loading-shimmer {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  animation: shimmer 1.6s ease-in-out infinite;
}
@keyframes shimmer { to { left: 160%; } }
.loading-bar {
  width: 140px; height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 2rem; border-radius: 10px; overflow: hidden;
}
.loading-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loadbar 1.4s ease-in-out forwards;
  border-radius: 10px;
}
@keyframes loadbar { from { width: 0; } to { width: 100%; } }

/* ─────────────────────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book {
  padding: 0.55rem 1.4rem !important;
  font-size: 0.75rem !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,17,17,0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.4rem;
  opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 2.2rem; font-style: italic;
  color: rgba(255,255,255,0.75); transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-size: 1.8rem; color: var(--text-muted);
  cursor: pointer; transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 100%);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45; filter: brightness(0.7);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.25) 0%,
    rgba(17,17,17,0.55) 50%,
    rgba(17,17,17,0.9) 100%
  );
}
/* Particles */
#particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.9) 0%, transparent 70%);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.4); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 780px;
}
.hero-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.6rem;
}
.hero-tag::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.8); font-weight: 300;
  max-width: 520px; margin-bottom: 2.8rem; line-height: 1.6;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(17,17,17,0.85); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 1.6rem 24px;
}
.stat-item { text-align: center; padding: 0.5rem; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--gold); display: block;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem; letter-spacing: 0.1em; }

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────────────────────── */
#why { background: var(--black-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.why-card:hover::before { border-color: var(--gold); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: rgba(212,175,55,0.2); }
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────── */
#services { background: var(--black); }
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--black);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card:hover::after { transform: scaleX(1); }
.service-card[data-cat] { display: block; }
.service-card.hidden { display: none; }
.svc-icon {
  font-size: 2rem; margin-bottom: 1rem; display: block;
  filter: grayscale(0.3);
}
.svc-cat-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block;
}
.service-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 600; }
.service-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.svc-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 0.7rem; }

/* ─────────────────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────────────────── */
#gallery { background: var(--black-soft); }
.gallery-grid {
  columns: 3; column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1.2rem;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh; border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  transform: scale(0.92); transition: transform 0.3s;
}
#lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(212,175,55,0.4); }

/* ─────────────────────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────────────────────── */
#process { background: var(--black); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; gap: 1rem;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 1px); right: calc(12.5% + 1px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.5;
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 72px; height: 72px; margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--gold); position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold);
}
.process-step h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.83rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
   REVIEWS
   ───────────────────────────────────────────────────────── */
#reviews { background: var(--black-soft); overflow: hidden; }
.rating-hero {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  margin-bottom: 3.5rem; flex-wrap: wrap;
}
.rating-big {
  font-family: var(--font-heading); font-size: 4.5rem;
  color: var(--gold); line-height: 1;
}
.rating-stars { font-size: 1.6rem; color: var(--gold); letter-spacing: 2px; }
.rating-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.reviews-track-wrap { overflow: hidden; position: relative; }
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px;
  pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--black-soft), transparent); }
.reviews-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--black-soft), transparent); }
.reviews-track {
  display: flex; gap: 1.5rem;
  animation: scroll-reviews 32s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-reviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 340px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
  font-family: var(--font-sub); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.85);
  line-height: 1.65; margin-bottom: 1.4rem;
}
.review-author { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--rose-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--white);
  font-weight: 700; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.review-loc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ─────────────────────────────────────────────────────────
   INSTAGRAM
   ───────────────────────────────────────────────────────── */
#instagram { background: var(--black); }
.insta-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0.75rem; margin-bottom: 2.5rem;
}
.insta-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm); aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 36px; height: 36px; fill: var(--white); }
.insta-cta { text-align: center; }

/* ─────────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, #1a1208 0%, #0d0d0d 50%, #1a1208 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
  padding: 80px 0;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white); margin-bottom: 0.8rem;
}
.cta-sub {
  font-family: var(--font-sub); font-style: italic;
  font-size: 1.2rem; color: var(--text-muted);
  margin-bottom: 2.4rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
#faq { background: var(--black-soft); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0;
  font-size: 0.98rem; font-weight: 600;
  color: var(--ivory); text-align: left;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s;
}
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; padding-bottom: 1.4rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}
.faq-a.open { max-height: 300px; }
.faq-item.open { border-left: 3px solid var(--gold); padding-left: 1rem; }

/* ─────────────────────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────────────────────── */
#newsletter {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.newsletter-text h3 {
  font-size: 1.5rem; color: var(--white); margin-bottom: 0.4rem;
}
.newsletter-text p { font-size: 0.88rem; color: var(--text-muted); }
.newsletter-form {
  display: flex; gap: 0.6rem; flex-wrap: wrap; flex: 1; max-width: 480px;
}
.newsletter-form input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 0.75rem 1.4rem;
  color: var(--white); font-size: 0.88rem;
  transition: border-color 0.25s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }
#newsletter-msg { font-size: 0.82rem; color: var(--gold); margin-top: 0.5rem; width: 100%; }

/* ─────────────────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────────────────── */
#contact { background: var(--black-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 {
  font-size: 1.6rem; color: var(--white); margin-bottom: 2rem;
}
.info-item {
  display: flex; gap: 1.2rem; margin-bottom: 1.6rem; align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-val { font-size: 0.92rem; color: var(--ivory); }
.info-val a:hover { color: var(--gold); }
.map-placeholder {
  width: 100%; height: 220px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
}
.map-placeholder svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.map-link { font-size: 0.82rem; color: var(--gold); text-decoration: underline; }
/* Contact Form */
.contact-form h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--ivory); font-size: 0.9rem;
  transition: border-color 0.25s, background 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-status { font-size: 0.84rem; margin-top: 0.75rem; min-height: 1.2em; }
.form-status.success { color: #6fcf97; }
.form-status.error   { color: #eb5757; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--gold);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 2rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.05rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-muted); transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom span { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   FLOATING ACTION BUTTONS
   ───────────────────────────────────────────────────────── */
.float-buttons {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn-label {
  position: absolute; right: calc(100% + 10px);
  white-space: nowrap; font-size: 0.72rem; font-weight: 600;
  background: rgba(17,17,17,0.9); color: var(--white);
  padding: 0.3rem 0.7rem; border-radius: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-btn-label { opacity: 1; }
.float-whatsapp {
  background: #25D366;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.float-call { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.float-top {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.float-top.show { opacity: 1; visibility: visible; }
.float-btn svg { width: 22px; height: 22px; }
.float-whatsapp svg { fill: white; }
.float-call svg { stroke: var(--black); fill: none; stroke-width: 2.2; }
.float-top svg { stroke: var(--white); fill: none; stroke-width: 2.2; }

/* ─────────────────────────────────────────────────────────
   ANIMATIONS (keyframes)
   ───────────────────────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .hero-tag    { animation: fade-in-up 0.7s 0.2s both; }
.hero-content .hero-headline { animation: fade-in-up 0.7s 0.4s both; }
.hero-content .hero-sub    { animation: fade-in-up 0.7s 0.6s both; }
.hero-content .hero-btns   { animation: fade-in-up 0.7s 0.8s both; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; max-width: 100%; }
}
@media (max-width: 540px) {
  .gallery-grid { columns: 1; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .float-buttons { bottom: 1.2rem; right: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
}
