/* ============================================
   HONEY LASH — Global Styles
   Palette: noir profond + or chaud + crème ivoire
   ============================================ */

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

:root {
  --black:       #171410;
  --black-soft:  #1e1b16;
  --black-card:  #252017;
  --gold:        #c9a84c;
  --gold-light:  #e8c96b;
  --gold-pale:   #f5e6b8;
  --cream:       #fdf6e3;
  --white:       #ffffff;
  --text-main:   #e8e0d0;
  --text-muted:  #8a7d68;
  --border:      rgba(201, 168, 76, 0.2);
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--black);
  color: var(--text-main);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ════════════════ TYPOGRAPHY ════════════════ */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; }
h3 { font-size: 1.4rem; }

.script { font-family: 'Great Vibes', cursive; font-size: 1.4em; color: var(--gold); }
.label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 400; }

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

/* ════════════════ LAYOUT ════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

/* ════════════════ GOLD DIVIDER ════════════════ */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 3rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }

/* ════════════════ NAVBAR ════════════════ */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem; color: var(--gold);
  line-height: 1;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: var(--transition); }

/* ════════════════ HERO ════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--black);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '✦'; color: var(--gold); font-size: 0.6rem;
}
.hero-logo {
  width: clamp(220px, 28vw, 320px); margin: 0 auto 2rem;
  animation: fadeUp 1s ease 0.3s both;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.45));
}
.hero-title {
  animation: fadeUp 1s ease 0.4s both;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}
.hero-sub {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ════════════════ BUTTONS ════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
}

/* ════════════════ SERVICES ════════════════ */
#services { background: var(--black-soft); }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 0.9rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black-card);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { background: #1a1a1a; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem; margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-pale);
}
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.service-price {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold);
  font-weight: 300;
}
.service-duration { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

/* ════════════════ ABOUT ════════════════ */
#about .about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  border: 1px solid var(--border);
  padding: 1rem;
  position: relative;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 60%; height: 60%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60%; height: 60%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.about-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--black-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted);
}
.about-placeholder span { font-size: 3rem; }
.about-content .label { margin-bottom: 1.2rem; display: block; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.2rem; line-height: 1.9; }
.about-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: var(--gold); line-height: 1;
  font-weight: 300;
}
.stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ════════════════ GALLERY — Avant/Après ════════════════ */
#gallery { background: var(--black-soft); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Slider avant/après */
.ba-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  border: 1px solid var(--border);
  user-select: none;
}
.ba-after,
.ba-before {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  width: 50%; /* controlled by JS */
}
.ba-before-wrap img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  min-width: 200%; /* trick: toujours pleine largeur */
  max-width: none;
  object-fit: cover;
}
/* Placeholders colorés en attendant les vraies photos */
.ba-placeholder-after {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a2218 0%, #1e1b16 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.ba-placeholder-before {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e0c0a 0%, #171410 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.ba-placeholder-after::before { content: '✨'; font-size: 1.8rem; }
.ba-placeholder-before::before { content: '👁'; font-size: 1.8rem; }

/* Diviseur vertical */
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 11;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  font-size: 0.65rem; color: var(--black); font-weight: 700;
}
/* Labels Avant / Après */
.ba-label {
  position: absolute; bottom: 0.7rem;
  z-index: 12;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(10,8,6,0.7); padding: 0.25rem 0.6rem;
  pointer-events: none;
}
.ba-label-before { left: 0.8rem; color: var(--text-muted); }
.ba-label-after  { right: 0.8rem; color: var(--gold); }

@media (max-width: 580px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ════════════════ REVIEWS ════════════════ */
#reviews { overflow: hidden; }
.reviews-track-wrapper {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex; gap: 1.5rem;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0; width: 340px;
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 2rem 2rem 1.8rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--gold);
  opacity: 0.12; line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--black); font-weight: 600;
  font-family: 'Josefin Sans', sans-serif;
  flex-shrink: 0;
}
.review-name { font-size: 0.82rem; font-weight: 400; color: var(--text-main); }
.review-date { font-size: 0.7rem; color: var(--text-muted); }
.reviews-google-badge {
  text-align: center; margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.reviews-google-badge::before, .reviews-google-badge::after {
  content: ''; flex: 1; max-width: 100px; height: 1px;
  background: var(--border);
}

/* ════════════════ BOOKING ════════════════ */
#booking {
  background: var(--black-soft);
  text-align: center;
}
.booking-intro { max-width: 600px; margin: 0 auto 3rem; }
.booking-intro p { color: var(--text-muted); font-size: 0.9rem; }
.calendly-wrapper {
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--black-card);
  overflow: hidden;
  min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
}
.calendly-placeholder {
  text-align: center; padding: 4rem 2rem; color: var(--text-muted);
}
.calendly-placeholder .icon { font-size: 3rem; margin-bottom: 1rem; }
.calendly-placeholder p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.calendly-placeholder code {
  font-size: 0.75rem; color: var(--gold);
  background: rgba(201,168,76,0.08); padding: 0.2rem 0.5rem;
}

/* ════════════════ CONTACT PAGE ════════════════ */
#contact-hero {
  min-height: 35vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 8rem 2rem 3rem;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.05), transparent);
  text-align: center;
}
#contact-section { background: var(--black-soft); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-info .label { display: block; margin-bottom: 1.2rem; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-item-icon {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--gold);
}
.contact-item-content .contact-item-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-item-content p, .contact-item-content a {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
  transition: color var(--transition);
}
.contact-item-content a:hover { color: var(--gold); }
.contact-social {
  display: flex; gap: 1rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.social-link {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* Form */
.contact-form-wrap {
  background: var(--black-card); border: 1px solid var(--border);
  padding: 3rem;
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; margin-bottom: 0.5rem;
}
.contact-form-wrap .sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.85rem 1rem;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.88rem; font-weight: 300;
  transition: border-color var(--transition), background var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--black-card); color: var(--text-main); }
.form-check { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 2rem; }
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--gold); flex-shrink: 0; cursor: pointer;
}
.form-check label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.form-check label a { color: var(--gold); }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
}
.form-success .icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }

/* ════════════════ MAP SECTION ════════════════ */
#map-section { padding: 0; }
.map-container {
  height: 380px; position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.map-container iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(100%) contrast(1.1) invert(1);
  opacity: 0.6;
}
.map-container::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(201,168,76,0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* ════════════════ FOOTER ════════════════ */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo-text {
  font-family: 'Great Vibes', cursive; font-size: 2.2rem; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-main); }
.footer-col p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ════════════════ ANIMATIONS ════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(24px); 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 NAV ════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(16px);
    align-items: center; justify-content: center;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1.2rem 2rem; font-size: 1rem; letter-spacing: 0.15em; }
  .nav-links a::after { display: none; }
  .nav-cta { border: none; background: none; padding: 1.2rem 2rem; }
  .nav-burger { display: flex; z-index: 1001; }
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-logo { z-index: 1001; }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 900px) {
  #about .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { gap: 1.5rem; }
}
@media (max-width: 580px) {
  section { padding: 4rem 0; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid .service-card { border-bottom: 1px solid var(--border); }
}
