/* =========================================================
   AMVO MONACO — Design System
   Ivoire chaud / Anthracite / Or champagne / Nude poudré
   Display: Cormorant Garamond — Corps: Jost — Utilitaire: Jost (tracked)
   ========================================================= */

:root{
  --ivoire: #FBF7F1;
  --ivoire-2: #F4EDE3;
  --anthracite: #1B1815;
  --anthracite-2: #2A2521;
  --or: #B8934A;
  --or-clair: #D4B26A;
  --or-pale: #EFE1C2;
  --nude: #E7D2C4;
  --blanc: #FFFFFF;
  --ligne: rgba(27,24,21,0.10);
  --ligne-clair: rgba(255,255,255,0.16);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1200px;
  --radius: 2px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --dur: 0.9s;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--ivoire);
  color: var(--anthracite);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.01em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before{
  content: '';
  width: 28px;
  height: 1px;
  background: var(--or);
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 1.5px solid var(--or);
  outline-offset: 4px;
}

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled{
  padding: 14px 0;
  background: rgba(251,247,241,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--ligne);
}
.logo{
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--anthracite);
}
.logo .dot{ color: var(--or); }

.nav-desktop{ display: flex; align-items: center; gap: 44px; }
.nav-desktop a{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after{
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width .4s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after{ width: 100%; }
.nav-desktop a.active{ color: var(--or); }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid var(--anthracite);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.nav-cta:hover{ background: var(--anthracite); color: var(--ivoire); }

.burger{
  display: none;
  width: 26px; height: 18px;
  position: relative;
  background: none; border: none; cursor: pointer;
  z-index: 1100;
}
.burger span{
  position: absolute; left: 0; width: 100%; height: 1px;
  background: var(--anthracite);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 8px; }
.burger span:nth-child(3){ top: 16px; }
.nav-open .burger span:nth-child(1){ top: 8px; transform: rotate(45deg); }
.nav-open .burger span:nth-child(2){ opacity: 0; }
.nav-open .burger span:nth-child(3){ top: 8px; transform: rotate(-45deg); }

.nav-mobile{
  position: fixed; inset: 0;
  background: var(--anthracite);
  z-index: 1050;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.nav-open .nav-mobile{ opacity: 1; visibility: visible; }
.nav-mobile a{
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ivoire-2);
  letter-spacing: 0.02em;
}
.nav-mobile a.active{ color: var(--or-clair); }
.nav-mobile .nav-cta{ border-color: var(--or); color: var(--or-clair); margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .45s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--anthracite); color: var(--ivoire); border-color: var(--anthracite); }
.btn-primary:hover{ background: var(--or); border-color: var(--or); color: var(--anthracite); }
.btn-ghost{ background: transparent; color: var(--anthracite); border-color: var(--anthracite); }
.btn-ghost:hover{ background: var(--anthracite); color: var(--ivoire); }
.btn-light{ background: transparent; color: var(--ivoire); border-color: rgba(255,255,255,0.5); }
.btn-light:hover{ background: var(--ivoire); color: var(--anthracite); border-color: var(--ivoire); }
.btn-whatsapp{ background: #1B1815; color: var(--or-clair); border-color: var(--or); }
.btn-whatsapp:hover{ background: var(--or); color: var(--anthracite); }
.btn-row{ display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--anthracite);
}
.hero-media{
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 16s var(--ease) forwards;
  filter: saturate(0.92) brightness(0.72);
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero-media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,24,21,0.55) 0%, rgba(27,24,21,0.25) 38%, rgba(27,24,21,0.85) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  color: var(--ivoire);
  padding-bottom: 96px;
  padding-top: 220px;
  width: 100%;
}
.hero .eyebrow{ color: var(--or-clair); }
.hero .eyebrow::before{ background: var(--or-clair); }
.hero h1{
  font-size: clamp(52px, 9vw, 118px);
  margin: 22px 0 8px;
  color: var(--ivoire);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) .25s forwards;
}
.hero-sub{
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  max-width: 480px;
  color: var(--ivoire-2);
  margin: 0 0 40px;
  opacity: 0;
  animation: riseIn 1.1s var(--ease) .45s forwards;
}
.hero-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0;
  animation: riseIn 1.1s var(--ease) .65s forwards;
}
@keyframes riseIn{
  from{ opacity: 0; transform: translateY(28px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-rating{
  display: flex; align-items: center; gap: 14px;
}
.hero-rating .stars{ color: var(--or-clair); font-size: 17px; letter-spacing: 2px; }
.hero-rating .rating-text{ font-size: 13px; letter-spacing: 0.06em; color: var(--ivoire-2); }
.hero-rating .rating-text strong{ color: var(--ivoire); font-family: var(--font-display); font-size: 18px; font-weight: 600; }

.scroll-cue{
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ivoire-2);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: .8;
}
.scroll-cue .line{ width: 1px; height: 40px; background: linear-gradient(var(--or-clair), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Sections generic ---------- */
section{ padding: 130px 0; position: relative; }
.section-dark{ background: var(--anthracite); color: var(--ivoire-2); }
.section-dark h2{ color: var(--ivoire); }
.section-dark .eyebrow{ color: var(--or-clair); }
.section-dark .eyebrow::before{ background: var(--or-clair); }
.section-nude{ background: var(--ivoire-2); }

.section-head{
  max-width: 640px;
  margin-bottom: 72px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(36px, 5vw, 56px); margin-top: 20px; }
.section-head p{ margin-top: 22px; font-size: 17px; color: rgba(27,24,21,0.68); }
.section-dark .section-head p{ color: rgba(251,247,241,0.68); }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: .08s; }
.reveal-delay-2.is-visible{ transition-delay: .16s; }
.reveal-delay-3.is-visible{ transition-delay: .24s; }
.reveal-delay-4.is-visible{ transition-delay: .32s; }
.reveal-delay-5.is-visible{ transition-delay: .40s; }
.reveal-delay-6.is-visible{ transition-delay: .48s; }

/* ---------- Stats strip ---------- */
.stats-strip{
  background: var(--ivoire);
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
  padding: 48px 0;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat{ text-align: center; padding: 0 12px; }
.stat b{
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--anthracite);
}
.stat span{ font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(27,24,21,0.55); }
.stat .stars{ color: var(--or); font-size: 18px; }

/* ---------- Services grid (home teaser) ---------- */
.teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ligne);
}
.teaser-card{
  background: var(--ivoire);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.teaser-card:hover{ background: var(--blanc); }
.teaser-card .num{
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--or);
  letter-spacing: 0.1em;
}
.teaser-card h3{
  font-size: 26px;
  margin: 20px 0 12px;
}
.teaser-card p{ font-size: 14.5px; color: rgba(27,24,21,0.62); margin: 0; }
.teaser-card::after{
  content: '';
  position: absolute; left: 36px; bottom: 0;
  width: 0; height: 2px; background: var(--or);
  transition: width .5s var(--ease);
}
.teaser-card:hover::after{ width: 44px; }

/* ---------- Service cards (soins page) ---------- */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.service-card{
  background: var(--blanc);
  border: 1px solid var(--ligne);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 60px -20px rgba(27,24,21,0.18); }
.service-media{ position: relative; height: 220px; overflow: hidden; }
.service-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-media img{ transform: scale(1.08); }
.service-body{ padding: 30px 30px 32px; }
.service-body h3{ font-size: 24px; margin-bottom: 10px; }
.service-body p{ font-size: 14.5px; color: rgba(27,24,21,0.62); margin: 0 0 18px; }
.service-tags{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-tags span{
  font-size: 11px; letter-spacing: 0.06em;
  padding: 6px 12px;
  background: var(--ivoire-2);
  color: rgba(27,24,21,0.7);
  border: 1px solid var(--ligne);
}
.service-price{
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--ligne);
  padding-top: 16px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--or);
}

/* ---------- About split ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.split-media{ position: relative; }
.split-media img{ width: 100%; height: 560px; object-fit: cover; }
.split-media .frame{
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--or);
  z-index: -1;
}
.split-text h2{ font-size: clamp(34px, 4.5vw, 50px); margin: 20px 0 26px; }
.split-text p{ color: rgba(27,24,21,0.68); margin-bottom: 18px; font-size: 16.5px; }
.split-list{ margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.split-list li{ display: flex; align-items: baseline; gap: 16px; font-size: 15px; }
.split-list li .mark{ color: var(--or); font-family: var(--font-display); font-size: 18px; }

/* ---------- Values ---------- */
.values-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 20px; }
.value{ text-align: left; border-top: 1px solid var(--ligne-clair); padding-top: 26px; }
.value .n{ font-family: var(--font-display); color: var(--or); font-size: 18px; }
.value h4{ font-size: 21px; color: var(--ivoire); margin: 14px 0 10px; }
.value p{ font-size: 14.5px; color: rgba(251,247,241,0.6); margin: 0; }

/* ---------- Reviews ---------- */
.rating-hero{ text-align: center; margin-bottom: 90px; }
.rating-hero .big-num{
  font-family: var(--font-display);
  font-size: clamp(90px, 14vw, 160px);
  line-height: 1;
  font-weight: 600;
}
.rating-hero .stars{ color: var(--or); font-size: 30px; letter-spacing: 8px; margin: 14px 0; }
.rating-hero p{ font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(27,24,21,0.55); }

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card{
  background: var(--blanc);
  border: 1px solid var(--ligne);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.review-card .quote-mark{ font-family: var(--font-display); font-size: 60px; color: var(--or-pale); line-height: 0.5; }
.review-card .stars{ color: var(--or); font-size: 15px; letter-spacing: 3px; }
.review-card p{ font-size: 16px; font-style: italic; color: rgba(27,24,21,0.78); flex: 1; margin: 0; }
.review-card .author{ display: flex; align-items: center; gap: 14px; }
.review-avatar{
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--or-pale); color: var(--anthracite);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.author-name{ font-size: 14px; letter-spacing: 0.03em; }
.author-sub{ font-size: 11px; color: rgba(27,24,21,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.info-list{ display: flex; flex-direction: column; gap: 30px; margin-top: 36px; }
.info-item{ display: flex; gap: 20px; align-items: flex-start; }
.info-icon{
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--or);
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
}
.info-item h4{ font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; color: rgba(251,247,241,0.5); }
.info-item p, .info-item a{ font-size: 17px; color: var(--ivoire); }
.info-item a:hover{ color: var(--or-clair); }
.hours-table{ width: 100%; margin-top: 6px; border-collapse: collapse; }
.hours-table td{ padding: 5px 0; font-size: 14.5px; color: rgba(251,247,241,0.75); }
.hours-table td:last-child{ text-align: right; color: var(--ivoire); }
.hours-table tr.today td{ color: var(--or-clair); }

.map-wrap{
  margin-top: 44px;
  border: 1px solid var(--ligne-clair);
  filter: grayscale(0.4) contrast(1.05);
  height: 320px;
}
.map-wrap iframe{ width: 100%; height: 100%; border: 0; }

.contact-form{
  background: var(--ivoire);
  padding: 52px 44px;
}
.contact-form h3{ font-size: 28px; margin-bottom: 8px; }
.contact-form .sub{ font-size: 14px; color: rgba(27,24,21,0.55); margin-bottom: 34px; }
.field{ margin-bottom: 24px; }
.field label{ display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; color: rgba(27,24,21,0.55); }
.field input, .field textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ligne);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--anthracite);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus{ border-color: var(--or); outline: none; }
.field textarea{ resize: vertical; min-height: 100px; }
.form-note{ font-size: 12px; color: rgba(27,24,21,0.45); margin-top: 18px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: var(--anthracite);
  color: var(--ivoire);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,147,74,0.18), transparent 60%);
}
.cta-banner h2{ font-size: clamp(38px,6vw,64px); position: relative; }
.cta-banner p{ color: rgba(251,247,241,0.65); max-width: 480px; margin: 22px auto 44px; position: relative; }
.cta-banner .btn-row{ justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--anthracite);
  color: rgba(251,247,241,0.6);
  padding: 80px 0 30px;
  border-top: 1px solid var(--ligne-clair);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand .logo{ color: var(--ivoire); }
.footer-brand p{ margin-top: 18px; font-size: 14px; max-width: 260px; }
.footer-col h5{ font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivoire); margin-bottom: 20px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 14px; transition: color .3s; }
.footer-col a:hover{ color: var(--or-clair); }
.footer-bottom{
  border-top: 1px solid var(--ligne-clair);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp{
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #1B1815;
  border: 1px solid var(--or);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--or-clair);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.float-whatsapp:hover{ transform: scale(1.08); background: var(--or); color: var(--anthracite); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  position: relative;
  padding: 220px 0 110px;
  background: var(--anthracite);
  color: var(--ivoire);
  overflow: hidden;
}
.page-hero-media{ position: absolute; inset: 0; }
.page-hero-media img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.page-hero-media::after{ content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,24,21,0.5), var(--anthracite) 92%); }
.page-hero .content{ position: relative; z-index: 2; }
.page-hero h1{ font-size: clamp(44px, 7vw, 84px); margin-top: 18px; }
.page-hero p{ margin-top: 20px; max-width: 520px; color: rgba(251,247,241,0.65); font-size: 17px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .nav-desktop{ display: none; }
  .burger{ display: block; }
  .teaser-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; gap: 46px; }
  .split-media img{ height: 400px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .values-grid{ grid-template-columns: 1fr; gap: 34px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 640px){
  .container{ padding: 0 20px; }
  section{ padding: 90px 0; }
  .hero-content{ padding-top: 160px; padding-bottom: 70px; }
  .hero-bottom{ flex-direction: column; align-items: flex-start; }
  .services-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom{ flex-direction: column; }
  .contact-form{ padding: 38px 26px; }
  .page-hero{ padding: 170px 0 80px; }
  .btn{ padding: 15px 26px; }
  .rating-hero .big-num{ font-size: 100px; }
  .section-head{ margin-bottom: 48px; }
  .split-media img{ height: 300px; }
}
