@import url("./variables.css");

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

p { color: var(--muted); margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: 80px 0; }

/* Section heading style */
.section-heading {
  text-align: center;
  margin-bottom: 52px;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-heading .gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(181,144,59,0.35);
}
.btn-primary:hover {
  background: var(--gold-dim);
  box-shadow: 0 6px 24px rgba(181,144,59,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.18);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h-desktop);
  background: rgba(246,252,249,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

section[id] {
  scroll-margin-top: 50px;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Fallback text logo if image missing */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.nav-desktop a:hover {
  background: var(--cloud);
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0; right: 0;
  z-index: 99;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu .menu-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px var(--pad) 20px;
}
.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.2s;
}
.mobile-menu a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu .btn-primary { color: #fff; text-align: center; }

/* ─── PROMOTIONS POPUP ───────────────────────────────────────── */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 14, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.promo-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.promo-modal {
  background: var(--surface);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.promo-overlay.visible .promo-modal { transform: translateY(0); }

.promo-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all 0.2s;
  line-height: 1;
}
.promo-close:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.promo-slider {
  position: relative;
  overflow: hidden;
}

.promo-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide {
  flex: 0 0 100%;
}

/* Text-based promo slide (Grand Opening) */
.promo-slide-text {
  background: linear-gradient(135deg, #1A160E 0%, #2E2410 60%, #3A2D14 100%);
  padding: 48px 36px 40px;
  text-align: center;
  color: #fff;
}
.promo-slide-text .promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.promo-slide-text h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 8px;
}
.promo-slide-text .promo-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-style: italic;
}
.promo-discount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.promo-discount span { font-size: 1.5rem; vertical-align: super; }
.promo-slide-text .promo-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-slide-text .promo-desc strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.promo-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 10px;
}
.promo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.promo-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  z-index: 5;
}
.promo-nav:hover { background: var(--gold); color: #fff; }
.promo-nav.prev { left: 10px; }
.promo-nav.next { right: 10px; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h-desktop));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A160E 0%, #2A200F 50%, #1E1A10 100%);
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

/* Subtle texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,16,8,0.85) 45%, rgba(20,16,8,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Info card on hero right */
.hero-info-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.info-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
.info-row strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.info-row span, .info-row p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.5;
}
.info-row a { color: rgba(255,255,255,0.78); }
.info-row a:hover { color: var(--gold-light); }

.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

/* ─── PROMOTIONS BANNER ──────────────────────────────────────── */
.promos-section {
  background: var(--cloud);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.promos-section.hidden { display: none; }

.promo-banner-wrap {
  position: relative;
}

.promo-banner-track-outer {
  overflow: hidden;
}

.promo-banner-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner-slide {
  flex: 0 0 100%;
  position: relative;
  background: #1A160E;
}

/* Text grand opening slide in banner */
.promo-banner-text {
  background: linear-gradient(135deg, #1A160E, #2E2410);
  padding: 52px var(--pad);
  text-align: center;
  color: #fff;
}
.promo-banner-text .promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.promo-banner-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 8px;
}
.promo-banner-text .promo-discount {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.promo-banner-text .promo-discount span { font-size: 0.45em; vertical-align: super; }
.promo-banner-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  max-width: 600px;
  margin: 0 auto 20px;
}
.promo-banner-text p strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.promo-banner-slide img {
  display: block;
  max-width: 1200px;
  width: 100%;
  max-height: 900px;
  object-fit: contain;
  margin: 0 auto;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 5;
  transition: all 0.2s;
}
.banner-nav:hover { background: var(--gold); border-color: var(--gold); }
.banner-nav.prev { left: 16px; }
.banner-nav.next { right: 16px; }

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  background: #1A160E;
}
.banner-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.banner-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* CTA buttons below promo slider */
.promo-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px var(--pad) 20px;
  background: #1A160E;
  flex-wrap: wrap;
}

.promo-cta-row .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.promo-cta-row .btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-section { background: var(--white); }

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

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cloud), var(--sage));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gold accent square behind image */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 60%; height: 60%;
  background: var(--border-gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text);
}

.about-text p { font-size: 0.95rem; line-height: 1.8; }

.about-bio {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--neige);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-bio strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}
.about-bio p { font-size: 0.88rem; margin: 0; }

/* ─── MISSION / WHY US ───────────────────────────────────────── */
.mission-section {
  background: linear-gradient(135deg, #1A160E 0%, #2A200F 100%);
  padding: 80px 0;
}

.mission-section .section-heading h2,
.mission-section .section-heading p { color: #fff; }
.mission-section .section-heading p { color: rgba(255,255,255,0.65); }
.mission-section .gold-line { background: var(--gold-light); }

.mission-quote {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.6;
  padding: 0 20px;
}
.mission-quote::before { content: '\201C'; color: var(--gold-light); font-size: 3rem; line-height: 0; vertical-align: -0.6em; margin-right: 4px; }
.mission-quote::after  { content: '\201D'; color: var(--gold-light); font-size: 3rem; line-height: 0; vertical-align: -0.6em; margin-left: 4px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;}

.why-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(181,144,59,0.55);
  transform: translateY(-4px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(181,144,59,0.18);
  border: 1px solid rgba(181,144,59,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services-section { background: var(--bg); }

.services-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cloud), var(--sage));
  display: none;
}
.service-card-img.has-img { display: block; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.3;
}

.service-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.price-original {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
}

.price-current {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
}

.price-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 50px;
  margin-top: 3px;
}

.service-duration {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.service-duration::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-dim);
  background: rgba(181,144,59,0.08);
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 14px;
  align-self: flex-start;
}

/* Hidden service cards */
.service-card[data-hidden="true"] { display: none; }

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cloud);
  cursor: pointer;
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,16,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus .gallery-item-overlay { opacity: 1; }

.gallery-overlay-text {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50px;
}

.gallery-status {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 24px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,8,5,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--cloud); }

.testimonials-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.testimonial-treatment {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products-section { background: var(--neige); }

.products-info {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.products-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}
.products-info p { font-size: 0.92rem; }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.brands-grid img {
  height: 200px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brands-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-methods { display: grid; gap: 14px; }

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  font-size: 0.92rem;
}
.contact-btn:hover {
  border-color: var(--gold);
  background: rgba(181,144,59,0.04);
  transform: translateX(4px);
}
.contact-btn-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
}
.contact-btn-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-btn-value {
  font-weight: 500;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-map { border-radius: var(--radius); overflow: hidden; }
.contact-map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  display: block;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #1A160E;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand .logo-text { color: var(--gold-light); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── SCROLL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { height: var(--header-h-mobile); }
  .nav-desktop, .cta-desktop { display: none; }
  .menu-btn { display: flex; }

  .hero { min-height: auto; padding: 48px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-left h1 { font-size: 2rem; }
  .hero-info-card { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-wrap::before { display: none; }

  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .gallery-grid { columns: 1; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}