/* ============================================
   SERVICES PAGE — Melaay Barber
   ============================================ */

/* ============================================
   HERO SERVICES
   ============================================ */

.services-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(to bottom, rgba(18, 17, 16, 0.95), rgba(13, 12, 11));
  overflow: hidden;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-6);
}

.services-hero__overline {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-main);
  margin-bottom: var(--space-5);
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-main);
  margin-bottom: var(--space-6);
}

.services-hero__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.services-hero__desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.services-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-bg-main);
  background: var(--color-accent-main);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.25);
}

.services-hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 12, 11, 0.95) 0%, transparent 60%);
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */

.services-showcase {
  padding: var(--space-20) 0 var(--space-16);
  background: var(--color-bg-main);
}

.services-showcase__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.services-showcase__overline {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-main);
  margin-bottom: var(--space-4);
}

.services-showcase__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  color: var(--color-text-main);
}

.services-showcase__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

/* Services Cards Grid */
.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card */
.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border-normal);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card--featured {
  border-color: var(--color-accent-main);
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.05) 0%, var(--color-surface) 100%);
}

.service-card--featured:hover {
  border-color: var(--color-accent-main);
  box-shadow: 0 20px 40px rgba(200, 169, 106, 0.15);
}

.service-card__badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-bg-main);
  background: var(--color-accent-main);
  border-radius: var(--radius-full);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-accent-main);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border-normal);
  border-bottom: 1px solid var(--color-border-normal);
  margin-bottom: var(--space-6);
}

.service-card__duration {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-accent-main);
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-main);
  background: transparent;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card__btn:hover {
  background: var(--color-text-main);
  border-color: var(--color-text-main);
  color: var(--color-bg-main);
}

.service-card__btn svg {
  transition: transform 0.2s ease;
}

.service-card__btn:hover svg {
  transform: translateX(4px);
}

.service-card__btn--primary {
  background: var(--color-accent-main);
  border-color: var(--color-accent-main);
  color: var(--color-bg-main);
}

.service-card__btn--primary:hover {
  background: var(--color-accent-main);
  border-color: var(--color-accent-main);
  opacity: 0.9;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.services-experience {
  padding: var(--space-20) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-normal);
}

.services-experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 1024px) {
  .services-experience__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
}

.services-experience__content {
  max-width: 500px;
}

.services-experience__overline {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-main);
  margin-bottom: var(--space-4);
}

.services-experience__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-8);
  line-height: 1.2;
}

.services-experience__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.services-experience__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.experience-item {
  display: flex;
  gap: var(--space-5);
}

.experience-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-accent-main);
  flex-shrink: 0;
}

.experience-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-2);
}

.experience-item__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Experience Visual */
.experience-visual {
  position: relative;
}

.experience-visual__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.experience-visual__placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1918 0%, #0d0c0b 100%);
}

.experience-visual__placeholder svg {
  width: 64px;
  height: 64px;
  color: rgba(200, 169, 106, 0.3);
}

.experience-visual__deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-accent-main);
  border-radius: var(--radius-lg);
  z-index: -1;
}

@media (min-width: 1024px) {
  .experience-visual__deco {
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.services-process {
  padding: var(--space-20) 0;
  background: var(--color-bg-main);
}

.services-process__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.services-process__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-text-main);
}

.services-process__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.process-step {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-normal);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent-main);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.process-step__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-accent-main);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-3);
}

.process-step__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   INFORMATIONS PRATIQUES
   ============================================ */

.services-info {
  padding: var(--space-20) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-normal);
}

.services-info__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.services-info__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-text-main);
}

.services-info__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-main);
  border: 1px solid var(--color-border-normal);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
}

.info-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-accent-main);
}

.info-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-3);
}

.info-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.services-faq {
  padding: var(--space-20) 0;
  background: var(--color-bg-main);
}

.services-faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-text-main);
}

.services-faq__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-normal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-border-strong);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-main);
  transition: color 0.2s ease;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question:hover {
  color: var(--color-accent-main);
}

.faq-item__question svg {
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-item__answer p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.services-cta {
  padding: var(--space-20) 0;
  background: linear-gradient(to bottom, rgba(18, 17, 16, 1), rgba(13, 12, 11));
  border-top: 1px solid var(--color-border-normal);
}

.services-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: var(--space-5);
}

.services-cta__title em {
  color: var(--color-accent-main);
  font-style: normal;
}

.services-cta__desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-bg-main);
  background: var(--color-accent-main);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: var(--space-10);
}

.services-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.25);
}

.services-cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-8);
}

.cta-contact__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.cta-contact__item svg {
  color: var(--color-accent-main);
}

.cta-contact__item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-contact__item a:hover {
  color: var(--color-accent-main);
}

/* ============================================
   FOOTER COHERENCE
   ============================================ */

.melaay-footer {
  background: var(--melaay-warm-black, #0D0C0B);
  border-top: 1px solid rgba(200, 121, 65, 0.15);
  padding: var(--space-24) 0 var(--space-12);
}

.melaay-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .melaay-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .melaay-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.melaay-footer__brand {
  max-width: 300px;
}

.melaay-footer__tagline {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: var(--space-4) 0 var(--space-5);
}

.melaay-footer__social {
  display: flex;
  gap: var(--space-3);
}

.melaay-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-normal);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.melaay-footer__social-link:hover {
  border-color: var(--color-accent-main);
  color: var(--color-accent-main);
}

.melaay-footer__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  margin-bottom: var(--space-5);
}

.melaay-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.melaay-footer__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.melaay-footer__item svg {
  color: var(--color-accent-main);
  flex-shrink: 0;
}

.melaay-footer__item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.melaay-footer__item a:hover {
  color: var(--color-accent-main);
}

.melaay-footer__link {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.melaay-footer__link:hover {
  color: var(--color-accent-main);
}

.melaay-footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border-normal);
}

.melaay-footer__hours-time--closed {
  color: var(--color-accent-main);
}

.melaay-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-normal);
}

@media (min-width: 768px) {
  .melaay-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.melaay-footer__copyright {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.melaay-footer__legal {
  display: flex;
  gap: var(--space-6);
}

.melaay-footer__legal-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.melaay-footer__legal-link:hover {
  color: var(--color-accent-main);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 60vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .services-hero__title {
    font-size: var(--text-3xl);
  }
  
  .services-hero__desc {
    font-size: var(--text-base);
  }

  .services-hero__cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
    display: flex;
  }
  
  .services-showcase {
    padding: var(--space-12) 0;
  }
  
  .services-showcase__title {
    font-size: var(--text-2xl);
  }
  
  .service-card {
    padding: var(--space-6);
  }
  
  .service-card__price {
    font-size: var(--text-2xl);
  }
  
  .services-experience {
    padding: var(--space-12) 0;
  }
  
  .services-experience__title {
    font-size: var(--text-2xl);
  }
  
  .experience-item {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .experience-item__icon {
    width: 40px;
    height: 40px;
  }
  
  .services-process {
    padding: var(--space-12) 0;
  }
  
  .services-process__title {
    font-size: var(--text-2xl);
  }
  
  .process-step {
    padding: var(--space-6);
  }
  
  .services-info {
    padding: var(--space-12) 0;
  }
  
  .services-info__title {
    font-size: var(--text-2xl);
  }
  
  .services-faq {
    padding: var(--space-12) 0;
  }
  
  .services-faq__title {
    font-size: var(--text-2xl);
  }
  
  .faq-item__question {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-5);
  }
  
  .faq-item__answer {
    padding: 0 var(--space-5) var(--space-5);
  }
  
  .services-cta {
    padding: var(--space-12) 0;
  }
  
  .services-cta__title {
    font-size: var(--text-2xl);
  }
  
  .services-cta__btn {
    width: 100%;
    justify-content: center;
  }
  
  .services-cta__contact {
    flex-direction: column;
    gap: var(--space-3);
  }
}

/* ============================================
   MOBILE FOOTER - Responsive comme homepage
   ============================================ */

@media (max-width: 767px) {
  /* Container padding cohérent */
  .melaay-footer {
    padding: var(--space-12) 0 var(--space-8);
  }

  .melaay-footer .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  /* Grid en colonne claire avec plus d'air */
  .melaay-footer__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 100%;
  }

  /* Section brand - logo et tagline mieux présentés */
  .melaay-footer__brand {
    max-width: 100%;
    text-align: center;
  }

  .melaay-footer__brand .melaay-logo {
    justify-content: center;
    margin-bottom: var(--space-4);
  }

  .melaay-footer__tagline {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: var(--space-4) 0 var(--space-6);
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Réseaux sociaux - centré et espacé */
  .melaay-footer__social {
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-2);
  }

  .melaay-footer__social-link {
    width: 44px;
    height: 44px;
    border-width: 1.5px;
  }

  /* Titres de section - plus d'espacement */
  .melaay-footer__title {
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(200, 169, 106, 0.15);
    display: inline-block;
  }

  /* Navigation - liens plus espacés */
  .melaay-footer__list {
    gap: var(--space-3);
  }

  .melaay-footer__link {
    font-size: var(--text-base);
    padding: var(--space-1) 0;
    display: block;
  }

  /* Contact - structure flex propre */
  .melaay-footer__item,
  .footer-contact__item {
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-base);
  }

  .melaay-footer__item svg,
  .footer-contact__item svg {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .footer-contact__item a {
    display: inline-block;
    word-break: break-word;
  }

  /* Horaires - plus d'air */
  .melaay-footer__hours-item {
    padding: var(--space-3) 0;
    font-size: var(--text-base);
  }

  /* Bottom footer - empilé proprement */
  .melaay-footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-6);
    text-align: center;
  }

  .melaay-footer__copyright {
    font-size: var(--text-xs);
    order: 2;
  }

  .melaay-footer__legal {
    justify-content: center;
    gap: var(--space-5);
    order: 1;
  }

  .melaay-footer__legal-link {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
  }

  /* Séparateur subtil entre sections principales */
  .melaay-footer__grid > div:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 169, 106, 0.1), transparent);
    margin-top: var(--space-6);
    margin-bottom: var(--space-2);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-animate].animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  [data-animate="fade-right"] {
    transform: translateX(-20px);
  }
  
  [data-animate="fade-right"].animated {
    transform: translateX(0);
  }
  
  [data-animate="fade-in"] {
    transform: scale(0.95);
    opacity: 0;
  }
  
  [data-animate="fade-in"].animated {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
