/* Ô Myl' & un Massage — Feuille de style principale */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: #2C2C2C; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }

/* VARIABLES */
:root {
  --sage: #7D9B76;
  --sage-dark: #5A7354;
  --sage-light: #A8C4A2;
  --warm: #C9A96E;
  --warm-dark: #A67050;
  --warm-light: #FDF4EE;
  --cream: #F5EFE6;
  --dark: #6B4F3A;
  --gray: #6B7280;
  --light: #F8F5F0;
  --border: #DDD5C8;
  --shadow: 0 4px 24px rgba(107,79,58,0.10);
  --shadow-lg: 0 8px 40px rgba(107,79,58,0.18);
  --beige-chaud: #EDE0CC;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage-light); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-size: .75rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--warm); display: block; margin-bottom: 12px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--warm); color: #fff; padding: 14px 30px; border-radius: 0; font-weight: 700; font-size: .95rem; transition: all .25s; border: none; cursor: pointer; letter-spacing: .3px; }
.btn-primary:hover { background: var(--warm-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,108,.40); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); color: #fff; padding: 14px 30px; border-radius: 0; font-weight: 700; font-size: .95rem; border: 2px solid rgba(255,255,255,.6); transition: all .25s; cursor: pointer; backdrop-filter: blur(6px); }
.btn-secondary:hover { background: rgba(255,255,255,.30); border-color: #fff; transform: translateY(-2px); }
.btn-sage { display: inline-flex; align-items: center; gap: 8px; background: var(--sage); color: #fff; padding: 14px 30px; border-radius: 0; font-weight: 700; font-size: .95rem; transition: all .25s; border: none; cursor: pointer; }
.btn-sage:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,158,126,.40); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(122,158,126,.12); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; width: 100%; }
.navbar-brand { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.navbar-logo { height: 48px; width: auto; max-width: 120px; object-fit: contain; flex-shrink: 0; filter: none; }
.navbar-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.35rem; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.navbar-sub { font-size: .72rem; color: var(--gray); }
.navbar-nav { display: flex; gap: 28px; margin-right: 8px; }
.navbar-nav a { font-size: .9rem; font-weight: 600; color: var(--dark); }
.navbar-nav a:hover { color: var(--sage); }
.navbar-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; margin-left: 24px; }
.btn-book { background: var(--warm); color: #fff; padding: 10px 22px; border-radius: 0; font-weight: 700; font-size: .88rem; transition: all .2s; white-space: nowrap; }
.btn-book:hover { background: var(--warm-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,149,108,.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; margin-left: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 0; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* MOBILE MENU */
.mobile-menu { display: none; flex-direction: column; gap: 0; position: fixed; top: 72px; left: 0; right: 0; z-index: 999; background: #fff; padding: 8px 20px 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.1); overflow-y: auto; max-height: calc(100vh - 72px); }
.mobile-menu.open { display: flex; }
.mobile-menu { transition: opacity 0.3s ease; }
.mobile-menu a { padding: 14px 0; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--dark); font-size: 1rem; display: block; }
.mobile-book-btn { display: block; margin-top: 16px; text-align: center; background: var(--warm); color: #fff; padding: 14px; border-radius: 0; font-weight: 700; font-size: 1rem; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,30,30,.15) 0%, rgba(30,30,30,.55) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 0 24px; max-width: 860px; }
.hero-badge-top { display: inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.35); padding: 6px 18px; border-radius: 0; font-size: .82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,7vw,5.5rem); font-weight: 700; line-height: 1.1; text-shadow: 0 2px 16px rgba(0,0,0,.25); margin-bottom: 16px; }
.hero-tagline { font-size: 1.15rem; opacity: .92; margin-bottom: 36px; font-weight: 300; font-style: italic; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.5rem; animation: bounce 2s infinite; cursor: pointer; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-icon { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.benefit-icon img { width: 60px; height: 60px; object-fit: contain; }
.benefit-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.benefit-desc { font-size: .82rem; opacity: .85; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image { position: relative; border-radius: 0; overflow: hidden; }
.why-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 0; }
.why-quote { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); padding: 20px 24px; border-radius: 0; border-left: 4px solid var(--warm); }
.why-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--dark); line-height: 1.6; }
.why-text .section-label { text-align: left; }
.why-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; margin-bottom: 20px; color: var(--dark); line-height: 1.2; }
.why-text p { color: var(--gray); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }
.why-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; max-width: 420px; }
.why-benefit { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 14px 12px; background: var(--sage-light); border-radius: 0; aspect-ratio: 1 / 1; text-align: center; }
.why-benefit-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.why-benefit-text { display: flex; flex-direction: column; gap: 2px; }
.why-benefit-text strong { display: block; font-size: .88rem; color: var(--dark); }
.why-benefit-text span { font-size: .74rem; color: var(--gray); line-height: 1.3; }

/* SOINS */
.soins-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 10px 24px; border-radius: 0; border: 2px solid var(--border); background: #fff; font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .2s; color: var(--gray); }
.tab-btn.active { background: var(--sage); color: #fff; border-color: var(--sage); }
.tab-btn:hover:not(.active) { border-color: var(--sage); color: var(--sage); }
.soins-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.soin-card { background: #fff; border-radius: 0; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; border: 1px solid var(--border); display: flex; flex-direction: column; }
.soin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.soin-img { position: relative; overflow: hidden; height: 200px; background: var(--sage-light); display: flex; align-items: center; justify-content: center; }
.soin-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.soin-card:hover .soin-img img { transform: scale(1.05); }
.soin-img-placeholder { font-size: 4rem; }
.soin-price { position: absolute; top: 16px; right: 16px; background: var(--warm); color: #fff; padding: 6px 14px; border-radius: 0; font-weight: 700; font-size: .9rem; }
.soin-duration { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,.5); color: #fff; padding: 4px 10px; border-radius: 0; font-size: .8rem; font-weight: 600; }
.soin-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.soin-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.soin-desc { color: var(--gray); font-size: .9rem; margin-bottom: 16px; line-height: 1.6; }
.soin-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; flex: 1; align-content: flex-start; }
.soin-tag { background: var(--sage-light); padding: 4px 10px; border-radius: 0; font-size: .78rem; color: var(--sage-dark); font-weight: 600; }
.soin-actions { display: flex; gap: 8px; margin-top: auto; }
.btn-soin-reserve { flex: 1; padding: 10px; background: var(--warm); color: #fff; border: none; border-radius: 0; font-weight: 700; cursor: pointer; transition: all .2s; font-size: .88rem; }
.btn-soin-reserve:hover { background: var(--warm-dark); }
.btn-soin-info { padding: 10px 16px; background: #fff; color: var(--sage); border: 2px solid var(--sage); border-radius: 0; font-weight: 700; cursor: pointer; transition: all .2s; font-size: .88rem; }
.btn-soin-info:hover { background: var(--sage-light); }
/* Bouton "+ d'infos" (lien vers page massage dédiée) */
.btn-info { display: inline-flex; align-items: center; gap: .4rem; padding: 10px 18px; background: transparent; color: var(--sage-dark); border: 1.5px solid var(--sage); border-radius: 0; font-weight: 600; font-size: .88rem; text-decoration: none; transition: all .3s ease; cursor: pointer; line-height: 1; white-space: nowrap; }
.btn-info:hover { background: var(--sage); color: #fff; }
.btn-info svg { width: 14px; height: 14px; transition: transform .3s ease; flex-shrink: 0; }
.btn-info:hover svg { transform: translateX(4px); }
/* Carte soin entièrement cliquable */
.soin-card[data-href] { cursor: pointer; }
.soin-card[data-href]:focus-within { outline: 2px solid var(--sage); outline-offset: 4px; }
.soin-signature { border: 2px solid var(--warm); }
.soin-signature-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--warm); color: #fff; padding: 4px 14px; border-radius: 0; font-size: .78rem; font-weight: 700; white-space: nowrap; }
/* Badge "Nouveau" — sage, discret (ex : nouveau soin) */
.soin-new-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; padding: 4px 14px; border-radius: 0; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; border-bottom: 2px solid var(--warm); }
/* Accroche courte sous le titre d'un soin (Cormorant italic, sage) */
.soin-accroche { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; line-height: 1.3; color: var(--sage-dark); margin-bottom: 10px; }

/* Pages villes — liste des soins officiels en lecture seule (remplace l'ancienne grille fictive) */
.soins-list-city { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 32px 0; }
.soin-cat { background: #F8F5F0; border: 1px solid var(--border, #e7e0d5); border-top: 3px solid var(--sage, #7D9B76); padding: 24px; }
.soin-cat h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--sage-dark, #5A7354); margin: 0 0 14px; font-weight: 700; }
.soin-cat ul { list-style: none; margin: 0; padding: 0; }
.soin-cat li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .98rem; color: #4a3a2a; }
.soin-cat li:last-child { border-bottom: none; }
.soin-note { color: #8a7a6a; font-size: .85rem; }
.btn-city-soins { display: inline-block; background: var(--sage, #7D9B76); color: #fff; padding: 14px 32px; font-weight: 700; text-decoration: none; font-family: 'Lato', sans-serif; transition: background .2s; }
.btn-city-soins:hover { background: var(--sage-dark, #5A7354); }

/* Icône durée (remplace l'émoji ⏱ par un picto horloge SVG blanc, net sur la pastille sombre) */
.soin-duration::before { content: ''; display: inline-block; width: 11px; height: 11px; margin-right: 5px; vertical-align: -1px; background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23fff'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M12%207v5l3%202'/%3E%3C/svg%3E") no-repeat center / contain; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.about-image-wrap { position: relative; height: 100%; min-height: 480px; }
.about-image { border-radius: 0; overflow: hidden; height: 100%; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--warm); color: #fff; padding: 20px 24px; border-radius: 0; text-align: center; box-shadow: 0 8px 28px rgba(200,149,108,.45); }
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: .75rem; opacity: .92; font-weight: 600; }
.about-text .section-label { text-align: left; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; margin-bottom: 20px; color: var(--dark); line-height: 1.2; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: var(--cream); border-radius: 0; border: 1px solid var(--border); }
.value-icon { font-size: 1.6rem; flex-shrink: 0; }
.value-text h4 { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.value-text p { font-size: .88rem; color: var(--gray); margin: 0; }

/* CARTE CADEAU */
.gift-section { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%); color: #fff; padding: 96px 0; }
.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Carte cadeau 3D flip */
.gift-card-visual { text-align: center; }
.gift-card-inner { width: 340px; height: 200px; margin: 0 auto 28px; perspective: 1000px; cursor: pointer; position: relative; }
.gift-card-inner > div { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; backface-visibility: hidden; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.gift-card-front { background-size: cover; background-position: center; padding: 28px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 16px 48px rgba(0,0,0,.2); position: relative; overflow: hidden; border-radius: 0; }
.gift-card-photo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.18); border-radius: 0; }
.gift-amount-on-photo { position: relative; z-index: 2; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); font-size: 2.2rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.gift-validity-on-photo { position: relative; z-index: 2; color: rgba(255,255,255,.9); font-size: .85rem; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.gift-card-front::before { content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: rgba(255,255,255,.08); border-radius: 0; }
.gift-card-front::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px; background: rgba(255,255,255,.06); border-radius: 0; }
.gift-card-back { background: linear-gradient(135deg, var(--warm-dark) 0%, var(--warm) 100%); border-radius: 0; padding: 28px 32px; display: flex; align-items: center; justify-content: center; transform: rotateY(180deg); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.gift-card-inner:hover .gift-card-front { transform: rotateY(-180deg); }
.gift-card-inner:hover .gift-card-back { transform: rotateY(0deg); }
.gift-card-decoration { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--warm), var(--warm-dark)); border-radius: 0; }
.gift-card-logo-wrap { margin-bottom: 4px; }
.gift-card-logo-img { height: 36px; width: auto; filter: brightness(10); opacity: .9; }
.gift-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; }
.gift-subtitle { font-size: .78rem; opacity: .75; }
.gift-card-amount-display { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: #fff; margin: 8px 0; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.gift-card-back-content { text-align: center; color: #fff; }
.gift-card-back-content p { font-size: .85rem; margin-bottom: 8px; opacity: .9; }
.gift-card-back-content p:first-child { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.gift-amounts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.gift-amount-btn { padding: 10px 18px; border-radius: 0; border: 2px solid rgba(255,255,255,.5); background: transparent; color: #fff; font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .2s; }
.gift-amount-btn.active, .gift-amount-btn:hover { background: rgba(255,255,255,.25); border-color: #fff; transform: translateY(-2px); }
.gift-validity { font-size: .78rem; opacity: .65; margin-top: 4px; }
.gift-text .section-label { color: rgba(255,255,255,.7); text-align: left; }
.gift-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.gift-text p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }

/* BOOKING */
.booking-section { background: var(--cream); padding: 96px 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.booking-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding: 16px; background: #fff; border-radius: 0; border: 1px solid var(--border); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item h4 { font-weight: 700; font-size: .9rem; margin-bottom: 4px; color: var(--dark); }
.info-item p { font-size: .88rem; color: var(--gray); margin: 0; }
.booking-form-box { background: #fff; border-radius: 0; padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.booking-form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 24px; color: var(--dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-width: 0; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 0; font-size: .95rem; background: #fff; color: var(--dark); outline: none; transition: border-color .2s; font-family: 'Lato', sans-serif; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--gray); margin-bottom: 16px; }
.btn-submit { width: 100%; padding: 16px; background: var(--warm); color: #fff; border: none; border-radius: 0; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all .25s; letter-spacing: .3px; }
.btn-submit:hover { background: var(--warm-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,149,108,.4); }
.booking-success { display: none; text-align: center; padding: 40px 20px; }
.booking-success.show { display: block; }
.booking-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.booking-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 8px; color: var(--dark); }
.booking-success p { color: var(--gray); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-label { text-align: left; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 32px; color: var(--dark); line-height: 1.2; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding: 16px; background: var(--cream); border-radius: 0; border: 1px solid var(--border); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 700; font-size: .9rem; margin-bottom: 4px; color: var(--dark); }
.contact-item p, .contact-item a { color: var(--gray); font-size: .88rem; }
.contact-item a:hover { color: var(--sage); }
.map-embed { border-radius: 0; overflow: hidden; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 250px; border: none; }
.contact-form-box { background: var(--cream); border-radius: 0; padding: 36px; border: 1px solid var(--border); }
.contact-form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 24px; color: var(--dark); }

/* FOOTER */
.footer { background: #1A1F1A; color: rgba(255,255,255,.85); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; max-width: 100px; object-fit: contain; }
.footer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-desc { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 0; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; transition: background .2s, transform .2s; color: #fff; text-decoration: none; }
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--warm, #C9A96E); transform: translateY(-2px); }
.footer-col h4 { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--sage); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-credit { width: 100%; margin-top: 12px !important; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.08); text-align: center; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-credit a { color: rgba(201,169,110,.85); text-decoration: none; border-bottom: 1px dotted rgba(201,169,110,.35); transition: color .2s; }
.footer-credit a:hover { color: #C9A96E; }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 600px; background: var(--dark); color: #fff; padding: 20px 24px; border-radius: 0; box-shadow: 0 8px 32px rgba(0,0,0,.3); z-index: 9999; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner p { font-size: .88rem; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--sage); }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btn { padding: 8px 18px; border-radius: 0; border: none; font-weight: 700; font-size: .85rem; cursor: pointer; }
.cookie-accept { background: var(--sage); color: #fff; }
.cookie-decline { background: rgba(255,255,255,.15); color: #fff; }

/* ALERTS */
.alert { padding: 14px 18px; border-radius: 0; margin-bottom: 20px; font-size: .9rem; font-weight: 600; }
.alert-success { background: rgba(122,158,126,.12); border: 1px solid rgba(122,158,126,.3); color: #5C7D60; }
.alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #dc2626; }

/* WHATSAPP FLOTTANT (injecté par main.js) */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,211,102,.4); z-index: 9998; transition: transform .3s ease; animation: whatsapp-pulse 2.8s ease-in-out infinite; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.08); animation-play-state: paused; }
.whatsapp-float:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 4px; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 18px rgba(37,211,102,.55), 0 0 0 12px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
  .whatsapp-float:hover { transform: none; }
}

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .soins-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .gift-card-inner { width: 280px; height: 170px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .about-image-wrap { height: auto; min-height: 0; }
  .about-image { height: auto; }
  .about-image img { height: 400px; max-height: 400px; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .btn-book { display: none; }
  .hamburger { display: flex; }
  .why-grid, .about-grid, .contact-grid, .booking-grid, .gift-grid { grid-template-columns: 1fr; }
  .about-image img { height: 300px; max-height: 300px; }
  .soins-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-form-box { padding: 24px 20px; }
  section { padding: 64px 0; }
  .hero-content h1 { font-size: 2.4rem; }
  .about-badge { right: 0; bottom: -16px; }
  .container { padding: 0 16px; }
  .why-benefits { grid-template-columns: 1fr; }
  .why-text h2 { font-size: 1.7rem; line-height: 1.25; margin-bottom: 16px; }
  .why-image img { height: 360px; }
  .why-quote { left: 12.5%; right: 12.5%; padding: 14px 18px; bottom: 18px; }
  .why-quote p { font-size: .95rem; line-height: 1.5; }
}
@media (max-width: 480px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: 2.1rem; }
  .why-text h2 { font-size: 1.55rem; }
  .why-image img { height: 320px; }
  .why-quote { left: 12.5%; right: 12.5%; padding: 12px 16px; bottom: 14px; }
  .why-quote p { font-size: .9rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .why-benefits { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-benefit { padding: 12px 8px; gap: 6px; }
  .why-benefit-icon { font-size: 1.5rem; }
  .why-benefit-text strong { font-size: .82rem; }
  .why-benefit-text span { font-size: .7rem; }
  .about-values { grid-template-columns: 1fr; }
  .gift-amounts { gap: 8px; }
  .gift-amount-btn { padding: 10px 14px; font-size: .88rem; }
  .booking-form-box { padding: 20px 14px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  .navbar-inner { padding: 0 12px; }
  .soins-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.8rem; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
