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

    :root {
      /* ─── THÈME CLAIR (parchemin) — original sombre sauvegardé dans main-dark.css ─── */
      --bg:       #f3ede0;   /* parchemin chaud */
      --bg-alt:   #e9e0cf;   /* sections alternées */
      --bg-card:  #fbf7ee;   /* cartes, légèrement plus claires que le fond */
      --gold:     #8a6520;   /* bronze — lisible sur fond clair (labels, accents) */
      --gold-dim: #8f6824;   /* filets, bordures, petits labels (AA) */
      --green:    #3f6238;
      --cream:    #2b2317;   /* repris comme encre des titres */
      --cream-dim:#5f5340;   /* texte secondaire */
      --text:     #352b1c;   /* encre principale */
      --text-dim: #726552;
      --border:   rgba(120,88,40,0.24);
      --nav-h:    60px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Lora', Georgia, serif;
      font-size: 18px;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* Grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.038;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 140px 140px;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      transition: background 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      background: rgba(243,237,224,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom-color: var(--border);
    }

    .nav-brand {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--cream); }

    /* ─── HERO ─── */
    #accueil {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 6vw, 5rem) 7rem;
      position: relative;
      overflow: hidden;
    }

    #accueil::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 65% 55% at 50% 38%, rgba(79,115,71,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 45% 38% at 72% 72%, rgba(200,155,90,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 0.7rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2.2rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 8vw, 7rem);
      font-weight: 600;
      line-height: 1.02;
      color: var(--cream);
      margin-bottom: 1.1rem;
      letter-spacing: -0.01em;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 2.8vw, 1.65rem);
      font-weight: 400;
      font-style: italic;
      color: var(--cream-dim);
      max-width: 580px;
      line-height: 1.5;
      margin-bottom: 3rem;
    }

    .hero-volumes {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 3.5rem;
    }

    .hero-vol {
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      color: var(--text-dim);
    }

    .hero-vol strong {
      color: var(--gold-dim);
      font-weight: 500;
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.8rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
      cursor: pointer;
      background: transparent;
    }

    .btn:hover {
      background: var(--gold);
      color: var(--bg);
    }

    /* ─── CONTAINERS ─── */
    .container {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 6vw, 5rem);
    }

    .section-pad { padding-top: 7rem; padding-bottom: 7rem; }

    .section-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.12;
      margin-bottom: 2rem;
    }

    .rule {
      width: 44px;
      height: 1px;
      background: var(--gold-dim);
      margin: 1.8rem 0 2.2rem;
    }

    p { margin-bottom: 1.2rem; }
    p:last-child { margin-bottom: 0; }

    /* ─── LE LIVRE ─── */
    #livre { background: var(--bg); }

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

    .livre-cover {
      aspect-ratio: 11 / 17;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Remplacer ce bloc par <img src="images/couverture.jpg"> le moment venu */
    .cover-inner {
      text-align: center;
      padding: 2.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .cover-inner .c-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--cream-dim);
      line-height: 1.35;
      margin-bottom: auto;
      margin-top: auto;
    }

    .cover-inner .c-rule {
      width: 30px;
      height: 1px;
      background: var(--gold-dim);
      margin: 1.5rem auto;
    }

    .cover-inner .c-author {
      font-family: 'Jost', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 0;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 2.2rem;
    }

    .tag {
      padding: 0.34rem 1rem;
      border: 1px solid var(--border);
      font-family: 'Jost', sans-serif;
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cream-dim);
    }

    /* ─── STRUCTURE ─── */
    #structure { background: var(--bg-alt); }

    .parties-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .partie-card {
      border: 1px solid var(--border);
      padding: 1.8rem 1.6rem 1.5rem;
      background: var(--bg-card);
    }

    .partie-head {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      padding-bottom: 0.85rem;
      margin-bottom: 0.9rem;
      border-bottom: 1px solid var(--border);
    }

    .partie-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--gold);
      opacity: 0.85;
      line-height: 1;
      min-width: 1.6rem;
    }

    .partie-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.25;
    }

    .partie-title--liminaire {
      font-family: 'Jost', sans-serif;
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .ch-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ch-list li {
      display: grid;
      grid-template-columns: 1.8rem 1fr;
      column-gap: 0.7rem;
      align-items: baseline;
      font-family: 'Jost', sans-serif;
      padding: 0.45rem 0;
      border-top: 1px solid rgba(60,40,10,0.08);
      line-height: 1.5;
      break-inside: avoid;
    }

    .ch-list li:first-child { border-top: none; }

    .ch-num {
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      font-variant-numeric: tabular-nums;
      text-align: right;
    }

    .ch-name {
      color: var(--text);
      font-size: 0.98rem;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .ch-name em {
      display: block;
      font-style: italic;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--cream-dim);
      margin-top: 0.05rem;
    }

    .ch-list--cols { columns: 2; column-gap: 2.5rem; }

    @media (max-width: 640px) {
      .ch-list--cols { columns: 1; }
    }

    /* ─── L'AUTEUR ─── */
    #auteur { background: var(--bg); }

    .auteur-grid {
      display: grid;
      grid-template-columns: 4fr 8fr;
      gap: 5rem;
      align-items: start;
    }

    .auteur-photo {
      aspect-ratio: 3 / 4;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auteur-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Placeholder si pas d'image */
    .photo-ph {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-style: italic;
      color: var(--text-dim);
    }

    /* ─── FAQ ─── */
    #faq { background: var(--bg-alt); }

    .faq-inner { max-width: 760px; }

    details {
      border-top: 1px solid var(--border);
    }

    details:last-of-type { border-bottom: 1px solid var(--border); }

    summary {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.28rem;
      font-weight: 500;
      color: var(--cream);
      padding: 1.4rem 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      user-select: none;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: '+';
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 1.5rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.25s;
      line-height: 1;
    }

    details[open] summary::after { transform: rotate(45deg); }

    .faq-answer {
      padding-bottom: 1.6rem;
      color: var(--text);
      font-size: 1.02rem;
      line-height: 1.82;
    }

    /* ─── CONTACT ─── */
    #contact { background: var(--bg); }

    .contact-inner { max-width: 620px; }

    form {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

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

    label {
      display: block;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream-dim);
      margin-bottom: 0.45rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Lora', serif;
      font-size: 1rem;
      padding: 0.78rem 1rem;
      outline: none;
      -webkit-appearance: none;
      transition: border-color 0.2s;
      border-radius: 0;
    }

    input:focus, textarea:focus {
      border-color: var(--gold-dim);
    }

    textarea { resize: vertical; min-height: 130px; }

    /* honeypot */
    .ohnohoney { position: absolute; left: -9999px; }

    .btn-submit {
      align-self: flex-start;
      margin-top: 0.4rem;
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.2rem clamp(1.5rem, 6vw, 5rem);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dim);
    }

    .footer-links {
      display: flex;
      gap: 1.8rem;
      list-style: none;
    }

    .footer-links a {
      font-family: 'Jost', sans-serif;
      font-size: 0.74rem;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--cream-dim); }

    .footer-copy {
      font-family: 'Jost', sans-serif;
      font-size: 0.74rem;
      color: var(--text-dim);
    }

    /* ─── ORB ─── */
    .hero-breath {
      display: flex; flex-direction: column;
      align-items: center; gap: 1.2rem;
      margin: 2rem auto 2.8rem;
    }

    .orb-stage {
      position: relative; width: 200px; height: 200px;
      display: flex; align-items: center; justify-content: center;
    }

    .orb {
      position: absolute; width: 110px; height: 110px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 32%, #f0d898, #c89b5a 42%, #7a5e30 80%);
      box-shadow: 0 0 55px 10px rgba(200,155,90,0.42), inset 0 0 26px rgba(255,230,160,0.28);
      animation: breathe 12s ease-in-out infinite;
    }

    .orb-ring {
      position: absolute; width: 110px; height: 110px;
      border-radius: 50%; border: 1px solid rgba(200,155,90,0.30);
      animation: breatheRing 12s ease-in-out infinite;
    }

    .orb-ring2 {
      position: absolute; width: 110px; height: 110px;
      border-radius: 50%; border: 1px solid rgba(200,155,90,0.14);
      animation: breatheRing2 12s ease-in-out infinite;
    }

    @keyframes breathe {
      0%   { transform: scale(0.82); box-shadow: 0 0 30px 5px rgba(200,155,90,0.35), inset 0 0 20px rgba(255,230,160,0.2); }
      42%  { transform: scale(1.52); box-shadow: 0 0 75px 20px rgba(200,155,90,0.48), inset 0 0 38px rgba(255,230,160,0.4); }
      50%  { transform: scale(1.52); box-shadow: 0 0 75px 20px rgba(200,155,90,0.48), inset 0 0 38px rgba(255,230,160,0.4); }
      92%  { transform: scale(0.82); box-shadow: 0 0 30px 5px rgba(200,155,90,0.35), inset 0 0 20px rgba(255,230,160,0.2); }
      100% { transform: scale(0.82); }
    }

    @keyframes breatheRing {
      0%   { transform: scale(0.95); opacity: 0.35; }
      42%  { transform: scale(1.80); opacity: 0.85; }
      50%  { transform: scale(1.80); opacity: 0.85; }
      92%  { transform: scale(0.95); opacity: 0.35; }
      100% { transform: scale(0.95); opacity: 0.35; }
    }

    @keyframes breatheRing2 {
      0%   { transform: scale(1.08); opacity: 0.18; }
      42%  { transform: scale(2.15); opacity: 0.42; }
      50%  { transform: scale(2.15); opacity: 0.42; }
      92%  { transform: scale(1.08); opacity: 0.18; }
      100% { transform: scale(1.08); opacity: 0.18; }
    }

    .breath-cue {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-size: 1.3rem;
      color: var(--gold); height: 1.7rem;
      position: relative; width: 160px; text-align: center;
    }

    .breath-cue span { position: absolute; left: 0; right: 0; opacity: 0; }
    .breath-cue .in  { animation: cueIn  12s ease-in-out infinite; }
    .breath-cue .out { animation: cueOut 12s ease-in-out infinite; }

    @keyframes cueIn {
      0%, 2%    { opacity: 0; }
      8%, 40%   { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    @keyframes cueOut {
      0%, 52%   { opacity: 0; }
      58%, 90%  { opacity: 1; }
      98%, 100% { opacity: 0; }
    }

    .orb-note {
      font-family: 'Jost', sans-serif;
      font-size: 0.74rem; color: var(--text-dim);
      letter-spacing: 0.06em;
    }


    /* ─── COUVERTURE (image réelle) ─── */
    .livre-cover {
      cursor: pointer;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

    a.livre-cover:hover {
      border-color: var(--gold-dim);
      transform: translateY(-4px);
      box-shadow: 0 14px 38px rgba(80,55,15,0.20);
    }

    .livre-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ─── MOLÉCULE DANS L'ORBE ─── */
    .orb {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orb-mol {
      width: 68%;
      height: auto;
      opacity: 0.55;
    }

    /* ─── CITATIONS ─── */
    #citations { background: var(--bg); }

    .citations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.6rem 3.5rem;
      margin-top: 3rem;
    }

    .citation {
      border-left: 1px solid var(--gold-dim);
      padding-left: 1.7rem;
    }

    .citation p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 500;
      line-height: 1.4;
      color: var(--cream);
      margin-bottom: 0.9rem;
    }

    .citation cite {
      font-family: 'Jost', sans-serif;
      font-style: normal;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── FADE-IN ─── */
    .fade {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 860px) {
      .nav-links { display: none; }
    }

    @media (max-width: 700px) {
      .livre-grid,
      .auteur-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .livre-cover,
      .auteur-photo { max-width: 280px; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; align-items: flex-start; }
    }

    /* ─── BONUS (modules interactifs) ─── */
    #bonus { background: var(--bg-alt); }

    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3rem;
    }

    .bonus-card {
      display: block;
      text-decoration: none;
      border: 1px solid var(--border);
      background: var(--bg-card);
      padding: 1.6rem 1.5rem;
      transition: border-color 0.25s, transform 0.25s;
    }

    .bonus-card:hover {
      border-color: var(--gold-dim);
      transform: translateY(-4px);
    }

    .bonus-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.25;
      margin-bottom: 0.6rem;
    }

    .bonus-title::after {
      content: ' →';
      color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
    }

    .bonus-fr {
      font-family: 'Jost', sans-serif;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      vertical-align: middle;
    }

    .bonus-sub {
      font-family: 'Lora', serif;
      font-size: 0.92rem;
      color: var(--text-dim);
      line-height: 1.55;
    }

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

    /* ─── CONTACT (lien e-mail) ─── */
    .contact-addr {
      margin-top: 1.4rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
    }

    .contact-addr a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }

    .contact-addr a:hover {
      color: var(--cream);
      border-color: var(--gold-dim);
    }

    /* ─── CONTACT WhatsApp / QR ─── */
    .contact-wa {
      display: flex;
      align-items: center;
      gap: 1.3rem;
      margin-top: 2.4rem;
    }

    .wa-qr {
      width: 116px;
      height: 116px;
      background: #fff;
      border: 1px solid var(--border);
      padding: 7px;
      display: block;
    }

    .wa-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }

    .wa-link {
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }

    .wa-link:hover { color: var(--gold); border-color: var(--gold-dim); }

    /* ─── LANGUAGE SWITCHER (nav) ─── */
    .nav-lang {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
    }

    .nav-lang a {
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-lang a:hover { color: var(--cream); }
    .nav-lang a.active { color: var(--gold); }
    .nav-lang .sep { color: var(--gold-dim); opacity: 0.6; }

    /* ─── HOME (page d'accueil) ─── */
    body.home {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .home-wrap {
      flex: 1 0 auto;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.5rem, 6vw, 5rem) 4rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .home .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      font-size: clamp(1.5rem, 4vw, 2.6rem);
      letter-spacing: 0.08em;
      text-transform: none;
      color: var(--cream);
      margin-bottom: 1.2rem;
    }

    .home .hero-breath {
      margin: 0.6rem auto 1.2rem;
      gap: 0.9rem;
    }

    .home .orb-stage {
      width: 170px;
      height: 170px;
    }

    .home .orb-note { margin-top: 0.2rem; }

    .home .home-choose { margin: 0.6rem 0 2.4rem; }

    .home-bonus-label { margin: 3.2rem 0 1.6rem !important; }

    .home-bonus {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }

    .home-bonus .bonus-title { font-size: 1.15rem; }
    .home-bonus .bonus-sub { font-size: 0.86rem; }

    .home-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      letter-spacing: -0.01em;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
    }

    .home-title span {
      display: block;
      font-size: clamp(2.1rem, 5.2vw, 3.6rem);
      line-height: 1.08;
      color: var(--cream);
    }

    .home-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.05rem, 2.6vw, 1.45rem);
      color: var(--cream-dim);
      margin-top: 1.4rem;
      line-height: 1.6;
    }

    .home-choose {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 1rem 0 2.8rem;
    }

    .books-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
      width: 100%;
      max-width: 1240px;
    }

    .book-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      text-decoration: none;
      padding: 1.6rem 1.3rem 1.8rem;
      border: 1px solid var(--border);
      background: var(--bg-card);
      transition: border-color 0.25s, transform 0.25s;
    }

    a.book-card:hover {
      border-color: var(--gold-dim);
      transform: translateY(-4px);
    }

    .book-card--soon {
      cursor: default;
      border-style: dashed;
      border-color: var(--gold-dim);
      opacity: 0.94;
    }

    .book-card--soon .book-lang { color: var(--cream-dim); }

    .book-cover {
      width: 100%;
      aspect-ratio: 11 / 17;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-bottom: 1.3rem;
    }

    .book-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .book-lang {
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .book-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.15;
    }

    .book-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.92rem;
      color: var(--cream-dim);
      margin-top: 0.45rem;
      line-height: 1.4;
    }

    @media (max-width: 1000px) {
      .books-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
    }

    @media (max-width: 760px) {
      .nav-lang { font-size: 0.68rem; }
    }

    @media (max-width: 520px) {
      .books-grid { grid-template-columns: 1fr; max-width: 340px; gap: 1.6rem; }
    }