/* ============================================================
   EDEN MASSAGE — STYLES
   Premium · Zen · Mobile-first
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --beige:        #EAE3D8;
  --ivory:        #F5F1EA;
  --taupe:        #CFC6B8;
  --brown-light:  #8A6F5A;
  --gold:         #C6A75E;
  --text:         #362B23;
  --text-deep:    #241C17;
  --white:        #FDFBF8;
  --taupe-soft:   #E6DED3;
  --beige-soft:   #F1EBE2;
  --shadow-soft:  0 2px 20px rgba(62, 51, 42, 0.06);
  --shadow-card:  0 4px 32px rgba(62, 51, 42, 0.08);
  --shadow-hover: 0 8px 40px rgba(62, 51, 42, 0.12);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:    1140px;
  --nav-h:        72px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: var(--white);
}

.contact__form {
  max-width: 600px;
  margin: 0 auto 48px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-deep);
  margin-bottom: 8px;
}

.required {
  color: var(--gold);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__form .btn {
  width: 100%;
  margin-top: 8px;
}

.contact__info {
  text-align: center;
  padding: 32px 24px;
  background: var(--beige);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}

.contact__info p {
  margin-bottom: 8px;
}

.contact__info a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.contact__info a:hover {
  color: var(--brown-light);
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.blog-archive {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 38%, var(--beige-soft) 100%);
}

.blog-archive .section,
.single-post-layout .section {
  padding: 20px 0;
}

.blog-archive__hero {
  padding-bottom: 32px;
}

.blog-archive__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-archive__description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--brown-light);
}

.blog-archive__description p:last-child {
  margin-bottom: 0;
}

.blog-archive__content {
  padding-top: 24px;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 94, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(198, 167, 94, 0.12), rgba(138, 111, 90, 0.12));
  overflow: hidden;
}

.blog-card__image,
.blog-card__placeholder {
  width: 100%;
  height: 100%;
}

.blog-card__image {
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.03);
}

.blog-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-deep);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--brown-light);
}

.blog-card__meta span {
  position: relative;
}

.blog-card__meta span + span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: middle;
  background: var(--gold);
}

.blog-card__title {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  line-height: 1.15;
}

.blog-card__title a {
  color: var(--text-deep);
}

.blog-card__excerpt {
  margin-bottom: 24px;
  color: var(--text);
}

.blog-card__excerpt p:last-child {
  margin-bottom: 0;
}

.blog-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
}

.blog-card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.blog-card__link:hover::after {
  transform: translateX(3px);
}

.blog-archive__pagination {
  margin-top: 40px;
}

.blog-archive__pagination .screen-reader-text {
  display: none;
}

.blog-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-archive__pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.18);
  background: rgba(253, 251, 248, 0.92);
  color: var(--text-deep);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.blog-archive__pagination .page-numbers.current,
.blog-archive__pagination .page-numbers:hover {
  background: var(--text-deep);
  color: var(--white);
  border-color: var(--text-deep);
}

.blog-archive__empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.92);
  border: 1px solid rgba(198, 167, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

.blog-archive__empty h2 {
  margin-bottom: 16px;
}

.blog-archive__empty p {
  margin-bottom: 24px;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-layout {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 36%, var(--beige-soft) 100%);
}

.single-post__hero {
  padding-bottom: 24px;
}

.single-post__hero-inner {
  text-align: center;
}

.single-post__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--brown-light);
}

.single-post__breadcrumb a {
  color: var(--gold);
}

.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single-post__title {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: var(--text-deep);
}

.single-post__excerpt {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--brown-light);
}

.single-post__featured-media {
  margin-bottom: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.single-post__image {
  width: 100%;
  height: auto;
  display: block;
}

.single-post__body {
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.95);
  border: 1px solid rgba(198, 167, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

.single-post__body > *:first-child {
  margin-top: 0;
}

.single-post__body > *:last-child {
  margin-bottom: 0;
}

.single-post__body p,
.single-post__body li,
.single-post__body blockquote {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text);
}

.single-post__body h2,
.single-post__body h3,
.single-post__body h4 {
  color: var(--text-deep);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

.single-post__body a {
  color: var(--gold);
}

.single-post__body strong {
  color: var(--text-deep);
}

.single-post__body ul,
.single-post__body ol {
  padding-left: 1.4rem;
}

.single-post__body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(234, 227, 216, 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.single-post__body img {
  border-radius: var(--radius);
}

.single-post__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.single-post__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.single-post__categories a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(198, 167, 94, 0.12);
  color: var(--text-deep);
  font-size: 0.92rem;
}

.single-post__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.single-post__nav-item a {
  display: block;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.94);
  border: 1px solid rgba(198, 167, 94, 0.16);
  color: var(--text-deep);
  box-shadow: var(--shadow-soft);
}

.single-post__nav-item--next {
  text-align: right;
}

/* ============================================================
   SIMPLE PAGES
   ============================================================ */
.page-content {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 36%, var(--beige-soft) 100%);
}

.page-content .container {
  max-width: 900px;
}

.page-article {
  padding: 40px 0 72px;
}

.page-header {
  margin-bottom: 28px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0;
  color: var(--text-deep);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.page-body {
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.95);
  border: 1px solid rgba(198, 167, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

.page-body--elementor {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.page-body > *:first-child {
  margin-top: 0;
}

.page-body > *:last-child {
  margin-bottom: 0;
}

.page-body p,
.page-body li,
.page-body blockquote {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.page-body h2,
.page-body h3,
.page-body h4 {
  color: var(--text-deep);
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.page-body a {
  color: var(--gold);
}

.page-body img {
  border-radius: var(--radius);
}

.page-body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(234, 227, 216, 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 34, 27, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: opacity var(--transition);
}

.lightbox__close:hover {
  opacity: 0.7;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.16);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__nav:hover {
  background: rgba(245, 241, 234, 0.24);
}

.lightbox__nav--prev {
  left: -72px;
}

.lightbox__nav--next {
  right: -72px;
}

.lightbox__nav[hidden] {
  display: none;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie {
  background: var(--white);
}

.galerie__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.galerie__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.galerie__tarifs {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.galerie__tarif {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-soft);
}


/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

strong {
  font-weight: 500;
  color: var(--text-deep);
}

p {
  font-size: 1.05rem;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

/* --- TYPOGRAPHY --- */
.section__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.15rem, 4.7vw, 3.1rem);
  line-height: 1.25;
  color: var(--text-deep);
  margin-bottom: 1rem;
}

.section__title--large {
  font-size: clamp(2.2rem, 5.2vw, 3.45rem);
}

.section__intro {
  font-size: 1.22rem;
  color: var(--brown-light);
  max-width: 600px;
  margin: 0 auto;
}

.nowrap {
  white-space: nowrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  padding: 16px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(198, 167, 94, 0.25);
}

.btn--primary:hover {
  background: var(--brown-light);
  box-shadow: 0 4px 20px rgba(138, 111, 90, 0.3);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(43, 34, 27, 0.92);
  color: var(--ivory);
  border: 1px solid rgba(43, 34, 27, 0.2);
}

.btn--secondary:hover {
  background: var(--brown-light);
  border-color: rgba(138, 111, 90, 0.25);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 12px 26px;
  font-size: 1rem;
}

.btn--lg {
  padding: 20px 46px;
  font-size: 1.16rem;
}

/* --- SECTION BASE --- */
.section {
  padding: 80px 0;
  position: relative;
  overflow: clip;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__intro {
  font-size: 1.16rem;
  line-height: 1.8;
  color: var(--brown-light);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar--scrolled {
  background: rgba(245, 241, 234, 0.96);
  box-shadow: 0 1px 12px rgba(62, 51, 42, 0.06);
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  z-index: 1001;
}

.navbar__logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.navbar__brand {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-deep);
  white-space: nowrap;
}

/* Nav links */
.navbar__nav {
  margin-left: 20px;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__link {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--text-deep);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link--cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 500;
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover {
  background: var(--brown-light);
  color: var(--white);
}

/* Keep CTA readable when its section is active */
.navbar__link--cta.navbar__link--active {
  color: var(--white) !important;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--text-deep);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 34, 27, 0.55) 0%, rgba(43, 34, 27, 0.65) 50%, rgba(43, 34, 27, 0.50) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 20px 60px;
  text-align: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.3;
  color: var(--ivory);
  text-shadow: 0 8px 24px rgba(43, 34, 27, 0.35);
  margin-bottom: 20px;
}

.hero__title--highlight {
  color: var(--beige);
  font-style: normal;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  color: var(--ivory);
  text-shadow: 0 6px 20px rgba(43, 34, 27, 0.35);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero__text {
  font-size: 1.16rem;
  color: var(--ivory);
  text-shadow: 0 6px 18px rgba(43, 34, 27, 0.28);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__actions .btn {
  min-width: 220px;
}

.hero__mention {
  font-size: 0.95rem;
  color: rgba(245, 241, 234, 0.92);
  text-shadow: 0 6px 18px rgba(43, 34, 27, 0.28);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ============================================================
   IDENTIFICATION
   ============================================================ */
.identification {
  background: var(--white);
}

.identification__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.card--icon {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card--icon:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--brown-light);
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.48rem;
  color: var(--text-deep);
  margin-bottom: 8px;
}

.card__text {
  font-size: 1.15rem;
  color: var(--brown-light);
}

.identification__transition {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 2.7vw, 1.6rem);
  color: var(--text-deep);
  line-height: 1.6;
  padding: 24px 0;
  border-top: 1px solid var(--beige);
}

/* ============================================================
   MÉTHODE
   ============================================================ */
.methode {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--beige-soft) 100%);
}

.methode__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.methode__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.methode__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-soft) 100%);
}

.methode__content p {
  margin-bottom: 16px;
  font-size: 1.14rem;
}

.methode__points {
  margin: 24px 0 32px;
  padding-left: 0;
}

.methode__points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.methode__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

/* ============================================================
   SOIN SIGNATURE
   ============================================================ */
.signature {
  background: linear-gradient(180deg, var(--white) 0%, #faf6f0 100%);
}

.signature__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.signature__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.signature__accroche {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown-light);
  margin-bottom: 20px;
}

.signature__content p {
  margin-bottom: 14px;
  font-size: 1.14rem;
}

.signature__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0 12px;
  padding: 20px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.signature__amount {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--text-deep);
}

.signature__detail {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.signature__domicile {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 24px;
}

.signature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.signature__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--taupe-soft) 100%);
}

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs {
  background: linear-gradient(180deg, var(--ivory) 0%, #efe6da 100%);
}

.tarifs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(198, 167, 94, 0.08) 0%, rgba(198, 167, 94, 0) 30%);
  pointer-events: none;
}

.tarifs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card--tarif {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--beige);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.card--tarif:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card--tarif-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  background: var(--ivory);
  padding-top: 40px;
}

.card__tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 16px;
  border-radius: 50px;
}

.card__tarif-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.58rem;
  color: var(--text-deep);
  margin-bottom: 6px;
}

.card__tarif-sub {
  font-size: 1.12rem;
  color: var(--brown-light);
  margin-bottom: 20px;
}

.card__tarif-points {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brown-light);
}

.card__tarif-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
  text-align: left;
}

.card__tarif-points li::before {
  content: '';
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.card__tarif-list {
  margin-bottom: 16px;
}

.card__tarif-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 1.12rem;
}

.card__tarif-list li:last-child {
  border-bottom: none;
}

.card__tarif-list li span:last-child {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.50rem;
  color: var(--text-deep);
}

.card__tarif-note {
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}

.tarifs__mention {
  text-align: center;
  font-size: 1.12rem;
  color: var(--brown-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tarifs__mention-list {
  display: grid;
  gap: 12px;
  margin: 40px 0;
  color: var(--text);
  text-align: left;
}

.tarifs__mention-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
}

.tarifs__mention-list li::before {
  content: '–';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   CABINET OU DOMICILE
   ============================================================ */
.cabinet {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-soft) 100%);
}

.cabinet__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.cabinet__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cabinet__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-soft) 100%);
}

.cabinet__content p {
  margin-bottom: 14px;
  font-size: 1.14rem;
}

/* ============================================================
   CADRE PROFESSIONNEL
   ============================================================ */
.cadre {
  background: linear-gradient(180deg, #efe5d9 0%, var(--beige) 100%);
  position: relative;
}

.cadre::before {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.cadre__content {
  text-align: center;
  padding: 0 0 20px;
}

.cadre__content p {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

/* ============================================================
   PUBLIC
   ============================================================ */
.public {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}

.public__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.public__content p {
  margin-bottom: 14px;
  font-size: 1.14rem;
}

.public__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.public__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--taupe-soft) 100%);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(180deg, var(--beige) 0%, #e7dccf 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 48px;
}

.cta-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.28rem;
  color: var(--brown-light);
  margin-bottom: 32px;
}

/* ============================================================
   ENTREPRISES (B2B)
   ============================================================ */
.entreprises {
  background: linear-gradient(180deg, #eee4d8 0%, var(--ivory) 100%);
  border-top: 1px solid var(--taupe);
}

.entreprises__intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.entreprises__intro p {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.entreprises__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.card--b2b {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--taupe);
  transition: box-shadow var(--transition);
}

.card--b2b:hover {
  box-shadow: var(--shadow-card);
}

.card__b2b-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--brown-light);
  margin-bottom: 16px;
}

.card__b2b-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  color: var(--text-deep);
  margin-bottom: 12px;
}

.card--b2b p {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.card__b2b-list {
  margin: 8px 0 16px;
  padding-left: 0;
}

.card__b2b-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card__b2b-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1.5px;
  background: var(--gold);
}

.card__b2b-format {
  margin-top: 8px;
}

/* Modalités */
.entreprises__modalites {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--taupe);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.entreprises__modalites-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--text-deep);
  margin-bottom: 12px;
}

.entreprises__modalites p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.entreprises__modalites-list {
  display: inline-block;
  text-align: left;
  margin: 8px 0 20px;
}

.entreprises__modalites-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.entreprises__modalites-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1.5px;
  background: var(--gold);
}

.entreprises__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.blog-preview__card {
  text-align: center;
}

.blog-preview__card .btn {
  margin-top: 18px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-soft) 100%);
}

.reviews__summary {
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(253, 251, 248, 0.9);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.reviews__summary-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.reviews__summary-score {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-deep);
  line-height: 1;
}

.reviews__summary-stars {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.reviews__summary-meta {
  color: var(--brown-light);
  font-size: 1rem;
}

.reviews__slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform var(--transition);
  will-change: transform;
}

.reviews__card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.reviews__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviews__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--beige);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reviews__avatar--fallback {
  color: var(--text-deep);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews__author {
  font-weight: 500;
  color: var(--text-deep);
  margin-bottom: 4px;
}

.reviews__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.92rem;
  color: var(--brown-light);
}

.reviews__rating {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.reviews__text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.reviews__nav {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(198, 167, 94, 0.14);
  color: var(--text-deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), opacity var(--transition);
}

.reviews__nav:hover {
  background: rgba(198, 167, 94, 0.22);
  transform: translateY(-1px);
}

.reviews__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.reviews__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  width: 100%;
}

.reviews__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(138, 111, 90, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.reviews__dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.reviews__empty,
.reviews__error {
  min-width: 100%;
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  color: var(--brown-light);
}

.contact__success {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--beige);
  color: var(--text-deep);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-deep);
  color: var(--taupe);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: brightness(0.85) sepia(0.2);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--beige);
  text-align: center;
}

.footer__brand-name span {
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--taupe);
}

.footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  font-size: 0.95rem;
}

.footer__legal {
  font-size: 0.9rem;
  color: var(--white);
}

.footer__legal a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
  display: inline-block;
  margin-bottom: 18px;
}

.footer__legal a:hover {
  color: var(--white);
}

.footer__legal p:last-child {
  color: var(--white);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.navbar__nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .container {
    padding: 0 32px;
  }

  .identification__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .methode__layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .signature__layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .tarifs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .cabinet__layout {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 28px 40px;
  }

  .cabinet__image:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .cabinet__content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .cabinet__image--secondary {
    grid-column: 2;
    grid-row: 2;
  }

  .public__layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .entreprises__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-post__body {
    padding: 40px 42px;
  }

  .page-body {
    padding: 40px 42px;
  }

  .single-post__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews__footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP LARGE (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .hero__content {
    padding: 140px 20px 80px;
  }

  .blog-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lightbox__content {
    max-width: 100%;
  }

  .reviews__slider {
    grid-template-columns: 1fr;
  }

  .reviews__nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    justify-self: center;
  }

  .reviews__summary {
    padding: 24px 20px;
  }

  .reviews__card {
    padding: 24px 20px;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .hero__bg img {
    object-fit: cover;
    object-position: 70% 50%;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn {
    min-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV (<1150px)
   ============================================================ */
@media (max-width: 1149px) {
  .navbar__burger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgba(245, 241, 234, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
    overflow: hidden;
  }

  .navbar__list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .navbar__link {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .navbar__link--cta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 12px 28px;
  }

  /* Cabinet section single column adjustments */
  .cabinet__layout {
    grid-template-columns: 1fr;
  }

  .cabinet__content {
    order: -1;
  }
}

@media (min-width: 1150px) {
  .galerie__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .galerie__item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .galerie__item:nth-child(2) {
    grid-column: 3;
  }

  .galerie__tarifs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   DECORATIVE SEPARATOR
   ============================================================ */
.section__header::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ============================================================
   SUBTLE BACKGROUND TEXTURE
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E332A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

main, .footer {
  position: relative;
  z-index: 1;
}

.navbar {
  z-index: 1000;
}
