/* ==========================================================================
   Pages CSS - Riad LallaBaya
   Styles spécifiques aux pages - Refonte Luxe Marocain
   ========================================================================== */

/* ==========================================================================
   Home Page
   ========================================================================== */

.home-intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-16);
  align-items: center;
}

.home-intro__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.home-intro__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-luxe) var(--ease-luxe);
}

.home-intro__image:hover > img {
  transform: scale(1.03);
}

/* Photo carousel adapted to the portrait intro frame */
.home-intro__image .photo-carousel,
.home-intro__image .photo-carousel__main {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  box-shadow: none;
}

.home-intro__image .photo-carousel__main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro__content {
  padding: var(--space-8);
}

.home-intro__content h2 {
  letter-spacing: var(--tracking-elegant);
}

@media (max-width: 768px) {
  .home-intro {
    grid-template-columns: 1fr;
  }
}

/* Section chambres preview */
.rooms-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .rooms-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rooms-preview {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Chambres Page
   ========================================================================== */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

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

/* ==========================================================================
   Chambre Detail Page
   ========================================================================== */

/* Room Hero - Image/Video principale en plein écran */
.room-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.room-hero__image,
.room-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 39, 36, 0.7) 0%,
    rgba(42, 39, 36, 0.2) 40%,
    transparent 70%
  );
}

.room-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-12) var(--space-6);
  text-align: center;
  color: var(--color-white);
}

.room-hero__type {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
}

.room-hero__title {
  font-size: var(--text-5xl);
  color: var(--color-white);
  margin: 0;
  letter-spacing: var(--tracking-luxe);
}

@media (max-width: 768px) {
  .room-hero {
    height: 50vh;
    min-height: 400px;
  }

  .room-hero__title {
    font-size: var(--text-4xl);
  }
}

/* Room Content - Contenu principal */
.room-content {
  max-width: var(--container-md);
  margin: 0 auto;
}

.room-content__main {
  padding: var(--space-8) 0;
}

.room-content__description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.room-content__features,
.room-content__equipments {
  margin-bottom: var(--space-10);
}

.room-content__section-title {
  font-size: var(--text-xl);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-6);
  text-align: center;
  position: relative;
}

.room-content__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-gold));
  margin: var(--space-3) auto 0;
}

.room-content__cta {
  text-align: center;
  padding-top: var(--space-4);
}

/* Room Features Grid */
.room-features-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--color-sable-light);
  border-radius: var(--radius-sm);
}

.room-feature__icon {
  width: 24px;
  height: 24px;
  color: var(--color-rose);
  flex-shrink: 0;
}

.room-feature__text {
  font-size: var(--text-base);
  color: var(--color-text);
}

/* Room Gallery - Carousel des photos */
.room-gallery {
  max-width: 1000px;
  margin: 0 auto;
}

.room-gallery__swiper {
  aspect-ratio: 16/10;
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-gallery__slide {
  width: 100%;
  height: 100%;
}

.room-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery__thumbs {
  height: 80px;
}

.room-gallery__thumbs .swiper-slide {
  width: 100px !important;
  height: 80px;
  opacity: 0.6;
  cursor: pointer;
  overflow: hidden;
  transition:
    opacity var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.room-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--color-gold);
}

.room-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper navigation for room gallery */
.room-gallery__swiper .swiper-button-prev,
.room-gallery__swiper .swiper-button-next {
  color: var(--color-white);
  background: rgba(42, 39, 36, 0.5);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  transition:
    background var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-luxe);
}

.room-gallery__swiper .swiper-button-prev:hover,
.room-gallery__swiper .swiper-button-next:hover {
  background: rgba(42, 39, 36, 0.7);
  transform: scale(1.1);
}

.room-gallery__swiper .swiper-button-prev::after,
.room-gallery__swiper .swiper-button-next::after {
  font-size: var(--text-lg);
}

/* Legacy room-detail styles kept for compatibility */

/* ==========================================================================
   Photo Carousel (Swiper.js)
   ========================================================================== */

.photo-carousel {
  width: 100%;
}

.photo-carousel__main {
  aspect-ratio: 16/10;
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-carousel__main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-carousel__thumbs {
  height: 80px;
}

.photo-carousel__thumbs .swiper-slide {
  width: 100px !important;
  aspect-ratio: 1;
  opacity: 0.6;
  cursor: pointer;
  overflow: hidden;
  transition:
    opacity var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.photo-carousel__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--color-gold);
}

.photo-carousel__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper navigation customization */
.photo-carousel .swiper-button-prev,
.photo-carousel .swiper-button-next {
  color: var(--color-white);
  background: rgba(42, 39, 36, 0.5);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  transition:
    background var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-luxe);
}

.photo-carousel .swiper-button-prev:hover,
.photo-carousel .swiper-button-next:hover {
  background: rgba(42, 39, 36, 0.7);
  transform: scale(1.1);
}

.photo-carousel .swiper-button-prev::after,
.photo-carousel .swiper-button-next::after {
  font-size: var(--text-lg);
}

.room-detail__info {
  padding-top: var(--space-8);
}

.room-detail__type {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-rose);
  margin-bottom: var(--space-2);
}

.room-detail__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  letter-spacing: var(--tracking-elegant);
}

.room-detail__description {
  margin-bottom: var(--space-8);
}

.room-detail__features {
  margin-bottom: var(--space-8);
}

.room-detail__features-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-wide);
}

.room-detail__features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-detail__features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.room-detail__features-list li::before {
  content: '✓';
  color: var(--color-rose);
  font-weight: var(--font-bold);
}

@media (max-width: 1024px) {
  .room-detail {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info__item {
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--color-sable-light);
  transition:
    background var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.contact-info__item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-info__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-rose);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-lg);
}

.contact-info__value a {
  color: var(--color-primary);
  transition: color var(--duration-fast) var(--ease-default);
}

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

.contact-form {
  background: var(--color-white);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-subtle);
}

.contact-form__group {
  margin-bottom: var(--space-5);
}

.contact-form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-wide);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition:
    border-color var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.2);
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}

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

/* ==========================================================================
   Discover Page
   ========================================================================== */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.space-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    box-shadow var(--duration-normal) var(--ease-luxe),
    transform var(--duration-normal) var(--ease-luxe);
}

.space-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-luxe);
}

.space-card:hover img {
  transform: scale(1.08);
}

.space-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 39, 36, 0.8) 0%,
    rgba(42, 39, 36, 0.3) 40%,
    transparent 70%
  );
  transition: background var(--duration-normal) var(--ease-default);
}

.space-card:hover .space-card__overlay {
  background: linear-gradient(
    to top,
    rgba(42, 39, 36, 0.9) 0%,
    rgba(42, 39, 36, 0.4) 50%,
    transparent 80%
  );
}

.space-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  color: var(--color-white);
  transform: translateY(10px);
  transition: transform var(--duration-normal) var(--ease-luxe);
}

.space-card:hover .space-card__content {
  transform: translateY(0);
}

.space-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-wide);
}

.space-card__description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-luxe);
}

.space-card:hover .space-card__description {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Service Detail Page
   ========================================================================== */

.service-detail {
  max-width: var(--container-md);
  margin: 0 auto;
}

.service-detail__content {
  text-align: center;
}

.service-detail__empty {
  font-style: italic;
  color: var(--color-text-muted);
}

.service-detail__cta {
  margin-top: var(--space-8);
}

/* Service Documents */
.service-documents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* Service Gallery */
.service-gallery {
  max-width: 1000px;
  margin: 0 auto;
}

.service-gallery__swiper {
  aspect-ratio: 16/10;
  margin-bottom: var(--space-4);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-gallery__slide {
  width: 100%;
  height: 100%;
}

.service-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gallery__thumbs {
  height: 80px;
}

.service-gallery__thumbs .swiper-slide {
  width: 100px !important;
  height: 80px;
  opacity: 0.6;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: opacity var(--transition-normal), box-shadow var(--transition-normal);
}

.service-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--color-gold);
}

.service-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gallery__swiper .swiper-button-prev,
.service-gallery__swiper .swiper-button-next {
  color: var(--color-white);
  background: rgba(42, 39, 36, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background var(--transition-normal), transform var(--transition-normal);
}

.service-gallery__swiper .swiper-button-prev:hover,
.service-gallery__swiper .swiper-button-next:hover {
  background: rgba(42, 39, 36, 0.7);
  transform: scale(1.1);
}

.service-gallery__swiper .swiper-button-prev::after,
.service-gallery__swiper .swiper-button-next::after {
  font-size: var(--text-lg);
}

.service-footer-image {
  position: relative;
  width: 100%;
  height: 500px;
}

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

/* ==========================================================================
   Rooftop Page (Legacy)
   ========================================================================== */

.rooftop-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.rooftop-intro__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rooftop-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .rooftop-intro {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WhatsApp Button (Floating)
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--duration-fast) var(--ease-luxe),
    box-shadow var(--duration-fast) var(--ease-default);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ==========================================================================
   Booking Button (Floating)
   ========================================================================== */

.booking-float {
  position: fixed;
  bottom: calc(var(--space-6) + 70px);
  right: var(--space-6);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-gray-700);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition:
    transform var(--duration-fast) var(--ease-luxe),
    background-color var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.booking-float:hover {
  transform: translateY(-2px);
  background-color: var(--color-gold);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.35);
}

.booking-float svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

.booking-float__label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .booking-float {
    bottom: calc(var(--space-4) + 56px);
    right: var(--space-4);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-base);
    gap: var(--space-2);
  }

  .booking-float svg {
    width: 22px;
    height: 22px;
  }

  .booking-float__label {
    display: inline;
  }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.lang-switcher__form {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
}

.lang-switcher__link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-normal) var(--ease-default);
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.lang-switcher__link:hover,
.lang-switcher__link.is-active {
  color: var(--color-gold);
}

.lang-switcher__separator {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-normal) var(--ease-default);
}

/* État scrollé - aligner avec les autres éléments de la navbar */
.navbar--scrolled .lang-switcher__link {
  color: var(--color-gray-600);
}

.navbar--scrolled .lang-switcher__link:hover,
.navbar--scrolled .lang-switcher__link.is-active {
  color: var(--color-gold);
}

.navbar--scrolled .lang-switcher__separator {
  color: var(--color-gray-600);
}

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.cta-section {
  text-align: center;
  padding: var(--space-16) var(--space-6);
}

.cta-section__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-elegant);
}

.cta-section__text {
  max-width: var(--container-sm);
  margin: 0 auto var(--space-8);
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.page-header {
  padding: var(--space-24) 0 var(--space-12);
  text-align: center;
  background-color: var(--color-sable);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-rose) 30%,
    var(--color-gold) 70%,
    transparent
  );
}

.page-header__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-luxe);
}

.page-header__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  max-width: var(--container-md);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-8);
  }

  .page-header__title {
    font-size: var(--text-4xl);
  }
}

/* ==========================================================================
   Grid Utilities - Grilles harmonisées
   ========================================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section Spacing Rhythm - Rythme vertical harmonieux
   ========================================================================== */

/* Réduction du padding entre sections consécutives */
.section + .section {
  padding-top: var(--space-12);
}

/* Sections avec fonds alternés - respiration visuelle */
.section--sable + .section,
.section--rose + .section,
.section + .section--sable,
.section + .section--rose {
  padding-top: var(--section-padding-y);
}

/* ==========================================================================
   Location Block - Page Découvrir
   ========================================================================== */

.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.location-block__map {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-subtle);
}

.location-block__map::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-gold));
  z-index: 1;
}

.location-block__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.location-info__item {
  padding: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border-subtle);
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.location-info__item:hover {
  background: var(--color-sable-light);
  border-color: var(--color-rose-light);
}

.location-info__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-rose);
  margin-bottom: var(--space-2);
}

.location-info__value {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
  margin: 0;
  font-style: normal;
}

.location-info__distance {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.location-info__cta {
  margin-top: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 768px) {
  .location-block {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .location-block__map {
    aspect-ratio: 16/10;
    order: 2;
  }

  .location-block__info {
    order: 1;
  }
}

/* ============================================================
   NAVBAR SOLIDE FORCÉE (pages sans hero)
   Reproduit l'état .navbar--scrolled quand body.has-solid-navbar
   ============================================================ */
body.has-solid-navbar .navbar {
  background-color: rgba(255, 254, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}
body.has-solid-navbar .navbar__logo {
  color: var(--color-gray-700);
  opacity: 1;
  pointer-events: auto;
}
body.has-solid-navbar .navbar__link,
body.has-solid-navbar .navbar__dropdown-toggle {
  color: var(--color-gray-600);
}
body.has-solid-navbar .navbar__toggle span {
  background-color: var(--color-gray-700);
}
body.has-solid-navbar .lang-switcher__link,
body.has-solid-navbar .lang-switcher__separator {
  color: var(--color-gray-600);
}

/* ============================================================
   PAGE NOTRE HISTOIRE — éditorial sobre
   ============================================================ */
.histoire {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}

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

.histoire__kicker {
  font-family: 'Questrial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--or-dore);
  margin: 0 0 1.75rem;
}

.histoire__title {
  font-family: 'Magelo', 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--gris-fonce);
  margin: 0 0 1.25rem;
}

.histoire__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--gris-texte);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.5;
}

.histoire__ornament {
  display: block;
  color: var(--or-dore);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-top: 2.5rem;
}

.histoire__ornament--inline {
  text-align: center;
  margin: 2.5rem 0;
}

.histoire__prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--gris-fonce);
}

.histoire__prose p {
  margin: 0 0 1.5rem;
}

.histoire__lead {
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--gris-fonce);
  text-align: center;
  margin-bottom: 2.5rem !important;
}

.histoire__pullquote {
  border: none;
  margin: 3rem -1rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--or-dore);
  border-bottom: 1px solid var(--or-dore);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.6;
  text-align: center;
  color: var(--gris-fonce);
}

@media (max-width: 640px) {
  .histoire {
    padding: 4rem 1.25rem 3rem;
  }

  .histoire__pullquote {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.15rem;
  }
}
