/* ===================================================
   SIGNATURE GRAPHIQUE — Style sombre & sportif
   =================================================== */

:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --bg-card: #131313;
  --border: #242424;
  --text: #eceef1;
  --text-dim: #9a9ba3;
  /* Accent principal : or/doré, sobre et premium */
  --accent: #e3b23c;
  --accent-dark: #b98a1f;
  --accent-glow: rgba(227, 178, 60, 0.30);
  /* Touches discrètes inspirées du drapeau colombien */
  --accent-blue: #1f4fa8;
  --accent-blue-glow: rgba(31, 79, 168, 0.30);
  --accent-red: #c81e2c;
  --accent-red-glow: rgba(200, 30, 44, 0.30);
  --chrome: #c9ced6;
  --radius: 10px;
  --font-display: 'Teko', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
}

.text-accent { color: var(--accent); }

.eyebrow {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-dim);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 100px 0; position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--accent-glow); background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.full-width { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

/* Discret clin d'œil au drapeau colombien */
.flag-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  display: flex;
  z-index: 2;
}
.flag-stripe span { flex: 1; }
.flag-stripe span:nth-child(1) { background: var(--accent); }
.flag-stripe span:nth-child(2) { background: var(--accent-blue); }
.flag-stripe span:nth-child(3) { background: var(--accent-red); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 64px;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.nav-cta { display: none; }

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--chrome);
  white-space: nowrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  display: flex;
  color: var(--text-dim);
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 30, 60, 0.18), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(255, 30, 60, 0.12), transparent 40%),
    linear-gradient(180deg, #000000 0%, #0d0d0d 60%, #000000 100%);
  z-index: -4;
}

/* Vidéo de fond : couvre tout le hero, derrière l'overlay sombre.
   Tant qu'aucune vidéo n'est fournie (assets/video/hero-background.mp4
   absent), l'élément reste transparent et le dégradé .hero-bg fait office
   de fallback — aucun changement visuel nécessaire une fois la vidéo ajoutée. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.94) 100%);
}

.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0px,
    transparent 90px,
    rgba(255,255,255,0.025) 90px,
    rgba(255,255,255,0.025) 92px
  );
}

.hero-content { padding-top: 40px; padding-bottom: 40px; width: 100%; }

.hero-text { max-width: 640px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* ===== STATS BAR (façon Zenith) ===== */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.stat:nth-child(1) .stat-num { color: var(--accent); }
.stat:nth-child(2) .stat-num { color: var(--accent-blue); }
.stat:nth-child(3) .stat-num { color: var(--accent-red); }

.stat-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== SERVICES ===== */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 18px 38px rgba(0,0,0,0.45);
  z-index: 1;
}

.service-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #16161a, #16161a 10px, #1c1c21 10px, #1c1c21 20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: transform 0.35s ease;
}

.service-card:hover .service-photo {
  transform: scale(1.06);
}

.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
}
.service-photo--gold::after { background: var(--accent); }
.service-photo--blue::after { background: var(--accent-blue); }
.service-photo--red::after { background: var(--accent-red); }

.service-body { padding: 26px 28px 30px; }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: none;
}

.service-card p { color: var(--text-dim); font-size: 0.98rem; }

.service-link-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-link-hint span { transition: transform 0.25s ease; display: inline-block; }
.service-card:hover .service-link-hint span { transform: translateX(4px); }

/* ===== PAGE GALERIE PAR CATÉGORIE ===== */
.page-hero {
  padding: 150px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== BLOC VOITURE + CARROUSEL (cartes empilées façon "Vision Pro") ===== */
.car-block {
  margin: 60px 0 90px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.car-block:last-of-type { border-bottom: none; }

.car-title {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  margin-bottom: 10px;
  text-transform: none;
}

.car-desc {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
}

.car-carousel {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 560px);
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.carousel-card[data-offset="0"] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 5;
  cursor: default;
}
.carousel-card[data-offset="-1"] {
  transform: translate(-108%, -50%) scale(0.82);
  opacity: 0.55;
  filter: blur(1px);
  z-index: 4;
}
.carousel-card[data-offset="1"] {
  transform: translate(8%, -50%) scale(0.82);
  opacity: 0.55;
  filter: blur(1px);
  z-index: 4;
}
.carousel-card[data-offset="-2"] {
  transform: translate(-160%, -50%) scale(0.68);
  opacity: 0.22;
  filter: blur(1.5px);
  z-index: 3;
}
.carousel-card[data-offset="2"] {
  transform: translate(60%, -50%) scale(0.68);
  opacity: 0.22;
  filter: blur(1.5px);
  z-index: 3;
}
.carousel-card[data-offset="hidden"] {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.carousel-card-photo {
  width: 100%;
  height: 100%;
  display: block;
}
.carousel-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card-photo.placeholder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  background: repeating-linear-gradient(45deg, #16161a, #16161a 10px, #1c1c21 10px, #1c1c21 20px);
}
.carousel-card-photo.placeholder-photo svg { width: 46px; height: auto; opacity: 0.6; }
.carousel-card-photo.placeholder-photo span {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 6;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-arrow:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.carousel-prev { left: 6%; }
.carousel-next { right: 6%; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.25); }

@media (max-width: 700px) {
  .car-carousel { height: 340px; }
  .carousel-card { width: 78vw; height: 300px; }
  .carousel-prev { left: 2%; }
  .carousel-next { right: 2%; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* ===== LIGHTBOX (photo agrandie en plein écran) ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-arrow:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .lightbox-img { max-width: 96vw; max-height: 80vh; }
  .lightbox-arrow { width: 42px; height: 42px; font-size: 1.25rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-counter { bottom: 14px; font-size: 0.8rem; }
}

/* ===== ATELIER ===== */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.atelier-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #16161a, #16161a 10px, #1c1c21 10px, #1c1c21 20px);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.atelier-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.atelier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text-dim);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== PRÉSENTATION (à propos du client) — mise en page centrée façon "About Us" ===== */
.about-owner { background: var(--bg-alt); text-align: center; }

.about-columns {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 860px;
  margin: 40px auto 50px;
  text-align: left;
}

.about-columns p {
  flex: 1;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  border: 1.5px dashed var(--border);
  background: repeating-linear-gradient(45deg, #16161a, #16161a 10px, #1c1c21 10px, #1c1c21 20px);
}

.about-placeholder-icon {
  width: 40px;
  height: auto;
  opacity: 0.6;
}

.about-photo--placeholder span {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@media (max-width: 700px) {
  .about-columns { flex-direction: column; gap: 24px; }
  .about-divider { display: none; }
  .about-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .about-photos { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p:not(.stars) { color: var(--text); margin-bottom: 16px; font-size: 1rem; }
.testimonial-author { color: var(--text-dim); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.contact-list li { color: var(--text-dim); }
.contact-list a { color: var(--text); border-bottom: 1px solid transparent; }
.contact-list a:hover { color: var(--accent); border-color: var(--accent); }

.socials { display: flex; gap: 18px; margin-top: 30px; }
.socials a {
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.socials a:hover { color: var(--accent); border-color: var(--accent); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}

.form-row input,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note { font-size: 0.9rem; color: var(--accent); min-height: 1.2em; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-tagline { color: var(--text-dim); max-width: 420px; }

.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--accent); }

.footer-copy { color: var(--text-dim); font-size: 0.82rem; margin-top: 10px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--accent-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .atelier-grid, .contact-grid { grid-template-columns: 1fr; }
  .atelier-visual { order: 2; }

  .hero-text { max-width: 100%; }
  .stats-row { gap: 40px; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .phone-link { display: none; }
  .header-actions .btn-accent { display: none; }
  .burger { display: flex; }
  .header-actions { gap: 12px; }
  .logo-img { height: 38px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 30px;
    gap: 18px;
  }

  .main-nav.open .nav-cta {
    display: inline-flex;
    margin-top: 8px;
    align-self: flex-start;
  }

  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .stats-row { gap: 26px; }
}
