/* ===== Base ===== */
:root {
  --sage: #7c9082;
  --sage-dark: #5c7263;
  --sage-light: #eef2ee;
  --cream: #faf8f4;
  --ink: #2f3630;
  --ink-soft: #5a635c;
  --gold: #c2a878;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--sage-dark); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(124, 144, 130, 0.15);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.05rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--sage-dark); }

.nav-links a.active { font-weight: 500; }

.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--sage-dark); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }

@media (max-width: 1024px) {
  .nav-toggle-label {
    display: block;
    width: 26px;
    height: 20px;
    position: relative;
  }
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--ink);
    left: 0;
    transition: transform 0.2s;
  }
  .nav-toggle-label span { top: 9px; }
  .nav-toggle-label span::before { top: -8px; }
  .nav-toggle-label span::after { top: 8px; }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 0 0.5rem;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 5rem 1.5rem 5.5rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-blob-a {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: rgba(124, 144, 130, 0.28);
}

.hero-blob-b {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: rgba(194, 168, 120, 0.22);
}

.hero-grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy { text-align: left; }

.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(124, 144, 130, 0.25);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage-dark);
  box-shadow: 0 4px 18px rgba(47, 54, 48, 0.06);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

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

.hero-text {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.hero-trust {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero-trust strong { color: var(--gold); letter-spacing: 0.1em; margin-right: 0.3rem; }

/* Visuel : portrait en arche + cartes flottantes */
.hero-visual {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.hero-visual > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px var(--radius) var(--radius);
  box-shadow: 0 24px 60px rgba(47, 54, 48, 0.22);
  display: block;
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(47, 54, 48, 0.16);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--ink);
}

.hero-float small { color: var(--ink-soft); }

.hero-float-1 {
  top: 14%;
  left: -3.2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 500;
}

.hero-float-2 {
  bottom: 8%;
  right: -2.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--sage-dark);
  max-width: 220px;
}

@media (max-width: 900px) {
  .hero { padding: 3.5rem 1.5rem 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.8rem; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 280px; }
  .hero-float-1 { left: -1.4rem; }
  .hero-float-2 { right: -1.2rem; }
}

.hero-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--sage-light);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); }

.page-hero p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

.btn-ghost { border: 1px solid var(--sage); color: var(--sage-dark); }
.btn-ghost:hover { background: var(--sage-light); }

/* ===== Sections ===== */
.section { padding: 4.5rem 1.5rem; }
.section-alt { background: var(--sage-light); }

.section-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.section-narrow { max-width: 680px; }

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.2rem;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-block {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.text-block p { margin-bottom: 1.2rem; color: var(--ink-soft); }

.text-block strong { color: var(--ink); font-weight: 500; }

blockquote.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage-dark);
  font-style: italic;
  margin: 2.5rem auto;
  max-width: 600px;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(47, 54, 48, 0.06);
  text-align: center;
}

.card-icon { font-size: 1.3rem; margin-bottom: 0.6rem; opacity: 0.85; }

.card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--sage-dark); }

.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ===== Steps ===== */
.steps {
  list-style: none;
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: left;
}

.steps li {
  display: flex;
  gap: 1.3rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.steps h3 { font-size: 1.25rem; margin-bottom: 0.3rem; color: var(--sage-dark); }
.steps p { color: var(--ink-soft); font-size: 0.98rem; }

.disclaimer {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(124, 144, 130, 0.2);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
}

.price-card h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.8rem; }

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.4rem;
}

.price-detail { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
  text-align: center;
}

.contact-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  box-shadow: 0 4px 24px rgba(47, 54, 48, 0.06);
}

.contact-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.contact-item a { text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
  text-align: left;
}

.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(47, 54, 48, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.post-card:hover { transform: translateY(-3px); }

.post-cover {
  height: 180px;
  background: linear-gradient(135deg, var(--sage-light), rgba(194, 168, 120, 0.25));
  overflow: hidden;
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.post-card:hover .post-cover img { transform: scale(1.04); }

.post-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.post-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.post-body h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }

.post-body h3 a { text-decoration: none; color: var(--ink); }
.post-body h3 a:hover { color: var(--sage-dark); }

.post-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }

.post-more {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

/* Bannière photo pleine largeur (pages internes) */
.banner {
  max-width: 1000px;
  margin: -1.8rem auto 0;
  padding: 0 1.5rem;
}

.banner img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(47, 54, 48, 0.14);
  display: block;
}

/* Duo image + texte */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.split img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(47, 54, 48, 0.14);
  display: block;
}

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* Article */
.article-cover {
  max-width: 680px;
  margin: 2.5rem auto -1.5rem;
  padding: 0 1.5rem;
}

.article-cover img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  text-align: left;
}

.article h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 0.6rem; }

.article .post-date { margin-bottom: 2rem; }

.article h2 { font-size: 1.6rem; margin: 2.2rem 0 0.8rem; }

.article p { margin-bottom: 1.2rem; color: var(--ink-soft); }

.article-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ===== Instagram / En images ===== */
.insta-cta {
  margin: 2.5rem auto 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
  justify-items: center;
}

.insta-card {
  margin: 0;
  width: 100%;
  max-width: 400px;
}

.insta-link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(150deg, var(--sage) 0%, #96a89a 55%, var(--gold) 100%);
  box-shadow: 0 6px 26px rgba(47, 54, 48, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.insta-link:hover,
.insta-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(47, 54, 48, 0.2);
}

.insta-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.insta-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.insta-play::after {
  content: '';
  margin-left: 5px;
  border-left: 19px solid var(--sage-dark);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.insta-link:hover .insta-play { transform: translate(-50%, -50%) scale(1.08); }

.insta-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(38, 44, 39, 0.62));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.25;
  text-align: left;
}

.insta-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 2px dashed rgba(124, 144, 130, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}

.insta-placeholder .card-icon { font-size: 2.4rem; margin: 0; }

/* ===== Video hebergee ===== */
.video-featured {
  margin: 0 auto 2.5rem;
  max-width: 720px;
}

.video-featured video {
  width: 100%;
  aspect-ratio: 848 / 576;
  display: block;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 10px 34px rgba(47, 54, 48, 0.16);
}

.video-featured figcaption {
  margin-top: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--sage-dark);
}

/* ===== Testimonials ===== */
.review-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 2.8rem 1.5rem 2.2rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-nav a:hover { color: #fff; }

.footer-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq-list { text-align: left; margin-top: 1rem; }

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(47, 54, 48, 0.06);
  margin-bottom: 1rem;
  padding: 1.2rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage-dark);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ===== Formulaire de contact ===== */
.contact-form {
  text-align: left;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(47, 54, 48, 0.06);
  padding: 2rem 1.8rem;
  margin-top: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(124, 144, 130, 0.35);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sage);
  border-color: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-rgpd { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible { opacity: 1; transform: none; }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  .hero-copy > * { animation: heroIn 0.8s ease both; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.36s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.48s; }
  .hero-visual { animation: heroIn 0.9s ease 0.2s both; }

  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .hero-float-1 { animation: floaty 5s ease-in-out infinite; }
  .hero-float-2 { animation: floaty 6s ease-in-out 1.2s infinite; }

  .card, .price-card, .contact-item { transition-property: opacity, transform, box-shadow; }

  .card:hover, .contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 54, 48, 0.12);
  }

  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 54, 48, 0.1);
  }
}

/* ===== Portrait (page Qui suis-je) ===== */
.split-portrait {
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 2.8rem;
}

.split-portrait .portrait {
  width: 280px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(47, 54, 48, 0.15);
}

@media (max-width: 760px) {
  .split-portrait {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .split-portrait .portrait {
    width: 190px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-position: center top;
    border-radius: 50%;
    margin: 0 auto;
  }
}
