/* ============================================
   piMax Magicien — Styles
   Concept: théâtre, magie, élégance nocturne
   ============================================ */

:root {
    /* Couleurs */
    --bg:           #0a0808;
    --bg-soft:      #110d0d;
    --bg-card:      #15100f;
    --ink:          #f4ead8;
    --ink-muted:    #a89c8a;
    --ink-dim:      #6e6354;

    --red:          #a01818;
    --red-deep:     #6b0f0f;
    --red-glow:     #c92a2a;

    --gold:         #c9a961;
    --gold-soft:    #d8bd7c;
    --gold-deep:    #8a7339;

    --line:         rgba(201, 169, 97, 0.18);
    --line-strong:  rgba(201, 169, 97, 0.4);

    /* Fonts */
    --font-display: 'Cinzel', 'Trajan Pro', serif;
    --font-serif:   'Cormorant Garamond', 'Garamond', Georgia, serif;
    --font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container:    1280px;
    --gutter:       clamp(1.5rem, 4vw, 3rem);

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--red); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* CONTAINER */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}

/* === STAR FIELD BACKGROUND === */
.starfield {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.star-layer {
    position: absolute;
    inset: -50%;
    background-repeat: repeat;
    opacity: 0.5;
}
.star-layer--1 {
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(244, 234, 216, 0.4), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(244, 234, 216, 0.3), transparent),
        radial-gradient(2px 2px at 40% 60%, rgba(201, 169, 97, 0.25), transparent),
        radial-gradient(1px 1px at 85% 20%, rgba(244, 234, 216, 0.4), transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(244, 234, 216, 0.3), transparent);
    background-size: 600px 600px;
    animation: drift 240s linear infinite;
}
.star-layer--2 {
    background-image:
        radial-gradient(1px 1px at 50% 50%, rgba(244, 234, 216, 0.5), transparent),
        radial-gradient(2px 2px at 25% 25%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(1px 1px at 75% 75%, rgba(244, 234, 216, 0.35), transparent);
    background-size: 400px 400px;
    animation: drift 180s linear infinite reverse;
    opacity: 0.35;
}
.star-layer--3 {
    background:
        radial-gradient(circle at 30% 20%, rgba(160, 24, 24, 0.08), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(201, 169, 97, 0.06), transparent 50%);
    animation: pulse 12s ease-in-out infinite;
}
@keyframes drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-300px, -300px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s var(--ease);
}
.nav__brand:hover { opacity: 0.85; }
.nav__logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(160, 24, 24, 0.4));
}
.nav__brand-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav__link {
    font-family: var(--font-sans);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.nav__link:not(.nav__link--cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.nav__link--cta:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 16s ease-in-out infinite;
}
.hero__glow--red {
    width: 50vw; height: 50vw;
    background: var(--red);
    top: -10%;
    left: -15%;
}
.hero__glow--gold {
    width: 40vw; height: 40vw;
    background: var(--gold-deep);
    bottom: -15%;
    right: -10%;
    opacity: 0.3;
    animation-delay: -8s;
    animation-duration: 20s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.05); }
    66%      { transform: translate(-30px, 20px) scale(0.95); }
}
.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
}

.floating-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    color: var(--gold);
}
.float-star {
    position: absolute;
    filter: drop-shadow(0 0 8px var(--gold));
    animation: twinkle 4s ease-in-out infinite;
}
.float-star--1 { top: 18%; left: 8%;  animation-delay: 0s; }
.float-star--2 { top: 25%; right: 12%; animation-delay: 1s; }
.float-star--3 { bottom: 30%; left: 14%; animation-delay: 2s; }
.float-star--4 { top: 65%; right: 10%; animation-delay: 1.5s; }
@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.9) rotate(0deg); }
    50%      { opacity: 1; transform: scale(1.1) rotate(180deg); }
}

.hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 var(--gutter);
    max-width: 1100px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero__line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin-bottom: 2rem;
}
.hero__title-line {
    display: block;
    color: var(--ink);
}
.hero__title-line--accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red-glow);
    text-shadow: 0 0 40px rgba(201, 42, 42, 0.4);
    letter-spacing: -0.02em;
}
.hero__title-line--accent em {
    font-style: italic;
    background: linear-gradient(135deg, var(--red-glow) 0%, var(--gold-soft) 50%, var(--red-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero__sub {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-muted);
    transition: color 0.3s var(--ease);
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: var(--red);
    color: var(--ink);
    border: 1px solid var(--red);
    box-shadow: 0 8px 30px rgba(160, 24, 24, 0.3);
}
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-glow), var(--red-deep));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(160, 24, 24, 0.5);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary > * { position: relative; z-index: 2; }
.btn--primary svg { transition: transform 0.4s var(--ease); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.04);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* === SECTION GENERIC === */
.section__header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.section__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red-glow);
    letter-spacing: -0.02em;
}
.section__title--center { text-align: center; }
.section__lead {
    font-size: 1.1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

.text-accent { color: var(--gold); }

/* === QUOTE BAND === */
.quote-band {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse at center, rgba(160, 24, 24, 0.08), transparent 70%),
        var(--bg);
}
.quote-band .container { text-align: center; }
.quote-mark {
    width: 56px;
    height: 42px;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.quote-band__text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 400;
    color: var(--ink);
    max-width: 900px;
    margin: 0 auto;
}
.quote-band__text em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red-glow);
}

/* === ABOUT === */
.about {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}
.about__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
.about__visual {
    position: relative;
}
.about__image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--line);
}
.about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
    transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.about__visual:hover .about__image-frame img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1.1);
}
.about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 8, 8, 0.7) 100%);
    pointer-events: none;
}
.about__corner {
    position: absolute;
    width: 36px;
    height: 36px;
    color: var(--gold);
    opacity: 0.6;
}
.about__corner--tl { top: -1px; left: -1px; }
.about__corner--br { bottom: -1px; right: -1px; }

.about__signature {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    color: var(--ink);
    z-index: 2;
}
.about__signature-script {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.7rem;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.about__signature-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 0.25rem;
}

.about__content .section__eyebrow { margin-bottom: 1rem; }
.about__content .section__title { margin-bottom: 2rem; }

.about__text p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
}
.about__text strong {
    color: var(--ink);
    font-weight: 600;
}
.about__text em {
    color: var(--gold);
    font-style: italic;
}

.about__values {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.about__value {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}
.about__value-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.about__value-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* === PRESTATIONS === */
.prestations {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.presta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.presta-grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* === DUO BAND : close-up + mentalisme toujours liés === */
.duo-band {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin: 2rem auto 1rem;
    max-width: 980px;
    padding: 1.6rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-card), rgba(17, 13, 13, 0.4));
    border-radius: 4px;
}
.duo-band__item {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.5rem;
}
.duo-band__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.06);
}
.duo-band__text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.4rem;
    letter-spacing: 0.04em;
}
.duo-band__text p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-muted);
    margin: 0;
}
.duo-band__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
}
.duo-note {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 3rem;
    opacity: 0.85;
}
@media (max-width: 720px) {
    .duo-band { flex-direction: column; padding: 1.2rem; }
    .duo-band__plus { transform: rotate(90deg); margin: 0.2rem 0; }
}
.presta-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.presta-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 97, 0.15);
}
.presta-card--featured {
    border-color: rgba(201, 169, 97, 0.35);
    background: linear-gradient(180deg, var(--bg-card), #1a1311);
}
.presta-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.presta-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: brightness(0.85) contrast(1.05);
}
.presta-card:hover .presta-card__media img {
    transform: scale(1.07);
    filter: brightness(1) contrast(1.1);
}
.presta-card__num {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: rgba(10, 8, 8, 0.7);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
}
.presta-card__badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--red);
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(160, 24, 24, 0.4);
}
.presta-card__body {
    padding: 2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.presta-card__title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.presta-card__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}
.presta-card__list {
    list-style: none;
    margin-bottom: 1.8rem;
    flex: 1;
}
.presta-card__list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 1px dashed rgba(201, 169, 97, 0.12);
}
.presta-card__list li:last-child { border-bottom: none; }
.presta-card__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--gold);
}
.presta-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    transition: gap 0.3s var(--ease);
}
.presta-card__link:hover { gap: 0.9rem; }

/* === GALERIE === */
.galerie {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}
.gallery-grid {
    column-count: 3;
    column-gap: 1rem;
}
@media (max-width: 980px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 560px) {
    .gallery-grid { column-count: 1; }
}
.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.5s var(--ease);
    margin: 0 0 1rem;
    break-inside: avoid;
    display: block;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s var(--ease), filter 0.5s var(--ease);
    filter: grayscale(0.3) brightness(0.85);
}
.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.gallery-item:hover img {
    transform: scale(1.04);
    filter: grayscale(0) brightness(1);
}
.gallery-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(10, 8, 8, 0.95));
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateY(40%);
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.gallery-item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 6, 0.96);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
}
.lightbox.open { display: flex; }
.lightbox__figure {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
}
.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--line);
    box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.lightbox__caption {
    color: var(--ink-muted);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
}
.lightbox__nav, .lightbox__close {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--ink);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 2;
}
.lightbox__nav:hover, .lightbox__close:hover {
    background: var(--gold);
    color: #1a0e0e;
    border-color: var(--gold);
    transform: scale(1.05);
}
.lightbox__nav--prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
}
@media (max-width: 700px) {
    .lightbox { padding: 4rem 1rem; }
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__nav--prev { left: 0.5rem; }
    .lightbox__nav--next { right: 0.5rem; }
}

/* === TEMOIGNAGES === */
.temoignages {
    padding: 8rem 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 5;
}
.temoin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.temoin {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s var(--ease);
}
.temoin::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--red);
    opacity: 0.25;
    pointer-events: none;
}
.temoin:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.temoin p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.temoin footer {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.temoin cite {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.temoin footer span {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

/* === CONTACT === */
.contact {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background:
        radial-gradient(ellipse at top, rgba(160, 24, 24, 0.12), transparent 60%),
        var(--bg);
}
.contact__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.contact__deco {
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: twinkle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px var(--gold));
}

.contact__channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 4rem 0 4rem;
    text-align: left;
}
.contact__channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.contact__channel:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.contact__channel-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s var(--ease);
}
.contact__channel:hover .contact__channel-icon {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}
.contact__channel-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.2rem;
}
.contact__channel-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--ink);
    word-break: break-word;
}

/* Form */
.contact__form {
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: clamp(1.8rem, 4vw, 3rem);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.form__field { margin-bottom: 1.2rem; }
.form__row .form__field { margin-bottom: 0; }
.form__field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.6rem;
}
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1rem;
    transition: all 0.3s var(--ease);
    outline: none;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-color: var(--gold);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__note {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 1rem;
}
.contact__form .btn { margin-top: 1rem; }

.form__success {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid var(--gold);
    padding: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    display: none;
}
.form__success.show { display: block; }

/* === FOOTER === */
.footer {
    background: #060404;
    border-top: 1px solid var(--line);
    padding: 5rem 0 0;
    position: relative;
    z-index: 5;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(160, 24, 24, 0.4));
}
.footer__tagline {
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
}
.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer__col a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--ink-muted);
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.4rem;
}
.footer__socials a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-muted);
    padding: 0;
    transition: all 0.3s var(--ease);
}
.footer__socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--ink-dim);
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__visual { max-width: 480px; margin: 0 auto; }
    .presta-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .presta-grid--four { grid-template-columns: repeat(2, 1fr); }
    .temoin-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .contact__channels { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    .nav__menu {
        position: fixed;
        top: 0; right: 0;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        height: 100svh;
        background: var(--bg-soft);
        border-left: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
        padding: 6rem 2.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        z-index: 90;
    }
    .nav__menu.open { transform: translateX(0); }
    .nav__link { font-size: 1rem; }
    .nav__toggle { display: flex; z-index: 95; position: relative; }

    .hero { padding: 7rem 0 4rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .hero__scroll { display: none; }

    .quote-band { padding: 4rem 0; }
    .about, .prestations, .galerie, .temoignages, .contact { padding: 5rem 0; }

    .form__row { grid-template-columns: 1fr; gap: 1.2rem; }

    .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }

    .section__header { margin-bottom: 3rem; }
    .about__values { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.4rem; }
    .quote-band__text { font-size: 1.5rem; }
    .nav__brand-text { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================
   EVENTS BLOCK (Pour quels événements)
   ============================================ */
.events-block {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    position: relative;
}
.events-block::before,
.events-block::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--gold);
    top: 50%;
}
.events-block::before { left: -20px; }
.events-block::after  { right: -20px; }
.events-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 2rem;
    letter-spacing: 0.04em;
}
.events-block__title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.events-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.event-chip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--bg-card);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
    color: var(--gold);
    overflow: hidden;
    cursor: default;
}
.event-chip:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
}
.event-chip:hover .event-chip__media img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(1);
}
.event-chip__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1311;
    position: relative;
}
.event-chip__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,8,8,0.55) 100%);
    pointer-events: none;
}
.event-chip__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
    filter: grayscale(0.25) brightness(0.88);
}
.event-chip__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    background: linear-gradient(180deg, rgba(10,8,8,0.92) 0%, rgba(26,14,14,0.96) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}
.event-chip__overlay::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    pointer-events: none;
}
.event-chip__overlay p {
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink);
    text-align: center;
    max-width: 100%;
}
.event-chip:hover .event-chip__overlay,
.event-chip:focus-within .event-chip__overlay {
    opacity: 1;
}
.event-chip:hover .event-chip__media::after {
    opacity: 0;
}
.event-chip__media::after {
    transition: opacity 0.3s var(--ease);
}
.event-chip__label {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    line-height: 1.3;
    padding: 1rem 0.8rem;
}
.events-block__note {
    margin: 2rem 0 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-mute);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .events-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .events-list { grid-template-columns: 1fr; }
    .events-block { padding: 2.5rem 1.5rem; margin-top: 3.5rem; }
}

/* ============================================
   CARROUSEL GALERIE
   ============================================ */
.carousel {
    position: relative;
    margin: 0 -1rem;
}
.carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.carousel__track::-webkit-scrollbar { height: 6px; }
.carousel__track::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.carousel__track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
.carousel__track:focus { outline: none; }

.carousel__slide {
    flex: 0 0 auto;
    height: 520px;
    position: relative;
    scroll-snap-align: center;
    background: #0a0808;
    border: 1px solid var(--line);
    overflow: hidden;
    margin: 0;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.carousel__slide:hover {
    border-color: var(--gold);
}
.carousel__slide img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.5s var(--ease);
    filter: grayscale(0.2) brightness(0.92);
}
.carousel__slide:hover img {
    filter: grayscale(0) brightness(1);
}
.carousel__slide figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(10, 8, 8, 0.95));
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20%);
    transition: all 0.4s var(--ease);
}
.carousel__slide:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(10, 8, 8, 0.85);
    color: var(--gold);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s var(--ease);
    opacity: 0.85;
}
.carousel__btn:hover {
    background: var(--gold);
    color: #0a0808;
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
}
.carousel__btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
.carousel__btn--prev { left: -10px; }
.carousel__btn--next { right: -10px; }

@media (max-width: 768px) {
    .carousel__slide { height: 380px; }
    .carousel__btn { width: 44px; height: 44px; }
    .carousel__btn--prev { left: 4px; }
    .carousel__btn--next { right: 4px; }
}
@media (max-width: 480px) {
    .carousel__slide { height: 320px; }
}

/* ============================================
   ADMIN PANEL (mode édition photos)
   Accessible via ?admin=1 dans l'URL
   ============================================ */
.admin-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a0e0e;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    z-index: 9990;
    transition: transform 0.3s var(--ease);
}
.admin-fab:hover { transform: scale(1.08); }

.admin-panel {
    position: fixed;
    top: 0; right: 0;
    width: min(440px, 100vw);
    height: 100vh;
    background: #110d0d;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
    z-index: 9991;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}
.admin-panel.open { transform: translateX(0); }
.admin-panel__header {
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
}
.admin-panel__title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}
.admin-panel__close {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 1.4rem;
}
.admin-panel__footer {
    padding: 1.2rem 1.4rem;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    background: var(--bg-card);
}

.admin-help {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
    padding: 0.9rem 1rem;
    background: rgba(201, 169, 97, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 4px;
    margin-bottom: 1.2rem;
}
.admin-help strong { color: var(--gold); }

.admin-item {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 0.9rem;
    margin-bottom: 0.8rem;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 0.8rem;
    align-items: center;
}
.admin-item__thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #1a1311;
    display: block;
}
.admin-item__fields {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}
.admin-item__fields input {
    width: 100%;
    padding: 0.45rem 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    background: #1a1311;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 2px;
}
.admin-item__fields input:focus {
    outline: none;
    border-color: var(--gold);
}
.admin-item__actions {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.admin-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s var(--ease);
}
.admin-btn:hover { border-color: var(--gold); color: var(--gold); }
.admin-btn--danger:hover { border-color: #d9534f; color: #d9534f; }

.admin-action {
    flex: 1;
    min-width: 130px;
    padding: 0.7rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    transition: all 0.3s var(--ease);
}
.admin-action:hover { border-color: var(--gold); color: var(--gold); }
.admin-action--primary {
    background: var(--gold);
    color: #1a0e0e;
    border-color: var(--gold);
    font-weight: 600;
}
.admin-action--primary:hover { background: #e0bd6a; color: #1a0e0e; }

.admin-dropzone {
    border: 2px dashed var(--line);
    border-radius: 4px;
    padding: 1.4rem;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.admin-dropzone:hover, .admin-dropzone.drag {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.04);
}
.admin-dropzone input { display: none; }

.admin-export-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.admin-export-modal.open { display: flex; }
.admin-export-modal__box {
    background: #110d0d;
    border: 1px solid var(--gold);
    padding: 1.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.admin-export-modal__box h3 {
    font-family: var(--font-display);
    color: var(--gold);
    margin: 0;
    font-size: 1.1rem;
}
.admin-export-modal__box p {
    font-family: var(--font-serif);
    color: var(--ink-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}
.admin-export-modal__box textarea {
    flex: 1;
    width: 100%;
    min-height: 280px;
    padding: 1rem;
    font-family: ui-monospace, monospace;
    font-size: 0.8rem;
    background: #0a0808;
    border: 1px solid var(--line);
    color: var(--ink);
    resize: vertical;
    line-height: 1.5;
}
.admin-export-modal__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.admin-toast {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: #1a0e0e;
    padding: 0.7rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 9995;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.admin-toast.show { opacity: 1; transform: translateY(0); }

/* ============================================
   AVIS GOOGLE — style Google Reviews
   ============================================ */
.google-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    padding: 1.4rem 1.8rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.04);
    color: #202124;
    flex-wrap: wrap;
}
.google-summary__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.google-summary__info {
    flex: 1;
    min-width: 180px;
}
.google-summary__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.3rem;
}
.google-summary__text {
    margin: 0;
    font-family: 'Roboto', var(--font-sans);
    font-size: 0.95rem;
    color: #5f6368;
}
.google-summary__text strong {
    color: #202124;
    font-size: 1.15rem;
    font-weight: 600;
    margin-right: 0.4rem;
}
.google-summary__count {
    color: #5f6368;
    font-size: 0.85rem;
}
.google-summary__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid #dadce0;
    border-radius: 100px;
    color: #1a73e8;
    font-family: 'Roboto', var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease;
}
.google-summary__cta:hover {
    background: #f8f9fa;
    border-color: #1a73e8;
    box-shadow: 0 1px 6px rgba(26,115,232,.12);
}

.google-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
@media (max-width: 980px) {
    .google-reviews { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
}

.g-review {
    background: #fff;
    color: #202124;
    border-radius: 12px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.g-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
}
.g-review__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.g-review__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Roboto', var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.g-review__meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.g-review__name {
    font-family: 'Roboto', var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    color: #202124;
    line-height: 1.2;
}
.g-review__date {
    font-family: 'Roboto', var(--font-sans);
    font-size: 0.78rem;
    color: #5f6368;
    margin-top: 0.15rem;
}
.g-review__g {
    flex-shrink: 0;
    opacity: 0.85;
}
.g-review__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.g-review__stars time {
    margin-left: 0.6rem;
    font-family: 'Roboto', var(--font-sans);
    font-size: 0.78rem;
    color: #5f6368;
    font-style: normal;
}
.g-review__body {
    font-family: 'Roboto', 'Cormorant Garamond', var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.55;
    color: #3c4043;
    margin: 0;
    flex: 1;
}
