/* ===========================================================
   CABINET ÉQUILIBRE — Centre de thérapies manuelles premium
   Style : sanctuaire bien-être · teal + sage + cream + copper
   =========================================================== */

:root {
  --cream: #f4f1ea;
  --cream-warm: #ede7d8;
  --cream-deep: #e3dac4;
  --teal: #1f6f6f;
  --teal-deep: #154f4f;
  --teal-soft: #1f6f6f14;
  --sage: #7a8a6b;
  --sage-soft: #7a8a6b14;
  --copper: #c08c5a;
  --copper-deep: #9e7044;
  --ink: #2a2e2e;
  --ink-soft: #495252;
  --grey-500: #6b7676;
  --grey-300: #b8bdbb;
  --grey-200: #d8dcd8;
  --grey-100: #ebeee9;
  --line: #d4cdb6;
  --shadow-sm: 0 2px 12px rgba(31, 111, 111, 0.08);
  --shadow-md: 0 14px 32px rgba(31, 111, 111, 0.12);
  --shadow-lg: 0 32px 80px -24px rgba(31, 111, 111, 0.25);

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-pad: clamp(80px, 11vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 12px 20px; font-weight: 600; z-index: 9999; }
.skip-link:focus { left: 16px; top: 16px; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px var(--gutter);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { display: inline-flex; width: 38px; height: 38px; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__group { display: flex; flex-direction: column; line-height: 1.1; }
.brand__word { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); font-weight: 500; letter-spacing: -0.005em; }
.brand__word em { font-style: italic; color: var(--teal); }
.brand__sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper); font-weight: 500; margin-top: 4px; }

.primary-nav { display: none; }
@media (min-width: 1024px) { .primary-nav { display: block; } }
.primary-nav ul { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.primary-nav a { font-size: 13px; font-weight: 500; color: var(--ink); transition: color 0.2s; padding: 6px 0; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.primary-nav a:hover { color: var(--teal); }
.primary-nav a:hover::after { transform: scaleX(1); }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  padding: 12px 22px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
}
.cta--teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.cta--teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); transform: translateY(-1px); }
.cta--copper { background: var(--copper); color: #fff; border-color: var(--copper); }
.cta--copper:hover { background: var(--copper-deep); }
.cta--ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.cta--ghost:hover { background: var(--teal); color: #fff; }
.cta--lg { padding: 14px 28px; font-size: 14.5px; }
.cta--full { width: 100%; }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--ink-soft);
  border-radius: 100px;
}
.burger span { display: block; height: 1.5px; width: 18px; background: var(--ink); margin: 0 auto; transition: transform 0.3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu:not([hidden]) { opacity: 1; pointer-events: auto; }
.mobile-menu nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu nav a {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 6.5vw, 2.6rem); color: var(--ink);
  transform: translateX(-20px); opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  transition-delay: calc(0.04s * var(--i, 0));
}
.mobile-menu:not([hidden]) nav a { transform: none; opacity: 1; }
.mobile-menu nav a:hover { color: var(--teal); font-style: italic; }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); opacity: 0; transform: translateY(16px); transition: opacity 0.5s 0.3s, transform 0.5s 0.3s; }
.mobile-menu:not([hidden]) .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__addr { font-size: 13px; color: var(--grey-500); margin: 0; line-height: 1.6; }

/* ===========================================================
   EYEBROW
   =========================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.eyebrow__line { display: inline-block; width: 28px; height: 1px; background: var(--copper); }
.eyebrow--light { color: rgba(244,241,234,0.9); }
.eyebrow--light .eyebrow__line { background: rgba(244,241,234,0.6); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(140px, 17vw, 220px) var(--gutter) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-soft);
  filter: blur(60px);
  z-index: 0;
}
.hero__circle--1 { width: 500px; height: 500px; top: -150px; right: -150px; background: rgba(31, 111, 111, 0.08); }
.hero__circle--2 { width: 400px; height: 400px; bottom: -200px; left: -100px; background: rgba(192, 140, 90, 0.07); }
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 9vw, 100px);
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 600px;
}
.hero__title em { font-style: italic; color: var(--teal); }
.hero__lede { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 32px; max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__pros { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__pros li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.hero__visual { position: relative; margin: 0; }
.hero__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: clamp(20px, 4vw, 60px); }
.hero__visual-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--cream); color: var(--ink);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md);
}
.tag__big { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--teal); line-height: 1; }
.tag__small { font-size: 16px; color: var(--ink-soft); margin-left: 2px; }
.tag__label { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

/* Trust band */
.trust {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--grey-500);
}
.trust__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper); font-weight: 600; flex-shrink: 0; margin-right: 10px; }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.trust__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-300); }

/* ===========================================================
   SECTIONS génériques
   =========================================================== */
.section { padding: var(--section-pad) 0; }
.section--motifs, .section--trouveur, .section--avis, .section--blog, .section--contact { background: var(--cream); }
.section--booking { background: var(--teal); color: var(--cream); }
.section--team { background: var(--cream-warm); }
.section--first-visit { background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal) 100%); color: var(--cream); }

.section__head { max-width: 760px; margin: 0 auto clamp(56px, 8vw, 80px); padding: 0 var(--gutter); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section--booking .section__title,
.section--first-visit .section__title { color: var(--cream); }
.section__title em { font-style: italic; color: var(--teal); }
.section--booking .section__title em,
.section--first-visit .section__title em { color: var(--copper); }
.section__lede { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); }
.section--booking .section__lede,
.section--first-visit .section__lede { color: rgba(244,241,234,0.78); }

/* ===========================================================
   MOTIFS (4 cards)
   =========================================================== */
.motifs {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 20px;
}
@media (min-width: 720px) { .motifs { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1024px) { .motifs { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.motif {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: clamp(16px, 3vw, 28px);
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}
.motif:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--cream); }
.motif__icon {
  width: 56px; height: 56px;
  background: var(--teal-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 22px;
}
.motif__icon svg { width: 28px; height: 28px; }
.motif__title { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--ink); margin: 0 0 12px; line-height: 1.2; letter-spacing: -0.005em; }
.motif__desc { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ===========================================================
   SYMPTOM FINDER
   =========================================================== */
.finder {
  max-width: 820px; margin: 0 auto; padding: 0 var(--gutter);
  position: relative;
  min-height: 340px;
}
.finder__step {
  display: none;
  animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.finder__step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.finder__back {
  background: transparent; border: none;
  font-family: inherit;
  font-size: 13px; color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  cursor: pointer;
  padding: 0;
}
.finder__back:hover { color: var(--teal); }
.finder__question {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink);
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.finder__choices {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .finder__choices { grid-template-columns: 1fr; } }
.finder__choice {
  background: var(--cream);
  border: 1.5px solid var(--line);
  padding: 20px 22px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  font-family: inherit;
}
.finder__choice:hover { border-color: var(--teal); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.finder__choice-icon { font-size: 26px; flex-shrink: 0; }
.finder__choice-label { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.4; }

.finder__step--result { text-align: center; }
.finder__result-eyebrow { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper); font-weight: 600; margin-bottom: 18px; }
.finder__result {
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--sage-soft) 100%);
  border: 1px solid var(--teal);
  padding: 36px 28px;
  border-radius: 24px;
  margin-bottom: 28px;
  text-align: left;
  display: flex; gap: 24px; align-items: center;
  flex-wrap: wrap;
}
.finder__result-img {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  overflow: hidden;
}
.finder__result-img img { width: 100%; height: 100%; object-fit: cover; }
.finder__result-body { flex: 1; min-width: 200px; }
.finder__result-name { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--ink); margin: 0 0 4px; letter-spacing: -0.005em; }
.finder__result-role { font-size: 13px; color: var(--copper); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 12px; }
.finder__result-why { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
.finder__restart {
  display: block; margin: 16px auto 0;
  background: transparent; border: none;
  font-family: inherit;
  font-size: 13px; color: var(--grey-500);
  text-decoration: underline;
  cursor: pointer;
}
.finder__restart:hover { color: var(--ink); }

/* ===========================================================
   BOOKING WIDGET (sur fond teal)
   =========================================================== */
.booking {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .booking { grid-template-columns: 1fr 1.2fr; gap: 72px; } }
.booking__intro .section__title { text-align: left; }
.booking__lede { font-size: 16px; color: rgba(244,241,234,0.85); margin: 16px 0 28px; line-height: 1.75; }
.booking__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.booking__features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(244,241,234,0.9); padding: 14px 18px; background: rgba(255,255,255,0.06); border-radius: 12px; border-left: 2px solid var(--copper); }
.booking__features svg { color: var(--copper); flex-shrink: 0; }

.booking__widget { background: var(--cream); color: var(--ink); padding: 32px 28px; border-radius: 24px; box-shadow: var(--shadow-lg); }
.booking__select-prac { margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.booking__select-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--copper); font-weight: 600; margin-bottom: 12px; }
.booking__pracs { display: flex; flex-wrap: wrap; gap: 10px; }
.prac-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream-warm); border: 1.5px solid transparent;
  padding: 8px 14px 8px 8px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.prac-btn:hover { border-color: var(--teal); }
.prac-btn.is-active { background: var(--teal); color: var(--cream); }
.prac-btn img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.prac-btn span { font-size: 13px; font-weight: 600; line-height: 1.3; text-align: left; }
.prac-btn em { font-style: normal; font-weight: 400; font-size: 11px; opacity: 0.7; }

.booking__cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.booking__cal-head button { width: 32px; height: 32px; background: var(--cream-warm); border: 1px solid var(--line); color: var(--teal); cursor: pointer; font-size: 16px; border-radius: 100px; transition: background 0.2s; font-family: inherit; }
.booking__cal-head button:hover { background: var(--teal-soft); }
.booking__cal-head span { font-size: 14px; color: var(--ink); font-weight: 500; }

.cal-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-bottom: 16px; }
@media (max-width: 600px) { .cal-grid { grid-template-columns: repeat(3, 1fr); } }
.cal-day { background: var(--cream-warm); padding: 10px 6px; border-radius: 10px; text-align: center; }
.cal-day__name { font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-500); font-weight: 600; margin-bottom: 2px; }
.cal-day__num { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 8px; font-weight: 500; }
.cal-slots { display: flex; flex-direction: column; gap: 3px; }
.cal-slot {
  background: rgba(31,111,111,0.08);
  color: var(--teal);
  font-size: 11px; font-weight: 600;
  padding: 4px 2px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.cal-slot:hover { background: var(--teal); color: var(--cream); }
.cal-slot.is-selected { background: var(--teal); color: var(--cream); border-color: var(--copper); font-weight: 700; }
.cal-slot.is-disabled { opacity: 0.3; cursor: not-allowed; }

.booking__confirm {
  background: var(--cream-warm);
  padding: 18px 20px;
  border-radius: 14px;
  border-left: 3px solid var(--teal);
}
.booking__confirm-text { margin: 0 0 14px; font-size: 13.5px; color: var(--ink); }
.booking__confirm-text strong { color: var(--teal); }

/* ===========================================================
   ÉQUIPE
   =========================================================== */
.team {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 28px;
}
@media (min-width: 920px) { .team { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.member {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member__media { aspect-ratio: 4 / 5; overflow: hidden; }
.member__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.member:hover .member__media img { transform: scale(1.04); }
.member__body { padding: 28px 28px 32px; }
.member__role { display: inline-block; background: var(--teal); color: var(--cream); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.member__name { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.005em; }
.member__intro { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.member__tags { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 6px; }
.member__tags li { font-size: 11px; background: var(--cream-warm); color: var(--ink-soft); padding: 4px 10px; border-radius: 100px; font-weight: 500; }
.member__price { font-size: 13.5px; color: var(--ink); margin: 0; padding-top: 18px; border-top: 1px solid var(--line); }
.member__price strong { color: var(--copper); font-family: var(--font-display); font-weight: 500; font-size: 16px; }

/* ===========================================================
   PREMIÈRE VISITE
   =========================================================== */
.first-visit {
  max-width: 900px; margin: 0 auto; padding: 0 var(--gutter);
  list-style: none;
  display: grid; gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.visit-step {
  background: rgba(255,255,255,0.04);
  padding: 32px clamp(24px, 4vw, 40px);
  display: grid; grid-template-columns: 70px 1fr; gap: 24px;
  align-items: start;
  transition: background 0.3s;
}
.visit-step:hover { background: rgba(255,255,255,0.07); }
.visit-step__num {
  width: 56px; height: 56px;
  background: var(--copper);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}
.visit-step__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--cream); margin: 0 0 8px; letter-spacing: -0.005em; }
.visit-step__body p { font-size: 14.5px; line-height: 1.75; color: rgba(244,241,234,0.78); margin: 0; }

/* ===========================================================
   AVIS
   =========================================================== */
.avis-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 24px;
}
@media (min-width: 720px) { .avis-grid { grid-template-columns: 1fr 1fr; } }
.avis {
  background: var(--cream-warm);
  padding: 28px 30px;
  border-radius: 20px;
  border-left: 3px solid var(--teal);
}
.avis__stars { color: var(--copper); font-size: 16px; letter-spacing: 0.12em; margin-bottom: 12px; }
.avis__txt { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; font-weight: 400; }
.avis__author { font-size: 12.5px; color: var(--grey-500); margin: 0; }

/* ===========================================================
   BLOG
   =========================================================== */
.blog-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 28px;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.post:hover .post__media img { transform: scale(1.05); }
.post__cat { position: absolute; top: 14px; left: 14px; background: var(--copper); color: var(--cream); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 100px; }
.post__body { padding: 22px 24px 26px; }
.post__date { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--copper); font-weight: 600; margin-bottom: 10px; display: block; }
.post__title { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); margin: 0 0 10px; line-height: 1.3; letter-spacing: -0.005em; }
.post__desc { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 56px;
}
@media (min-width: 1024px) { .contact { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact__info { list-style: none; padding: 0; margin: 0 0 32px; }
.contact__info li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start; font-size: 14px; }
.contact__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--copper); font-weight: 600; padding-top: 3px; }

.map-card {
  background: var(--cream-warm);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.map-card__visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.map-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) opacity(0.85); }
.map-pin {
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 22px;
  background: var(--copper);
  border: 4px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(192,140,90,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(192,140,90,0.2); }
  50% { box-shadow: 0 0 0 18px rgba(192,140,90,0); }
}
.map-card__foot { padding: 18px 22px; font-size: 13.5px; line-height: 1.5; }
.map-card__foot strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.map-card__foot span { color: var(--ink-soft); }

.newsletter {
  background: var(--teal);
  color: var(--cream);
  padding: 28px 30px;
  border-radius: 20px;
}
.newsletter__eyebrow { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--copper); font-weight: 600; margin-bottom: 10px; }
.newsletter__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0 0 6px; color: var(--cream); letter-spacing: -0.005em; }
.newsletter__desc { font-size: 13.5px; color: rgba(244,241,234,0.8); margin: 0 0 18px; line-height: 1.6; }
.newsletter__form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter__form input { flex: 1; min-width: 180px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); padding: 12px 16px; font-family: inherit; font-size: 14px; border-radius: 100px; }
.newsletter__form input::placeholder { color: rgba(244,241,234,0.55); }
.newsletter__form input:focus { outline: none; border-color: var(--copper); }
.newsletter__form button { background: var(--copper); color: var(--cream); border: none; padding: 12px 22px; font-weight: 600; font-size: 13.5px; font-family: inherit; border-radius: 100px; cursor: pointer; transition: background 0.2s; }
.newsletter__form button:hover { background: var(--copper-deep); }
.newsletter__success { color: var(--copper); font-size: 13px; margin: 12px 0 0; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--teal-deep); color: var(--cream); padding: 64px var(--gutter) 32px; }
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; display: grid; gap: 48px; margin-bottom: 48px; }
@media (min-width: 920px) { .site-footer__inner { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.site-footer__brand .brand__mark svg circle { stroke: var(--copper); }
.site-footer__brand .brand__word { color: var(--cream); }
.site-footer__brand .brand__word em { color: var(--copper); }
.site-footer__brand .brand__sub { color: rgba(244,241,234,0.55); }
.site-footer__tag { color: rgba(244,241,234,0.7); font-size: 14.5px; margin: 18px 0 0; font-style: italic; font-family: var(--font-display); }
.site-footer__cols { display: grid; gap: 36px; }
@media (min-width: 720px) { .site-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.site-footer__col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper); font-weight: 700; margin: 0 0 14px; }
.site-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.site-footer__cols li { padding: 4px 0; font-size: 13.5px; color: rgba(244,241,234,0.75); line-height: 1.6; }
.site-footer__cols a { color: rgba(244,241,234,0.75); transition: color 0.2s; }
.site-footer__cols a:hover { color: var(--copper); }
.site-footer__legal { max-width: var(--max-w); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(244,241,234,0.15); font-size: 11.5px; color: rgba(244,241,234,0.4); letter-spacing: 0.04em; text-align: center; }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================
   STICKY CTA mobile
   =========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--cream);
  padding: 14px 22px;
  font-weight: 600; font-size: 13px;
  border-radius: 100px;
  z-index: 80;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  box-shadow: var(--shadow-md);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
