/* ═══════════════════════════════════════════════════
   MAKEOVERBY NICE BEAUTY SALON
   Color Palette:
   --deep:    #0f0a0e   (near-black base)
   --plum:    #1a0e17   (dark plum)
   --berry:   #3d1f35   (mid plum)
   --mauve:   #7c4f6b   (soft mauve accent)
   --gold:    #c9a87c   (warm gold)
   --light:   #f5ede4   (warm off-white)
   --text:    #e8d5c8   (warm light text)
   Typography:
   Headlines: Cormorant Garamond (serif, editorial)
   Body:      DM Sans (clean humanist sans)
═══════════════════════════════════════════════════ */

:root {
  --deep:    #0f0a0e;
  --plum:    #1a0e17;
  --berry:   #3d1f35;
  --mauve:   #7c4f6b;
  --gold:    #c9a87c;
  --gold-light: #dfc4a0;
  --light:   #f5ede4;
  --text:    #e8d5c8;
  --muted:   #a8887a;
  --white:   #ffffff;
  --radius:  10px;
  --radius-lg: 18px;
  --shadow: 0 8px 40px rgba(0,0,0,0.28);
  --transition: 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─────────────────── TYPOGRAPHY ─────────────────── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ─────────────────── LAYOUT ─────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 6rem 0; }
.alt-bg { background: var(--plum); }

/* ─────────────────── BUTTONS ─────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,124,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--light);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(245,237,228,0.25);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost-dark:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gold);
  transition: opacity var(--transition), gap var(--transition);
  gap: 0.4rem;
}
.btn-primary-sm:hover { opacity: 0.75; gap: 0.7rem; }

.btn-nav {
  background: var(--gold);
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─────────────────── FADE-IN ANIMATIONS ─────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────── NAVBAR ─────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  padding: 0 1.5rem;
}
.nav-wrap.scrolled {
  background: rgba(15,10,14,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201,168,124,0.15);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--light);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { color: var(--gold); font-style: italic; }
.logo-mark { color: var(--gold); font-size: 0.8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover { color: var(--light); }
.nav-link:hover::after { right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--plum);
  border-left: 1px solid rgba(201,168,124,0.15);
  z-index: 1100;
  padding: 5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: right var(--transition);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer ul { margin-bottom: 2rem; }
.drawer-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--light);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,168,124,0.1);
  transition: color var(--transition), padding-left var(--transition);
}
.drawer-link:hover { color: var(--gold); padding-left: 0.5rem; }
.drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem;
}
.btn-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 100px;
  margin-top: auto;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  backdrop-filter: blur(3px);
}
.drawer-overlay.show { display: block; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,10,14,0.88) 0%,
    rgba(26,14,23,0.72) 45%,
    rgba(61,31,53,0.55) 100%
  );
  z-index: 1;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 0 0;
}
@media (max-width: 700px) { .hero-content { margin: 0 auto; text-align: center; } }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }
@media (max-width: 700px) {
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
@media (max-width: 700px) { .hero-sub { margin: 0 auto 2.5rem; } }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) { .hero-ctas { justify-content: center; } }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 700px) { .hero-trust { justify-content: center; } }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ─────────────────── TRUST BAR ─────────────────── */
.trust-bar {
  background: var(--berry);
  padding: 2.8rem 1.5rem;
  border-top: 1px solid rgba(201,168,124,0.15);
  border-bottom: 1px solid rgba(201,168,124,0.15);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-item { padding: 0.5rem; }
.trust-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.trust-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────── ABOUT ─────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 840px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-width: 360px; margin: 0 auto; }
}

.about-img-frame {
  position: relative;
  border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
  overflow: visible;
}
.about-svg { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(201,168,124,0.12)); }

.about-badge {
  position: absolute;
  bottom: 8%;
  right: -5%;
  background: var(--berry);
  border: 1px solid rgba(201,168,124,0.3);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  backdrop-filter: blur(8px);
}
.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about-copy p {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.85;
  max-width: 52ch;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin: 1.8rem 0 2rem;
}
.pillar {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar-icon { color: var(--gold); font-size: 0.6rem; }

/* ─────────────────── SERVICES ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(61,31,53,0.45);
  border: 1px solid rgba(201,168,124,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,124,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,124,0.35);
  transform: translateY(-4px);
  background: rgba(61,31,53,0.7);
}
.service-card:hover::before { opacity: 1; }

.svc-icon-wrap { margin-bottom: 1.4rem; }

.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.7rem;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.svc-benefit {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.svc-cta {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition), opacity var(--transition);
}
.svc-cta:hover { gap: 0.6rem; }

.services-cta {
  text-align: center;
}
.services-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
}

/* ─────────────────── WHY ─────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 2rem 1.8rem;
  border-top: 1px solid rgba(201,168,124,0.2);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.why-card:hover::before { width: 100%; }

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,168,124,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─────────────────── GALLERY ─────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: span 1; }
}

.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gal-inner {
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform var(--transition);
  background: var(--berry);
}
.gal-item:hover .gal-inner { transform: scale(1.03); }
.gal-inner svg { width: 100%; height: 100%; display: block; }

.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(15,10,14,0.85) 0%, transparent 100%);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover .gal-label { opacity: 1; }

.gallery-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.gallery-note a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--light);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-content { max-width: 80vw; max-height: 80vh; }
.lb-content svg { max-width: 80vw; max-height: 80vh; border-radius: var(--radius); }

/* ─────────────────── REVIEWS ─────────────────── */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition);
}

.review-card {
  background: rgba(61,31,53,0.45);
  border: 1px solid rgba(201,168,124,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
}
@media (max-width: 900px) { .review-card { min-width: calc(50% - 0.75rem); } }
@media (max-width: 560px) { .review-card { min-width: 100%; } }

.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--berry);
  border: 1px solid rgba(201,168,124,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--light);
}
.reviewer-meta { font-size: 0.75rem; color: var(--muted); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry);
  border: 1px solid rgba(201,168,124,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.car-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61,31,53,0.6);
  border: 1px solid rgba(201,168,124,0.2);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-btn:hover {
  background: var(--berry);
  border-color: var(--gold);
}

.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ─────────────────── LOCATION ─────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 840px) {
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.loc-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.loc-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.loc-detail strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.loc-detail p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.loc-detail p a { color: var(--text); border-bottom: 1px solid rgba(201,168,124,0.3); transition: color var(--transition); }
.loc-detail p a:hover { color: var(--gold); }

.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,124,0.15);
  box-shadow: var(--shadow);
}

/* ─────────────────── CONTACT ─────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 840px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 40ch;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--transition), opacity var(--transition);
}
.contact-action-btn:hover { transform: translateX(4px); }
.call-btn {
  background: rgba(201,168,124,0.12);
  border: 1px solid rgba(201,168,124,0.25);
  color: var(--gold);
}
.wa-btn {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #4ddb7e;
}

/* Form */
.contact-form-wrap {
  background: rgba(26,14,23,0.6);
  border: 1px solid rgba(201,168,124,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(61,31,53,0.35);
  border: 1px solid rgba(201,168,124,0.15);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(168,136,122,0.5); }
.form-group select option { background: var(--berry); color: var(--light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,124,0.5);
  background: rgba(61,31,53,0.55);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ─────────────────── FOOTER ─────────────────── */
.footer {
  background: var(--plum);
  border-top: 1px solid rgba(201,168,124,0.1);
  padding: 5rem 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,168,124,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--light);
  margin-bottom: 1rem;
}
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; max-width: 30ch; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(61,31,53,0.5);
  border: 1px solid rgba(201,168,124,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--berry); border-color: rgba(201,168,124,0.4); }

.footer-nav h5,
.footer-services h5,
.footer-contact h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-nav ul li,
.footer-services ul li {
  margin-bottom: 0.6rem;
}
.footer-nav ul li a,
.footer-services ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-nav ul li a:hover,
.footer-services ul li a:hover { color: var(--light); padding-left: 0.3rem; }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.footer-contact a { color: var(--text); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ─────────────────── MOBILE BAR ─────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: rgba(15,10,14,0.96);
  border-top: 1px solid rgba(201,168,124,0.2);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0 calc(0.6rem + env(safe-area-inset-bottom));
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  color: var(--muted);
  padding: 0.4rem;
  transition: color var(--transition);
}
.mobile-bar-btn:hover, .mobile-bar-btn:active { color: var(--gold); }
.mobile-bar-btn.wa-mobile { color: #4ddb7e; }
.mobile-bar-btn.wa-mobile:hover { color: #6fef99; }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .section-pad { padding: 4rem 0; }
}

/* ─────────────────── FORM SUCCESS ─────────────────── */
.form-success {
  text-align: center;
  padding: 3rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}

/* ─────────────────── REDUCED MOTION ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
