:root{
  --bg: #fff5f7;
  --panel: rgba(255,255,255,.78);
  --text: #2a1420;
  --muted: rgba(42,20,32,.72);
  --line: rgba(42,20,32,.12);
  --accent: #ff2d6f;
  --shadow: 0 20px 60px rgba(42,20,32,.10);
  --shadow2: 0 10px 30px rgba(42,20,32,.10);
  --radius: 22px;
  --radius2: 28px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1400px 900px at 15% 10%, #ffe0ea 0%, rgba(255,233,238,0) 55%),
              radial-gradient(1200px 800px at 85% 15%, #ffd3e6 0%, rgba(229,247,244,0) 52%),
              radial-gradient(1200px 900px at 50% 95%, #ffd0dc 0%, rgba(255,241,221,0) 48%),
              var(--bg);
  overflow-x:hidden;
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-orb{
  position: fixed;
  filter: blur(60px);
  opacity:.55;
  z-index:-2;
  pointer-events:none;
  border-radius:999px;
}
.orb-1{ width:520px; height:520px; background:#ffb3c7; top:-200px; left:-180px; }
.orb-2{ width:520px; height:520px; background:#ff8fb1; top:-170px; right:-210px; }
.orb-3{ width:520px; height:520px; background:#ff9db8; bottom:-260px; left:25%; }

.topbar{
  position: sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(255,245,247,.68);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}

.brand-mark{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,45,111,.35), rgba(255,143,177,.35));
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}

.brand img{
    max-height: 400px;
}
.brand-name .dot{ color: var(--accent); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  font-size: 14px;
}
.nav a:hover{ color:var(--text); }

.menu{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  padding:10px 14px;
  font-weight:600;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding: 10px 0 14px;
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(42,20,32,.16);
  background: linear-gradient(135deg, rgba(255,45,111,.30), rgba(255,111,145,.26));
  box-shadow: var(--shadow2);
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
  letter-spacing:.2px;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-small{ padding: 10px 14px; font-size: 14px; }
.btn-ghost{ background: rgba(255,255,255,.62); }

.hero{ padding: 46px 0 24px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.kicker{
  margin:0 0 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing:.2px;
}
h1{
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  margin: 0 0 14px;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 18px; }
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  padding: 12px 14px;
  background: rgba(255,255,255,.60);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow2);
  min-width: 170px;
}
.badge-title{ font-size: 12px; color: var(--muted); font-weight: 700; }
.badge-value{ font-size: 14px; font-weight: 700; margin-top:4px; }

.hero-card{
  position: sticky;
  top: 92px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.portrait-wrap{ position: relative; padding: 18px 18px 0; }
.portrait{
  width:100%;
  height:auto;
  border-radius: 24px;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  display:block;
}
.portrait-glow{
  position:absolute;
  inset: 6px 8px 20px;
  background: radial-gradient(400px 240px at 50% 20%, rgba(255,45,111,.35), rgba(255,143,177,.15), transparent 60%);
  filter: blur(16px);
  z-index:-1;
}
.hero-card-inner{ padding: 16px 18px 18px; }

.offer-pill{
  gap:10px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(42,20,32,.14);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: var(--shadow2);
  margin-top:20px;
}
.offer-pill strong{ font-weight: 800; }
.spark{ color: var(--accent); }

.card-text{ margin: 12px 0 14px; color: var(--muted); line-height: 1.7; }

.callbox{
  padding: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.callbox-title{ font-weight:800; }
.callbox-number{
  display:inline-block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  text-decoration:none;
}
.callbox-note{ margin-top:6px; color: var(--muted); font-size: 13px; line-height:1.5; }

.section{ padding: 42px 0; }
.section.soft{
  background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.55) 15%, rgba(255,255,255,.35) 85%, rgba(255,255,255,0) 100%);
  border-top: 1px solid rgba(42,20,32,.06);
  border-bottom: 1px solid rgba(42,20,32,.06);
}
.section-head{ max-width: 820px; }
h2{
  font-family: Fraunces, serif;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 8px;
}
.section-head p{ margin:0; color: var(--muted); line-height: 1.7; }

.spread{ margin-top: 18px; }
.spread-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin: 12px 0 18px;
}
.micro{ font-size: 12px; color: var(--muted); font-weight: 600; }
.micro-tight{ margin: 10px 0 0; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.card-slot{
  background: rgba(255,255,255,.64);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.slot-label{
  font-weight: 800;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.tarot-card{
  width:100%;
  border:0;
  padding:0;
  margin: 10px 0 10px;
  background: transparent;
  cursor:pointer;
  perspective: 1200px;
}
.card-face{
  position: relative;
  width:100%;
  aspect-ratio: 3 / 5;
  border-radius: 18px;
  border: 1px solid rgba(42,20,32,.16);
  box-shadow: var(--shadow2);
  overflow:hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.card-back{
  display:grid;
  place-items:center;
  background:
    radial-gradient(240px 220px at 50% 40%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(255,143,177,.42), rgba(255,45,111,.38));
}
.sigil{
  font-size: 34px;
  width: 54px;
  height: 54px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(42,20,32,.18);
  background: rgba(255,255,255,.55);
}
.back-title{
  position:absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  text-align:center;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(42,20,32,.70);
}
.card-front{
  position:absolute;
  inset:0;
  transform: rotateY(180deg);
  background: rgba(255,255,255,.92);
  display:block;
}
.tarot-card .card-back,
.tarot-card .card-front{
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.tarot-card.revealed .card-back{ transform: rotateY(180deg); }
.tarot-card.revealed .card-front{ transform: rotateY(0deg); }

.card-caption{
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  min-height: 46px;
}

.spread-note{ margin-top: 18px; }
.note-card{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.note-card h3{
  margin: 0 0 8px;
  font-family: Fraunces, serif;
  font-size: 22px;
}
.note-card p{ margin: 0 0 14px; color: var(--muted); line-height: 1.7; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.info-card{
  background: rgba(255,255,255,.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.info-card h3{ margin:0 0 8px; font-family: Fraunces, serif; }
.info-card p{ margin:0; color: var(--muted); line-height:1.7; }

.quote{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.quote-mark{
  font-family: Fraunces, serif;
  font-size: 44px;
  line-height: 1;
  color: rgba(255,45,111,.85);
}
.quote-text{ margin: 0; color: var(--muted); line-height:1.8; }
.quote-by{ margin: 10px 0 0; font-weight: 900; }

.btn-landing-partenaire,
.btn {
	background:#f6d0dc !important;
	color:#000000 !important;
	border:2px solid #ffffff;
}
.footer-cta{ margin-top: 18px; }
.footer-cta-inner{
margin-top:20px !important;
  
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  background: linear-gradient(135deg, rgba(255,45,111,.22), rgba(255,143,177,.24));
  border: 1px solid rgba(42,20,32,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.footer-cta h3{ margin:0 0 6px; font-family: Fraunces, serif; }
.footer-cta p{ margin:0; color: var(--muted); }

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(42,20,32,.08);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 14px;
  align-items:start;
}
.footer-brand{
  font-family: Fraunces, serif;
  font-weight: 700;
  font-size: 18px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  justify-content:center;
}
.footer a{ color: var(--muted); text-decoration:none; font-weight:700; }
.footer a:hover{ color: var(--text); }
.subtle{ opacity:.85; }

@media (max-width: 960px){
  .hero-card{ position: relative; top:0; }
  .hero-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu{ display:inline-flex; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content:flex-start; }
}
@media (max-width: 820px){
  .cards{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

