/* ===========================
   LA BEAUTÉ DU GESTE – CSS
   =========================== */

:root {
  --rose:       #c9a4a4;
  --rose-dark:  #a07070;
  --rose-light: #f0e2e2;
  --gold:       #b89a72;
  --gold-light: #e8d9c4;
  --cream:      #faf7f4;
  --white:      #ffffff;
  --dark:       #2a1f1f;
  --mid:        #5c4848;
  --light-text: #8c7272;
  --border:     rgba(180,150,150,.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --radius:     12px;
  --shadow:     0 4px 30px rgba(42,31,31,.10);
  --shadow-lg:  0 12px 50px rgba(42,31,31,.16);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ========================
   NAVIGATION
   ======================== */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(250,247,244,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}

.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 400; letter-spacing: .04em;
  color: var(--dark);
}
.logo-sub {
  font-size: .65rem; font-weight: 300; letter-spacing: .12em;
  text-transform: uppercase; color: var(--light-text);
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 400; color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose-dark); }
.nav-cta {
  background: var(--dark); color: var(--cream) !important;
  padding: 10px 20px; border-radius: 40px;
  font-size: .78rem !important; letter-spacing: .1em;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--cream); border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mnav-link {
  padding: 14px 0;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--mid); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mnav-link:last-child { border-bottom: none; }
.mnav-link:hover { color: var(--rose-dark); }
.mnav-cta {
  margin-top: 12px; text-align: center;
  background: var(--dark); color: var(--cream) !important;
  padding: 14px; border-radius: 40px; border-bottom: none !important;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-block; padding: 14px 32px;
  border-radius: 40px; font-family: var(--font-sans);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--dark); color: var(--cream);
}
.btn-primary:hover {
  background: var(--rose-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,112,112,.35);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark); color: var(--cream);
}
.btn-full { width: 100%; text-align: center; }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42,31,31,.62) 0%,
    rgba(42,31,31,.35) 50%,
    rgba(42,31,31,.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  font-weight: 300;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: .01em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.6));
  margin: 0 auto;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ========================
   BANDEAU
   ======================== */
.bandeau {
  background: var(--dark);
  overflow: hidden; padding: 14px 0;
}
.bandeau-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.bandeau-track span {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 300; flex-shrink: 0;
  padding: 0 48px;
  border-right: 1px solid rgba(232,217,196,.15);
}
.bandeau-track span:last-child { border-right: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================
   SECTIONS GENERIQUES
   ======================== */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose-dark); font-weight: 400; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 20px;
}
.section-sub {
  font-size: .92rem; color: var(--light-text);
  line-height: 1.7; margin-bottom: 48px;
}
.center { text-align: center; }

/* ========================
   À PROPOS
   ======================== */
.apropos { background: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.apropos-visual { position: relative; }
.apropos-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Slideshow horizontal */
.apropos-slideshow { overflow: hidden; }

.slide-track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.slide-track .slide {
  flex: 0 0 100%; width: 100%; height: 100%;
}
.slide-track .slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white); font-size: 1.8rem; line-height: 1;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .28s ease;
  padding-bottom: 2px;
}
.slide-btn:hover { background: rgba(255,255,255,.45); }
.slide-prev-btn { left: 12px; }
.slide-next-btn { right: 12px; }

.slide-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .3s ease;
  border: 1.5px solid rgba(255,255,255,.7);
}
.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.apropos-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--dark); color: var(--cream);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 4px;
  box-shadow: var(--shadow);
}
.badge-num {
  font-family: var(--font-serif); font-size: 2.2rem; line-height: 1;
  font-weight: 300; color: var(--gold-light);
}
.badge-num small { font-size: 1rem; }
.badge-label { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.3; color: rgba(255,255,255,.75); }

.apropos-desc {
  font-size: .95rem; line-height: 1.8; color: var(--mid);
  margin-bottom: 20px;
}

.apropos-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 36px;
}
.pill {
  padding: 7px 16px; border-radius: 40px;
  background: var(--rose-light); color: var(--rose-dark);
  font-size: .75rem; letter-spacing: .06em;
}

/* ========================
   GALERIE
   ======================== */
.galerie { background: var(--cream); }

.gallery-carousel-wrap {
  position: relative;
}

.gallery-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 60px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: auto;
}
.gallery-row::-webkit-scrollbar { display: none; }

/* Colonnes empilées verticalement */
.gallery-col {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Quinconce : colonnes paires décalées vers le bas */
.gallery-col:nth-child(even) { margin-top: 60px; }

.gallery-item {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden; border-radius: 10px;
  cursor: pointer; position: relative;
  background: var(--rose-light);
}
.gallery-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,31,31,0);
  transition: background var(--transition);
  border-radius: 10px;
}
.gallery-item:hover::after { background: rgba(42,31,31,.15); }

.gallery-item .zoom-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  opacity: 0; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark);
  transition: all .3s ease;
  pointer-events: none;
}
.gallery-item:hover .zoom-icon {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

.gallery-arrow {
  position: absolute; top: 44%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--dark); font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow);
  transition: all .25s ease;
  padding-bottom: 2px;
}
.gallery-arrow:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.gallery-arrow-prev { left: 6px; }
.gallery-arrow-next { right: 6px; }

/* ========================
   LIGHTBOX
   ======================== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,5,5,.94);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 8px;
}

.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--cream);
  font-size: 1.6rem; cursor: pointer; z-index: 1001;
  opacity: .7; transition: opacity var(--transition);
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  color: var(--cream); font-size: 2rem; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 1001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.18);
}

/* ========================
   INFOS PRATIQUES
   ======================== */
.infos {
  background: var(--dark); position: relative; overflow: hidden;
}
.infos-bg-deco {
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,114,.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.infos-card {
  background: rgba(255,255,255,.04);
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.infos-card:last-child { border-right: none; }
.infos-card-center { text-align: center; }

.infos-icon {
  font-size: 1.8rem; margin-bottom: 20px;
  filter: grayscale(1);
}

.infos-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 300;
  color: var(--gold-light); margin-bottom: 24px;
  letter-spacing: .02em;
}

.hours-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 16px;
}
.hours-table td {
  padding: 8px 0; color: rgba(255,255,255,.75);
  font-size: .88rem; font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { color: rgba(255,255,255,.35); }

.hours-note {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}

.infos-card address {
  color: rgba(255,255,255,.75); font-size: .9rem;
  line-height: 1.8; margin-bottom: 20px;
}

.map-box-wrap {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  margin-top: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
/* Leaflet overrides */
.map-box-wrap .leaflet-container {
  width: 100%; height: 100%;
  font-family: var(--font-sans);
}
.map-box-wrap .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.map-btn {
  color: var(--gold-light) !important;
  border-color: rgba(232,217,196,.4) !important;
  font-size: .75rem !important;
  margin-bottom: 32px;
}
.map-btn:hover {
  background: rgba(232,217,196,.12) !important;
  color: var(--gold-light) !important;
}

.payment-section { margin-top: 4px; }
.payment-label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px;
}
.payment-pills {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.payment-pills span {
  padding: 5px 13px; border-radius: 40px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6); font-size: .72rem;
  letter-spacing: .06em;
}

.tel-link {
  display: block; font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 300;
  color: var(--gold-light); margin-bottom: 16px;
  transition: color var(--transition);
}
.tel-link:hover { color: var(--white); }

.mail-link {
  display: inline-block;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px; margin-bottom: 32px;
  transition: all var(--transition);
}
.mail-link:hover { color: var(--gold-light); border-color: var(--gold); }

.social-hint {
  color: rgba(255,255,255,.4); font-size: .82rem; line-height: 1.7;
}

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

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

.contact-desc {
  font-size: .92rem; line-height: 1.7; color: var(--light-text);
  margin-bottom: 32px;
}
.contact-desc a { color: var(--rose-dark); border-bottom: 1px solid var(--rose); }

.contact-brand-banner {
  position: relative;
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 40%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-brand-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(42,31,31,.2);
}
.contact-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,154,114,.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-banner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(42,31,31,.12));
  transition: transform var(--transition);
}
.contact-brand-banner:hover .contact-banner-img {
  transform: scale(1.03);
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

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

.form-group label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; color: var(--mid);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--cream);
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,164,164,.18);
}

.form-check { flex-direction: row; align-items: flex-start; gap: 12px; }

.checkbox-label {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  font-size: .8rem; color: var(--light-text); line-height: 1.6;
}
.checkbox-label input[type=checkbox] { display: none; }

.checkmark {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--cream); position: relative;
  transition: all var(--transition);
}
.checkbox-label input:checked ~ .checkmark {
  background: var(--dark); border-color: var(--dark);
}
.checkbox-label input:checked ~ .checkmark::after {
  content: ''; position: absolute;
  left: 5px; top: 2px; width: 6px; height: 10px;
  border: 2px solid var(--cream); border-top: none; border-left: none;
  transform: rotate(40deg);
}

.text-link { color: var(--rose-dark); text-decoration: underline; }

.form-success {
  display: none; text-align: center;
  padding: 16px; border-radius: 8px;
  background: var(--rose-light); color: var(--rose-dark);
  font-size: .9rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ========================
   MENTIONS LÉGALES
   ======================== */
.mentions-section {
  background: var(--cream); padding: 24px 0;
  border-top: 1px solid var(--border);
}

.mentions-details summary {
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--light-text); cursor: pointer; padding: 8px 0;
  list-style: none;
}
.mentions-details summary::-webkit-details-marker { display: none; }
.mentions-details summary::before { content: '+ '; }
.mentions-details[open] summary::before { content: '− '; }

.mentions-content {
  margin-top: 16px; padding: 20px;
  background: var(--white); border-radius: 8px;
  font-size: .82rem; color: var(--light-text); line-height: 1.8;
}
.mentions-content p { margin-bottom: 12px; }
.mentions-content p:last-child { margin-bottom: 0; }

/* ========================
   FOOTER
   ======================== */
.footer { background: var(--dark); }

.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding-top: 40px; padding-bottom: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300;
  color: var(--gold-light);
}
.footer-address {
  font-size: .75rem; letter-spacing: .08em;
  color: rgba(255,255,255,.4);
}

.footer-links {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.footer-links a {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-tel a {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,.6); transition: color var(--transition);
}
.footer-tel a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center; padding: 16px 24px 20px;
  font-size: .7rem; color: rgba(255,255,255,.25); letter-spacing: .06em;
}

.footer-bottom > span {
  display: block;
}

.footer-credit {
  margin-top: 8px;
  font-size: .65rem; color: rgba(255,255,255,.2); letter-spacing: .08em;
}
.footer-credit a {
  color: var(--gold); transition: color var(--transition);
}
.footer-credit a:hover {
  color: var(--gold-light);
}

/* ========================
   ANIMATIONS SCROLL
   ======================== */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .apropos-badge { right: 16px; }
  .infos-grid { grid-template-columns: 1fr; gap: 0; }
  .infos-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .infos-card:last-child { border-bottom: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-img-wrap { max-height: 280px; }
}

@media (max-width: 1024px) {
  .gallery-grid { columns: 3 180px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .section { padding: 72px 0; }
  .gallery-col { flex: 0 0 150px; }
  .gallery-row {
    padding: 0 44px 16px;
    overflow-x: auto;
    touch-action: pan-y;
  }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .infos-card { padding: 40px 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-col { flex: 0 0 130px; }
  .gallery-col:nth-child(even) { margin-top: 32px; }
  .gallery-row { padding: 0 38px 14px; gap: 8px; }
  .apropos-badge { width: 90px; height: 90px; }
  .badge-num { font-size: 1.8rem; }
}
