/* ============================================================
   Sens Cabinet — stylesheet
   ============================================================ */

:root {
  --green-deep:  #4A6E5E;
  --green-mid:   #5C7E6E;
  --green-light: #A8C4B4;
  --ivory:       #FAF8F3;
  --ivory-dark:  #F0EBE1;
  --stone:       #E2DAD0;
  --text:        #1A1A18;
  --muted:       #6A6660;
  --white:       #FFFFFF;

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

  --max: 1160px;
  --ease: 0.3s ease;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.wrap {
  width: min(var(--max), 100% - 3rem);
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img {
  height: 40px;
  width: auto;
  /* Le logo est blanc sur fond transparent — on l'inverse pour le header clair */
  filter: invert(1);
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — éditorial
   ============================================================ */
.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: end;
  padding-top: 6rem;
}

.hero-text {
  padding: 0 3rem 5rem 0;
}

.hero-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
}

.hero-name {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-dark {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.btn-dark:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); }

.hero-image-col {
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 520px;
}

.hero-scroll {
  padding: 1.5rem 0;
  border-top: 1px solid var(--stone);
}

.hero-scroll-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-scroll p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--ease);
}
.scroll-arrow:hover { color: var(--green-deep); }
.scroll-arrow svg { transition: transform var(--ease); }
.scroll-arrow:hover svg { transform: translateY(3px); }

/* ============================================================
   SECTIONS — structure commune
   ============================================================ */
.section {
  padding-block: 7rem;
}

.section--ivory  { background: var(--ivory); }
.section--warm   { background: var(--ivory-dark); }
.section--stone  { background: var(--stone); }

/* Chapeau de section */
.section-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 4rem;
}

.section-intro p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   MÉDIATION
   ============================================================ */
.mediation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.mediation-types {
  margin-bottom: 3rem;
}

.mediation-types-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.type-list {
  border-top: 1px solid var(--stone);
}

.type-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone);
}

.type-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.85;
}

.type-item span {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 3rem;
  border-top: 1px solid var(--stone);
  margin-top: 3rem;
}

.price-tag {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--green-deep);
  line-height: 1;
}

.price-tag small {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.4rem;
}

/* Principes */
.principles-col h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.principle-group {
  margin-bottom: 2rem;
}

.principle-group h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.principle-group ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.principle-group ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ============================================================
   THÉRAPIE
   ============================================================ */
.therapie-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.domains-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--stone);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.domain-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.domain-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

.therapie-aside {
  position: sticky;
  top: 90px;
}

.aside-block {
  background: var(--green-deep);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
}

.aside-block p {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.aside-block .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.aside-block .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  filter: grayscale(15%);
}

.contact-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.contact-role {
  font-size: 0.82rem;
  color: var(--green-mid);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}

.coord-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.coord-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-mid);
}

.coord-item a {
  color: var(--text);
  transition: color var(--ease);
}
.coord-item a:hover { color: var(--green-mid); }

.contact-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--stone);
}

.ressources-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.ressources-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ressources-links a {
  font-size: 0.88rem;
  color: var(--green-mid);
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--ease), color var(--ease);
}
.ressources-links a:hover {
  color: var(--green-deep);
  text-decoration-color: currentColor;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  padding-block: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.footer-copy a {
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer-copy a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-text { padding: 0 0 3rem; }

  .hero-image-col {
    height: 380px;
    width: 100%;
  }
  .hero-image-col img { min-height: unset; }

  .mediation-layout,
  .therapie-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .therapie-aside { position: static; }
}

@media (max-width: 640px) {
  .section { padding-block: 4.5rem; }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--stone);
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .main-nav a { font-size: 0.9rem; }
  .nav-toggle { display: flex; }

  .hero-scroll-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .principles-col { margin-top: 0; }
}
