/* =========================================================
   BEULAH HAIR AND MAKE UP — Main Stylesheet
   Palette: Black · Deep Dark · Gold · Cream
   ========================================================= */

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #080808;
  --dark:        #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --gold:        #c8a96e;
  --gold-light:  #e2c98a;
  --gold-dim:    #8a6f3e;
  --cream:       #f5efe6;
  --white:       #ffffff;
  --gray:        #777777;
  --gray-light:  #aaaaaa;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', Arial, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s ease;
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(200, 169, 110, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Utility ─────────────────────────────────────────────── */
.gold { color: var(--gold); }
.center { text-align: center; }
.italic { font-style: italic; }

/* ── Typography shared ────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1fba5a;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(200, 169, 110, 0.5);
}
.btn-call:hover {
  background: rgba(200, 169, 110, 0.1);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: none; /* shown via JS if image loads */
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 65%),
    linear-gradient(160deg, #0f0d0a 0%, #080808 50%, #0c0a0f 100%);
}

/* Decorative grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(200,169,110,0.015) 2px,
      rgba(200,169,110,0.015) 4px
    );
  pointer-events: none;
}

/* Decorative circles */
.hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-overlay::before,
.hero-overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.08);
}
.hero-overlay::before {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
}
.hero-overlay::after {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  border-color: rgba(200,169,110,0.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 780px;
  animation: heroFadeUp 1s ease both;
}

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

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.35s ease forwards;
}

.title-line { display: block; }
.title-line.italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.5s ease forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.65s ease forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: heroFadeUp 0.8s 1.2s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,110,0.15);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* About visual cards */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}
.about-card {
  position: absolute;
  width: 160px;
  padding: 1.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dim);
}
.about-card svg { width: 36px; height: 36px; stroke: var(--gold); }

.ac-1 { top: 0; left: 0; }
.ac-2 { top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--dark-3); z-index: 2; width: 170px; }
.ac-2:hover { transform: translate(-50%, -54%); }
.ac-3 { bottom: 0; right: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200,169,110,0.05);
  line-height: 1;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: var(--shadow-gold);
}
.service-card.featured {
  background: linear-gradient(135deg, #1a1508 0%, var(--dark-3) 100%);
  border-color: rgba(200,169,110,0.25);
}

.service-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(200,169,110,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(200,169,110,0.15);
}
.service-icon {
  width: 26px; height: 26px;
  stroke: var(--gold);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

.service-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-align: center;
  align-self: flex-start;
}
.service-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--dark-2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
}

.whatsapp-card:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 8px 32px rgba(37,211,102,0.15);
}
.call-card:hover {
  border-color: rgba(200,169,110,0.4);
  box-shadow: var(--shadow-gold);
}

.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-card .contact-card-icon {
  background: rgba(37,211,102,0.12);
}
.whatsapp-card .contact-card-icon svg {
  width: 26px; height: 26px;
  fill: var(--wa-green);
}
.call-card .contact-card-icon {
  background: rgba(200,169,110,0.1);
}
.call-card .contact-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

.contact-card-text { flex: 1; }
.contact-card-text h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.contact-card-text p {
  font-size: 0.8rem;
  color: var(--gray);
}
.contact-number {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.3rem;
}

.contact-card-arrow {
  font-size: 1.2rem;
  color: var(--gray);
  transition: transform var(--transition), color var(--transition);
}
.contact-card:hover .contact-card-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1.5px solid rgba(200,169,110,0.25);
  background: transparent;
  color: var(--gray-light);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--white);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Individual item */
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  z-index: 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Placeholder state (when image is missing) */
.gallery-item.placeholder img { display: none; }
.gallery-placeholder-inner {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  color: var(--gray);
}
.gallery-item.placeholder .gallery-placeholder-inner { display: flex; }
.gallery-placeholder-inner svg {
  width: 40px; height: 40px;
  stroke: var(--gold-dim);
  opacity: 0.6;
}
.gallery-placeholder-inner span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
}
.gallery-placeholder-inner small {
  font-size: 0.7rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.placeholder .gallery-overlay { display: none; }
.gallery-caption {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.gallery-zoom {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,169,110,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

/* Hidden items (filtered out) */
.gallery-item.hidden {
  display: none;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray-light);
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(200,169,110,0.25);
  border-color: var(--gold);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* =========================================================
   OPENING HOURS BLOCK
   ========================================================= */
.hours-block {
  max-width: 560px;
  margin: 0 auto 3rem;
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem 1.6rem;
  text-align: center;
}

.hours-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(200,169,110,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}
.hours-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.hours-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.hours-day {
  color: var(--gray-light);
  min-width: 90px;
  text-align: left;
  font-weight: 500;
}
.hours-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(200,169,110,0.2);
  margin: 0 0.4rem;
  position: relative;
  top: -2px;
}
.hours-time {
  color: var(--white);
  font-weight: 500;
  text-align: right;
  min-width: 110px;
}
.hours-closed {
  color: var(--gray) !important;
  font-style: italic;
}
.hours-row.closed .hours-day {
  color: var(--gray);
}

.hours-note {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  font-style: italic;
}

/* =========================================================
   FOOTER HOURS COLUMN
   ========================================================= */
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray-light);
}
.footer-closed {
  color: var(--gray) !important;
  font-style: italic;
}

/* =========================================================
   ADDRESS & MAP BLOCK
   ========================================================= */
.map-block {
  max-width: 760px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.18);
  background: var(--dark-2);
}

/* Address bar */
.map-address-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.map-address-icon {
  width: 42px; height: 42px;
  background: rgba(200,169,110,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-address-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
}

.map-address-text {
  flex: 1;
  min-width: 0;
}
.map-address-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.map-address-line {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.map-directions-btn svg {
  width: 14px; height: 14px;
  stroke: var(--black);
}
.map-directions-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Map embed */
.map-embed-wrap {
  position: relative;
  height: 300px;
  width: 100%;
  background: var(--dark-3);
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
  /* Dark-mode-style map to match the site palette */
}
/* Transparent click overlay so tapping opens Google Maps on mobile */
.map-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Desktop: let the iframe be interactive */
}
@media (hover: hover) {
  /* On devices with a real mouse, remove the overlay so the iframe is interactive */
  .map-overlay-link { display: none; }
}

/* Footer address */
.footer-address {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-address:hover { color: var(--gold); }

/* =========================================================
   SOCIAL LINKS (Contact Section)
   ========================================================= */
.social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.social-btn.instagram {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.35);
}
.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #e1306c;
  box-shadow: 0 6px 24px rgba(225, 48, 108, 0.2);
}

.social-btn.facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
}
.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.2);
}

/* =========================================================
   FOOTER SOCIAL ICONS
   ========================================================= */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-icon svg { width: 17px; height: 17px; }
.footer-social-icon:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dim);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark-2);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(200,169,110,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
}
.footer-copy { font-size: 0.85rem; color: var(--gray); }

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a, .footer-contact a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-domain {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-whatsapp svg {
  width: 28px; height: 28px;
  fill: #fff;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.fab-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--wa-green);
  animation: fabPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* =========================================================
   ANIMATIONS ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   MOBILE MENU OVERLAY
   ========================================================= */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* =========================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-hours  { grid-column: 1 / -1; }
  .footer-hours-row { justify-content: flex-start; gap: 2rem; }
}

/* =========================================================
   RESPONSIVE — Narrow Tablet (≤ 900px)
   ========================================================= */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { display: none; }

  .about,
  .services,
  .contact      { padding: 4.5rem 0; }
}

/* =========================================================
   RESPONSIVE — Mobile Menu + Layout (≤ 700px)
   ========================================================= */
@media (max-width: 700px) {
  /* ── Nav ── */
  .nav-overlay { display: block; pointer-events: none; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.2rem;
    gap: 1.8rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(200, 169, 110, 0.12);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-toggle     { display: flex; z-index: 1001; position: relative; }
  .nav-link       { font-size: 1.15rem; }
  .nav-cta        { padding: 0.75rem 1.8rem; font-size: 0.95rem; }

  /* ── Hero ── */
  .hero           { min-height: 100svh; }
  .hero-subtitle  { max-width: 100%; padding: 0 0.5rem; }
  .hero-buttons   { flex-direction: column; align-items: center; }
  .btn            { width: 100%; max-width: 320px; justify-content: center; min-height: 52px; }
  .hero-scroll-hint { display: none; }

  /* ── About ── */
  .about-stats    { gap: 1.2rem; flex-wrap: wrap; }
  .stat-number    { font-size: 1.8rem; }

  /* ── Services ── */
  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 1.8rem 1.4rem 1.5rem; }

  /* ── Gallery ── */
  .gallery        { padding: 4.5rem 0; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .lightbox-prev  { left: 0.4rem; }
  .lightbox-next  { right: 0.4rem; }

  /* ── Map ── */
  .map-address-bar  { gap: 0.75rem; padding: 1rem 1.2rem; }
  .map-directions-btn { width: 100%; justify-content: center; }
  .map-embed-wrap   { height: 240px; }

  /* ── Hours ── */
  .hours-block    { padding: 1.5rem 1.4rem 1.4rem; }
  .hours-day      { min-width: 80px; }
  .hours-time     { min-width: 95px; }

  /* ── Contact ── */
  .contact-cards  { grid-template-columns: 1fr; }
  .contact-card   { padding: 1.5rem 1.4rem; }

  /* ── Footer ── */
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-hours   { grid-column: auto; }
  .footer-hours-row { gap: 2rem; }
}

/* =========================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  .container      { width: 94%; }

  .section-title  { font-size: 1.75rem; }
  .section-sub    { font-size: 0.9rem; }
  .hero-title     { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-eyebrow   { font-size: 0.65rem; }

  .service-card   { padding: 1.6rem 1.2rem 1.4rem; }
  .service-title  { font-size: 1.1rem; }

  .contact-card-icon { width: 44px; height: 44px; border-radius: 12px; }
  .contact-card-icon svg { width: 22px; height: 22px; }
  .contact-card-text h3 { font-size: 1rem; }
  .contact-number { font-size: 0.85rem; }

  .hours-row      { font-size: 0.83rem; }
  .hours-day      { min-width: 75px; }
  .hours-time     { min-width: 88px; }

  .fab-whatsapp   { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }

  .map-embed-wrap { height: 200px; }
  .map-address-line { font-size: 0.82rem; }

  .footer-logo-text { font-size: 1.7rem; }
  .about, .services, .gallery, .contact { padding: 3.5rem 0; }

  /* ── Gallery small ── */
  .gallery-grid   { gap: 0.5rem; }
  .gallery-item   { aspect-ratio: 1 / 1; }
  .lightbox-prev,
  .lightbox-next  { width: 38px; height: 38px; font-size: 1rem; }
}

/* =========================================================
   RESPONSIVE — Extra Small (≤ 360px)
   ========================================================= */
@media (max-width: 360px) {
  .section-title  { font-size: 1.55rem; }
  .hero-title     { font-size: 2.2rem; }
  .btn            { font-size: 0.85rem; padding: 0.8rem 1.4rem; }
  .service-list li { font-size: 0.8rem; }
  .hours-day,
  .hours-time     { font-size: 0.78rem; }
  .hours-day      { min-width: 68px; }
  .hours-time     { min-width: 82px; }
}

/* =========================================================
   PRICE LIST MODAL
   ========================================================= */

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.price-modal.open {
  opacity: 1;
  visibility: visible;
}

.price-modal-inner {
  background: var(--dark);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  width: 100%;
  max-width: 1020px;
  padding: 2.75rem 3rem;
  position: relative;
  margin: auto;
}

/* Header */
.price-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.price-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 700;
  margin: 0.3rem 0 0;
  line-height: 1.1;
}

.price-modal-close {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.4rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.price-modal-close:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--cream);
}

.price-modal-close svg {
  width: 18px;
  height: 18px;
}

/* Disclaimer */
.price-note {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
}

/* Two-column grid */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem;
}

.price-col {
  display: flex;
  flex-direction: column;
}

/* Category block */
.price-category {
  margin-bottom: 2.25rem;
}

.price-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
}

/* Sub-headings (Highlights / Lowlights / etc.) */
.price-sub-heading {
  font-size: 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 1.2rem 0 0.4rem;
}

/* Tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  font-family: 'Montserrat', sans-serif;
}

.price-table thead th {
  text-align: right;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem 0.4rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.price-table thead th:first-child {
  text-align: left;
}

.price-table td {
  padding: 0.52rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.price-table td:first-child {
  color: var(--gray-light);
  width: 55%;
}

.price-table td:not(:first-child) {
  color: var(--cream);
  text-align: right;
  white-space: nowrap;
}

.price-table .price-center {
  text-align: center;
  color: var(--cream);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table small {
  font-size: 0.69rem;
  color: var(--gray);
  display: block;
  margin-top: 0.1rem;
}

/* Solo table (no Short/Long header — just item + price) */
.price-table-solo td:first-child {
  width: 65%;
}

/* Footer note + enquire button */
.price-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 169, 110, 0.18);
}

.price-footer-note p {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

.price-enquire-btn {
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  white-space: nowrap;
}

/* ── Price modal responsive ── */
@media (max-width: 900px) {
  .price-modal-inner {
    padding: 2.25rem 2rem;
  }
  .price-grid {
    gap: 0 2rem;
  }
}

@media (max-width: 700px) {
  .price-modal {
    padding: 1rem 0.5rem;
    align-items: flex-start;
  }
  .price-modal-inner {
    padding: 1.75rem 1.25rem;
    border-radius: 10px;
  }
  .price-modal-title {
    font-size: 1.75rem;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .price-footer-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-table td:first-child { width: auto; }
}
