/* =========================================
   PetitLenormand.com — Mystery Luxury Theme
   styles.css
   ========================================= */

/* -----------------------------
   Fonts
   ----------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

/* -----------------------------
   Design Tokens
   ----------------------------- */
:root {
  --bg-night: #0B1020;
  --bg-night-soft: #0E1328;

  --text-ivory: #F4F1EC;
  --text-ivory-soft: #EFE9DD;
  --text-muted: #B9B6AE;

  --gold-patina: #C6A75E;
  --gold-patina-soft: #BFA15A;

  --red-depth: #5C1A1B;

  --border-soft: rgba(244, 241, 236, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-tighter: 0 8px 18px rgba(0, 0, 0, 0.28);

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --font-title: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 980px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --speed: 220ms;
}

/* -----------------------------
   Base
   ----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg-night);
  color: var(--text-ivory);
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.005em;
  font-weight: 400;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Subtle background aura */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 15% 10%, rgba(198, 167, 94, 0.08), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(244, 241, 236, 0.06), transparent 60%),
    radial-gradient(700px 500px at 55% 90%, rgba(92, 26, 27, 0.06), transparent 55%);
  opacity: 1;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: rgba(198, 167, 94, 0.25);
  color: var(--text-ivory);
}

/* -----------------------------
   Layout helpers
   ----------------------------- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.stack {
  display: grid;
  gap: 18px;
}

/* -----------------------------
   Typography
   ----------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--text-ivory);
  letter-spacing: 0.02em;
  margin: 0 0 12px 0;
  line-height: 1.18;
  font-weight: 500;
}

h1 {
  font-size: clamp(32px, 4.2vw, 52px);
}

h2 {
  font-size: clamp(24px, 3.2vw, 36px);
}

h3 {
  font-size: clamp(20px, 2.6vw, 26px);
}

p {
  margin: 0 0 14px 0;
  color: var(--text-ivory-soft);
}

.kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* -----------------------------
   Accessibility
   ----------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(14, 19, 40, 0.9);
  border: 1px solid var(--border-soft);
  color: var(--text-ivory);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform var(--speed) var(--ease);
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
}

/* -----------------------------
   Header
   ----------------------------- */
.site-header {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.68);
  border-bottom: 1px solid rgba(244, 241, 236, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 180px;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  color: var(--text-ivory);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--bg-night);
  background: var(--gold-patina);
  box-shadow: 0 0 0 6px rgba(198, 167, 94, 0.10);
  font-size: 0.8rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: color var(--speed) var(--ease);
}

.nav-link:hover {
  color: var(--text-ivory);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 860px) {
  .site-nav {
    display: flex;
  }
}

/* -----------------------------
   Buttons
   ----------------------------- */
.btn {
  appearance: none;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-ivory);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              background-color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 167, 94, 0.35);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.btn:active {
  transform: translateY(0px);
}

.btn:focus-visible {
  outline: 2px solid rgba(198, 167, 94, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  background: rgba(198, 167, 94, 0.14);
  border-color: rgba(198, 167, 94, 0.25);
}

.btn-primary:hover {
  background: rgba(198, 167, 94, 0.18);
  border-color: rgba(198, 167, 94, 0.38);
}

.btn-secondary {
  background: rgba(244, 241, 236, 0.04);
  border-color: rgba(244, 241, 236, 0.14);
}

.btn-secondary:hover {
  background: rgba(244, 241, 236, 0.06);
  border-color: rgba(198, 167, 94, 0.22);
}

/* -----------------------------
   Hero
   ----------------------------- */
.hero {
  padding: 68px 0 56px 0;
}

.hero-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 10px;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  max-width: 60ch;
  color: var(--text-ivory-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-item {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: rgba(14, 19, 40, 0.35);
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}

.proof-strong {
  color: var(--text-ivory);
  font-weight: 600;
}

.proof-soft {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.visual-card {
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: linear-gradient(180deg, rgba(14, 19, 40, 0.72), rgba(14, 19, 40, 0.35));
  box-shadow: var(--shadow-soft);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.visual-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 35% 35%, rgba(198, 167, 94, 0.18), transparent 50%);
  filter: blur(18px);
  opacity: 1;
}

.visual-symbol {
  position: relative;
  font-family: var(--font-title);
  font-size: 72px;
  line-height: 1;
  color: var(--text-ivory);
  text-shadow: 0 0 24px rgba(198, 167, 94, 0.16);
  margin-bottom: 12px;
}

.visual-caption {
  position: relative;
  color: var(--text-muted);
  max-width: 34ch;
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* -----------------------------
   Social proof
   ----------------------------- */
.social-proof {
  padding: 18px 0 46px 0;
}

.social-inner {
  border-top: 1px solid rgba(244, 241, 236, 0.08);
  padding-top: 24px;
}

.social-line {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-muted);
}

.social-line p {
  margin: 0;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-patina);
  box-shadow: 0 0 0 6px rgba(198, 167, 94, 0.10);
  flex: 0 0 auto;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat {
  padding: 16px 14px;
  border: 1px solid rgba(244, 241, 236, 0.10);
  border-radius: var(--radius-md);
  background: rgba(14, 19, 40, 0.28);
  box-shadow: var(--shadow-tighter);
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-ivory);
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .social-stats {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------
   Why section
   ----------------------------- */
.why {
  padding: 56px 0;
}

.why-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: linear-gradient(180deg, rgba(14, 19, 40, 0.55), rgba(14, 19, 40, 0.28));
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.why-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.why-col h3 {
  margin-bottom: 8px;
}

@media (min-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -----------------------------
   Shared section heads
   ----------------------------- */
.section-head {
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 70ch;
}

/* -----------------------------
   Tiles (Encyclopédie)
   ----------------------------- */
.feature {
  padding: 64px 0;
}

.feature.alt {
  padding: 64px 0;
}

.tiles {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.tile {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: rgba(14, 19, 40, 0.30);
  box-shadow: var(--shadow-tighter);
  padding: 18px 18px 16px 18px;
  transition: transform var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              background-color var(--speed) var(--ease);
}

.tile h3 {
  margin-bottom: 6px;
}

.tile p {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.tile-cta {
  color: var(--gold-patina);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 167, 94, 0.22);
  background: rgba(14, 19, 40, 0.36);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 860px) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -----------------------------
   Steps (Tirage guidé)
   ----------------------------- */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.step {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: linear-gradient(180deg, rgba(14, 19, 40, 0.42), rgba(14, 19, 40, 0.24));
  box-shadow: var(--shadow-tighter);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.25);
  background: rgba(198, 167, 94, 0.10);
  color: var(--text-ivory);
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -----------------------------
   Learn grid
   ----------------------------- */
.learn {
  padding: 64px 0;
}

.learn-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.learn-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: rgba(14, 19, 40, 0.30);
  box-shadow: var(--shadow-tighter);
  padding: 18px;
  transition: transform var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              background-color var(--speed) var(--ease);
}

.learn-card p {
  color: var(--text-muted);
}

.learn-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 167, 94, 0.22);
  background: rgba(14, 19, 40, 0.36);
}

@media (min-width: 860px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .learn-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -----------------------------
   Signature section
   ----------------------------- */
.signature {
  padding: 64px 0;
}

.signature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: linear-gradient(180deg, rgba(14, 19, 40, 0.55), rgba(14, 19, 40, 0.22));
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.pillars {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.pillar {
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 241, 236, 0.08);
  background: rgba(14, 19, 40, 0.25);
  padding: 16px;
}

.pillar p {
  color: var(--text-muted);
}

.signature-line {
  margin-top: 14px;
  color: var(--text-ivory-soft);
  font-family: var(--font-title);
  letter-spacing: 0.02em;
}

@media (min-width: 860px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -----------------------------
   Offers
   ----------------------------- */
.offers {
  padding: 64px 0;
}

.offer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.offer {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: rgba(14, 19, 40, 0.30);
  box-shadow: var(--shadow-tighter);
  padding: 20px;
}

.offer-meta {
  color: var(--text-muted);
  margin-top: -6px;
}

.offer p {
  color: var(--text-muted);
}

@media (min-width: 860px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -----------------------------
   Lead magnet
   ----------------------------- */
.lead {
  padding: 64px 0;
}

.lead-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: linear-gradient(180deg, rgba(14, 19, 40, 0.55), rgba(14, 19, 40, 0.24));
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.lead-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.lead-form input {
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.14);
  background: rgba(14, 19, 40, 0.55);
  padding: 12px 14px;
  color: var(--text-ivory);
  font-family: var(--font-body);
  font-size: 1rem;
}

.lead-form input:focus {
  outline: none;
  border-color: rgba(198, 167, 94, 0.35);
  box-shadow: 0 0 0 4px rgba(198, 167, 94, 0.10);
}

.micro {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .lead-form {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* -----------------------------
   FAQ
   ----------------------------- */
.faq {
  padding: 64px 0 72px 0;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 241, 236, 0.10);
  background: rgba(14, 19, 40, 0.26);
  box-shadow: var(--shadow-tighter);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-ivory);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "＋";
  float: right;
  color: rgba(198, 167, 94, 0.75);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-item p {
  margin-top: 10px;
  color: var(--text-muted);
}

/* -----------------------------
   Footer
   ----------------------------- */
.site-footer {
  padding: 44px 0 56px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(244, 241, 236, 0.06);
  background: rgba(11, 16, 32, 0.50);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-line {
  color: var(--text-muted);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

.footer-links a:hover {
  color: var(--text-ivory);
}

@media (min-width: 860px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* -----------------------------
   Responsive tweaks
   ----------------------------- */
@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero {
    padding-top: 56px;
  }
}

/* -----------------------------
   Reduced motion
   ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}
/* Hero visual becomes a vertical card */
.visual-card{
  width: min(320px, 100%);
  aspect-ratio: 3 / 4;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.visual-card::before{
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: linear-gradient(180deg, rgba(244, 241, 236, 0.06), rgba(14, 19, 40, 0.08));
  z-index: 1;
}

.visual-glow{
  z-index: 0;
}

.visual-symbol{
  position: relative;
  z-index: 2;
  font-size: 86px;
  margin: 8px 0 0 8px;
  opacity: 0.95;
}

.visual-caption{
  position: relative;
  z-index: 2;
  margin: 0 8px 10px 8px;
  max-width: 22ch;
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* Slightly tighter on small screens */
@media (max-width: 520px){
  .visual-card{
    width: min(300px, 100%);
  }
}

/* -----------------------------
   Cartes
   ----------------------------- */
img.card {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 2px 10px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transform: translateZ(0);
}

a .card,
a img.card {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  will-change: transform;
}

a:hover img.card,
a:focus-visible img.card {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 6px 16px rgba(0, 0, 0, 0.14);
  filter: saturate(1.03) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
  a .card,
  a img.card {
    transition: none;
  }

  a:hover img.card,
  a:focus-visible img.card {
    transform: none;
    filter: none;
  }
}

img.card.cardCompact {
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.12);
}
.visual-thumbs{
  position:relative;
  width:min(360px,100%);
  aspect-ratio:591/827;
  margin:0 auto;
  overflow:visible;
}

.visual-thumbs .card{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 18px 60px rgba(0,0,0,0.38);
  background:rgba(255,255,255,0.02);
  transform-origin:50% 85%;
  transition:transform 420ms ease, filter 420ms ease;
}

.visual-thumbs .card:nth-child(1){
  transform:translate(-12%,6%) rotate(-8deg) scale(0.94);
  filter:saturate(0.95) contrast(0.98);
  z-index:1;
}

.visual-thumbs .card:nth-child(2){
  transform:translate(0,0) rotate(0) scale(1);
  z-index:3;
}

.visual-thumbs .card:nth-child(3){
  transform:translate(12%,7%) rotate(8deg) scale(0.94);
  filter:saturate(0.95) contrast(0.98);
  z-index:2;
}

@media (max-width:640px){
  .visual-thumbs{ width:min(300px,92vw); }
}

@media (prefers-reduced-motion:reduce){
  .visual-thumbs .card{ transition:none; }
}
/* Horoscope block for /fr/ home */

.daily-oracle {
  padding: 1.75rem 0 0.25rem;
}

.oracle-card {
  position: relative;
  border-radius: 22px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(900px 500px at 12% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 88% 90%, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(10, 10, 14, 0.65);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.oracle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.oracle-kicker {
  margin: 0 0 0.35rem;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  opacity: 0.75;
}

.oracle-h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 1.1rem + 1vw, 1.75rem);
  line-height: 1.15;
}

.oracle-sub {
  margin: 0;
  max-width: 58ch;
  line-height: 1.65;
  opacity: 0.86;
}

.oracle-grid {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  gap: 1.15rem;
  align-items: start;
}

.oracle-controls {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.oracle-label {
  display: block;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.oracle-selectWrap {
  position: relative;
}

.oracle-select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  padding-right: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: #2b2133;
  font-weight: 650;
  outline: none;
}

.oracle-select option {
  color: #2b2133;
}

.oracle-select:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.oracle-miniNote {
  margin-top: 0.75rem;
  line-height: 1.6;
  opacity: 0.82;
}

.oracle-microLinks {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.oracle-link {
  text-decoration: none;
  opacity: 0.86;
}

.oracle-link:hover {
  opacity: 1;
}

.oracle-preview {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.oracle-pair {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.oracle-imgSlot {
  width: 82px;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.oracle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oracle-pair.is-empty .oracle-imgSlot {
  opacity: 0.55;
}

.oracle-text {
  min-width: 0;
}

.oracle-combo {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.oracle-teaser {
  margin: 0 0 0.9rem;
  line-height: 1.65;
  opacity: 0.9;
}

.oracle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.oracle-foot {
  margin: 0.85rem 0 0;
  line-height: 1.6;
  opacity: 0.72;
}

@media (max-width: 900px) {
  .oracle-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .oracle-grid {
    grid-template-columns: 1fr;
  }

  .oracle-preview {
    grid-template-columns: 1fr;
  }

  .oracle-imgSlot {
    width: 86px;
    height: 124px;
  }
}
/* Upgrade premium horoscope block */

.daily-oracle {
  padding: 2.25rem 0 0.6rem;
}

.oracle-card {
  border-radius: 26px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(1000px 560px at 12% 10%, rgba(255, 255, 255, 0.09), transparent 62%),
    radial-gradient(900px 520px at 88% 90%, rgba(255, 255, 255, 0.07), transparent 62%),
    rgba(10, 10, 14, 0.68);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
}

.oracle-grid {
  gap: 1.3rem;
}

.oracle-controls {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.1rem;
}

.oracle-preview {
  border-radius: 20px;
  padding: 1.15rem;
  gap: 1.15rem;
  overflow: visible;
}

.oracle-pair {
  gap: 0.85rem;
}

.oracle-imgSlot {
  width: 118px;
  height: 168px;
  flex: 0 0 118px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.oracle-combo {
  font-size: 1.12rem;
}

.oracle-sub {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .oracle-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .oracle-pair {
    justify-content: center;
    width: 100%;
  }

  .oracle-imgSlot {
    width: 128px;
    height: 182px;
    flex: 0 0 128px;
  }

  .oracle-text {
    text-align: center;
  }

  .oracle-actions {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .oracle-imgSlot {
    width: 120px;
    height: 172px;
    flex: 0 0 120px;
  }
}
/* Force premium sizing for horoscope cards */

.daily-oracle .oracle-card {
  border-radius: 26px !important;
  padding: 1.6rem !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: radial-gradient(1000px 560px at 12% 10%, rgba(255, 255, 255, 0.09), transparent 62%),
    radial-gradient(900px 520px at 88% 90%, rgba(255, 255, 255, 0.07), transparent 62%),
    rgba(10, 10, 14, 0.68) !important;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42) !important;
}

.daily-oracle .oracle-grid {
  gap: 1.3rem !important;
}

.daily-oracle .oracle-preview {
  border-radius: 20px !important;
  padding: 1.15rem !important;
  gap: 1.15rem !important;
  overflow: visible !important;
}

.daily-oracle .oracle-pair {
  display: flex !important;
  gap: 0.85rem !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.daily-oracle .oracle-imgSlot {
  width: 118px !important;
  height: 168px !important;
  flex: 0 0 118px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45) !important;
}

.daily-oracle .oracle-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  .daily-oracle .oracle-preview {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .daily-oracle .oracle-pair {
    justify-content: center !important;
    width: 100% !important;
  }

  .daily-oracle .oracle-imgSlot {
    width: 128px !important;
    height: 182px !important;
    flex: 0 0 128px !important;
  }

  .daily-oracle .oracle-actions {
    justify-content: center !important;
  }
}

@media (max-width: 420px) {
  .daily-oracle .oracle-imgSlot {
    width: 120px !important;
    height: 172px !important;
    flex: 0 0 120px !important;
  }
}
.daily-oracle .oracle-card { outline: 3px solid rgba(207, 154, 105, 0.76) !important; }

/* Carte du jour – section home */

.pl-card-of-day {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(
    180deg,
    rgba(251, 248, 242, 0.96) 0%,
    rgba(246, 244, 251, 0.96) 55%,
    rgba(246, 244, 251, 0) 100%
  );
}

/* Conteneur interne */

.pl-card-of-day .pl-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Titre + sous-titre */

.pl-card-of-day .pl-section-header {
  text-align: left;
  max-width: 640px;
  margin: 0 0 2.5rem 0;
}

.pl-card-of-day .pl-section-title {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  color: #1f1633;
  letter-spacing: 0.02em;
  font-weight: 600;
  opacity: 1;
}

.pl-card-of-day .pl-section-subtitle {
  margin: 0;
  color: #4f4b5c;
  font-size: 0.98rem;
}

/* Layout */

.pl-daily-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pl-daily-card-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pl-daily-card-image::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.85), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(217, 187, 137, 0.32), transparent 60%);
  filter: blur(6px);
  opacity: 0.9;
  z-index: 0;
}

.pl-daily-card-image a {
  position: relative;
  z-index: 1;
  display: inline-block;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(12, 6, 24, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  transform-origin: center;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    filter 220ms ease-out;
}

.pl-daily-card-image a:hover,
.pl-daily-card-image a:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow:
    0 26px 60px rgba(12, 6, 24, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  filter: saturate(1.05);
}

#daily-card-img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
}

/* Bloc texte carte du jour */

.pl-daily-card-text {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  padding: 1.8rem 2rem;
  box-shadow: 0 14px 35px rgba(18, 10, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.pl-daily-card-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  color: #221b33;
}

.pl-daily-card-opening,
.pl-daily-card-energy,
.pl-daily-card-invitation,
.pl-daily-card-clin {
  margin: 0 0 0.6rem 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3f384f;
}

.pl-daily-card-opening {
  font-weight: 500;
}

.pl-daily-card-clin {
  font-style: italic;
  color: #6a607f;
}

/* Questions */

.pl-daily-card-questions {
  list-style: none;
  margin: 0 0 1.1rem 0;
  padding: 0;
}

.pl-daily-card-questions li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #403955;
}

.pl-daily-card-questions li + li {
  margin-top: 0.25rem;
}

.pl-daily-card-questions li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b3874b;
  font-size: 0.9rem;
}

/* Lien pilule */

.pl-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #2f2744;
  background: rgba(243, 235, 220, 0.9);
  border: 1px solid rgba(204, 176, 126, 0.7);
  box-shadow: 0 6px 18px rgba(34, 24, 54, 0.12);
  transition:
    background-color 160ms ease-out,
    color 160ms ease-out,
    box-shadow 160ms ease-out,
    transform 160ms ease-out;
}

.pl-link-pill:hover,
.pl-link-pill:focus-visible {
  background: #cfa869;
  color: #1d132d;
  box-shadow: 0 9px 24px rgba(34, 24, 54, 0.22);
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 900px) {
  .pl-card-of-day {
    padding: 3rem 0 3rem;
  }

  .pl-daily-card-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .pl-daily-card-image {
    order: -1;
  }

  .pl-daily-card-text {
    padding: 1.4rem 1.3rem;
  }

  #daily-card-img {
    max-width: 220px;
  }
}

@media (max-width: 560px) {
  .pl-card-of-day .pl-section-header {
    margin-bottom: 2rem;
  }

  .pl-card-of-day .pl-section-title {
    font-size: 1.35rem;
  }

  .pl-card-of-day .pl-section-subtitle {
    font-size: 0.9rem;
  }

  .pl-daily-card-text {
    border-radius: 1.1rem;
  }
}

/* Carte du jour : fondu propre avec la section suivante */

#daily-card {
  position: relative;
  padding: 4rem 0 2.5rem;
  background: transparent !important;
  overflow: visible;
}

/* Voile clair qui se dissout : le fond sombre de la section suivante apparaît en douceur */
#daily-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #fbf8f2 0%,
    #f6f4fb 55%,
    rgba(246, 244, 251, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Titre lisible dans cette section */
#daily-card .pl-section-title {
  color: #1f1633 !important;
  opacity: 1 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* Overrides finaux – Carte du jour */
#daily-card.pl-card-of-day {
  position: relative;
  padding: 4rem 0 2.5rem;
  background: transparent !important; /* on coupe le gros bandeau clair */
  overflow: visible;
}

/* Aura claire limitée qui se fond dans le fond nuit */
#daily-card.pl-card-of-day::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  /* hauteur limitée pour éviter le “bloc blanc” jusqu’en bas */
  height: 460px;
  background: linear-gradient(
    180deg,
    #fbf8f2 0%,
    #f6f4fb 55%,
    rgba(246, 244, 251, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* On s’assure que le titre reste bien lisible sur ce fond */
#daily-card .pl-section-title {
  color: #1f1633 !important;
  opacity: 1 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.entryModes {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.entryModesHeader {
  text-align: center;
  margin-bottom: 2.5rem;
}

.entryModesIntro {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.entryModesTitle {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 500;
}

/* Grille */

.entryModesGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Cartes */

.entryModesCard {
  padding: 1.5rem 1.4rem;
  border-radius: 1.2rem;
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid rgba(244, 241, 236, 0.06);
  backdrop-filter: blur(14px);
}

/* Icônes */

.entryModesIcon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 60%);
  flex-shrink: 0;
}

.entryModesIcon svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

/* Texte */

.entryModesLabel {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.entryModesText {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 960px) {
  .entryModesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entryModes {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 640px) {
  .entryModesGrid {
    grid-template-columns: minmax(0, 1fr);
  }

  .entryModes {
    padding-block: 3rem;
  }

  .entryModesCard {
    padding: 1.4rem 1.3rem;
  }

  .entryModesIcon {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .entryModesIcon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
/* Tirage du moment - Home */

.home-section-tirage-moment {
  padding: 3.5rem 1.5rem;
}

.home-tirage-moment-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 1.6rem;
  padding: 2.2rem 2.3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(198, 167, 94, 0.16), transparent 65%),
    var(--bg-night-soft, #0e1328);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
}

.home-tirage-moment-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--text-ivory, #f4f1ec);
}

.home-tirage-moment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 241, 236, 0.18);
}

.home-tirage-moment-title {
  font-family: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0;
}

.home-tirage-moment-kicker {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-ivory-soft, #efe9dd);
  opacity: 0.95;
}

.home-tirage-moment-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted, #b9b6ae);
}

.home-tirage-moment-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-tirage-moment-cta-main,
.home-tirage-moment-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, color 0.12s ease-out, border-color 0.12s ease-out;
}

.home-tirage-moment-cta-main {
  background: var(--gold-patina, #c6a75e);
  color: #14121c;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.home-tirage-moment-cta-secondary {
  background: transparent;
  color: var(--text-ivory-soft, #efe9dd);
  border: 1px solid rgba(244, 241, 236, 0.28);
}

.home-tirage-moment-cta-main:hover,
.home-tirage-moment-cta-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.home-tirage-moment-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.home-tirage-moment-visual img {
  display: block;
  max-width: 320px;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* Responsive */

@media (max-width: 900px) {
  .home-section-tirage-moment {
    padding: 2.5rem 1.25rem;
  }

  .home-tirage-moment-inner {
    padding: 1.8rem 1.5rem 2rem;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .home-tirage-moment-visual img {
    max-width: 260px;
    margin: 0 auto;
  }

  .home-tirage-moment-title {
    font-size: 1.4rem;
  }
}

