:root {
  --bandeau-h:   38px;
  --creme:       #f5e6cc;
  --creme-light: #faf3e8;
  --creme-deep:  #eddbb8;
  --orange:      #f0a040;
  --orange-burn: #e87830;
  --terra:       #c05020;
  --rouge-brun:  #a03010;
  --brun-dark:   #6b2008;
  --rose-ray:    #e0604a;
  --ink:         #3a1a08;
  --fog:         #e2cfa8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--creme-light);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── BANDEAU BILAN ── */
.bandeau-bilan {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--bandeau-h);
  background: var(--orange-burn);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.bandeau-bilan a {
  display: inline-block;
  margin-left: 1rem;
  background: #fff;
  color: var(--orange-burn);
  padding: 0.2rem 0.85rem;
  border-radius: 2rem;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.bandeau-bilan a:hover {
  background: var(--ink);
  color: #fff;
}

/* ── NAV ── */
nav {
  position: fixed; top: var(--bandeau-h); left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 2rem;
  background: rgba(250,243,232,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fog);
}

.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-rs { display: flex; gap: 0.8rem; align-items: center; }
.nav-rs-link { color: var(--rouge-brun); opacity: 0.6; transition: opacity 0.3s, color 0.3s; display:flex; align-items:center; }
.nav-rs-link:hover { opacity: 1; color: var(--terra); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rouge-brun);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--terra); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: calc(76px + var(--bandeau-h));
  position: relative;
  overflow: hidden;
  background: var(--creme);
}

/* Warm sun glow background */
#hero::before {
  content: '';
  position: absolute;
  right: -5vw; top: 50%; transform: translateY(-50%);
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(240,160,64,0.35) 0%,
    rgba(232,120,48,0.18) 50%,
    transparent 75%);
  pointer-events: none;
}

.hero-content {
  padding: 4rem 3rem 4rem 7rem;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--rouge-brun);
  margin-bottom: 0.6rem;
}
.hero-title em { font-style: italic; color: var(--orange-burn); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--terra);
  margin-bottom: 2rem;
  display: block;
}

.hero-text {
  font-size: 0.93rem;
  color: var(--ink);
  opacity: 0.72;
  max-width: 400px;
  margin-bottom: 3rem;
}

.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  padding: 4rem 4rem 4rem 0;
  animation: fadeUp 1.2s ease 0.15s both;
}

.sun-wrapper {
  position: relative;
  width: min(340px, 75%);
  aspect-ratio: 1;
}

/* Big decorative sun SVG ring */
.sun-ring {
  width: 100%; height: 100%;
  animation: spinSlow 40s linear infinite;
}

.hero-logo-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-center img {
  width: 82%;
  border-radius: 50%;
  filter: drop-shadow(0 12px 40px rgba(232,120,48,0.3));
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--terra);
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--rouge-brun); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1.5px solid var(--orange-burn);
  color: var(--rouge-brun);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 1rem;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--orange-burn); color: #fff; }

/* ── SECTIONS SHARED ── */
section { padding: 7rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-burn);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--rouge-brun);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--orange-burn); }

.divider {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--rose-ray));
  margin-bottom: 2.5rem;
}

/* ── SOPHROLOGIE ── */
#sophrologie { background: var(--creme); }

.sophrologie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sophrologie-text p {
  font-size: 0.94rem;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 1.2rem;
}

.sophrologie-pillars { display: flex; flex-direction: column; gap: 1.2rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: var(--creme-light);
  border-left: 3px solid var(--orange-burn);
  border-radius: 0 4px 4px 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateX(5px); box-shadow: 4px 4px 20px rgba(160,48,16,0.08); }

.pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.15rem; }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rouge-brun);
  margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.86rem; opacity: 0.68; margin: 0; }

/* ── À PROPOS ── */
#apropos { background: var(--creme-light); }

.apropos-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

.apropos-portrait-wrap { position: relative; }

.apropos-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--creme-deep) 0%, var(--orange) 100%);
  border-radius: 50% 50% 45% 45% / 40% 40% 50% 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(160,48,16,0.15);
}

.apropos-portrait-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Decorative sun behind portrait */
.portrait-sun-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  opacity: 0.18;
}

.apropos-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--terra);
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
  margin: 1.8rem 0;
  line-height: 1.5;
}

.apropos-content p {
  font-size: 0.94rem; opacity: 0.75; margin-bottom: 1.1rem;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tag {
  padding: 0.3rem 1rem;
  background: var(--creme);
  color: var(--rouge-brun);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  border-radius: 20px;
  border: 1px solid var(--fog);
}

/* ── SÉANCES & TARIFS ── */
#seances { background: var(--rouge-brun); color: var(--creme-light); }

#seances .section-tag { color: var(--orange); }
#seances .section-title { color: var(--creme); }
#seances .divider { background: linear-gradient(90deg, var(--orange), var(--rose-ray)); }

.seances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 0.5rem;
}

.seance-mode-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.seance-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.seance-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.seance-card.featured { border-color: var(--orange); background: rgba(240,160,64,0.1); }

.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange-burn); color: #fff;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 1rem; border-radius: 20px;
}

.seance-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--creme); margin-bottom: 0.4rem;
}
.seance-duration {
  font-size: 0.75rem; color: var(--orange); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.seance-desc { font-size: 0.86rem; color: rgba(250,243,232,0.62); margin-bottom: 1.8rem; }
.seance-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--creme); line-height: 1;
}
.seance-price span { font-size: 0.9rem; color: var(--orange); margin-left: 0.3rem; }

.seances-note {
  margin-top: 2.5rem; font-size: 0.82rem;
  color: rgba(250,243,232,0.45); text-align: center;
}

.btn-card-rdv {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.65rem 1.6rem;
  background: transparent;
  color: var(--creme);
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-card-rdv:hover { background: var(--orange-burn); border-color: var(--orange-burn); }

.btn-rdv {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  background: var(--terracotta, #c05020);
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
}
.btn-rdv:hover { background: var(--rouge-brun); transform: translateY(-2px); }

/* ── RDV ── */
#rdv { background: var(--creme); }

.rdv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.rdv-intro p { font-size: 0.94rem; opacity: 0.74; margin-bottom: 1.1rem; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.contact-item { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--creme-light);
  border: 1px solid var(--fog);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.rdv-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rouge-brun); opacity: 0.65;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.82rem 1rem;
  background: var(--creme-light);
  border: 1.5px solid var(--fog);
  border-radius: 3px;
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.9rem; color: var(--ink);
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange-burn);
}
.form-group textarea { resize: vertical; min-height: 105px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  padding: 1rem 2.4rem;
  background: var(--terra);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--rouge-brun); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--brun-dark);
  color: rgba(250,243,232,0.45);
  text-align: center;
  padding: 3rem 4rem;
  font-size: 0.8rem;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 1.2rem; }
.footer-logo img { height: 70px; width: auto; opacity: 0.85; }
footer p { margin-bottom: 0.3rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  :root { --bandeau-h: 38px; }
  nav { padding: 0.9rem 2rem; }
  .nav-links { gap: 1.5rem; }
  #hero { grid-template-columns: 1fr; padding: calc(110px + var(--bandeau-h)) 2rem 4rem; }
  .hero-content { padding: 0; }
  .hero-visual { display: none; }
  section { padding: 5rem 2rem; }
  .sophrologie-grid, .apropos-grid, .rdv-grid { grid-template-columns: 1fr; gap: 3rem; }
  .seances-grid { grid-template-columns: 1fr; }
  .seance-mode-label { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --bandeau-h: 54px; }
  .bandeau-bilan { font-size: 0.74rem; flex-wrap: wrap; min-height: var(--bandeau-h); height: auto; padding: 0.45rem 1rem; }
  nav { padding: 0.8rem 1.2rem; }
  .nav-logo img { height: 56px; }
  #hero { padding-top: calc(82px + var(--bandeau-h)); }
  .nav-links { display: none; }
  .hero-eyebrow { letter-spacing: 0.08em; }
  section { padding: 4rem 1.2rem; }
}
