/* ============================================
   MAISON PIVÔNA — Stylesheet
   Charte graphique strictement respectée
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  /* Couleurs principales */
  --ivory-warm: #F7F3EE;
  --rose-poudre: #E4CFC6;
  --taupe-rose: #B7A79B;
  --brun-grege: #8E7F74;
  --vert-sauge: #9DAEA2;
  --rose-antique: #b57c76;
  --creme-doux: #f5e9dd;
  --peche-clair: #f2e2d2;
  --rose-chaud: #d9a8a0;
  --brun-fonce: #3e2b26;
  --taupe-moyen: #ad9c8c;

  /* Typographies */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Espacements */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 50%;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brun-grege);
  background-color: var(--ivory-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brun-fonce);
  line-height: 1.3;
}

h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.02em;
}

h2 {
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.01em;
}

h3 {
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brun-grege);
}

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

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rose-poudre);
  margin: 16px auto 0;
  opacity: 0.7;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--taupe-rose);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brun-grege);
  color: var(--ivory-warm);
}

.btn-primary:hover {
  background: var(--brun-fonce);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 43, 38, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--brun-grege);
  border: 1.5px solid var(--taupe-rose);
}

.btn-secondary:hover {
  background: var(--brun-grege);
  color: var(--ivory-warm);
  border-color: var(--brun-grege);
  transform: translateY(-2px);
}

.btn-reservation {
  background: var(--brun-fonce);
  color: #fff;
  box-shadow: 0 4px 20px rgba(62, 43, 38, 0.3);
}

.btn-reservation:hover {
  background: var(--rose-antique);
  box-shadow: 0 8px 30px rgba(181, 124, 118, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom: 1px solid rgba(183, 167, 155, 0.15);
  box-shadow: 0 2px 20px rgba(62, 43, 38, 0.04);
}

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

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

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun-grege);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-poudre);
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: var(--brun-fonce);
}

.nav-reservation {
  margin-left: 12px;
}

.nav-reservation .btn {
  padding: 12px 24px;
  font-size: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--brun-fonce);
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory-warm);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: var(--transition-slow);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brun-fonce);
  font-weight: 400;
}

.mobile-nav a:hover {
  color: var(--rose-antique);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--ivory-warm);
  overflow: hidden;
  padding-top: 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-rose);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose-poudre);
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--brun-fonce);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--rose-antique);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--taupe-rose);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 200px 200px 20px 20px;
  box-shadow: 0 20px 60px rgba(62, 43, 38, 0.1);
}

.hero-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--rose-poudre);
  opacity: 0.3;
  z-index: -1;
}

.hero-decoration-1 {
  top: -20px;
  right: -20px;
}

.hero-decoration-2 {
  bottom: 40px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: var(--vert-sauge);
  opacity: 0.2;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(62, 43, 38, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--creme-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-antique);
  font-size: 1.1rem;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--brun-grege);
  line-height: 1.4;
}

.hero-badge-text strong {
  display: block;
  color: var(--brun-fonce);
  font-size: 0.85rem;
}

/* ============================================
   ABOUT / PRESENTATION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: #fff;
  position: relative;
}

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

.about-visual {
  position: relative;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-image-grid img {
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  box-shadow: 0 8px 30px rgba(62, 43, 38, 0.06);
}

.about-image-grid img:first-child {
  aspect-ratio: 3/4;
  grid-row: span 2;
  border-radius: 100px 16px 16px 16px;
}

.about-image-grid img:nth-child(2) {
  aspect-ratio: 1/1;
  object-position: center center;
}

.about-image-grid img:nth-child(3) {
  aspect-ratio: 1/1;
  object-position: center center;
  border-radius: 16px 16px 100px 16px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content h2 em {
  font-style: italic;
  color: var(--rose-antique);
}

.about-text {
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--creme-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-antique);
  font-size: 1rem;
}

.value-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brun-fonce);
  line-height: 1.4;
  padding-top: 8px;
}

/* ============================================
   SERVICES / SOINS
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--ivory-warm);
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 207, 198, 0.3);
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(62, 43, 38, 0.08);
}

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

.service-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--brun-fonce);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--taupe-rose);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(228, 207, 198, 0.3);
  margin-top: auto;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--rose-antique);
  font-weight: 500;
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brun-grege);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--rose-antique);
}

/* ============================================
   EXPERIENCE / AMBIANCE
   ============================================ */
.experience {
  padding: var(--section-padding);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text h2 {
  margin-bottom: 24px;
}

.experience-text h2 em {
  font-style: italic;
  color: var(--rose-antique);
}

.experience-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose-poudre);
  line-height: 1;
  min-width: 40px;
}

.feature-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brun-fonce);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--taupe-rose);
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.experience-gallery img {
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 30px rgba(62, 43, 38, 0.06);
  transition: var(--transition);
}

.experience-gallery img:hover {
  transform: scale(1.02);
}

.experience-gallery img:first-child {
  border-radius: 100px 16px 16px 16px;
  aspect-ratio: 3/5;
  height: auto;
  grid-row: span 2;
  object-position: center center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--creme-doux) 0%, var(--ivory-warm) 100%);
}

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

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 4px 20px rgba(62, 43, 38, 0.04);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--rose-poudre);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--brun-grege);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-stars {
  color: var(--rose-antique);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-poudre);
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brun-fonce);
  letter-spacing: 0.05em;
}

/* ============================================
   CTA / RESERVATION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--brun-fonce);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(228, 207, 198, 0.08);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(157, 174, 162, 0.06);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-logo {
  display: block;
  margin: 0 auto 28px;
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.6) contrast(0.85) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  opacity: 0.95;
  transition: var(--transition);
}

.cta-logo:hover {
  filter: brightness(1.8) contrast(0.85) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transform: scale(1.05);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?w=1400&h=600&fit=crop') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.cta-content h2 {
  color: var(--ivory-warm);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--taupe-rose);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-content .btn-reservation {
  font-size: 0.9rem;
  padding: 18px 44px;
}

.cta-content .btn-secondary {
  color: var(--ivory-warm);
  border-color: var(--ivory-warm);
  padding: 18px 44px;
  font-size: 0.9rem;
}

.cta-content .btn-secondary:hover {
  background: var(--ivory-warm);
  color: var(--brun-fonce);
}

/* ============================================
   CONTACT / INFO
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: #fff;
}

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

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info > p {
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--creme-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-antique);
  font-size: 1rem;
}

.contact-item-text {
  padding-top: 4px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brun-fonce);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--brun-grege);
}

.contact-item-text a:hover {
  color: var(--rose-antique);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--creme-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brun-grege);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--rose-poudre);
  color: var(--brun-fonce);
  transform: translateY(-2px);
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(62, 43, 38, 0.06);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Horaires */
.horaires {
  margin-top: 32px;
}

.horaires h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brun-fonce);
  margin-bottom: 16px;
}

.horaires-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(183, 167, 155, 0.15);
}

.horaire-row:last-child {
  border-bottom: none;
}

.horaire-day {
  color: var(--brun-grege);
  font-weight: 500;
}

.horaire-time {
  color: var(--taupe-rose);
}

.horaire-closed {
  color: var(--rose-antique);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brun-fonce);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .footer-logo-link {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--taupe-rose);
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory-warm);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--taupe-rose);
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--rose-poudre);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--taupe-moyen);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--taupe-moyen);
}

.footer-bottom-links a:hover {
  color: var(--rose-poudre);
}

/* ============================================
   PARALLAX BAND — Ambiance
   ============================================ */
.parallax-band {
  position: relative;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?w=1600&h=600&fit=crop') center/cover no-repeat fixed;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 43, 38, 0.4), rgba(181, 124, 118, 0.3));
}

/* ============================================
   GALLERY BAND — Défilé infini
   ============================================ */
.gallery-band {
  padding: 30px 0;
  background: var(--ivory-warm);
  overflow: hidden;
}

.gallery-band-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}

.gallery-band-track img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  flex-shrink: 0;
  filter: saturate(0.9);
  transition: filter 0.3s ease;
}

.gallery-band-track img:hover {
  filter: saturate(1.1);
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 6 - 16px * 6)); }
}

/* ============================================
   LOGO IMAGE — Header & Footer
   ============================================ */
/* (Header logo is defined in the .logo section above) */

/* Preloader logo */
.preloader-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* Mobile nav logo */
.mobile-nav-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Footer logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.5) contrast(0.9);
  transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  filter: brightness(1.7) contrast(0.9);
  transform: scale(1.05);
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid img:first-child {
    aspect-ratio: 4/3;
    height: auto;
    grid-row: span 1;
    border-radius: 16px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
  }

  .experience-gallery img:first-child {
    aspect-ratio: 4/3;
    height: auto;
    grid-row: span 1;
    border-radius: 16px;
  }

  .parallax-band {
    height: 180px;
    background-attachment: scroll;
  }

  .gallery-band-track img {
    width: 180px;
    height: 240px;
  }

  @keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6 - 16px * 6)); }
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }

  .hero-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 0;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-content .btn-reservation {
    width: auto;
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Separator line per brand guidelines: max thickness 1, transparency 70% */
.separator {
  border: none;
  border-top: 1px solid var(--taupe-rose);
  opacity: 0.3;
  margin: 0;
}

/* Floating reservation button (mobile) */
.floating-reservation {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
}

@media (max-width: 768px) {
  .floating-reservation {
    display: block;
  }
  
  .floating-reservation .btn {
    box-shadow: 0 8px 30px rgba(181, 124, 118, 0.4);
    padding: 14px 32px;
  }
}
