/* ============================================
   Les rituels oléophile — Guadeloupe
   Palette : vert tropical, turquoise, sable, doré
   Design : organique, arrondi, harmonieux
   ============================================ */

:root {
  /* Bleus turquoise / océan */
  --jungle: #0d4f5e;        /* Deep ocean (remplace vert foncé) */
  --emerald: #0891a8;       /* Turquoise profond */
  --palm: #14b8c8;          /* Turquoise vif */
  --mint: #8fd4dc;          /* Turquoise clair */

  /* Mer */
  --lagoon: #22d3ee;        /* Cyan lagon */
  --turquoise: #67e8f9;     /* Turquoise lumineux */

  /* Sable & or */
  --sand: #f5ead7;
  --sand-light: #fdf6e8;
  --cream: #fefcf6;
  --gold: #c9a961;
  --gold-dark: #8b7640;

  /* Neutres */
  --ink: #083344;           /* Bleu très foncé */
  --text: #155e75;
  --text-soft: #64748b;

  /* Radius harmonieux */
  --r-sm: 18px;
  --r-md: 28px;
  --r-lg: 48px;
  --r-xl: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

a { color: var(--emerald); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--jungle); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ============================================
   LANG SWITCHER
   ============================================ */
.lang-switcher {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.lang-switcher a {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.lang-switcher a.active { color: var(--gold); }
.lang-switcher a:not(.active):hover { color: var(--mint); }
.lang-switcher span { color: rgba(255,255,255,0.4); }

/* ============================================
   TARIFS
   ============================================ */
.section.tarifs {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
  position: relative;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.tarif-card {
  background: white;
  border-radius: var(--r-md);
  padding: 2.5rem 1.8rem 2rem;
  border: 1px solid rgba(45, 110, 90, 0.1);
  box-shadow: 0 4px 20px rgba(30, 77, 63, 0.06);
  transition: all 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(30, 77, 63, 0.2);
}

.tarif-card.featured {
  background: linear-gradient(180deg, #fefcf6 0%, #faf2db 100%);
  border: 2px solid var(--gold);
  transform: scale(1.03);
}

.tarif-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
}

.tarif-card.luxury {
  background: linear-gradient(180deg, var(--jungle) 0%, var(--emerald) 100%);
  color: white;
}

.tarif-card.luxury h3,
.tarif-card.luxury .tarif-duration,
.tarif-card.luxury .price-amount,
.tarif-card.luxury .price-currency {
  color: white;
}

.tarif-card.luxury .tarif-features li {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.15);
}

.tarif-card.luxury .tarif-features li::before {
  color: var(--gold);
}

.tarif-card.luxury .tarif-note {
  color: rgba(255,255,255,0.7);
}

.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tarif-card.luxury .tarif-badge {
  background: var(--gold);
}

.tarif-header {
  margin-bottom: 1.5rem;
}

.tarif-duration {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.tarif-header h3 {
  font-size: 1.7rem;
  color: var(--jungle);
  font-weight: 500;
  margin: 0;
}

.tarif-price {
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--jungle);
  line-height: 1;
}

.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 400;
}

.tarif-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  text-align: left;
  flex: 1;
}

.tarif-features li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(45, 110, 90, 0.1);
  position: relative;
}

.tarif-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.tarif-features li:last-child {
  border-bottom: none;
}

.tarif-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 110, 90, 0.1);
}

.tarif-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(45, 110, 90, 0.15);
}

.tarif-option {
  padding: 1.2rem;
  background: white;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}

.tarif-option strong {
  display: block;
  color: var(--jungle);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.tarif-option p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

.option-price {
  color: var(--gold-dark);
  font-weight: 500;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.contact-intro h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-intro .intro {
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
}

.contact-direct {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-direct p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-email {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.contact-email:hover {
  color: white;
  border-bottom-color: white;
}

.contact-form {
  background: rgba(255,255,255,0.95);
  padding: 2.5rem 2rem;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35);
}

.form-field {
  margin-bottom: 1.3rem;
  text-align: left;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(45, 110, 90, 0.2);
  border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: white;
  transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(45, 110, 90, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form {
  width: 100%;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================
   WAVE DIVIDERS (transitions organiques)
   ============================================ */
.wave-divider {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: -1px;
  margin-bottom: -1px;
}

.wave-top {
  margin-bottom: -50px;
}

.wave-bottom {
  margin-top: -50px;
}

/* ============================================
   HERO — arrondi en bas
   ============================================ */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(30, 77, 63, 0.2) 0%,
      rgba(30, 77, 63, 0.1) 40%,
      rgba(30, 77, 63, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeUp 1.4s ease-out;
}

.brand {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: white;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #f5ead7 0%, #c9a961 50%, #f5ead7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-scroll {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  font-weight: 400;
}

.cta-scroll:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  color: white;
  transform: translateY(-3px);
  letter-spacing: 0.35em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent, white);
  animation: scrollPulse 2s ease-in-out infinite;
  border-radius: 999px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FLOATING STRIP — pill flottante
   ============================================ */
.floating-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.8rem 2.5rem;
  background: linear-gradient(90deg, var(--jungle), var(--emerald), var(--jungle));
  color: white;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.strip-item {
  opacity: 0.95;
  white-space: nowrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
}

.section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

.section .intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-soft);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section .intro.center { margin-left: auto; margin-right: auto; }

.eyebrow.center {
  display: block;
  text-align: center;
}

/* ============================================
   BIENVENUE — Grille avec image blob
   ============================================ */
.section.welcome {
  background: var(--sand-light);
}

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

.welcome-text h2 {
  margin-bottom: 1.5rem;
}

.welcome-text p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.welcome-text em {
  color: var(--emerald);
  font-style: italic;
  font-weight: 500;
}

.welcome-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(30, 77, 63, 0.25);
  border-radius: var(--r-lg);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.welcome-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   PARALLAX QUOTE — arrondi
   ============================================ */
.parallax-quote {
  position: relative;
  padding: 10rem 2rem;
  margin: 2rem 1.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(30, 77, 63, 0.35);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30, 77, 63, 0.7),
    rgba(45, 110, 90, 0.5));
}

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

.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.big-quote em {
  font-weight: 500;
  color: #f5ead7;
}

/* ============================================
   EXPERIENCE — Cards ultra arrondies
   ============================================ */
.section.experience {
  background: var(--cream);
}

.section.experience h2.center { margin-bottom: 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solid rgba(45, 110, 90, 0.08);
  box-shadow: 0 4px 20px rgba(30, 77, 63, 0.06);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(30, 77, 63, 0.25);
}

.card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(30, 77, 63, 0.1));
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.card-body {
  padding: 2rem 1.8rem;
  text-align: left;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--jungle);
  font-weight: 500;
}

.card p {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================
   5 SENS — Blobs background
   ============================================ */
.section.senses {
  background: linear-gradient(180deg, var(--sand-light) 0%, #e8ddc7 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 3rem 1.5rem;
  padding: 7rem 2rem;
}

.section.senses::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(95, 179, 161, 0.25), transparent 70%);
  border-radius: 50%;
}

.section.senses::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
  border-radius: 50%;
}

.senses-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.senses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.sense {
  padding: 2rem 1.8rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition: all 0.4s;
  border: 1px solid rgba(45, 110, 90, 0.1);
}

.sense:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 40px -10px rgba(30, 77, 63, 0.15);
}

.sense-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--lagoon));
  margin-bottom: 1rem;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px -5px rgba(95, 179, 161, 0.4);
}

.sense h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--jungle);
  font-weight: 500;
}

.sense p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================================
   GALERIE — items arrondis
   ============================================ */
.section.gallery {
  background: var(--jungle);
  color: white;
  position: relative;
  border-radius: var(--r-xl);
  margin: 2rem 1.5rem;
  padding: 7rem 2.5rem;
}

.section.gallery .eyebrow {
  color: var(--mint);
}

.section.gallery h2 {
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.2rem;
  margin-top: 3rem;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 77, 63, 0.25);
  transition: all 0.4s;
}

.gallery-item:hover::after {
  background: rgba(30, 77, 63, 0);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.4);
}

.gallery-item.tall {
  grid-row: span 2;
  border-radius: var(--r-lg);
}

.gallery-item.wide {
  grid-column: span 2;
  border-radius: var(--r-lg);
}

/* ============================================
   PRATIQUE — image arrondie
   ============================================ */
.section.practical {
  background: var(--cream);
  padding-top: 5rem;
}

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

.practical-grid h2 {
  margin-bottom: 3rem;
}

.info-row {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(45, 110, 90, 0.15);
  align-items: flex-start;
}

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

.info-label {
  flex: 0 0 150px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  padding-top: 4px;
}

.info-value {
  flex: 1;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
}

.info-value a {
  color: var(--emerald);
  border-bottom: 1px solid var(--emerald);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.info-value a:hover {
  color: var(--jungle);
  border-bottom-color: var(--gold);
}

.practical-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -20px rgba(30, 77, 63, 0.3);
}

/* ============================================
   CONTACT — gradient arrondi
   ============================================ */
.section.contact {
  background: linear-gradient(135deg, var(--jungle) 0%, var(--emerald) 50%, var(--palm) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 3rem 1.5rem;
  padding: 7rem 2rem;
}

.section.contact::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.25), transparent 60%);
  border-radius: 50%;
}

.section.contact::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 205, 191, 0.2), transparent 60%);
  border-radius: 50%;
}

.section.contact > * {
  position: relative;
  z-index: 2;
}

.section.contact .container {
  position: relative;
  z-index: 2;
}

.section.contact h2,
.section.contact .eyebrow {
  color: white;
}

.section.contact .eyebrow {
  color: #f5ead7;
  opacity: 0.9;
}

.section.contact .intro {
  color: rgba(255,255,255,0.9);
}

.cta {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: white;
  color: var(--jungle);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-top: 2rem;
  transition: all 0.4s;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,0.25);
}

.cta:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.35);
  letter-spacing: 0.25em;
}

/* ============================================
   FOOTER — arrondi en haut
   ============================================ */
footer {
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.footer-brand em {
  font-style: italic;
  color: #f5ead7;
}

.footer-info {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .tarif-card.featured { transform: none; }
  .tarif-card.featured:hover { transform: translateY(-8px); }
  .tarif-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .welcome-grid,
  .practical-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .welcome-image {
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }

  .practical-image {
    order: -1;
    max-height: 400px;
    aspect-ratio: 3/2;
  }

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section.senses,
  .section.gallery,
  .section.contact,
  .parallax-quote {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: var(--r-lg);
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .section.senses,
  .section.gallery,
  .section.contact {
    padding: 5rem 1.5rem;
  }
  .parallax-quote {
    padding: 6rem 2rem;
    background-attachment: scroll;
  }

  .floating-strip {
    margin: -2rem 1rem 0;
    gap: 0.8rem 1.5rem;
    font-size: 0.75rem;
    padding: 1.5rem 1.5rem;
    border-radius: var(--r-md);
  }

  .info-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .info-label {
    flex: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

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

  .contact-form {
    padding: 1.8rem 1.3rem;
  }

  .hero {
    border-bottom-left-radius: var(--r-lg);
    border-bottom-right-radius: var(--r-lg);
  }

  footer {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
}

/* SIGNATURE FINALE — ajoutée lors du rebrand Okeophile 2026-04-20 */
.signature-final {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  text-align: center;
}
.signature-final .signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
.signature-final .signature-text em {
  color: var(--emerald);
  font-weight: 500;
  font-style: italic;
}
.signature-final .signature-text strong {
  color: var(--jungle);
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .signature-final { padding: 70px 0; }
  .signature-final .signature-text {
    padding: 0 24px;
    line-height: 1.6;
  }
}

/* ============================================
   FEEDBACK EMMA 22/04 — Rituels Perle / Nacre / Saphir
   ============================================ */

/* PERLE : fond écru, accent coquillage, plus aérien */
.tarif-card.perle {
  background: linear-gradient(180deg, #fefcf6 0%, #f5ead7 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
}
.tarif-card.perle .tarif-badge {
  background: #b8a47a;
}

/* NACRE : fond doré paillettes scintillantes (gradient or + micro-particules) */
.tarif-card.featured.nacre {
  background:
    radial-gradient(circle at 20% 15%, rgba(255,235,170,0.45), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255,250,225,0.55), transparent 30%),
    radial-gradient(circle at 35% 80%, rgba(255,228,150,0.35), transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(255,242,200,0.45), transparent 30%),
    linear-gradient(180deg, #fff8e0 0%, #f5dfa8 100%);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.tarif-card.featured.nacre::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.7) 0.8px, transparent 1.2px),
    radial-gradient(circle, rgba(255,236,180,0.85) 1.2px, transparent 1.8px);
  background-size: 60px 60px, 90px 90px, 130px 130px;
  background-position: 0 0, 30px 40px, 70px 20px;
  opacity: 0.6;
  pointer-events: none;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}
.tarif-card.featured.nacre .tarif-badge {
  background: linear-gradient(135deg, #c9a961, #e9c971);
  letter-spacing: 0.3em;
}

/* SAPHIR : fond photo turquoise + cadre doré */
.tarif-card.luxury.saphir {
  background-image:
    linear-gradient(180deg, rgba(8, 145, 168, 0.78), rgba(13, 79, 94, 0.88)),
    url('images/emma-22avril/saphir-turquoise.jpeg');
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.4) inset, 0 4px 20px rgba(13, 79, 94, 0.3);
  position: relative;
}
.tarif-card.luxury.saphir::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: calc(var(--r-md) - 6px);
  pointer-events: none;
}
.tarif-card.luxury.saphir .tarif-badge {
  background: linear-gradient(135deg, #c9a961, #e9c971);
  color: #0d4f5e;
  font-weight: 600;
}

/* ============================================
   IMMERSION SENSORIELLE V2 — 6 tuiles photo, tons beige/sable
   ============================================ */
.section.senses.senses-v2 {
  background: linear-gradient(180deg, #f5ead7 0%, #e8ddc7 50%, #d9c8a8 100%);
  padding: 6rem 1.5rem 7rem;
}
.section.senses.senses-v2 .senses-header h2 {
  color: #6b5230;
}
.section.senses.senses-v2 .senses-header .eyebrow {
  color: #8b7640;
}
.section.senses.senses-v2 .senses-header .intro {
  color: #6b5230;
  max-width: 620px;
  margin: 1rem auto 0;
}
.senses-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sense-tile {
  position: relative;
  min-height: 360px;
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 30px -10px rgba(107, 82, 48, 0.35);
}
.sense-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -10px rgba(107, 82, 48, 0.45);
}
.sense-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(245, 234, 215, 0.05) 0%,
    rgba(107, 82, 48, 0.15) 40%,
    rgba(60, 40, 15, 0.78) 100%);
  pointer-events: none;
}
.sense-tile-content {
  position: relative;
  z-index: 2;
  padding: 2.2rem 2rem 2rem;
  color: white;
}
.sense-tile-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f5ead7;
  background: rgba(0,0,0,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 234, 215, 0.4);
  margin-bottom: 0.9rem;
}
.sense-tile-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: #fff8e0;
  margin: 0 0 0.7rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.sense-tile-content p {
  color: rgba(255, 248, 224, 0.92);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
@media (max-width: 760px) {
  .senses-stack { grid-template-columns: 1fr; }
  .sense-tile { min-height: 280px; }
  .sense-tile-content h3 { font-size: 1.6rem; }
}

/* GALERIE 4 photos (override grid) */
.gallery-grid.gallery-4 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  grid-template-areas:
    "tall a b"
    "tall wide wide";
  gap: 1rem;
}
.gallery-grid.gallery-4 .gallery-item.tall { grid-area: tall; }
.gallery-grid.gallery-4 .gallery-item.wide { grid-area: wide; }
@media (max-width: 720px) {
  .gallery-grid.gallery-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
    grid-template-areas:
      "tall tall"
      "a b"
      "wide wide";
  }
}

/* ============================================
   À PROPOS EMMA — carte d'identité + photo
   ============================================ */
.section.about-emma {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
  padding: 6rem 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(13, 79, 94, 0.35);
  aspect-ratio: 3 / 4;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(254, 252, 246, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.8rem 0 1.5rem;
}
.about-text h2 em {
  color: var(--emerald);
  font-style: italic;
}
.about-text .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--jungle);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}
.about-section-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.6rem;
}
.about-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text);
}
.about-signature {
  margin-top: 2rem !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--jungle);
}
.about-signature em {
  font-size: 1.6rem;
  color: var(--emerald);
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo {
    max-width: 360px;
    margin: 0 auto;
  }
}
