/* ═══════════════════════════════════════════════════
   J-MONEY ENTREPRISE — CSS Principal
   Palette: Noir #0A0A0A | Or #C9A84C | Blanc #F5F0E8
   ═══════════════════════════════════════════════════ */

:root {
  --black:    #0A0A0A;
  --black-2:  #111111;
  --black-3:  #1A1A1A;
  --gold:     #C9A84C;
  --gold-lt:  #E2C472;
  --gold-dk:  #9A7A2E;
  --white:    #F5F0E8;
  --white-2:  #EDE8DE;
  --gray:     #8A8A8A;
  --gray-lt:  #C0B8A8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-caps:    'Barlow Condensed', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── PRELOADER ─── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 2rem; animation: pulse 1.5s ease infinite; }
.preloader-bar {
  width: 200px; height: 2px; background: rgba(201,168,76,0.2);
  margin: 0 auto; border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; background: var(--gold);
  animation: loadbar 1.8s var(--ease) forwards;
}
@keyframes loadbar { 0%{width:0} 100%{width:100%} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ─── HEADER ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2.5rem;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}
#header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
}
.logo-link { flex-shrink: 0; }
.logo { height: 52px; width: auto; filter: brightness(1.2); }
nav { margin-left: auto; }
nav ul { display: flex; gap: 2.5rem; }
nav ul li a {
  font-family: var(--font-caps);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
nav ul li a:hover { color: var(--gold); }
nav ul li a:hover::after { width: 100%; }
.btn-cta {
  font-family: var(--font-caps);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--gold); color: var(--black);
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(10,5,0,0.8) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 2rem;
}
.hero-badge {
  font-family: var(--font-caps);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600; line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line1 { display: block; animation: fadeUp 0.8s 0.5s both; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s 0.7s both;
}
.hero-sub {
  font-family: var(--font-caps);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.9s both;
}
.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 1.1s both;
}
.btn-primary {
  font-family: var(--font-caps);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  background: var(--gold); color: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
.btn-outline {
  font-family: var(--font-caps);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  animation: fadeUp 0.8s 1.5s both;
}
.hero-scroll-indicator span {
  font-family: var(--font-caps);
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gray); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.hero-slide-dots {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  z-index: 2; display: flex; flex-direction: column; gap: 8px;
}
.slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.3s; border: none;
}
.slide-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--black);
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 150px;
  text-align: center; padding: 1rem 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); margin-top: 0.5rem;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(201,168,76,0.25);
}

/* ─── SECTION COMMONS ─── */
.section-header { text-align: center; margin-bottom: 4rem; padding: 0 2rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--black-2);
  margin-bottom: 1rem;
}
.section-title.light-txt { color: var(--white); }
.section-line {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  margin: 0 auto;
}
.section-line.left { margin: 0; }

/* ─── SERVICES ─── */
.services {
  padding: 6rem 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.services-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px; overflow: hidden;
  max-width: 520px; margin: 0 auto 3.5rem;
}
.tab-btn {
  flex: 1; padding: 0.9rem 1.2rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-caps);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.tab-btn:last-child { border-right: none; }
.tab-btn svg { width: 16px; height: 16px; }
.tab-btn.active { background: var(--gold); color: var(--black); }
.tab-btn:not(.active):hover { background: rgba(201,168,76,0.08); color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.service-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.25));
}
.service-body { padding: 1.75rem; }
.service-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.75rem;
}
.service-body p { font-size: 0.92rem; line-height: 1.7; color: #444; }

/* ─── GALERIE ─── */
.galerie {
  padding: 6rem 2.5rem;
  background: var(--black-2);
}
.galerie .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1400px; margin: 0 auto 2.5rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden; border-radius: 3px; cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-more { text-align: center; }
.btn-outline-dark {
  font-family: var(--font-caps);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--gold); border-radius: 2px;
  background: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 90vh; }
.lb-img-wrap img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  color: var(--white); cursor: pointer; font-size: 2rem;
  transition: color 0.2s;
  line-height: 1;
}
.lb-close { top: 1.5rem; right: 2rem; font-size: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }

/* ─── À PROPOS ─── */
.about { padding: 6rem 2.5rem; background: var(--white); overflow: hidden; }
.about-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 3px;
}
.about-img-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 55%; aspect-ratio: 1;
  background-size: cover; background-position: center;
  border-radius: 3px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.about-badge-float {
  position: absolute; top: 2rem; left: -2rem;
  background: var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 12px 30px rgba(201,168,76,0.4);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--black); line-height: 1;
}
.badge-txt {
  font-family: var(--font-caps);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black-3); text-align: center;
}
.about-text { padding-top: 1rem; }
.about-text .section-tag { margin-bottom: 0.75rem; }
.about-text .section-title { margin-bottom: 0.75rem; }
.about-text .section-line { margin-bottom: 1.75rem; }
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem; line-height: 1.6;
  color: var(--black); margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 0.95rem; line-height: 1.8; color: #444;
  margin-bottom: 1rem;
}
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.value-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.value-item strong { display: block; font-size: 0.95rem; color: var(--black); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ─── LOCATIONS ─── */
.locations {
  padding: 5rem 2.5rem;
  background: var(--black);
}
.locations .section-title { color: var(--white); }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.location-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 2.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.location-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.location-flag { font-size: 3rem; margin-bottom: 1rem; }
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem;
}
.location-city {
  font-family: var(--font-caps); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.location-contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.location-contacts a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--gray-lt); font-size: 0.9rem;
  transition: color 0.2s;
}
.location-contacts a svg { width: 15px; height: 15px; }
.location-contacts a:hover { color: var(--gold); }

/* ─── CONTACT ─── */
.contact { padding: 6rem 2.5rem; background: var(--white-2); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 0.75rem; }
.contact-info .section-title { margin-bottom: 0.75rem; }
.contact-info .section-line { margin-bottom: 1.75rem; }
.contact-info > p {
  font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item > div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.25rem; font-family: var(--font-caps); }
.contact-item a, .contact-item span { font-size: 0.9rem; color: #333; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.social-link.placeholder { opacity: 0.5; cursor: default; }
.social-link.placeholder:hover { border-color: rgba(201,168,76,0.3); color: var(--gray); background: none; }

/* Form */
.contact-form {
  background: var(--white); border-radius: 4px; padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-family: var(--font-caps); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black-3); margin-bottom: 0.5rem;
}
.req { color: var(--gold); }
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--white-2); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px; color: var(--black);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: auto; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--gold);
}
.form-check label {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: #555; margin: 0;
}
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-caps); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.form-message { margin-top: 1rem; padding: 1rem; border-radius: 3px; font-size: 0.9rem; }
.form-message.success { background: rgba(34,197,94,0.1); color: #166534; border: 1px solid rgba(34,197,94,0.2); }
.form-message.error { background: rgba(239,68,68,0.1); color: #991b1b; border: 1px solid rgba(239,68,68,0.2); }

/* ─── FOOTER ─── */
.footer { background: var(--black); padding: 5rem 2.5rem 0; }
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.footer-slogan {
  font-family: var(--font-display);
  font-style: italic; font-size: 1rem; color: var(--gold); margin-top: 0.5rem;
}
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-caps); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-nav ul li { margin-bottom: 0.6rem; }
.footer-nav ul li a { font-size: 0.88rem; color: var(--gray); transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; color: var(--gray); margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gray); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 3px; cursor: pointer;
  font-size: 1.2rem; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { right: -1rem; bottom: -1.5rem; width: 45%; }
  .about-badge-float { left: -1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-divider { display: none; }
}
@media (max-width: 768px) {
  #header { padding: 1rem 1.5rem; }
  nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.97); flex-direction: column; align-items: center; justify-content: center; }
  nav.open { display: flex; }
  nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  nav ul li a { font-size: 1.2rem; }
  .btn-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .services { padding: 4rem 1.5rem; }
  .galerie { padding: 4rem 1.5rem; }
  .about { padding: 4rem 1.5rem; }
  .about-img-accent { display: none; }
  .about-badge-float { left: 1rem; }
  .contact { padding: 4rem 1.5rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .locations { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-tabs { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
