*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg-deep: #141010;
    --bg-secondary: #1e1814;
    --bg-card: #2a211a;
    --gold-light: #f0d890;
    --gold: #d4af37;
    --gold-dark: #a8842a;
    --bronze: #6b4e2a;
    --text: #f5ede0;
    --text-muted: #b8a898;
    --gradient-gold: linear-gradient(135deg, #f0d890 0%, #d4af37 50%, #a8842a 100%);
    --gradient-hero: radial-gradient(ellipse at 28% 18%, rgba(212, 175, 55, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse at 82% 8%, rgba(240, 216, 144, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 88%, rgba(107, 78, 42, 0.35) 0%, transparent 55%);
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Source Sans 3", system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    --header-height: 80px;
    --gold-line: rgba(212, 175, 55, 0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg-deep);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 400;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    width: min(1120px, calc(100% - clamp(2.5rem, 8vw, 6rem)));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 16, 16, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--gold-line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text);
}

.brand:hover {
    color: var(--text);
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-light);
}

.brand-tagline {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--gold-light);
}

.nav-cta {
    padding: 0.5rem 1.15rem;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    color: var(--gold-light) !important;
}

.nav-cta:hover {
    background: rgba(212, 175, 55, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--header-height));
    padding: 4.5rem clamp(1rem, 3vw, 2rem) 5.5rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-nebula {
    position: absolute;
    width: min(48vw, 560px);
    height: min(48vw, 560px);
    right: -4%;
    top: 38%;
    transform: translateY(-50%);
    background: url("/assets/img/logo.jpeg") center / cover no-repeat;
    opacity: 0.07;
    filter: blur(28px) saturate(1.1);
    pointer-events: none;
    mask-image: radial-gradient(circle, #000 30%, transparent 70%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    width: 100%;
    padding-inline: clamp(0.75rem, 3.5vw, 2.75rem);
}

.hero-content {
    max-width: 34rem;
    padding-inline-start: clamp(0.5rem, 2vw, 1.25rem);
}

.hero-label,
.section-label {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
}

.hero-label::after,
.section-label::after {
    content: "";
    display: block;
    width: 2.25rem;
    height: 1px;
    margin-top: 0.7rem;
    background: rgba(212, 175, 55, 0.55);
}

.hero-title {
    margin: 0 0 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(2.35rem, 5vw, 3.85rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: var(--gold-light);
}

.hero-lead {
    margin: 0 0 2.25rem;
    max-width: 32rem;
    font-size: 1.12rem;
    font-weight: 300;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.photo-frame {
    position: relative;
    max-width: 380px;
    margin-inline: auto;
    padding: 1px;
    border-radius: 50% 50% 46% 54%;
    background: linear-gradient(165deg, rgba(240, 216, 144, 0.85), rgba(168, 132, 42, 0.35) 55%, transparent 100%);
}

.photo-frame::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 68%);
    z-index: -1;
}

.photo-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 50% 50% 46% 54%;
    background: var(--bg-card);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.7rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #2a1f14;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.16);
}

.btn-primary:hover {
    color: #2a1f14;
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
    border-color: var(--gold-line);
    color: var(--gold-light);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.06);
    color: var(--gold-light);
}

.btn-ghost {
    padding: 0.9rem 0.25rem;
    border: none;
    border-radius: 0;
    color: var(--gold-light);
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.btn-ghost:hover {
    color: var(--gold);
    transform: none;
    border-bottom-color: var(--gold);
}

.btn-large {
    font-size: 0.88rem;
    padding: 1rem 2rem;
}

/* Sections */

.section {
    padding: 6.5rem 0;
}

.section-about {
    background: var(--bg-secondary);
}

.section-ritual {
    background: var(--bg-deep);
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.section-services,
.section-numerologie {
    background: var(--bg-deep);
}

.section-oracle {
    background: var(--bg-secondary);
}

.oracle-subtitle {
    margin: 0.35rem 0 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-light);
}

.oracle-lead {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.oracle-lead p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.oracle-card h3 {
    margin: 2rem 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold-light);
}

.oracle-tirage-steps {
    display: grid;
    gap: 1.25rem;
    margin: 1.25rem 0 0;
}

.oracle-tirage-step {
    padding: 1.25rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
}

.oracle-tirage-step h4 {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    color: var(--gold-light);
}

.oracle-chakra {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

.oracle-infos-note {
    margin-top: 0.5rem;
}

.oracle-delai {
    margin: 1.5rem 0;
}

.oracle-pricing {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius);
    text-align: center;
}

.oracle-pricing .prestation-price {
    font-size: 2rem;
}

.oracle-pricing p {
    margin: 0.75rem 0 0;
    color: var(--text-muted);
}

.oracle-accordions {
    margin-top: 2rem;
}

.oracle-accordions .prestation-summary {
    grid-template-columns: 1fr auto;
}

.oracle-order-card {
    margin-top: 2rem;
    padding: 1.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-lg);
    text-align: center;
}

.prestation-delai {
    margin: 1rem 0;
    color: var(--text-muted);
}

.order-cgv-note {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.order-cgv-note a {
    text-decoration: underline;
}

.contact-form {
    max-width: 36rem;
    margin: 1.5rem auto 0;
    text-align: left;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-form label.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: var(--bg-deep);
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.contact-alt {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.form-ok {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
    background: rgba(120, 180, 120, 0.12);
    border: 1px solid rgba(120, 180, 120, 0.35);
    color: #b8e0b8;
}

.form-error {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
    background: rgba(200, 100, 80, 0.12);
    border: 1px solid rgba(200, 100, 80, 0.35);
    color: #e8b8a8;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-contact {
    background: var(--bg-deep);
    padding-bottom: 7rem;
}

#accueil,
#apropos,
#rituel,
#numerologie,
#oracle,
#contact,
.prestation {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-header {
    margin-bottom: 2.75rem;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-label::after {
    margin-inline: auto;
}

.section-header-center .section-intro {
    margin-inline: auto;
}

.section-header h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 500;
    color: var(--gold-light);
}

.section-intro {
    margin: 1rem 0 0;
    max-width: 36rem;
    color: var(--text-muted);
}

.section-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin: 0 0 1.35rem;
    color: var(--text);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.quote-card {
    padding: 2rem 0 0;
    margin: 0;
    background: transparent;
    border: none;
    border-top: 1px solid var(--gold-line);
    border-radius: 0;
}

.quote-card blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--gold-light);
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.ritual-steps li {
    padding-top: 1.25rem;
    border-top: 1px solid var(--gold-line);
}

.ritual-num {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.ritual-steps h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--gold-light);
}

.ritual-steps p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.card-icon {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--gold);
}

.card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
}

.card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Prestations numérologie */

.prestations-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}

.prestation-details {
    height: 100%;
    background: rgba(42, 33, 26, 0.72);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.prestation-details[open] {
    grid-column: 1 / -1;
    border-color: rgba(212, 175, 55, 0.45);
    background: var(--bg-card);
}

.prestation-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.75rem 1.75rem 1.6rem;
}

.prestation-summary::-webkit-details-marker {
    display: none;
}

.prestation-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 0.5rem;
}

.prestation-title {
    display: block;
    margin: 0.45rem 0 0.7rem;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--gold-light);
}

.prestation-price {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    white-space: nowrap;
}

.prestation-teaser {
    display: block;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.prestation-more {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.prestation-details[open] .prestation-more {
    display: none;
}

.prestation-body {
    padding: 0 1.75rem 1.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.prestation-body p {
    margin: 1.25rem 0 0;
    color: var(--text);
}

.prestation-body h4 {
    margin: 1.5rem 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gold-light);
}

.prestation-body ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.prestation-body li + li {
    margin-top: 0.35rem;
}

.prestation-livrable {
    color: var(--text) !important;
}

.prestation-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted) !important;
}

.prestation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.btn-sm {
    margin-top: 1.25rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
}

.coming-soon {
    margin-top: 2.75rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    text-align: center;
    background: transparent;
}

.coming-soon-label {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.coming-soon-text {
    margin: 0;
    color: var(--text-muted);
}

.packs-block {
    margin-top: 3.5rem;
}

.packs-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-light);
}

.packs-intro {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.pack-card {
    padding: 1.65rem 1.55rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
}

.pack-card h4 {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold-light);
}

.pack-price {
    margin: 0 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold);
}

.pack-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Oracle */

.oracle-faces {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.oracle-face {
    min-height: 13.5rem;
    padding: 1.6rem 1.35rem 1.5rem;
    text-align: center;
    background: rgba(20, 16, 16, 0.45);
    border: 1px solid var(--gold-line);
    border-radius: 18px 18px 22px 22px;
}

.oracle-face-num {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.oracle-face h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--gold-light);
}

.oracle-face p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.oracle-card {
    padding: 2.1rem 2rem 2.25rem;
    background: transparent;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
}

.oracle-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
}

.oracle-price-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.oracle-card p {
    margin: 0 0 1.1rem;
    color: var(--text);
}

.oracle-card h4 {
    margin: 1.35rem 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
}

.oracle-card ul {
    margin: 0 0 1.1rem;
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.oracle-card li + li {
    margin-top: 0.35rem;
}

.oracle-card .prestation-disclaimer {
    margin-bottom: 0.25rem;
}

/* Commander / paiement */

.section-commander {
    background: var(--bg-secondary);
    padding-bottom: 6rem;
}

.commander-layout {
    max-width: 720px;
}

.commander-price {
    margin: 0.5rem 0 0;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--gold);
}

.commander-form {
    margin-top: 2rem;
}

.commander-form fieldset {
    margin: 0 0 1.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.commander-form legend {
    padding: 0 0.35rem;
    font-family: var(--font-serif);
    color: var(--gold-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.form-grid label.full-width {
    grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: var(--bg-deep);
    color: var(--text);
    font: inherit;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-error {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    background: rgba(180, 70, 70, 0.15);
    border: 1px solid rgba(200, 80, 80, 0.45);
    color: #f0c8c8;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.commander-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.payment-result {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--bg-card);
}

.payment-result-success {
    border-color: rgba(120, 180, 120, 0.35);
}

.payment-result-failed,
.payment-result-cancel {
    border-color: rgba(200, 120, 80, 0.35);
}

.pack-card .btn {
    margin-top: 1rem;
}

.prestation-body .btn + .btn,
.prestation-actions .btn {
    margin-left: 0;
}

.contact-box {
    max-width: 560px;
    margin-inline: auto;
    padding: 3.25rem 1rem;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.contact-box .section-header {
    margin-bottom: 1.5rem;
}

.contact-box .section-intro {
    margin-inline: auto;
}

.contact-email {
    display: inline-block;
    margin-bottom: 1.75rem;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--gold-light);
}

.contact-email:hover {
    color: var(--gold);
}

@media (max-width: 680px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .prestation-body .btn + .btn,
    .prestation-actions .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Footer */

.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    background: var(--bg-deep);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-name {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-light);
}

.footer-contact a {
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--gold-light);
}

.section-legal .legal-content {
    max-width: 42rem;
}

.section-legal h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .cards-grid,
    .packs-grid,
    .ritual-steps,
    .oracle-faces,
    .prestations-list {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
        padding: 2.5rem clamp(1rem, 4vw, 1.5rem) 3rem;
    }

    .hero-grid {
        padding-inline: 0;
    }

    .hero-content {
        padding-inline-start: 0;
        max-width: none;
    }

    .hero-nebula {
        opacity: 0.1;
        right: 50%;
        transform: translate(50%, -42%);
        top: 12%;
    }

    .hero-visual {
        order: -1;
        max-width: 260px;
        margin-inline: auto;
    }

    .prestation-details[open] {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        background: rgba(20, 16, 16, 0.98);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 0.85rem 1.25rem;
        text-align: center;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-aside {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 1.5rem 0;
    }
}
