/* ============================================
   Naomi Bouskila — Pédicure-Podologue
   Feuille de style principale
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --color-bg: #F5EFE3;
  --color-bg-white: #FFFFFF;
  --color-bg-alt: #FAF6EC;
  --color-dark: #1F2A26;
  --color-text: #2C3835;
  --color-text-soft: #5C6B65;
  --color-accent: #2A9D8F;
  --color-accent-dark: #1F7A6F;
  --color-accent-soft: #E1F2EF;
  --color-border: #E5DCCC;
  --color-border-soft: #EDE6D7;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(31, 42, 38, 0.06);
  --shadow-md: 0 4px 20px rgba(31, 42, 38, 0.08);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

/* ---------- Helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.section {
  padding: 90px 0;
}
.section--alt { background: var(--color-bg-white); }
.section__lead {
  max-width: 620px;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  margin-bottom: 50px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--color-accent);
}
.btn--ghost:hover {
  background: var(--color-accent);
  color: #fff;
}
.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---------- Photo pleine largeur (accueil) ---------- */
.full-photo {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.full-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 760px) {
  .full-photo img { max-height: 280px; }
}

/* ---------- Bannière photo cabinet (accueil) ---------- */
.photo-band {
  padding: 30px 0 70px;
  background: var(--color-bg);
}
.photo-band__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  height: 380px;
}
.photo-band__item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.photo-band__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.photo-band__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.photo-band__item:hover img {
  transform: scale(1.05);
}
.photo-band__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.photo-band__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.photo-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 760px) {
  .photo-band__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
    height: auto;
  }
}

/* ---------- Soin complémentaire (réflexologie) ---------- */
.soin-detail--complementary {
  background: var(--color-bg-alt);
  border-top: 1px dashed var(--color-border);
}
.soin-detail--complementary .icon-large {
  background: rgba(42, 157, 143, 0.08);
}

/* ---------- Photo inline dans article ---------- */
.inline-photo {
  margin: 0 0 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-md);
}
.inline-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
}
.inline-photo figcaption {
  padding: 14px 22px;
  font-size: 0.92rem;
  color: var(--color-text-soft);
  font-style: italic;
  background: var(--color-bg);
}

/* ---------- Bloc façade ---------- */
.facade-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.facade-block__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.facade-block__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  min-height: 460px;
}
.facade-block__text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 8px 0 18px;
}
.facade-block__text p {
  color: var(--color-text-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 1.02rem;
}
@media (max-width: 760px) {
  .facade-block { grid-template-columns: 1fr; gap: 24px; }
  .facade-block__photo img { min-height: 280px; aspect-ratio: 4/3; }
}

/* ---------- Galerie photos ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
  align-items: start;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item--large {
  grid-column: 1 / -1;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumbs (fil d'Ariane) ---------- */
.breadcrumbs {
  background: var(--color-bg);
  padding: 14px 0 0;
  border-bottom: 1px solid transparent;
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--color-text-soft);
}
.breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs__list li + li::before {
  content: '/';
  color: var(--color-border);
  font-weight: 300;
  margin-right: 4px;
}
.breadcrumbs__list a {
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumbs__list a:hover {
  color: var(--color-accent);
}
.breadcrumbs__list li[aria-current="page"] {
  color: var(--color-dark);
  font-weight: 500;
}

/* ---------- À lire aussi (liens croisés articles) ---------- */
.related-articles {
  max-width: 1100px;
  margin: 60px auto 20px;
  padding: 0 20px;
}
.related-articles h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--color-dark);
  text-align: center;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.related-article {
  display: block;
  padding: 28px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.related-article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}
.related-article__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.related-article h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--color-dark);
  line-height: 1.35;
}
.related-article p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin: 0 0 16px;
}
.related-article__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition);
}
.related-article:hover .related-article__arrow {
  gap: 10px;
}
.related-article__arrow svg { width: 14px; height: 14px; }
@media (max-width: 760px) {
  .related-articles__grid { grid-template-columns: 1fr; }
}

/* ---------- Bouton "Retour en haut" ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
  padding: 0;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 640px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ---------- Animations reveal (scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Page 404 ---------- */
.error-section {
  padding: 80px 0 100px;
  background: var(--color-bg);
}
.error-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.error-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.error-content h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 18px;
}
.error-lead {
  font-size: 1.08rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 50px;
}
.error-suggestions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 50px;
  text-align: left;
}
.error-suggestion {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.error-suggestion:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.error-suggestion__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 50%;
  padding: 10px;
}
.error-suggestion__icon svg { width: 100%; height: 100%; }
.error-suggestion h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--color-dark);
}
.error-suggestion p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.45;
}
.error-suggestion--highlight {
  background: var(--color-dark);
  border-color: var(--color-dark);
}
.error-suggestion--highlight h3,
.error-suggestion--highlight p {
  color: #fff;
}
.error-suggestion--highlight p { color: rgba(255,255,255,0.7); }
.error-suggestion--highlight .error-suggestion__icon {
  background: rgba(255,255,255,0.1);
  color: var(--color-accent);
}
.error-help {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
.error-help a {
  color: var(--color-accent);
  text-decoration: underline;
}
@media (max-width: 760px) {
  .error-code { font-size: 4.5rem; }
  .error-content h1 { font-size: 1.8rem; }
  .error-suggestions { grid-template-columns: 1fr; }
}

/* ---------- Plan du site ---------- */
.sitemap-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.sitemap-block:last-child {
  border-bottom: none;
}
.sitemap-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 18px;
}
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-block li {
  padding: 8px 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-soft);
}
.sitemap-block li a {
  color: var(--color-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color var(--transition), border-color var(--transition);
}
.sitemap-block li a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ---------- Conseils saisonniers ---------- */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.season-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.season-card__head {
  padding: 32px 30px 24px;
  text-align: center;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.season-card__emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}
.season-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--color-dark);
}
.season-card__lead {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin: 0;
  font-style: italic;
}
.season-card__body { padding: 28px 30px; }
.season-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  margin: 20px 0 6px;
  color: var(--color-dark);
}
.season-card__body h3:first-child { margin-top: 0; }
.season-card__body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0 0 4px;
}
/* Touches subtiles par saison */
.season-card--spring .season-card__head { background: #F0F4ED; }
.season-card--summer .season-card__head { background: #FBF3E2; }
.season-card--autumn .season-card__head { background: #F5EBE0; }
.season-card--winter .season-card__head { background: #E8EFF2; }

@media (max-width: 760px) {
  .seasons-grid { grid-template-columns: 1fr; gap: 20px; }
  .season-card__head { padding: 26px 24px 20px; }
  .season-card__body { padding: 24px; }
}

/* ---------- Bandeau "Première fois" ---------- */
.first-time-band {
  background: var(--color-bg-alt);
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
}
.first-time-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.first-time-band__content {
  flex: 1;
  min-width: 260px;
}
.first-time-band h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--color-dark);
}
.first-time-band p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
.first-time-band .btn {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .first-time-band .container { flex-direction: column; align-items: flex-start; }
}

/* ---------- Anchor offset (compense le header sticky) ---------- */
[id] {
  scroll-margin-top: 100px;
}
.anchor-offset {
  display: block;
  height: 0;
  visibility: hidden;
}

/* ---------- Soin detail link ---------- */
.soin-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap var(--transition);
}
.soin-detail__link:hover { gap: 10px; }
.soin-detail__link svg { width: 14px; height: 14px; }

/* ---------- Glossaire ---------- */
.glossaire-index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 20px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.glossaire-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.glossaire-index a:hover {
  background: var(--color-accent);
  color: #fff;
}
.glossaire {
  max-width: 760px;
  margin: 0 auto;
}
.glossaire h2 {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin: 50px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.glossaire h2:first-child { margin-top: 0; }
.glossaire-term {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.glossaire-term:last-child { border-bottom: none; }
.glossaire-term h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--color-dark);
}
.glossaire-term p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text);
}
.glossaire-term a {
  color: var(--color-accent);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .glossaire-index a { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* ---------- Card link variant ---------- */
.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.card--link .card__link-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}
.card--link:hover .card__link-label {
  gap: 10px;
}
.card--link .card__link-label svg {
  width: 12px;
  height: 12px;
}

/* ---------- Charte ---------- */
.charte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.charte-item {
  padding: 32px 28px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.charte-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.charte-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 20px;
}
.charte-item__icon svg { width: 100%; height: 100%; }
.charte-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--color-dark);
  line-height: 1.3;
}
.charte-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0;
}
@media (max-width: 760px) {
  .charte-grid { grid-template-columns: 1fr; gap: 18px; }
  .charte-item { padding: 26px 22px; }
}

/* ---------- Access cards (plan d'accès) ---------- */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.access-card {
  background: var(--color-bg);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.access-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.access-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.access-card__icon svg { width: 100%; height: 100%; }
.access-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--color-dark);
}
.access-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}
.access-card p:last-child { margin-bottom: 0; }
.access-card strong { color: var(--color-dark); font-weight: 600; }
@media (max-width: 960px) {
  .access-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .access-grid { grid-template-columns: 1fr; gap: 20px; }
  .access-card { padding: 26px 22px; }
}

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}
.topbar a:hover {
  color: var(--color-accent);
}
.topbar__separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .topbar { font-size: 0.76rem; padding: 7px 0; }
  .topbar .container { gap: 12px; }
  .topbar__separator { display: none; }
  .topbar__item--hours { display: none; }
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  background: rgba(245, 239, 227, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav__logo img {
  height: 105px;
  width: auto;
  transition: opacity var(--transition);
}
.nav__logo:hover img { opacity: 0.85; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--color-accent); }
.nav__link:hover::after { width: 100%; }
.nav__link.is-active { color: var(--color-accent); }
.nav__link.is-active::after { width: 100%; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-dark);
}
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  background: var(--color-bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero__title {
  margin-top: 0.2em;
  margin-bottom: 0.4em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__photo {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  isolation: isolate;
}
.hero__photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero__photo::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  z-index: 1;
}

/* ---------- Cards / Grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.section--alt .card {
  background: var(--color-bg);
}
.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__title { margin-bottom: 10px; }
.card__text {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

/* ---------- Tarifs ---------- */
.price-table {
  width: 100%;
  max-width: 720px;
  margin: 30px 0;
  border-collapse: collapse;
}
.price-table td {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  font-size: 1.05rem;
}
.note {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  font-style: italic;
  margin-top: 24px;
}
.callout {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
}
.callout h3 {
  margin: 0 0 10px;
  color: var(--color-accent-dark);
  font-size: 1.15rem;
}
.callout p { margin: 0 0 10px; color: var(--color-text); }
.callout p:last-child { margin-bottom: 0; }
.callout ul { margin: 10px 0 0; padding-left: 20px; }
.callout li { margin-bottom: 7px; color: var(--color-text); }
.callout--alert {
  background: #FBEDE9;
  border-left-color: #C0563E;
}
.callout--alert h3 { color: #A8472F; }
.callout__icon {
  display: inline-flex;
  vertical-align: -4px;
  margin-right: 8px;
}
.callout__icon svg { width: 20px; height: 20px; }
.situation-list { margin-top: 36px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.section--alt .post { background: var(--color-bg); }
.post__cover {
  aspect-ratio: 16/10;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}
.post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.post:hover .post__cover img {
  transform: scale(1.04);
}
.post__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post__cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.post__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  flex: 1;
}
.post__meta {
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

/* ---------- Article ---------- */
.article-hero {
  padding: 60px 0 40px;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-soft);
}
.article-hero .container { max-width: 780px; }
.article-hero h1 { margin-bottom: 20px; }
.article-meta {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-content h2 {
  margin-top: 2em;
  font-size: 1.6rem;
}
.article-content p { margin-bottom: 1.4em; }
.article-content ul {
  margin: 1em 0 1.6em;
  padding-left: 1.5em;
}
.article-content li { margin-bottom: 0.6em; }
.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 8px 0 8px 24px;
  margin: 2em 0;
  font-style: italic;
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-info p { margin-bottom: 22px; }
.contact-info strong {
  display: block;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-info a:hover { color: var(--color-accent); }
.contact-info .btn { margin-top: 14px; }
.map-frame {
  width: 100%;
  height: 460px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Pages secondaires (cabinet, soins detailed) ---------- */
.page-hero {
  padding: 70px 0 60px;
  background: var(--color-bg);
}
.page-hero h1 { margin-top: 0.2em; }
.page-hero p {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

.soin-detail {
  padding: 70px 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.soin-detail:last-child { border-bottom: none; }
.soin-detail .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.soin-detail__head h2 { margin-bottom: 16px; }
.soin-detail__head .icon-large {
  width: 56px;
  height: 56px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.soin-detail__head .icon-large svg { width: 28px; height: 28px; }
.soin-detail__body { font-size: 1rem; line-height: 1.8; }
.soin-detail__body p:last-child { margin-bottom: 0; }
.soin-detail__price {
  display: inline-block;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 14px;
}

/* ---------- Cabinet info bar ---------- */
.info-bar {
  background: var(--color-bg-white);
  padding: 70px 0;
}

/* ---------- About Naomi ---------- */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}
.about-block__photo {
  max-width: 460px;
}
.about-block__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-block ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.about-block li {
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}
.about-block li:last-child { border-bottom: 1px solid var(--color-border); }
.about-block li strong {
  font-weight: 600;
  color: var(--color-dark);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.cta-band .btn {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cta-band .btn:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-band__main h2 { font-size: 2.2rem; }
.cta-band__aside {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}
.cta-band__aside h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.cta-band__aside p {
  margin-bottom: 22px;
  font-size: 0.98rem;
}
.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--light:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}
@media (max-width: 760px) {
  .cta-band__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cta-band__main h2 { font-size: 1.8rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand img {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer p, .footer li {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 6px; }
.footer a:hover { color: var(--color-accent); }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Mentions légales / texte long ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}
.legal-content h2 {
  margin-top: 2em;
  font-size: 1.4rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ---------- Prose (blocs de texte explicatif) ---------- */
.prose {
  max-width: 720px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--color-dark); font-weight: 600; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 4px 0;
}
.faq-item:first-of-type {
  border-top: 1px solid var(--color-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--color-accent); }
.faq-answer {
  padding: 0 4px 24px;
  color: var(--color-text-soft);
  line-height: 1.75;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--color-accent); text-decoration: underline; }
.faq-answer ul { margin: 8px 0 8px 1.2em; }
.faq-answer li { margin-bottom: 6px; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__grid > * { animation: fadeUp 0.8s ease-out backwards; }
.hero__grid > *:nth-child(2) { animation-delay: 0.15s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: 138px;
    right: 0;
    left: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--color-border-soft);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-soft);
  }
  .nav__menu li:last-child { border-bottom: none; }
  .nav__menu .btn { width: 100%; justify-content: center; margin-top: 10px; }

  .hero { padding: 50px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo::before { display: none; }
  .hero__photo img { max-height: 480px; }

  .grid-3 { grid-template-columns: 1fr; gap: 18px; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .soin-detail .container { grid-template-columns: 1fr; gap: 30px; }
  .about-block { grid-template-columns: 1fr; padding: 60px 0; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 60px 0; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
