/* ─── TOKENS ─────────────────────────────── */
:root {
  --sand:       #F7F1E8;
  --sand-deep:  #EDE4D6;
  --ink:        #1C1410;
  --ink-mid:    #3D2B1F;
  --ink-light:  #7A5C4A;
  --terracotta: #9B4E2E;
  --terra-mid:  #B5603A;
  --white:      #FDFAF5;
  --rule:       rgba(28,20,16,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILS ──────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.rule { width: 32px; height: 1px; background: var(--terracotta); margin: 20px 0; opacity: 0.6; }

/* ─── NAV ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.nav-logo span {
  font-style: italic;
  color: var(--terracotta);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.btn-pill {
  display: inline-block;
  padding: 10px 24px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-pill:hover { background: var(--terra-mid); transform: translateY(-1px); }
.btn-pill--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(28,20,16,0.25);
}
.btn-pill--ghost:hover { background: var(--sand); border-color: var(--ink-light); transform: translateY(-1px); }
.btn-pill--light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(253,250,245,0.35);
}
.btn-pill--light:hover { background: rgba(253,250,245,0.1); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,20,16,0.72) 0%,
    rgba(28,20,16,0.3) 50%,
    rgba(28,20,16,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
  max-width: 680px;
}
.hero-content .eyebrow { color: rgba(253,250,245,0.65); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(253,250,245,0.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ─── STRIP ──────────────────────────────── */
.strip {
  background: var(--ink-mid);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(253,250,245,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-a {
  position: absolute;
  top: 0; left: 0;
  width: 76%;
  height: 82%;
  object-fit: cover;
}
.about-img-b {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border: 6px solid var(--white);
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.about-text h2 em { font-style: italic; }
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.about-sig p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.about-sig small {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ─── NATUREL ────────────────────────────── */
.naturel {
  background: var(--sand);
  padding: 80px 0;
  border-top: 1px solid var(--sand-deep);
  border-bottom: 1px solid var(--sand-deep);
}
.naturel-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-deep);
}
.naturel-item {
  background: var(--sand);
  padding: 40px 32px;
  text-align: center;
}
.naturel-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.naturel-item span {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ─── PRESTATIONS ────────────────────────── */
.prestations {
  padding: 120px 0;
  background: var(--white);
}
.prestations-header {
  text-align: center;
  margin-bottom: 80px;
}
.prestations-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.presta-col {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
}
.presta-col:last-child { border-right: none; }
.presta-col-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 32px;
}
.presta-col-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.presta-col-sub {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 24px;
}
.presta-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}
.presta-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  gap: 16px;
}
.presta-list li span {
  color: var(--ink-light);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.presta-col-cta {
  margin-top: 28px;
}

/* ─── FORFAITS ───────────────────────────── */
.forfaits {
  background: var(--sand);
  padding: 120px 0;
}
.forfaits-header {
  margin-bottom: 60px;
}
.forfaits-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.forfaits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.forfait-card {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.forfait-card.featured {
  background: var(--ink-mid);
}
.forfait-card.featured .forfait-title,
.forfait-card.featured .forfait-desc { color: var(--white); }
.forfait-card.featured .forfait-price { color: var(--terracotta); }
.forfait-card.featured .forfait-detail { color: rgba(253,250,245,0.55); }
.forfait-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.forfait-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 300px;
}
.forfait-right { text-align: right; flex-shrink: 0; }
.forfait-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.forfait-detail {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

/* ─── GALERIE ────────────────────────────── */
.galerie {
  padding: 120px 0;
  background: var(--white);
}
.galerie-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.galerie-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: 12px;
}
.galerie-item {
  overflow: hidden;
  position: relative;
}
.galerie-item:first-child { grid-row: span 2; }
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galerie-item:hover img { transform: scale(1.04); }

/* ─── FAQ ────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--sand);
}
.faq-header { margin-bottom: 60px; }
.faq-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
}
.faq-a strong { color: var(--ink); font-weight: 500; }

/* ─── TEMOIGNAGES ────────────────────────── */
.temoignages {
  padding: 120px 0;
  background: var(--ink-mid);
}
.temo-header {
  text-align: center;
  margin-bottom: 64px;
}
.temo-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
}
.temo-header .eyebrow { color: var(--terracotta); justify-content: center; display: block; }
.temo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.temo-card {
  background: var(--ink-mid);
  padding: 40px 36px;
}
.temo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.temo-stars span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.temo-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(253,250,245,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.temo-author strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.temo-author span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,250,245,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── CTA BAND ───────────────────────────── */
.cta-band {
  background: var(--sand);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--sand-deep);
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--ink);
  padding: 64px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-logo span { font-style: italic; color: var(--terracotta); }
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,250,245,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,250,245,0.65);
  line-height: 1.5;
}
.footer-col ul li a { transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,250,245,0.3);
}

/* ─── FLOATING ───────────────────────────── */
.floats {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(28,20,16,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(28,20,16,0.3); }
.float-btn svg { width: 20px; height: 20px; }
.float-wa { background: var(--ink-mid); }
.float-share { background: var(--terracotta); }
.float-tip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--sans);
}
.float-btn:hover .float-tip { opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1000px) {
  .wrap { padding: 0 24px; }
  .wrap--narrow { padding: 0 24px; }
  .hero-content { max-width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; }
  .naturel-inner { grid-template-columns: 1fr 1fr; }
  .prestations-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .presta-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .forfaits-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-item:first-child { grid-row: span 1; }
  .faq-item { grid-template-columns: 1fr; gap: 12px; }
  .temo-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .naturel-inner { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  .forfait-card { flex-direction: column; }
  .forfait-right { text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero h1 { font-size: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
