/* ============================================================
   HENNA ART BY KAJAL — Professional Stylesheet
   Aesthetic: Luxury Bridal · Warm Ivory · Deep Burgundy · Gold
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --ivory:    #FAF6EF;
  --cream:    #F2E8D9;
  --gold:     #C9942A;
  --gold-lt:  #E8B84B;
  --gold-dk:  #9A6F1E;
  --burgundy: #6B1A2C;
  --burgundy-dk: #4A1020;
  --brown:    #7C4A2A;
  --text-dk:  #2C1A0E;
  --text-md:  #5A3A24;
  --text-lt:  #8C6A50;
  --white:    #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(44,26,14,.08);
  --shadow-md: 0 8px 32px rgba(44,26,14,.14);
  --shadow-lg: 0 20px 60px rgba(44,26,14,.18);
  --radius:   12px;
  --nav-h:    80px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text-dk);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dk);
  line-height: 1.2;
}
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { font-size: clamp(.9rem, 1.5vw, 1rem); color: var(--text-md); }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-lt);
  max-width: 540px;
  margin: 0 auto 48px;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 40px;
}
.divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.divider i { color: var(--gold); font-size: .9rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,26,44,.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,42,.4);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,246,239,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,148,42,.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(44,26,14,.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--burgundy); line-height: 1; }
.logo-text .tagline { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* Nav Links */
.nav-menu ul { list-style: none; display: flex; align-items: center; gap: 8px; }
.nav-menu a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dk);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--burgundy); font-weight: 600; }
.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dk);
  border-radius: 2px;
  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 Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 3px solid var(--gold);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--cream); }
.mobile-nav ul li:last-child { border: none; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dk);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--burgundy); }
.mobile-nav-cta { margin-top: 20px; display: block; width: 100%; text-align: center; }

/* Page top offset */
.page-top { padding-top: var(--nav-h); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy-dk);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4A1020 0%, #6B1A2C 50%, #3A0A15 100%);
}
/* Decorative henna-style SVG pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,148,42,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,148,42,.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201,148,42,.05) 0%, transparent 70%);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .18;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 780px;
  animation: heroFadeUp .9s ease both;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  margin: 20px 0 36px;
  font-weight: 300;
  letter-spacing: .03em;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.3);
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about-section { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-lt);
}
.about-img-badge .badge-txt {
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}
.about-text {}
.about-text h2 { margin-bottom: 8px; }
.about-text p { margin-bottom: 16px; }
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.skill-tag {
  padding: 6px 16px;
  background: var(--cream);
  color: var(--text-md);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid rgba(201,148,42,.25);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img-wrap { position: relative; overflow: hidden; }
.service-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 { margin-bottom: 8px; color: var(--burgundy); }
.service-body p { font-size: .9rem; flex: 1; margin-bottom: 20px; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}
.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}
.price-tag small {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-lt);
}
.service-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(107,26,44,.06);
  border-radius: var(--radius);
  border-left: 4px solid var(--burgundy);
  font-size: .92rem;
  color: var(--text-md);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery-section { background: var(--ivory); }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 24px;
  border: 1.5px solid var(--cream);
  background: transparent;
  color: var(--text-md);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,26,44,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 4px;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-lt);
  opacity: .35;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-text {
  font-size: .95rem;
  color: var(--text-md);
  font-style: italic;
  margin-bottom: 18px;
  padding-top: 10px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--text-dk); }
.reviewer-info { font-size: .78rem; color: var(--text-lt); }
/* Submit Review CTA */
.review-cta-box {
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.review-cta-box h3 { color: var(--gold-lt); margin-bottom: 10px; }
.review-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info p { margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dk);
}
.contact-method:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.method-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.method-icon.wa { background: #E8F5E9; }
.method-icon.ig { background: #FCE4EC; }
.method-icon.ph { background: #E3F2FD; }
.method-text .method-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lt);
}
.method-text .method-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dk);
}
/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.booking-form h3 { margin-bottom: 6px; color: var(--burgundy); }
.booking-form .form-sub { font-size: .88rem; color: var(--text-lt); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-md);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  color: var(--text-dk);
  background: var(--ivory);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; margin-top: 8px; }
.form-note { font-size: .78rem; color: var(--text-lt); text-align: center; margin-top: 14px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--text-dk);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
}
.footer-brand .brand { color: var(--white); margin-bottom: 4px; }
.footer-brand .tagline { color: var(--gold); }
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-icon:hover { background: var(--gold); }
.social-icon img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: var(--gold-lt); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(201,148,42,.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}
.page-hero .page-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════
   FLOATING WhatsApp
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
