/**
 * lithotherapie.fr — Main Frontend Stylesheet
 * Design V9 — Luxury mineral encyclopedia
 * Pixel-perfect match with MAQUETTE-V9
 *
 * @package Lithotherapie
 * @version 2.0.0
 */

/* ══════════════════════════════════════════════
   0. RESET & BASE — Override Gutenberg defaults
   ══════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    border-radius: 0 !important;
}

.chakra-dot,
.color-dot,
.litho-chakra-dot-signe,
.litho-stone-dot,
.litho-secondary-dot,
.stone-chakra::before {
    border-radius: 50% !important;
}

::selection {
    background: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--ink);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: color 0.3s ease;
}

/* Global paragraph in content areas */
.litho-front-page p,
.litho-page p {
    line-height: 1.9;
}

/* ══════════════════════════════════════════════
   1. TOPBAR
   ══════════════════════════════════════════════ */

.litho-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.litho-topbar p {
    margin: 0 !important;
}

.litho-topbar a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* ══════════════════════════════════════════════
   2. HEADER — See section 22 for full header styles
   ══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   3. HERO — See section 22b for full hero styles
   ══════════════════════════════════════════════ */

/* Hero for non-homepage pages */
.litho-hero .wp-block-cover__inner-container,
.litho-hero-pierre .wp-block-cover__inner-container,
.litho-hero-archive .wp-block-cover__inner-container,
.litho-hero-signe .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

/* Hero title for pierre / archive pages */
.litho-hero-pierre h1.wp-block-heading,
.litho-hero-archive h1.wp-block-heading,
.litho-hero .wp-block-post-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
    line-height: 1.05 !important;
    font-weight: 200 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
}

/* Ornament separator */
.litho-ornament.wp-block-separator {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--wp--preset--color--gold), transparent) !important;
    opacity: 0.6;
}

/* ══════════════════════════════════════════════
   4. BUTTONS — Gold filled primary, outline secondary
   ══════════════════════════════════════════════ */

/* All buttons base */
.wp-block-button__link {
    font-family: var(--wp--preset--font-family--sans) !important;
    font-weight: 400 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-size: 0.82rem !important;
    padding: 1rem 2.4rem !important;
    transition: all 0.35s ease !important;
    border: 1px solid var(--wp--preset--color--gold) !important;
}

/* Outline style (default in our theme) */
.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: var(--wp--preset--color--gold) !important;
    border: 1px solid var(--wp--preset--color--gold) !important;
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--wp--preset--color--gold) !important;
    color: var(--wp--preset--color--ink) !important;
}

/* Fill style (primary gold button) */
.is-style-fill .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: var(--wp--preset--color--gold) !important;
    color: var(--wp--preset--color--ink) !important;
}

.is-style-fill .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background: transparent !important;
    color: var(--wp--preset--color--gold) !important;
}

/* Dark backgrounds: secondary button */
.has-ink-background-color .is-style-outline .wp-block-button__link {
    color: var(--wp--preset--color--cream) !important;
    border-color: rgba(250, 249, 247, 0.5) !important;
}

.has-ink-background-color .is-style-outline .wp-block-button__link:hover {
    background: var(--wp--preset--color--cream) !important;
    color: var(--wp--preset--color--ink) !important;
    border-color: var(--wp--preset--color--cream) !important;
}

/* ══════════════════════════════════════════════
   5. LUXURY ORNAMENT — Diamond separator
   ══════════════════════════════════════════════ */

.litho-ornament-diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.litho-ornament-diamond::before,
.litho-ornament-diamond::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--wp--preset--color--gold), transparent);
}

.litho-ornament-diamond span {
    width: 8px;
    height: 8px;
    background-color: var(--wp--preset--color--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    display: block;
}

/* Dark variant */
.litho-ornament-diamond.is-dark::before,
.litho-ornament-diamond.is-dark::after {
    background: linear-gradient(90deg, transparent, rgba(180, 154, 94, 0.6), transparent);
}

/* ══════════════════════════════════════════════
   6. STATS — gold numbers (used in stats bar + hero)
   ══════════════════════════════════════════════ */

.litho-stat {
    text-align: center;
}

.litho-stat-number {
    font-family: var(--wp--preset--font-family--display) !important;
    font-size: 3.2rem !important;
    font-weight: 300 !important;
    color: var(--wp--preset--color--gold) !important;
    letter-spacing: -0.03em;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

.litho-stat-label {
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 300 !important;
    opacity: 0.75;
}

/* ══════════════════════════════════════════════
   7. EXPLORE CARDS — 6 cards grid with hover
   ══════════════════════════════════════════════ */

.litho-explore-card {
    padding: var(--wp--preset--spacing--30) !important;
    border: 1px solid var(--wp--preset--color--gray-light) !important;
    background: #ffffff;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.litho-explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--wp--preset--color--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.litho-explore-card:hover::before {
    transform: scaleX(1);
}

.litho-explore-card:hover {
    border-color: var(--wp--preset--color--gold) !important;
    box-shadow: 0 8px 30px rgba(180, 154, 94, 0.1);
}

.litho-explore-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.litho-explore-card p {
    font-size: 0.9rem;
    color: var(--wp--preset--color--gray-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════
   8. HOW-TO SECTION — 4 numbered steps
   ══════════════════════════════════════════════ */

.litho-section-howto .litho-step-number {
    font-family: var(--wp--preset--font-family--display) !important;
    font-size: 3.2rem !important;
    font-weight: 300 !important;
    color: var(--wp--preset--color--gold) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em;
}

.litho-section-howto h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.litho-section-howto p {
    font-size: 0.88rem;
    color: var(--wp--preset--color--gray-dark);
    line-height: 1.7;
}

/* Connector line between steps */
.litho-section-howto .wp-block-columns > .wp-block-column {
    position: relative;
}

.litho-section-howto .wp-block-columns > .wp-block-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.8rem;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, var(--wp--preset--color--gold), transparent);
}

/* ══════════════════════════════════════════════
   9. CHAKRA DOTS ROW
   ══════════════════════════════════════════════ */

.litho-chakra-dots .chakra-dot {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50% !important;
    transition: transform 0.3s ease;
}

.litho-chakra-dots a:hover .chakra-dot {
    transform: scale(1.4);
}

.litho-chakra-dots a {
    text-decoration: none !important;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.litho-chakra-dots a:hover {
    color: var(--wp--preset--color--gold) !important;
}

/* ══════════════════════════════════════════════
   10. PIERRE CARD (archive grid)
   ══════════════════════════════════════════════ */

.litho-pierre-card {
    transition: transform 0.3s ease;
}

.litho-pierre-card:hover {
    transform: translateY(-4px);
}

.litho-pierre-card .wp-block-post-title {
    transition: color 0.3s ease;
}

.litho-pierre-card .wp-block-post-title a:hover {
    color: var(--wp--preset--color--gold) !important;
}

/* ══════════════════════════════════════════════
   11. FICHE TECHNIQUE TABLE
   ══════════════════════════════════════════════ */

.litho-fiche-technique {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.88rem;
}

.litho-fiche-technique caption {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    padding-bottom: var(--wp--preset--spacing--20);
    border-bottom: 2px solid var(--wp--preset--color--gold);
    margin-bottom: var(--wp--preset--spacing--10);
    letter-spacing: 0.02em;
}

.litho-fiche-technique td {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    vertical-align: top;
}

.litho-fiche-technique td:first-child {
    width: 140px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wp--preset--color--gray-med);
    font-weight: 400;
    padding-right: 1rem;
}

.litho-fiche-technique td:last-child {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1rem;
}

/* ══════════════════════════════════════════════
   12. BREADCRUMBS
   ══════════════════════════════════════════════ */

.litho-breadcrumbs a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.litho-breadcrumbs a:hover {
    color: var(--wp--preset--color--gold) !important;
}

/* ══════════════════════════════════════════════
   13. LINK STYLES — Global
   ══════════════════════════════════════════════ */

/* Gold links in content */
.entry-content a,
.wp-block-post-content a {
    color: var(--wp--preset--color--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
}

.entry-content a:hover,
.wp-block-post-content a:hover {
    color: var(--wp--preset--color--ink);
}

/* ══════════════════════════════════════════════
   14. SIDEBAR — Sticky TOC + livre ref
   ══════════════════════════════════════════════ */

.litho-sidebar-toc {
    border: 1px solid var(--wp--preset--color--gray-light);
    padding: var(--wp--preset--spacing--30);
    background: #ffffff;
}

.litho-sidebar-toc h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding-bottom: var(--wp--preset--spacing--10);
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    margin-bottom: var(--wp--preset--spacing--20);
}

.litho-sidebar-toc li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--wp--preset--color--gold);
    transform: rotate(45deg);
    margin-right: 0.8rem;
    vertical-align: middle;
}

/* ══════════════════════════════════════════════
   15. ARCHIVE — Search bar, filter dropdowns, alphabet
   ══════════════════════════════════════════════ */

/* Search bar */
.litho-search-bar .wp-block-search__inside-wrapper {
    border: 1px solid var(--wp--preset--color--gold) !important;
    background: transparent;
}

.litho-search-bar .wp-block-search__input {
    background: transparent !important;
    font-family: var(--wp--preset--font-family--sans);
    font-size: 0.88rem;
    font-weight: 300;
    border: none !important;
}

.litho-search-bar .wp-block-search__button {
    background: var(--wp--preset--color--gold) !important;
    border: none !important;
    color: var(--wp--preset--color--ink) !important;
}

/* Filter dropdowns */
.litho-filter-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.litho-filter-select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--wp--preset--color--gray-light);
    padding: 0.6rem 2rem 0.6rem 1rem;
    font-family: var(--wp--preset--font-family--sans);
    font-size: 0.82rem;
    color: var(--wp--preset--color--ink);
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

.litho-filter-select:hover,
.litho-filter-select:focus {
    border-color: var(--wp--preset--color--gold);
    outline: none;
}

/* Alphabet navigation */
.litho-alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

.litho-alphabet-nav a,
.litho-alphabet-nav span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: 1px solid var(--wp--preset--color--gray-light);
    color: var(--wp--preset--color--ink);
    transition: all 0.3s ease;
    text-decoration: none;
}

.litho-alphabet-nav a:hover {
    border-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--gold);
}

/* Table search input */
.litho-table-search,
.litho-glossaire-search {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--wp--preset--color--gray-light);
    font-family: var(--wp--preset--font-family--sans);
    font-size: 0.88rem;
    font-weight: 300;
    transition: border-color 0.3s;
    background: transparent;
}

.litho-table-search:focus,
.litho-glossaire-search:focus {
    border-color: var(--wp--preset--color--gold);
    outline: none;
}

/* Pierres table */
.litho-table-pierres {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.litho-table-pierres th {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wp--preset--color--gray-med);
    font-weight: 400;
    padding: 0.8rem 0.6rem;
    border-bottom: 2px solid var(--wp--preset--color--gold);
    text-align: left;
}

.litho-table-pierres td {
    padding: 0.7rem 0.6rem;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    vertical-align: middle;
}

.litho-table-pierres tr:hover {
    background-color: var(--wp--preset--color--gold-pale);
}

/* ══════════════════════════════════════════════
   15b. SINGLE POST (blog article)
   ══════════════════════════════════════════════ */

.litho-single-post .wp-block-post-featured-image {
    border-bottom: 3px solid var(--wp--preset--color--gold);
}

.litho-single-post .wp-block-post-date,
.litho-single-post .wp-block-post-author-name {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--gray-med);
}

/* ══════════════════════════════════════════════
   15c. TAXONOMY ARCHIVE
   ══════════════════════════════════════════════ */

.litho-archive-taxonomy .wp-block-term-description {
    margin-top: var(--wp--preset--spacing--20);
    opacity: 0.85;
}

/* ══════════════════════════════════════════════
   15d. SIGN PAGE (page-signe template)
   ══════════════════════════════════════════════ */

.litho-hero-signe .wp-block-cover__inner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.litho-astro-card {
    border: 1px solid var(--wp--preset--color--gray-light);
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
}

.litho-astro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--wp--preset--spacing--20);
}

.litho-astro-field {
    text-align: center;
    padding: var(--wp--preset--spacing--10) 0;
}

.litho-astro-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wp--preset--color--gray-med);
    margin-bottom: 0.4rem;
}

.litho-astro-value {
    display: block;
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.05rem;
    font-weight: 400;
}

.litho-traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--30);
}

.litho-trait-card {
    padding: var(--wp--preset--spacing--30);
    border: 1px solid var(--wp--preset--color--gray-light);
    transition: border-color 0.3s ease;
}

.litho-trait-card:hover {
    border-color: var(--wp--preset--color--gold);
}

.litho-primary-stone {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--wp--preset--spacing--40);
    align-items: start;
    border: 1px solid var(--wp--preset--color--gray-light);
    padding: var(--wp--preset--spacing--40);
}

.litho-stone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--wp--preset--spacing--20);
}

.litho-stone-card {
    text-align: center;
    padding: var(--wp--preset--spacing--20);
    border: 1px solid var(--wp--preset--color--gray-light);
    transition: border-color 0.3s ease;
}

.litho-stone-card:hover {
    border-color: var(--wp--preset--color--gold);
}

.litho-stone-dot,
.litho-secondary-dot {
    border-radius: 50% !important;
    border: 1px solid var(--wp--preset--color--gray-light);
}

.litho-stone-dot {
    width: 32px;
    height: 32px;
    margin: 0 auto var(--wp--preset--spacing--10);
}

.litho-secondary-dot {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.litho-secondary-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
}

.litho-secondary-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: var(--wp--preset--spacing--10) 0;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
}

/* FAQ accordion */
.litho-faq-item {
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    padding: var(--wp--preset--spacing--20) 0;
}

.litho-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.1rem;
    font-weight: 400;
}

.litho-faq-toggle {
    font-size: 1.4rem;
    color: var(--wp--preset--color--gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.litho-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.litho-faq-item.is-open .litho-faq-answer {
    max-height: 500px;
}

.litho-faq-item.is-open .litho-faq-toggle {
    transform: rotate(45deg);
}

/* Related signs */
.litho-sign-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--20);
}

.litho-sign-link-card {
    text-align: center;
    padding: var(--wp--preset--spacing--30);
    border: 1px solid var(--wp--preset--color--gray-light);
    transition: border-color 0.3s ease;
}

.litho-sign-link-card:hover {
    border-color: var(--wp--preset--color--gold);
}

.litho-sign-link-card svg {
    width: 56px;
    height: 56px;
    stroke: var(--wp--preset--color--gold);
    fill: none;
    margin: 0 auto var(--wp--preset--spacing--10);
}

/* ══════════════════════════════════════════════
   16. SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.litho-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.litho-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.litho-reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.litho-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.litho-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.litho-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.litho-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.litho-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.litho-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

.litho-reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   17. QUOTE BLOCK
   ══════════════════════════════════════════════ */

.wp-block-quote {
    border-left: 2px solid var(--wp--preset--color--gold) !important;
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
    margin: var(--wp--preset--spacing--40) 0;
    background: #ffffff;
}

.wp-block-quote cite {
    display: block;
    margin-top: var(--wp--preset--spacing--10);
    font-size: 0.78rem;
    color: var(--wp--preset--color--gray-med);
    font-style: normal;
    letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   18. SEPARATOR
   ══════════════════════════════════════════════ */

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px;
    margin: var(--wp--preset--spacing--40) auto;
}

.wp-block-separator.is-style-wide {
    max-width: 100%;
}

/* ══════════════════════════════════════════════
   19. PAGINATION
   ══════════════════════════════════════════════ */

.wp-block-query-pagination {
    gap: 0.5rem;
}

.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination-numbers .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border: 1px solid var(--wp--preset--color--gray-light);
    font-size: 0.82rem;
    color: var(--wp--preset--color--ink);
    transition: all 0.3s ease;
    text-decoration: none;
}

.wp-block-query-pagination .page-numbers:hover,
.wp-block-query-pagination-numbers .page-numbers:hover {
    border-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--gold);
}

.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination-numbers .page-numbers.current {
    background: var(--wp--preset--color--gold);
    border-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--ink);
}

/* ══════════════════════════════════════════════
   20. 404 PAGE
   ══════════════════════════════════════════════ */

@keyframes litho-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.litho-404 .litho-crystal-svg {
    animation: litho-float 6s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   21. GUTENBERG BLOCK OVERRIDES — Pixel-perfect
   ══════════════════════════════════════════════ */

/* Remove default WP spacing that breaks layout */
.wp-block-group:where(.has-background) {
    padding: revert;
}

/* Fix heading margins in constrained layouts */
.litho-front-page h2.wp-block-heading {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* Cover block inner container max width fix */
.wp-block-cover .wp-block-cover__inner-container {
    width: 100%;
}

/* Columns gap consistency */
.wp-block-columns {
    gap: var(--wp--preset--spacing--30);
}

/* Post template grid */
.wp-block-post-template.is-layout-grid {
    gap: var(--wp--preset--spacing--30) !important;
}

/* Post title in grids */
.wp-block-post-template .wp-block-post-title a {
    text-decoration: none;
    color: var(--wp--preset--color--ink);
    transition: color 0.3s ease;
}

.wp-block-post-template .wp-block-post-title a:hover {
    color: var(--wp--preset--color--gold);
}

/* Featured image */
.wp-block-post-featured-image {
    overflow: hidden;
}

.wp-block-post-featured-image img {
    transition: transform 0.6s ease;
}

.wp-block-post-featured-image:hover img {
    transform: scale(1.03);
}

/* ══════════════════════════════════════════════
   22. HEADER — Logo SVG, Boutique CTA, backdrop
   ══════════════════════════════════════════════ */

.litho-header {
    background-color: rgba(250, 249, 247, 0.95) !important;
    border-bottom: 1px solid var(--wp--preset--color--gold) !important;
    backdrop-filter: blur(12px);
    z-index: 100;
}

.litho-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.litho-logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.litho-header__tagline {
    margin: 0 !important;
    opacity: 0.7;
}

.litho-cta-boutique {
    color: var(--wp--preset--color--gold);
    border: 1px solid var(--wp--preset--color--gold);
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none !important;
    font-family: var(--wp--preset--font-family--sans);
    font-weight: 400;
}

.litho-cta-boutique:hover {
    background-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--cream) !important;
}

.litho-nav-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

/* Nav links underline animation */
.litho-header .wp-block-navigation a {
    transition: color 0.3s ease;
    position: relative;
}

.litho-header .wp-block-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--wp--preset--color--gold);
    transition: width 0.3s ease;
}

.litho-header .wp-block-navigation a:hover {
    color: var(--wp--preset--color--gold) !important;
}

.litho-header .wp-block-navigation a:hover::after {
    width: 100%;
}

.litho-header .wp-block-navigation a:where(:not(.wp-element-button)) {
    text-decoration: none;
}

.litho-header .wp-block-navigation-item__content {
    text-decoration: none !important;
}

/* Mobile overlay */
.wp-block-navigation__responsive-container.is-menu-open {
    background: var(--wp--preset--color--ink) !important;
}

/* ══════════════════════════════════════════════
   22b. HERO — 2-column layout with book image
   ══════════════════════════════════════════════ */

/* Hero cover: gradient overlay from left to right */
.litho-hero--home .wp-block-cover__background {
    background: linear-gradient(to right, rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.35)) !important;
    opacity: 1 !important;
}

.litho-hero--home {
    min-height: 100vh !important;
}

/* Hero inner container with the 2-col layout */
.litho-hero-inner {
    position: relative;
    z-index: 2;
}

.litho-hero-inner .wp-block-columns {
    align-items: center;
}

/* Hero eyebrow */
.litho-hero-eyebrow {
    margin-bottom: 1.8rem !important;
}

/* Hero intro */
.litho-hero-intro {
    color: rgba(250, 249, 247, 0.92) !important;
    max-width: 560px;
}

/* Hero h1 */
.litho-hero--home h1.wp-block-heading {
    font-size: clamp(2.8rem, 5vw, 5.2rem) !important;
    line-height: 1.05 !important;
    font-weight: 300 !important;
    letter-spacing: -0.03em !important;
    color: var(--wp--preset--color--cream) !important;
    margin-bottom: 1.5rem !important;
}

.litho-hero--home h1 em {
    font-style: italic;
    font-weight: 300;
}

/* Hero book image */
.litho-hero-book-img img {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    max-width: 100%;
    height: auto;
}

/* Hero buttons on dark bg */
.litho-hero--home .litho-btn-primary .wp-block-button__link {
    background: var(--wp--preset--color--gold) !important;
    color: var(--wp--preset--color--ink) !important;
    border-color: var(--wp--preset--color--gold) !important;
}

.litho-hero--home .litho-btn-primary .wp-block-button__link:hover {
    background: transparent !important;
    color: var(--wp--preset--color--gold) !important;
}

.litho-hero--home .litho-btn-secondary .wp-block-button__link {
    background: transparent !important;
    color: var(--wp--preset--color--cream) !important;
    border-color: rgba(250, 249, 247, 0.5) !important;
}

.litho-hero--home .litho-btn-secondary .wp-block-button__link:hover {
    background: var(--wp--preset--color--cream) !important;
    color: var(--wp--preset--color--ink) !important;
    border-color: var(--wp--preset--color--cream) !important;
}

/* Scroll indicator */
.litho-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    animation: scrollPulse 2s ease-in-out infinite;
}

.litho-scroll-text {
    color: rgba(250, 249, 247, 0.6) !important;
    margin: 0 !important;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
}

/* ══════════════════════════════════════════════
   22c. STATS BAR — Grid with SVG icons
   ══════════════════════════════════════════════ */

.litho-stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.litho-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.litho-stat-icon {
    width: 24px;
    height: 24px;
    stroke: var(--wp--preset--color--gold);
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.litho-stats-bar .litho-stat-number,
.litho-stat-item .litho-stat-number {
    font-family: var(--wp--preset--font-family--display) !important;
    font-size: 3.2rem !important;
    font-weight: 300 !important;
    color: var(--wp--preset--color--gold) !important;
    letter-spacing: -0.03em;
    line-height: 1 !important;
    margin: 0;
}

.litho-stats-bar .litho-stat-label,
.litho-stat-item .litho-stat-label {
    font-size: 0.78rem;
    color: var(--wp--preset--color--gray-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ══════════════════════════════════════════════
   22d. EYEBROW — EB Garamond italic gold
   ══════════════════════════════════════════════ */

.litho-eyebrow {
    text-transform: uppercase;
    margin-bottom: 1rem !important;
    display: block;
}

/* ══════════════════════════════════════════════
   22e. VISUAL DIVIDER
   ══════════════════════════════════════════════ */

.litho-visual-divider {
    position: relative;
}

.litho-visual-divider .wp-block-cover__background {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.82), rgba(27, 40, 56, 0.82)) !important;
}

/* ══════════════════════════════════════════════
   22f. BOOK SECTION — 2-column with cover
   ══════════════════════════════════════════════ */

.litho-section-book .wp-block-cover__background {
    background: linear-gradient(135deg, #0D1B2A 0%, #1B2838 100%) !important;
}

.litho-book-cover-img img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 154, 94, 0.4);
}

.litho-section-book .wp-block-columns {
    align-items: center;
}

/* ══════════════════════════════════════════════
   22g. MAILLAGE — Internal links cloud
   ══════════════════════════════════════════════ */

.litho-maillage-link {
    font-size: 0.82rem;
    color: var(--wp--preset--color--ink);
    border: 1px solid var(--wp--preset--color--gray-light);
    padding: 0.6rem 1.2rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    background-color: white;
    text-decoration: none !important;
    display: inline-block;
    font-family: var(--wp--preset--font-family--sans);
}

.litho-maillage-link:hover {
    border-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--gold);
}

/* ══════════════════════════════════════════════
   22h. FOOTER — 5-column grid matching maquette
   ══════════════════════════════════════════════ */

.litho-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.litho-footer-col h4 {
    font-family: var(--wp--preset--font-family--display);
    color: var(--wp--preset--color--gold);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.litho-footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(250, 249, 247, 0.7);
    font-weight: 300;
    margin: 0;
}

.litho-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.litho-footer-col li {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
    font-weight: 300;
}

.litho-footer-col a {
    color: rgba(250, 249, 247, 0.7);
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.litho-footer-col a:hover {
    color: var(--wp--preset--color--gold) !important;
}

.litho-footer-rule {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.litho-footer-bottom p {
    margin: 0 !important;
}

footer.litho-footer a {
    transition: color 0.3s ease;
}

footer.litho-footer a:hover {
    color: var(--wp--preset--color--gold) !important;
}

/* ══════════════════════════════════════════════
   22i. TOP 10 PIERRES — Numbered list with colored borders
   ══════════════════════════════════════════════ */

.litho-pierres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4rem;
    row-gap: 2.5rem;
    margin-top: 3rem;
}

.litho-stone-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    align-items: start;
    transition: transform 0.3s ease;
}

.litho-stone-item:hover {
    transform: translateX(4px);
}

.litho-stone-number {
    font-family: var(--wp--preset--font-family--display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--wp--preset--color--gold);
    line-height: 1;
    padding-top: 0.3rem;
}

.litho-stone-content {
    border-left: 3px solid var(--wp--preset--color--gold);
    padding-left: 1.5rem;
}

/* Stone-specific border colors */
.litho-stone-item.amethyste .litho-stone-content { border-left-color: #9B59B6; }
.litho-stone-item.rose .litho-stone-content { border-left-color: #F4A0C0; }
.litho-stone-item.lapis .litho-stone-content { border-left-color: #1B3A6B; }
.litho-stone-item.labradorite .litho-stone-content { border-left-color: #3D7B8A; }
.litho-stone-item.citrine .litho-stone-content { border-left-color: #F5C542; }
.litho-stone-item.tiger .litho-stone-content { border-left-color: #B8860B; }
.litho-stone-item.cristal .litho-stone-content { border-left-color: #E8E8E8; }
.litho-stone-item.lune .litho-stone-content { border-left-color: #C4D4E0; }
.litho-stone-item.cornaline .litho-stone-content { border-left-color: #E25822; }
.litho-stone-item.aventurine .litho-stone-content { border-left-color: #4CAF50; }

.litho-stone-name {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--wp--preset--color--ink);
    margin: 0 0 0.3rem 0;
}

.litho-stone-name a {
    color: var(--wp--preset--color--ink);
    text-decoration: none;
    transition: color 0.3s;
}

.litho-stone-name a:hover {
    color: var(--wp--preset--color--gold);
}

.litho-stone-desc {
    font-size: 0.9rem;
    color: var(--wp--preset--color--gray-dark);
    margin: 0 0 0.8rem 0;
    line-height: 1.65;
}

.litho-stone-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--wp--preset--color--gray-med);
    font-weight: 300;
}

.stone-chakra,
.stone-durability {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stone-chakra::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50% !important;
    background-color: var(--wp--preset--color--gold);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   22j. CHAKRAS FULL SECTION — Dark bg, 2-col grid, 8 items
   ══════════════════════════════════════════════ */

.litho-chakras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.litho-chakra-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.litho-chakra-item:hover {
    border-color: rgba(180, 154, 94, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
}

.litho-chakra-circle {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    flex-shrink: 0;
}

.litho-chakra-content {
    flex: 1;
}

.litho-chakra-name {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
    color: var(--wp--preset--color--cream);
}

.litho-chakra-name a {
    color: var(--wp--preset--color--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.litho-chakra-name a:hover {
    color: var(--wp--preset--color--gold);
}

.litho-chakra-sanskrit {
    font-family: var(--wp--preset--font-family--accent);
    font-style: italic;
    font-size: 0.88rem;
    color: rgba(250, 249, 247, 0.6);
    margin: 0 0 0.7rem 0;
}

.litho-chakra-stones {
    font-size: 0.85rem;
    color: rgba(250, 249, 247, 0.8);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ══════════════════════════════════════════════
   22k. ASTRO SECTION — 12 zodiac cards, 4-col grid
   ══════════════════════════════════════════════ */

.litho-astro-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.litho-astro-card-home {
    padding: 2rem 1.2rem;
    border: 1px solid var(--wp--preset--color--gray-light);
    background-color: white;
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none !important;
    color: var(--wp--preset--color--ink);
}

.litho-astro-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--wp--preset--color--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.litho-astro-card-home:hover::before {
    transform: scaleX(1);
}

.litho-astro-card-home:hover {
    border-color: var(--wp--preset--color--gold);
    box-shadow: 0 8px 30px rgba(180, 154, 94, 0.1);
}

.litho-astro-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.8rem;
    stroke: var(--wp--preset--color--gold);
    display: block;
}

.litho-astro-sign {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--wp--preset--color--ink);
    margin-bottom: 0.15rem;
}

.litho-astro-dates {
    font-size: 0.72rem;
    color: var(--wp--preset--color--gray-med);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.litho-astro-stones {
    font-size: 0.82rem;
    color: var(--wp--preset--color--gray-dark);
    line-height: 1.55;
    font-weight: 300;
}

.litho-astro-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--wp--preset--color--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.litho-astro-card-home:hover .litho-astro-link {
    color: var(--wp--preset--color--ink);
}

/* ══════════════════════════════════════════════
   22l. GUIDES GRID — 3-col cards with bottom border
   ══════════════════════════════════════════════ */

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

.litho-guide-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    transition: border-color 0.4s;
}

.litho-guide-card:hover {
    border-bottom-color: var(--wp--preset--color--gold);
}

.litho-guide-card h3 {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    color: var(--wp--preset--color--ink);
}

.litho-guide-card h3 a {
    color: var(--wp--preset--color--ink);
    text-decoration: none;
    transition: color 0.3s;
}

.litho-guide-card h3 a:hover {
    color: var(--wp--preset--color--gold);
}

.litho-guide-card p {
    font-size: 0.9rem;
    color: var(--wp--preset--color--gray-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}

.litho-guide-link {
    font-size: 0.78rem;
    color: var(--wp--preset--color--gold);
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.litho-guide-link:hover {
    color: var(--wp--preset--color--ink);
}

/* ══════════════════════════════════════════════
   22m. BOOK CONTAINER — Full HTML book section
   ══════════════════════════════════════════════ */

.litho-book-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.litho-book-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.litho-book-cover img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.litho-book-info h2 {
    font-family: var(--wp--preset--font-family--display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--wp--preset--color--cream);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.litho-eyebrow-dark {
    font-family: var(--wp--preset--font-family--accent);
    font-style: italic;
    color: var(--wp--preset--color--gold);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.litho-book-desc {
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 2rem 0;
    color: rgba(250, 249, 247, 0.92);
    font-weight: 300;
}

.litho-book-specs {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.litho-book-spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: rgba(250, 249, 247, 0.92);
    font-weight: 300;
}

.litho-book-spec:last-child {
    margin-bottom: 0;
}

.litho-book-spec-icon {
    width: 22px;
    height: 22px;
    stroke: var(--wp--preset--color--gold);
    flex-shrink: 0;
}

.litho-book-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.litho-btn-gold {
    background-color: var(--wp--preset--color--gold);
    color: var(--wp--preset--color--ink);
    padding: 1rem 2.4rem;
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--wp--preset--color--gold);
    transition: all 0.35s ease;
    font-family: var(--wp--preset--font-family--sans);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.litho-btn-gold:hover {
    background-color: transparent;
    color: var(--wp--preset--color--gold);
}

.litho-btn-cream-outline {
    background-color: transparent;
    color: var(--wp--preset--color--cream);
    border: 1px solid rgba(250, 249, 247, 0.5);
    padding: 1rem 2.4rem;
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    transition: all 0.35s ease;
    font-family: var(--wp--preset--font-family--sans);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.litho-btn-cream-outline:hover {
    background-color: var(--wp--preset--color--cream);
    color: var(--wp--preset--color--ink);
    border-color: var(--wp--preset--color--cream);
}

/* ══════════════════════════════════════════════
   22n. FAQ SECTION — details/summary accordion
   ══════════════════════════════════════════════ */

.litho-faq-list {
    margin-top: 3rem;
}

.litho-faq-detail {
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
    padding: 1.5rem 0;
    transition: background-color 0.3s;
}

.litho-faq-detail[open] {
    background-color: white;
    padding: 1.5rem 2rem;
    margin-bottom: 0.5rem;
}

.litho-faq-detail summary {
    cursor: pointer;
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--wp--preset--color--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    transition: color 0.3s;
    list-style: none;
}

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

.litho-faq-detail summary:hover {
    color: var(--wp--preset--color--gold);
}

.litho-faq-detail summary::after {
    content: '+';
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.5rem;
    color: var(--wp--preset--color--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.litho-faq-detail[open] summary::after {
    content: '\2212';
}

.litho-faq-detail[open] summary {
    color: var(--wp--preset--color--gold);
    margin-bottom: 0.5rem;
}

.litho-faq-answer-text {
    margin-top: 0.8rem;
}

.litho-faq-answer-text p {
    color: var(--wp--preset--color--gray-dark);
    line-height: 1.85;
    font-size: 0.95rem;
    margin: 0;
}

/* ══════════════════════════════════════════════
   22o. AUTHORS SECTION — Dark bg, 2-col grid
   ══════════════════════════════════════════════ */

.litho-authors-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.litho-authors-photo {
    display: flex;
    justify-content: center;
}

.litho-authors-photo img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(180, 154, 94, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.litho-authors-bio h2 {
    font-family: var(--wp--preset--font-family--display);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--wp--preset--color--cream);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.litho-authors-bio p {
    color: rgba(250, 249, 247, 0.92);
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}

.litho-authors-signature {
    font-family: var(--wp--preset--font-family--display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--wp--preset--color--gold);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.litho-authors-credentials {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.litho-credential {
    text-align: center;
}

.litho-credential-number {
    font-family: var(--wp--preset--font-family--display);
    font-size: 2.4rem;
    color: var(--wp--preset--color--gold);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.litho-credential-label {
    font-size: 0.82rem;
    color: rgba(250, 249, 247, 0.75);
    line-height: 1.5;
    font-weight: 300;
}

/* ══════════════════════════════════════════════
   23. DISCLAIMER
   ══════════════════════════════════════════════ */

.litho-disclaimer {
    border-top: 1px solid var(--wp--preset--color--gray-light);
    border-bottom: 1px solid var(--wp--preset--color--gray-light);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile-first adjustments
   ══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .litho-astro-grid,
    .litho-astro-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero 2-col to 1-col */
    .litho-hero-inner .wp-block-columns {
        flex-direction: column-reverse !important;
    }

    .litho-hero-image-col {
        flex-basis: 100% !important;
    }

    .litho-hero-book-img img {
        max-width: 300px;
        margin: 0 auto;
    }

    .litho-hero--home h1.wp-block-heading {
        font-size: 2.8rem !important;
    }

    /* Hero general */
    .litho-hero h1.wp-block-heading,
    .litho-hero .wp-block-post-title {
        font-size: 2.8rem !important;
    }

    .litho-stat-number {
        font-size: 2.4rem !important;
    }

    /* Stats bar 2x2 */
    .litho-stats-bar .wp-block-columns {
        flex-wrap: wrap !important;
    }

    .litho-stats-bar .wp-block-column {
        flex: 0 0 45% !important;
        margin-bottom: var(--wp--preset--spacing--30);
    }

    /* How-to connector hide */
    .litho-section-howto .wp-block-columns > .wp-block-column::after {
        display: none;
    }

    /* Chakra dots wrap */
    .litho-chakra-dots {
        flex-wrap: wrap !important;
        gap: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20) !important;
        justify-content: center;
    }

    /* Book section 2-col to 1-col */
    .litho-section-book .wp-block-columns {
        flex-direction: column !important;
    }

    .litho-book-cover-col {
        flex-basis: 100% !important;
        text-align: center;
    }

    .litho-book-cover-img img {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stats grid to 2-col */
    .litho-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pierres grid to 1-col */
    .litho-pierres-grid {
        grid-template-columns: 1fr;
    }

    /* Chakras grid to 1-col */
    .litho-chakras-grid {
        grid-template-columns: 1fr;
    }

    /* Astro grid to 2-col */
    .litho-astro-grid,
    .litho-astro-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Guides grid to 1-col */
    .litho-guides-grid {
        grid-template-columns: 1fr;
    }

    /* Book container to 1-col */
    .litho-book-container {
        grid-template-columns: 1fr;
    }

    .litho-book-cover img {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Authors to 1-col */
    .litho-authors-container {
        grid-template-columns: 1fr;
    }

    .litho-authors-photo img {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Footer grid */
    .litho-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .litho-footer-bottom .wp-block-group {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Scroll indicator hide */
    .litho-scroll-indicator {
        display: none !important;
    }

    /* Filter bar stack */
    .litho-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .litho-filter-select {
        width: 100%;
    }

    /* Fiche table responsive */
    .litho-fiche-table td:first-child {
        width: auto;
    }

    /* Tableau responsive */
    .litho-table-pierres {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Grid to 2 columns */
    .wp-block-post-template.is-layout-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Search bar */
    .litho-search-bar .wp-block-search__inside-wrapper {
        flex-direction: column;
    }

    /* Sign page responsive */
    .litho-astro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .litho-traits-grid {
        grid-template-columns: 1fr;
    }

    .litho-primary-stone {
        grid-template-columns: 1fr;
    }

    .litho-stone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .litho-secondary-list {
        grid-template-columns: 1fr;
    }

    .litho-sign-links-grid {
        grid-template-columns: 1fr;
    }

    /* Explore cards */
    .litho-explore-card {
        margin-bottom: var(--wp--preset--spacing--20);
    }

    /* Maillage links */
    .litho-maillage-links {
        gap: 0.6rem !important;
    }

    /* Nav actions hide on mobile */
    .litho-nav-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .litho-hero h1.wp-block-heading,
    .litho-hero .wp-block-post-title,
    .litho-hero--home h1.wp-block-heading {
        font-size: 2rem !important;
    }

    .litho-front-page h2.wp-block-heading {
        font-size: 2rem;
    }

    /* Footer single column */
    .litho-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Stats bar single column */
    .litho-stats-bar .wp-block-column {
        flex: 0 0 100% !important;
    }

    .litho-stats-grid {
        grid-template-columns: 1fr;
    }

    .litho-astro-grid,
    .litho-astro-grid-home {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════ */

@media print {
    .litho-topbar,
    .litho-header,
    .litho-footer,
    .litho-search-bar,
    .litho-alphabet-nav,
    .litho-filter-tags {
        display: none !important;
    }

    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .litho-fiche-technique {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
