:root {
  --bg: #fdfaf8;
  --surface: #ffffff;
  --surface-alt: #fff4f7;
  --text: #3e3336;
  --muted: #7f6f74;
  --primary: #e99ab0;
  --primary-dark: #c7728f;
  --header: #7f8e98;
  --footer: #6f7d86;
  --border: #efdee3;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Nanum Gothic", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at 10% 0%, #fff7fb 0%, var(--bg) 48%);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
}

.site-header {
  background: linear-gradient(90deg, var(--header) 0%, #8f9ca6 100%);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  font-family: Adamina, Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-family: Adamina, Georgia, serif;
  font-size: 0.95rem;
}

.menu a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 4px;
}

.site-main {
  width: 100%;
  padding: 2rem 1rem 3rem;
}

h1, h2, h3 {
  line-height: 1.25;
  color: #241f21;
  font-family: Adamina, Georgia, serif;
}

section, article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem;
  margin-bottom: 1.2rem;
}

.calm-surface {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
}

.soft-card {
  background: #fff;
  border: 1px solid #f0e3e8;
  border-radius: 14px;
  padding: 1rem;
}

a { color: var(--primary-dark); }
a:hover { color: #ab5f79; }

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

figure { margin: 0 0 1rem; }
figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

.landing-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(120deg, #ffffff 0%, #fff6f9 100%);
}

.kicker {
  color: #7f6f74;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.intro-text h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0.4rem 0 0.8rem;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  color: #2f272a;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #e4c3cf;
  color: #6c4a57;
}

.intro-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 15%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  margin: 0;
  border-radius: 14px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h2 {
  margin: 0.8rem 0 0.6rem;
  font-size: 1.7rem;
  text-align: center;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.service-list li {
  font-family: Adamina, Georgia, serif;
  font-size: 1.03rem;
  line-height: 1.72;
}

.approach {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.approach img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.approach .soft-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.approach .soft-card h2 {
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.approach .soft-card p {
  font-size: 1.1rem;
}

.photo-credit {
  margin-top: 0.8rem;
  font-size: 0.83rem;
  color: var(--muted);
}

.photo-credit-inline {
  text-align: center;
}

.photo-credits-global {
  margin: -0.3rem 0 1.2rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-band {
  background: linear-gradient(90deg, #fce8ef 0%, #f9eff3 100%);
  border-color: #f3d4df;
  text-align: center;
}

.map-card {
  max-width: 920px;
  margin-inline: auto;
  padding: 1rem 1.1rem;
}

.map-card iframe {
  border-radius: 10px;
}

.blog-hero { background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%); }
.blog-hero p { max-width: 70ch; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #eadde2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(80, 47, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(80, 47, 58, 0.12);
}

.blog-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  line-height: 0;
  background: #f4eef1;
}

.blog-card-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-media img,
.blog-card-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 1rem 1rem 1.1rem;
}

.blog-card-content h2 {
  margin: 0.3rem 0 0.55rem;
  font-size: 1.32rem;
  line-height: 1.35;
}

.blog-card-content h2 a {
  color: #2a2225;
  text-decoration: none;
}

.blog-card-content p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-card-content .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.blog-single {
  max-width: 920px;
  margin-inline: auto;
  padding: 2rem 2.1rem;
  background: #fff;
  border: 1px solid #e8dde2;
  border-radius: 14px;
}

.blog-single p,
.blog-single li {
  font-size: 1.2rem;
  line-height: 1.95;
}

.blog-single h1 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  margin-bottom: 0.7rem;
}

.blog-single h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-top: 1.7rem;
  margin-bottom: 0.6rem;
}

.blog-single figure img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.blog-single figure {
  max-width: 760px;
  margin: 1rem auto 1.4rem;
}

.page-seances > h1 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.seances-intro {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.seances-intro p {
  font-size: 1.14rem;
}

.seances-canvas {
  border: none;
  padding: 1.4rem 1rem 1rem;
  background: linear-gradient(180deg, #eb8ea9 0 58px, #fff 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.seance-col {
  background: #fff;
  border: 0;
  border-radius: 10px;
  text-align: center;
  padding: 0.6rem 0.8rem 1rem;
}

.seance-col h2 {
  font-size: 1.7rem;
  margin: 0.2rem 0 0.7rem;
  min-height: 62px;
}

.seance-col img {
  width: 100%;
  max-width: 330px;
  height: 180px;
  object-fit: cover;
}

.seance-mode {
  font-family: Adamina, Georgia, serif;
  font-size: 1.08rem;
  margin: 0.8rem 0 0.9rem;
}

.seance-col p {
  font-size: 1.04rem;
}

.seance-col ul {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.seance-col ul li {
  font-family: Adamina, Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.6;
}

.parcours-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.parcours-photo {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.6rem;
  background: #fff;
}

.parcours-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.parcours-content h2,
.parcours-content h3 {
  margin-top: 0.4rem;
}

input, select, textarea, button { font: inherit; }

input, select, textarea {
  width: 100%;
  max-width: 680px;
  padding: 0.65rem 0.75rem;
  border: 1px solid #d4c3cb;
  border-radius: 10px;
  margin-top: 0.2rem;
}

form label { display: block; margin-bottom: 0.8rem; }

.contact-reassurance {
  background: linear-gradient(180deg, #fff 0%, #fff2f6 100%);
  border: 1px solid #edd5df;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
}

.contact-reassurance p {
  margin: 0.25rem 0;
}

.form-required-note {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-phone-prominent {
  font-size: 1.15rem;
  margin: 1rem 0 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--surface-alt);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

.form-alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.form-alert-error {
  background: #fff1f1;
  border: 1px solid #e8a8a8;
  color: #6b1f1f;
}

.captcha-row input[type="number"] {
  max-width: 160px;
}

.merci-confirmation {
  background: linear-gradient(180deg, #f3fff6 0%, #e8f8ed 100%);
  border: 2px solid #7bc89a;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
}

.merci-confirmation p {
  margin: 0.5rem 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
}

.consent-row input[type="checkbox"] {
  width: auto;
  max-width: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

button {
  background: var(--primary);
  color: #3a2d2d;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

button:hover { background: var(--primary-dark); color: #fff; }

.site-footer {
  border-top: 2px solid var(--primary);
  background: linear-gradient(90deg, var(--footer) 0%, #7c8992 100%);
}

.site-footer .container {
  padding: 1.3rem 0;
  color: #fffaf7;
  font-size: 0.98rem;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

.editor-access {
  background: linear-gradient(180deg, #fff 0%, #fff4f7 100%);
  border-color: #f1dce4;
}

.admin-articles-link {
  text-align: right;
  font-size: 0.8rem;
  margin: 0.2rem 0 0.4rem;
  color: var(--muted);
}

.admin-articles-link a {
  color: var(--muted);
  text-decoration: none;
}

.admin-articles-link a:hover {
  text-decoration: underline;
  text-decoration-color: var(--primary);
}

.admin-form-card {
  max-width: 900px;
  margin-inline: auto;
}

.admin-form-card form {
  margin-top: 0.8rem;
}

.admin-form-card textarea {
  max-width: 100%;
}

.admin-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 154, 176, 0.9);
  color: #3e3336;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: #fff;
}

.not-found {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 2rem 1.4rem;
}

.not-found h1 {
  margin-top: 0;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .landing-intro,
  .approach,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-single { padding: 1.5rem 1.3rem; }
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-single figure img { max-height: 300px; }
  .blog-single figure { margin: 0.8rem auto 1rem; }
  .blog-card-content h2 { font-size: 1.24rem; }
  .blog-single p,
  .blog-single li { font-size: 1.12rem; line-height: 1.82; }
  .blog-single h1 { font-size: clamp(1.75rem, 6vw, 2.2rem); }
  .form-grid { grid-template-columns: 1fr; }
  .parcours-layout { grid-template-columns: 1fr; }
  .seances-canvas { grid-template-columns: 1fr; background: linear-gradient(180deg, #eb8ea9 0 52px, #fff 52px); }
  .seance-col h2 { min-height: auto; }
}
