:root {
  --bg-dark: #0f0f0f;
  --bg-card: #161616;
  --bg-glass: rgba(22, 22, 22, 0.75);
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --gold-muted: #a68b4b;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --white: #ffffff;
  --burgundy: #7b1e1e;
  --burgundy-light: #9a2a2a;
  --text: #e8e8e8;
  --text-muted: #9a9a9a;
  --whatsapp: #3d6b54;
  --whatsapp-text: #f2f2ec;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px var(--gold-glow);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body.loading,
body.is-scroll-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
  text-transform: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: linear-gradient(135deg, #b8921f 0%, var(--gold-light) 55%, var(--gold) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px var(--gold-glow);
  filter: brightness(1.06);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-text);
  border: 1px solid #5a8a72;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn--whatsapp:hover {
  background: #4a7d65;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(61, 107, 84, 0.35);
}

.btn--sm { padding: 0.48rem 1rem; font-size: 0.75rem; }
.btn--lg { padding: 0.72rem 1.5rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

/* ---------- Section Common ---------- */
.section {
  padding: 5rem 0;
  position: relative;
}

/* Conteneur scroll horizontal — mobile en @media 768px */
.scroll-row {
  overflow: visible;
}

.scroll-hint {
  display: none;
  font-size: 0.72rem;
  color: var(--gold-light);
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.scroll-hint--mobile {
  display: none;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* Reveal animation base — opacity only to avoid flicker */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealed {
  will-change: auto;
  transition: none;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo-img {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 24px var(--gold-glow));
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.loader__logo span {
  color: var(--gold-light);
  font-style: italic;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loader__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: loaderProgress 0.9s ease forwards;
  box-shadow: 0 0 15px var(--gold-glow);
}

@keyframes loaderProgress {
  to { width: 100%; }
}

.loader.fast .loader__progress {
  animation-duration: 0.7s;
}

.loader__slogan {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--gold-muted);
  margin-bottom: 1.75rem;
}

.loader__text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--navbar-h);
  z-index: 9999;
  background: #0f0f0f;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92%);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
}

.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.25));
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  margin-left: 0.2rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10% 0 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.88) 55%, rgba(8, 8, 8, 0.97) 100%);
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 20% 50%, var(--gold-glow) 0%, transparent 25%),
                    radial-gradient(circle at 80% 20%, rgba(123, 30, 30, 0.2) 0%, transparent 30%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--navbar-h) + 0.8rem) 1rem 2rem;
  width: 100%;
}

.hero__brand-mark {
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 20px var(--gold-glow));
}

.hero__panel {
  text-align: center;
  width: min(100%, 520px);
  padding: clamp(1.1rem, 3vw, 1.7rem) clamp(1rem, 2.8vw, 1.5rem);
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 213, 163, 0.14);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
  opacity: 0.9;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0;
}

.hero__title-main {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: #f7f7f5;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--gold-light);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-muted);
  margin: 0 0 1.25rem;
  letter-spacing: 0.04em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.45vw, 0.9rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 0.7rem;
  max-width: 18.8rem;
}

.hero__trust {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}

.hero__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.hero__instagram:hover {
  color: var(--gold-light);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__content--animate .hero__panel {
  opacity: 0;
  transform: translateY(20px);
}

.hero__content--animate.is-ready .hero__panel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #121212 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img-wrap:hover img {
  transform: scale(1.05);
}

.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about__content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.about__content strong {
  color: var(--gold);
}

.about__content .btn {
  margin: 1.5rem 0 2.5rem;
}

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

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card__img {
  height: 140px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.1);
}

.service-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.service-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-card__body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__price {
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-card__price strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

.service-card .btn {
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
}

.service-card--featured {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.service-card__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
}

.services__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Trust pillars */
.trust {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust__item {
  text-align: center;
  padding: 1rem 0.85rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.trust__item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.trust__item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1rem;
  margin: 0.85rem 1rem 0.35rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 1rem 1.1rem;
  line-height: 1.45;
}

.comments__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0.65rem;
  cursor: pointer;
  line-height: 1.4;
}

.comments__consent input {
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.services__cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.gallery {
  background: linear-gradient(180deg, #121212 0%, var(--bg-dark) 50%, #121212 100%);
  background: linear-gradient(180deg, #121212 0%, var(--bg-dark) 100%);
}

.gallery-zone {
  margin-bottom: 2rem;
}

.gallery-zone__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  padding-left: 0.25rem;
}

.gallery-zone__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__label {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(15,15,15,0.92), transparent);
}

.gallery__label span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox__close:hover { color: var(--gold); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comments {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #121212 100%);
}

.comments__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.5rem;
  align-items: stretch;
}

.comments__form-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.comments__form-row--names .form-group {
  flex: 1;
  min-width: 0;
}

.comments__form-row--main {
  align-items: stretch;
}

.form-group--rating {
  flex: 0 0 auto;
  min-width: 7.5rem;
}

.form-group--text {
  flex: 1;
  min-width: 0;
}

.label-optional {
  font-weight: 400;
  opacity: 0.65;
}

.form-group--rating .comment-stars {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem;
  padding-top: 0.15rem;
}

.comments__form,
.comments__list-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-width: 0;
}

.comments__list-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.comments__peek-hint {
  display: none;
}

.comments__side-badge {
  display: none;
}

.comments__form h3,
.comments__list-wrap h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comments__form .form-group {
  margin-bottom: 0.75rem;
}

.comments__form-row {
  margin-bottom: 0.75rem;
}

.comments__form-row .form-group {
  margin-bottom: 0;
}

.comments__form label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.comments__form input,
.comments__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.comments__form input:focus,
.comments__form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.comment-stars {
  display: flex;
  gap: 0.25rem;
}

.comment-star {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0.15rem;
  transition: color var(--transition), transform var(--transition);
}

.comment-star:hover,
.comment-star.active {
  color: var(--gold);
}

.comments__success {
  margin-top: 1rem;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.scroll-row--comments {
  flex: 1;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
}

.scroll-row--comments::-webkit-scrollbar {
  display: none;
}

.comments__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.65rem;
  width: max-content;
  max-width: 100%;
  padding: 0 0 0.15rem;
  list-style: none;
  box-sizing: border-box;
}

.comment-card {
  flex: 0 0 280px;
  width: 280px;
  max-width: 100%;
  scroll-snap-align: start;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.comment-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.comment-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}

.comment-card__event {
  color: var(--text-muted);
}

.comment-card__event::before {
  content: '·';
  margin-right: 0.35rem;
  opacity: 0.5;
}

.comment-card__date {
  color: var(--text-muted);
  opacity: 0.75;
  margin-left: auto;
}

.comment-card__body {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.comment-card__stars {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-top: 0.1rem;
}

.comment-card__text {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comments__empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}

.steps {
  background: var(--bg-dark);
}

.scroll-row--steps {
  margin-bottom: 1.75rem;
}

.steps__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps__item {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  text-align: left;
  padding: 1.35rem 1.15rem;
  background: var(--bg-glass);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.steps__item:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 175, 55, 0.35);
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.steps__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.steps__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.steps__cta {
  text-align: center;
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-card);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--transition);
}

.faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq__item.open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-dark);
}

.contact__center {
  max-width: 480px;
  margin: 0 auto;
}

.contact__card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
}

.contact__card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.contact__card ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact__icon {
  font-size: 1.25rem;
}

.contact__card a {
  color: var(--gold);
}

.contact__card a:hover {
  text-decoration: underline;
}

.contact__wa-big {
  margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a0a0a;
  padding-top: 2.1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.2rem;
}

.footer__slogan {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.75rem 0 0.5rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0.35rem 0 0.7rem;
  max-width: 300px;
}

.social-link--ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.social-link--wa:hover {
  background: var(--whatsapp);
  border-color: #5a8a72;
  color: var(--whatsapp-text);
}

.footer__links h4,
.footer__cta h4 {
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links ul li {
  margin-bottom: 0.25rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.65rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border: 1px solid #5a8a72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp-text);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  background: #4a7d65;
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 12, 0.97);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.mobile-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.42rem 0.55rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.mobile-bar__link:hover,
.mobile-bar__link:focus-visible {
  border-color: rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
}

.mobile-bar__link--cta {
  background: linear-gradient(135deg, var(--whatsapp), #4a7d65);
  border-color: transparent;
  color: var(--whatsapp-text);
  font-weight: 600;
}

.mobile-bar__link--cta:hover,
.mobile-bar__link--cta:focus-visible {
  color: #fff;
  filter: brightness(1.08);
}

.comments__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0.35rem auto 0;
  opacity: 0.9;
  line-height: 1.5;
}

.comments__swipe-hint {
  display: none;
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-top: 0.28rem;
  letter-spacing: 0.02em;
}

.footer__logo {
  justify-content: center;
}

@media (min-width: 769px) {
  .footer__logo {
    justify-content: flex-start;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-zone__track {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --navbar-h: 70px; }

  html, body {
    max-width: 100%;
    overflow-x: clip;
  }

  section[id],
  .hero[id] {
    scroll-margin-top: calc(var(--navbar-h) + 12px);
  }

  .container {
    width: min(100%, 92vw);
  }

  body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bar {
    display: grid;
  }

  .navbar__toggle {
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 10002;
  }

  .navbar {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    z-index: 10001;
  }

  .navbar.menu-open,
  .navbar.scrolled {
    background: #0f0f0f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  }

  .navbar__nav {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: #0f0f0f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar__nav.open {
    transform: translateX(0);
  }

  .navbar__list {
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
  }

  .nav-link {
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #f2f2f2;
  }

  .nav-link.active {
    color: var(--gold-light);
  }

  .navbar__nav .btn { width: 100%; margin-top: 1rem; }

  .navbar__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar__toggle.active span:nth-child(2) { opacity: 0; }
  .navbar__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 2rem 0;
  }

  .section__header {
    margin-bottom: 1.1rem;
  }

  .section__title {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .section__desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero {
    min-height: 82vh;
  }

  .hero__content {
    padding-top: calc(var(--navbar-h) + 0.55rem);
    padding-bottom: 1.2rem;
  }

  .hero__panel {
    padding: 0.95rem 0.9rem 1rem;
    border-radius: 14px;
  }

  .hero__title {
    gap: 0.18rem;
    margin-bottom: 0.45rem;
  }

  .hero__title-main {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .hero__title-accent {
    font-size: 1.12rem;
  }

  .hero__tagline {
    margin-bottom: 0.4rem;
    font-size: 0.94rem;
  }

  .hero__subtitle {
    font-size: 0.76rem;
    line-height: 1.42;
    margin-bottom: 0.4rem;
  }

  .hero__trust {
    font-size: 0.64rem;
    margin-bottom: 0.55rem;
  }

  .hero__scroll {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__img-wrap img { height: 260px; }

  .services .container,
  .gallery .container,
  .trust .container,
  .team .container,
  .comments .container,
  .steps .container {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-zone .scroll-row {
    width: 100%;
  }

  .scroll-hint--mobile {
    display: block;
    margin-bottom: 0.65rem;
    padding: 0 4%;
  }

  .comments__peek-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--gold-light);
    text-align: center;
    margin: 0 auto 0.75rem;
    padding: 0 4%;
    letter-spacing: 0.02em;
  }

  .hero__particles {
    display: none;
  }

  #loader {
    display: none !important;
  }

  /* Bandeau horizontal pleine largeur (sort du container) */
  .scroll-row,
  .scroll-row--services,
  .scroll-row--trust,
  .scroll-row--team,
  .scroll-row--steps,
  .comments__grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.65rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 1rem 1rem;
    scroll-padding-inline: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: none;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .scroll-row::-webkit-scrollbar,
  .scroll-row--services::-webkit-scrollbar,
  .scroll-row--trust::-webkit-scrollbar,
  .scroll-row--team::-webkit-scrollbar,
  .scroll-row--steps::-webkit-scrollbar,
  .comments__grid::-webkit-scrollbar {
    display: none;
  }

  @supports not (display: contents) {
    .scroll-row > .services__grid,
    .scroll-row--services > .services__grid,
    .scroll-row > .gallery-zone__track,
    .scroll-row--trust > .trust__list,
    .scroll-row--team > .team__grid,
    .scroll-row--steps > .steps__list {
      display: flex !important;
      flex-wrap: nowrap !important;
      flex: 0 0 auto;
      width: auto;
      min-width: min-content;
      gap: 0.65rem;
      padding: 0;
      box-sizing: border-box;
    }
  }

  /* Le wrapper interne disparaît : les cartes scrollent directement dans .scroll-row */
  .scroll-row > .services__grid,
  .scroll-row--services > .services__grid,
  .scroll-row > .gallery-zone__track,
  .scroll-row--trust > .trust__list,
  .scroll-row--team > .team__grid,
  .scroll-row--steps > .steps__list {
    display: contents;
  }

  .scroll-row--comments > .comments__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: auto;
    min-width: min-content;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .service-card {
    flex: 0 0 72vw;
    width: 72vw;
    max-width: 280px;
    flex-shrink: 0;
  }

  .service-card__img {
    height: 120px;
  }

  .service-card__body {
    padding: 0.85rem 0.9rem 1rem;
  }

  .gallery-zone {
    margin-bottom: 1.25rem;
  }

  .gallery-zone__title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .gallery-zone__track .gallery__item {
    flex: 0 0 74vw;
    width: 74vw;
    max-width: 280px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
  }

  .trust__item {
    flex: 0 0 74vw;
    width: 74vw;
    max-width: 280px;
    flex-shrink: 0;
  }

  .team-card {
    flex: 0 0 76vw;
    width: 76vw;
    max-width: 300px;
    flex-shrink: 0;
  }

  .steps__item {
    flex: 0 0 74vw;
    width: 74vw;
    max-width: 280px;
    flex-shrink: 0;
  }

  .services__cta {
    margin-top: 1.5rem;
  }

  .reveal {
    transform: translateY(10px);
  }

  .service-card:hover,
  .gallery__item:hover img,
  .team-card:hover {
    transform: none;
  }

  .comments__form {
    flex: 0 0 70vw;
    width: 70vw;
    max-width: 300px;
    flex-shrink: 0;
    padding: 1rem 0.9rem;
    box-sizing: border-box;
  }

  .comments__list-wrap {
    position: relative;
    flex: 0 0 90vw;
    width: 90vw;
    max-width: 440px;
    flex-shrink: 0;
    padding: 1.1rem 1rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
  }

  .comments__side-badge {
    display: block;
    position: absolute;
    top: -0.35rem;
    right: 0.65rem;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.45rem;
    border-radius: 999px;
    background: var(--gold);
    color: #1a1408;
  }

  .comments__list-wrap--highlight {
    border: 2px solid rgba(201, 162, 39, 0.55);
    box-shadow: 0 0 28px rgba(201, 162, 39, 0.22);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 162, 39, 0.12) 100%);
  }

  .comments__list-wrap h3 {
    font-size: 1rem;
    color: var(--gold-light);
  }

  .comments__arrow {
    color: var(--gold);
    font-weight: 700;
  }

  .scroll-row--comments {
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin: 0.35rem 0 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .scroll-row--comments > .comments__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    width: max-content;
    max-width: none;
    padding: 0 0.15rem 0.25rem;
    box-sizing: border-box;
  }

  .scroll-row--comments > .comments__list::-webkit-scrollbar {
    display: none;
  }

  .comments__form-row--names {
    flex-direction: column;
    gap: 0.45rem;
  }

  .comments__form-row--main {
    flex-direction: row;
    gap: 0.35rem;
  }

  .form-group--rating {
    min-width: 4.6rem;
  }

  .form-group--rating .comment-stars {
    justify-content: flex-start;
  }

  .comments__list {
    width: max-content;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
  }

  .comments__list-wrap .comment-card {
    flex: 0 0 calc(90vw - 2.75rem);
    width: calc(90vw - 2.75rem);
    max-width: calc(90vw - 2.75rem);
    flex-shrink: 0;
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
  }

  .comments__empty {
    margin-top: 0.5rem;
    padding: 0 0.15rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .footer__brand p { margin: 0.45rem auto; }
  .footer__social { justify-content: center; }
  .footer { padding-top: 1rem; }
  .footer__links h4,
  .footer__cta h4 {
    margin-bottom: 0.25rem;
    font-size: 0.74rem;
  }
  .footer__links ul li { margin-bottom: 0.18rem; }

  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }

  .whatsapp-float {
    bottom: calc(5.1rem + env(safe-area-inset-bottom, 0px));
    right: 0.8rem;
    width: 46px;
    height: 46px;
    opacity: 0.95;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: calc(8.2rem + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .section { padding: 1.75rem 0; }
  .hero__content { padding-bottom: 2rem; }
  .hero__panel {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }
  .hero__actions { flex-direction: column; gap: 0.65rem; }
  .hero__actions .btn { width: 100%; }
  .mobile-bar {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 0.4rem;
    padding: 0.45rem 0.55rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-bar__link {
    font-size: 0.72rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float {
    pointer-events: auto;
  }

  body.menu-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
  }
  .whatsapp-float { width: 44px; height: 44px; }

  .service-card {
    flex: 0 0 76vw;
    width: 76vw;
  }

  .gallery-zone__track .gallery__item {
    flex: 0 0 78vw;
    width: 78vw;
  }

  .steps__item {
    flex: 0 0 78vw;
    width: 78vw;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
