/* =========================================================
   Grafik Coiffure — feuille de style
   Palette reprise du site d'origine :
   vert forêt #162317 · or #C39719 · crème #F7F5F0
   Titres : Poppins (≈ omnes-pro) · Corps : EB Garamond (≈ anziano)
   ========================================================= */

:root {
  --green:        #162317;
  --green-soft:   #22331f;
  --green-tint:   #eef1ea;
  --gold:         #c39719;
  --gold-dark:    #a67e12;
  --cream:        #f7f5f0;
  --ink:          #1e241d;
  --muted:        #5c6157;
  --white:        #ffffff;

  --font-head: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --font-body: "EB Garamond", Georgia, "Times New Roman", serif;

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 4px;
  --shadow: 0 18px 45px rgba(22, 35, 23, .12);
  --transition: .3s ease;
}

/* ------------------ Reset ------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  color: var(--green);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); font-weight: 300; letter-spacing: -.01em; }
h2 { font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 .9rem;
}
.eyebrow.center, .center { text-align: center; }

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: .85em 1.9em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-book { background: var(--gold); color: var(--green); }
.btn-book:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-lg { font-size: 1.05rem; padding: 1em 2.4em; }

/* Bouton « Réserver » du header : plus compact, picto + ombre dorée */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .62em 1.35em;
  font-size: .88rem;
  letter-spacing: .05em;
  background: linear-gradient(135deg, #d8ab2b 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--green);
  box-shadow: 0 6px 18px rgba(195, 151, 25, .35);
}
.btn-header .btn-icon { transition: transform var(--transition); }
.btn-header:hover {
  color: var(--green);
  background: linear-gradient(135deg, #e6bb3d 0%, #cfa11f 55%, var(--gold-dark) 100%);
  box-shadow: 0 10px 24px rgba(195, 151, 25, .48);
  transform: translateY(-2px);
}
.btn-header:hover .btn-icon { transform: rotate(-8deg) scale(1.06); }
.btn-header:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(195, 151, 25, .4); }

.link-arrow {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: var(--transition);
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { color: var(--gold-dark); }

/* ------------------ Header ------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22, 35, 23, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 300; font-size: 1.55rem; letter-spacing: .06em; color: var(--green); }
.brand-tagline { font-family: var(--font-head); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.primary-nav ul a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 400;
  color: var(--green-soft);
  padding: .4em 0;
  position: relative;
}
.primary-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: var(--transition);
}
.primary-nav ul a:hover::after, .primary-nav ul a.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-social { color: var(--green); display: inline-flex; transition: var(--transition); }
.nav-social:hover { color: var(--gold-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--green); transition: var(--transition); }

/* ------------------ Hero ------------------ */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; left: 0; right: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(22,35,23,.72) 0%, rgba(22,35,23,.38) 55%, rgba(22,35,23,.15) 100%); }
.hero-content { position: relative; z-index: 3; color: var(--cream); max-width: 720px; padding-top: 4rem; padding-bottom: 5.5rem; }
.hero-wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(48px, 7vw, 104px); z-index: 2; display: block; pointer-events: none; }
.hero-content .eyebrow { color: #e6c968; }
.hero h1 { color: var(--white); margin-bottom: .5em; }
.hero-sub { font-size: 1.3rem; color: rgba(247,245,240,.92); max-width: 34em; margin-bottom: 2rem; }

/* ------------------ Feature sections ------------------ */
.feature { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.feature-alt { background: var(--green-tint); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.feature-text h2 { margin-bottom: .7em; }
.feature-grid.reverse .feature-media { order: 2; }

/* ------------------ Testimonials ------------------ */
.testimonials { padding: clamp(3.5rem, 8vw, 6.5rem) 0; background: var(--green); color: var(--cream); }
.testimonials h2 { color: var(--white); margin-bottom: 2.5rem; }
.testimonials .eyebrow { color: #e6c968; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial {
  margin: 0; background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,201,104,.25);
  border-radius: var(--radius); padding: 2rem 1.7rem; text-align: center;
}
.testimonial-photo { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.2rem; border: 2px solid var(--gold); }
.testimonial blockquote { margin: 0 0 1.2rem; font-size: 1.12rem; font-style: italic; color: rgba(247,245,240,.94); line-height: 1.6; }
.testimonial figcaption { font-family: var(--font-head); font-weight: 500; font-size: .9rem; letter-spacing: .05em; color: var(--gold); }

/* ------------------ Instagram ------------------ */
.instagram { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--cream); }
.instagram h2 { margin-bottom: .3em; }
.instagram-intro { max-width: 44em; margin: 0 auto 2.5rem; color: var(--muted); }
.instagram-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem;
}
.instagram-grid li { margin: 0; }
.instagram-grid a { position: relative; display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.instagram-grid a:hover img { transform: scale(1.07); }
.instagram-grid .ig-ico {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(22, 35, 23, .45); opacity: 0; transition: opacity var(--transition);
}
.instagram-grid .ig-ico::after {
  content: ""; width: 30px; height: 30px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s0 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58 0-4.85-.07c-1.17-.05-1.8-.25-2.23-.41a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.16-.42-.36-1.06-.41-2.23C2.21 15.58 2.2 15.2 2.2 12s0-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.21 8.8 2.2 12 2.2m0 4.38a5.42 5.42 0 1 0 0 10.84 5.42 5.42 0 0 0 0-10.84m0 1.62a3.8 3.8 0 1 1 0 7.6 3.8 3.8 0 0 1 0-7.6m5.6-2.9a1.27 1.27 0 1 0 0 2.54 1.27 1.27 0 0 0 0-2.54'/%3E%3C/svg%3E");
}
.instagram-grid a:hover .ig-ico { opacity: 1; }

/* ------------------ CTA band ------------------ */
.cta-band { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--gold); text-align: center; }
.cta-inner h2 { color: var(--green); margin-bottom: .3em; }
.cta-inner p { color: var(--green-soft); font-size: 1.25rem; margin-bottom: 1.8rem; }
.cta-inner .btn-book { background: var(--green); color: var(--cream); }
.cta-inner .btn-book:hover { background: var(--green-soft); color: var(--white); }

/* ------------------ Footer ------------------ */
.site-footer { background: var(--green); color: rgba(247,245,240,.82); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand-name { color: var(--white); font-size: 1.6rem; }
.footer-brand p { margin: .8rem 0 1.2rem; max-width: 26em; }
.footer-social { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-family: var(--font-head); font-size: .9rem; }
.footer-social:hover { color: #e6c968; }
.site-footer h3 { color: var(--white); font-size: 1.05rem; letter-spacing: .04em; margin-bottom: 1rem; }
.footer-hours ul, .footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px solid rgba(247,245,240,.1); font-size: 1rem; }
.footer-nav li { padding: .28rem 0; }
.footer-nav a { transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { margin: 1.2rem 0; font-size: 1rem; font-style: normal; line-height: 1.9; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(247,245,240,.12); padding: 1.4rem 0; }
.footer-bottom p { margin: 0; font-family: var(--font-head); font-size: .82rem; color: rgba(247,245,240,.6); text-align: center; }

/* ------------------ Responsive ------------------ */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    background: var(--cream); padding: 1.8rem var(--gutter) 2.2rem;
    border-bottom: 1px solid rgba(22,35,23,.1);
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 1.1rem; width: 100%; }
  .primary-nav ul a { font-size: 1.15rem; }
  .nav-actions { width: 100%; justify-content: space-between; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid.reverse .feature-media { order: 0; }
  .feature-media img { aspect-ratio: 3 / 2; max-height: 420px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   PAGES INTÉRIEURES — composants partagés
   ========================================================= */

/* Hero de page intérieure (plus court que le hero d'accueil) */
.page-hero { position: relative; min-height: min(52vh, 460px); display: flex; align-items: center; overflow: hidden; }
.page-hero .hero-bg { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,35,23,.55) 0%, rgba(22,35,23,.5) 100%); }
.page-hero .hero-content { position: relative; z-index: 3; color: var(--cream); text-align: center; margin: 0 auto; padding: 3.5rem 0 4.5rem; max-width: 820px; }
.page-hero .eyebrow { color: #e6c968; }
.page-hero h1 { color: var(--white); margin-bottom: .3em; }
.page-hero .page-hero-sub { font-size: 1.25rem; color: rgba(247,245,240,.92); margin: 0 auto; max-width: 40em; }

/* Fil d'Ariane simple */
.breadcrumb { font-family: var(--font-head); font-size: .82rem; letter-spacing: .04em; color: var(--muted); padding: 1.1rem 0; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--green); }

/* Bloc de texte long (mentions légales, intro) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.2rem; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink); }
.prose a { color: var(--gold-dark); border-bottom: 1px solid rgba(195,151,25,.4); }
.prose .legal-meta { background: var(--green-tint); border-radius: var(--radius); padding: 1.5rem 1.8rem; margin-bottom: 2rem; }
.prose .legal-meta ul { list-style: none; margin: 0; padding: 0; }
.prose .legal-meta li { padding: .3rem 0; border-bottom: 1px solid rgba(22,35,23,.08); }
.prose .legal-meta li:last-child { border-bottom: 0; }
.prose .legal-meta strong { font-family: var(--font-head); font-weight: 500; color: var(--green); }

/* Grille de services (Nos formules) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  background: var(--white); border: 1px solid rgba(22,35,23,.08);
  border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(195,151,25,.4); }
.service-card h3 { font-size: 1.15rem; color: var(--green); margin-bottom: .5rem; }
.service-card h3::before { content: ""; display: block; width: 34px; height: 2px; background: var(--gold); margin-bottom: .9rem; }
.service-card p { font-size: 1.02rem; color: var(--muted); margin: 0; }

/* Tableau de prix (Tarifs) */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 3.5rem; }
.price-block { break-inside: avoid; }
.price-block > h2 { font-size: 1.6rem; margin-bottom: 1.2rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-row { display: flex; align-items: baseline; gap: .4rem; padding: .55rem 0; }
.price-row .name { color: var(--green); font-size: 1.1rem; }
.price-row .name small { display: block; font-size: .86rem; color: var(--muted); font-style: italic; }
.price-row .leader { flex: 1 1 auto; border-bottom: 1px dotted rgba(22,35,23,.35); transform: translateY(-5px); min-width: 18px; }
.price-row .price { font-family: var(--font-head); font-weight: 500; color: var(--gold-dark); white-space: nowrap; font-size: 1.05rem; }
.pricing-note { margin-top: 2rem; text-align: center; font-style: italic; color: var(--muted); }
.pricing-note strong { color: var(--green); font-style: normal; }

/* Layout Contact (infos + formulaire) */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.7rem; }
.info-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.info-list li { display: flex; gap: .9rem; padding: .7rem 0; border-bottom: 1px solid rgba(22,35,23,.08); }
.info-list .info-ico { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }
.info-list a:hover { color: var(--gold-dark); }
.info-hours { margin-top: 1.6rem; }
.info-hours h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.info-hours ul { list-style: none; margin: 0; padding: 0; }
.info-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .28rem 0; border-bottom: 1px solid rgba(22,35,23,.06); }

/* Formulaire (Brevo) */
.contact-form { background: var(--white); border: 1px solid rgba(22,35,23,.08); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 1.5rem; margin-bottom: .3em; }
.contact-form .form-intro { color: var(--muted); margin-bottom: 1.6rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--green); margin-bottom: .4rem; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink);
  padding: .75rem .9rem; background: var(--cream); border: 1px solid rgba(22,35,23,.15);
  border-radius: var(--radius); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(195,151,25,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.field-consent input { width: auto; margin-top: 4px; }
.contact-form .btn { width: 100%; text-align: center; border: 0; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: var(--radius); padding: .9rem 1.1rem; margin-bottom: 1.4rem; font-size: 1rem; }
.form-status.is-ok { background: var(--green-tint); color: var(--green); border: 1px solid rgba(22,35,23,.15); }
.form-status.is-error { background: #fbeaea; color: #8a2020; border: 1px solid rgba(138,32,32,.25); }
.contact-form.is-sending .btn { opacity: .6; pointer-events: none; }

/* Carte */
.map-embed { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Section intro générique */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.2rem, 5vw, 3.5rem) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 2.2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .field-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 40vh; }
}
