/* ============================================
   UNSHAKEN.CUT® · Identity. Refined.
   Luxury Cinematic Vintage
   ============================================ */

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

:root {
    --obsidian:   #0A0A0A;
    --ivory:      #F2EDE6;
    --gold:       #C9A96E;
    --gold-pale:  #E8D5B0;
    --tobacco:    #3C2D24;
    --olive:      #4D5242;
    --surface:    #111111;
    --border:     rgba(201, 169, 110, 0.13);
    --border-h:   rgba(201, 169, 110, 0.45);

    --font-display:   'Bebas Neue', sans-serif;
    --font-editorial: 'Cormorant Garamond', serif;
    --font-body:      'Jost', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:    all 0.45s var(--ease);
    --tf:   all 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--obsidian);
    color: var(--ivory);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Grain Overlay ---- */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ============================================
   LOADER
   ============================================ */

.loader {
    position: fixed;
    inset: 0;
    background: var(--obsidian);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-brand {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.28em;
    color: var(--gold);
}

.loader-tagline {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--ivory);
    opacity: 0.45;
    margin-top: 0.4rem;
    letter-spacing: 0.45em;
}

.loader-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.8rem auto 0;
    animation: loader-breathe 2s ease-in-out infinite;
}

@keyframes loader-breathe {
    0%, 100% { width: 25px; opacity: 0.25; }
    50%       { width: 75px; opacity: 0.9; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--t);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 2.5rem;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-decoration: none;
    transition: var(--tf);
}

.nav-logo a:hover { color: var(--gold-pale); }

.nav-menu {
    display: flex;
    gap: 2.8rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--tf);
    position: relative;
}

.nav-link:hover { opacity: 1; color: var(--gold); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--tf);
}

.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ivory);
    display: block;
    transition: var(--tf);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10,10,10,0.25) 0%,
            rgba(10,10,10,0.55) 55%,
            rgba(10,10,10,0.97) 100%),
        url('../images/hero-bg.jpg') center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 1.6rem;
    display: block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 11vw, 10rem);
    letter-spacing: 0.06em;
    color: var(--ivory);
    line-height: 0.92;
    margin-bottom: 1.6rem;
}

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

.hero-tagline {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    color: var(--ivory);
    opacity: 0.65;
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.hero-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold-pale);
    opacity: 0.5;
    margin-bottom: 3.5rem;
    letter-spacing: 0.04em;
}

.hero-divider {
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent);
    margin: 0 auto 2.8rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1.05rem 2.8rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: var(--t);
    z-index: 0;
}

.hero-cta span { position: relative; z-index: 1; }

.hero-cta:hover { color: var(--obsidian); }
.hero-cta:hover::before { transform: translateX(0); }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.35;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--ivory);
    writing-mode: vertical-rl;
    letter-spacing: 0.35em;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.7); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ============================================
   SECTION — BASE
   ============================================ */

.section      { padding: 8rem 0; }
.section-alt  { background: var(--surface); }

.section-label {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.62rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    display: block;
    margin-bottom: 1.4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: 0.06em;
    color: var(--ivory);
    line-height: 0.95;
}

.section-subtitle {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-pale);
    opacity: 0.6;
    margin-top: 0.75rem;
}

.section-divider {
    width: 35px;
    height: 1px;
    background: var(--gold);
    opacity: 0.45;
    margin: 2rem 0;
}

/* ============================================
   01 — THE MAN BEFORE THE MIRROR
   ============================================ */

.mirror {
    padding: 8rem 0;
}

.mirror-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.mirror-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    color: var(--ivory);
    line-height: 1.55;
    margin-bottom: 2rem;
    border-left: 1px solid rgba(201,169,110,0.5);
    padding-left: 2rem;
}

.mirror-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--ivory);
    opacity: 0.6;
    margin-bottom: 3rem;
    line-height: 2;
}

.mirror-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.mirror-stat {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.mirror-stat:last-child { border-right: none; }

.mirror-stat-value {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
}

.mirror-stat-label {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.4;
}

.mirror-image {
    position: relative;
}

.mirror-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.05) brightness(0.88);
    display: block;
}

.mirror-image-frame {
    position: absolute;
    inset: -14px -14px -14px 14px;
    border: 1px solid var(--border);
    z-index: -1;
}

/* ============================================
   02 — THE RITUAL
   ============================================ */

.ritual {
    padding: 8rem 0;
    background: var(--surface);
}

.ritual-header {
    text-align: center;
    margin-bottom: 5.5rem;
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ritual-step {
    padding: 3rem 2.8rem;
    border-right: 1px solid var(--border);
}

.ritual-step:last-child { border-right: none; }

.ritual-step-bg-num {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.07;
    line-height: 1;
    display: block;
    margin-bottom: -1.5rem;
}

.ritual-step-roman {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.75;
}

.ritual-step-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--ivory);
    margin-bottom: 0.4rem;
}

.ritual-step-sub {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold-pale);
    opacity: 0.55;
    margin-bottom: 1.5rem;
    display: block;
}

.ritual-step-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    color: var(--ivory);
    opacity: 0.55;
    line-height: 1.95;
}

/* ============================================
   03 — SERVICES
   ============================================ */

.services {
    padding: 8rem 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.services-link {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.65;
    transition: var(--tf);
}

.services-link:hover { opacity: 1; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    background: var(--border);
}

.service-card {
    background: var(--obsidian);
    padding: 3rem 2.5rem;
    transition: background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--t);
}

.service-card:hover { background: var(--surface); }
.service-card:hover::after { width: 100%; }

.service-index {
    font-family: var(--font-display);
    font-size: 5.5rem;
    color: var(--gold);
    opacity: 0.055;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    right: 1.2rem;
    pointer-events: none;
    user-select: none;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    color: var(--ivory);
    margin-bottom: 0.4rem;
}

.service-editorial {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold-pale);
    opacity: 0.55;
    margin-bottom: 1.4rem;
    display: block;
}

.service-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--ivory);
    opacity: 0.5;
    margin-bottom: 2rem;
    line-height: 1.85;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-price {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.service-duration {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.38;
}

/* ============================================
   04 — THE UNSHAKEN STANDARD
   ============================================ */

.standard {
    padding: 8rem 0;
    background: var(--surface);
}

.standard-header {
    text-align: center;
    margin-bottom: 5rem;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.standard-pillar {
    background: var(--surface);
    text-align: center;
    padding: 3.5rem 2.5rem;
    transition: background 0.35s ease;
}

.standard-pillar:hover { background: var(--obsidian); }

.pillar-roman {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.65;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.18em;
    color: var(--ivory);
    margin-bottom: 0.6rem;
}

.pillar-subtitle {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold-pale);
    opacity: 0.55;
    margin-bottom: 1.8rem;
    display: block;
}

.pillar-divider {
    width: 25px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.8rem;
    opacity: 0.38;
}

.pillar-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--ivory);
    opacity: 0.52;
    line-height: 1.95;
}

/* ============================================
   FILM JOURNAL PREVIEW (homepage)
   ============================================ */

.film-preview {
    padding: 8rem 0;
}

.film-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.film-see-all {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--tf);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.film-see-all::after { content: '→'; }
.film-see-all:hover { opacity: 1; }

.film-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
}

.film-frame {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    cursor: pointer;
}

.film-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.25) contrast(1.1) brightness(0.8);
    transition: filter 0.5s ease, transform 0.5s var(--ease);
}

.film-frame:hover img {
    filter: sepia(0.1) contrast(1.1) brightness(0.9);
    transform: scale(1.04);
}

.film-frame-num {
    position: absolute;
    bottom: 0.6rem;
    left: 0.7rem;
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-frame:hover .film-frame-num { opacity: 0.5; }

/* ============================================
   MANIFESTE
   ============================================ */

.manifeste {
    padding: 9rem 0;
    text-align: center;
    background: var(--obsidian);
}

.manifeste-content {
    max-width: 680px;
    margin: 0 auto;
}

.manifeste-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    color: var(--ivory);
    line-height: 2.1;
    opacity: 0.75;
}

.manifeste-quote strong {
    font-style: normal;
    font-weight: 400;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.15em;
    letter-spacing: 0.1em;
}

.manifeste-signature {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    opacity: 0.55;
    margin-top: 3.5rem;
    display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 8rem 0;
    background: var(--surface);
    text-align: center;
}

.cta-section .section-title { margin-bottom: 0.8rem; }

.cta-section p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ivory);
    opacity: 0.45;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: var(--t);
    z-index: 0;
}

.cta-button span { position: relative; z-index: 1; }

.cta-button:hover { color: var(--obsidian); }
.cta-button:hover::before { transform: translateX(0); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    background: var(--obsidian);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
}

.page-header .section-label { margin-bottom: 0.8rem; }

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    letter-spacing: 0.08em;
    color: var(--ivory);
    line-height: 1;
}

.page-header p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ivory);
    opacity: 0.45;
    margin-top: 1rem;
}

/* ============================================
   FILM JOURNAL PAGE (galerie.html)
   ============================================ */

.film-journal {
    padding: 7rem 0;
}

.film-entries-label {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--ivory);
    opacity: 0.35;
    margin-top: 0.5rem;
    display: block;
}

.film-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 5rem;
}

.film-journal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.film-journal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.08) brightness(0.75);
    transition: filter 0.5s ease, transform 0.55s var(--ease);
    display: block;
}

.film-journal-item:hover img {
    filter: sepia(0.1) contrast(1.1) brightness(0.88);
    transform: scale(1.04);
}

.film-journal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(10,10,10,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.film-journal-item:hover .film-journal-overlay { opacity: 1; }

.film-entry-code {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.film-entry-title {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ivory);
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.film-entry-desc {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.75rem;
    color: var(--ivory);
    opacity: 0.55;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 82vw;
    max-height: 88vh;
    object-fit: contain;
    filter: sepia(0.15) contrast(1.05);
}

.lightbox-close {
    position: absolute;
    top: 2.2rem;
    right: 2.8rem;
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory);
    cursor: pointer;
    opacity: 0.4;
    transition: var(--tf);
}

.lightbox-close:hover { opacity: 1; color: var(--gold); }

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--ivory);
    opacity: 0.35;
    letter-spacing: 0.08em;
    text-align: center;
    width: 80%;
}

/* ============================================
   LE RITUEL (rendez-vous.html)
   ============================================ */

.rituel {
    padding: 7rem 0;
}

.rituel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.rituel-intro {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ivory);
    opacity: 0.5;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.rituel-steps {
    list-style: none;
    margin-bottom: 3.5rem;
}

.rituel-step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.rituel-step-item:first-child { border-top: 1px solid var(--border); }

.step-roman {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    padding-top: 0.1rem;
    width: 1.8rem;
    opacity: 0.65;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--ivory);
    opacity: 0.45;
    line-height: 1.75;
}

.rituel-form {
    background: var(--surface);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold-pale);
    opacity: 0.5;
    margin-bottom: 2.5rem;
    display: block;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 0.7rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ivory);
    opacity: 0.2;
    font-style: italic;
    font-family: var(--font-editorial);
}

.form-group select option {
    background: var(--surface);
    color: var(--ivory);
}

.form-group textarea {
    resize: none;
    height: 75px;
}

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

.submit-button {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1.1rem;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: var(--t);
    z-index: 0;
}

.submit-button span { position: relative; z-index: 1; }

.submit-button:hover { color: var(--obsidian); }
.submit-button:hover::before { transform: translateX(0); }

.form-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.72rem;
    color: var(--ivory);
    opacity: 0.35;
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact {
    padding: 7rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

.contact-blocks { }

.contact-block {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-block:first-child { border-top: 1px solid var(--border); }

.contact-block-label {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.6rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.65;
    display: block;
    margin-bottom: 0.6rem;
}

.contact-block-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    color: var(--ivory);
}

.contact-block-value a {
    color: var(--ivory);
    text-decoration: none;
    transition: var(--tf);
}

.contact-block-value a:hover { color: var(--gold); }

.contact-hours {
    border: 1px solid var(--border);
    padding: 2rem;
    margin-top: 3rem;
}

.contact-hours-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    opacity: 0.65;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--ivory); opacity: 0.45; }
.hours-time { color: var(--gold-pale); opacity: 0.75; }
.hours-closed { color: var(--ivory); opacity: 0.22; font-style: italic; }

.contact-right { }

.contact-map {
    border: 1px solid var(--border);
    overflow: hidden;
    height: 320px;
    margin-bottom: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(85%) contrast(88%) brightness(0.9);
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    padding: 1.3rem 2rem;
    text-decoration: none;
    transition: var(--t);
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-whatsapp:hover { border-color: var(--gold); }

.contact-whatsapp-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.55;
    transition: var(--tf);
}

.contact-whatsapp:hover .contact-whatsapp-label {
    opacity: 1;
    color: var(--gold);
}

.contact-brand-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1rem;
    color: var(--ivory);
    opacity: 0.3;
    line-height: 1.8;
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-content { max-width: 480px; }

.error-code {
    font-family: var(--font-display);
    font-size: 10rem;
    color: var(--gold);
    opacity: 0.07;
    line-height: 1;
    display: block;
    margin-bottom: -2rem;
}

.error-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.error-content p {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--ivory);
    opacity: 0.4;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--obsidian);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2.5rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.footer-brand-editorial {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--ivory);
    opacity: 0.35;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-brand-tagline {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.42;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.82rem;
    color: var(--ivory);
    opacity: 0.35;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
    transition: var(--tf);
    line-height: 1.7;
}

.footer-col a:hover { opacity: 0.75; color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(242, 237, 230, 0.18);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: var(--gold-pale);
}

/* ============================================
   DISPONIBILITÉS & TYPE DE SESSION
   ============================================ */

/* Note générale */
.dispo-note {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    text-align: center;
}

.dispo-note p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold-pale);
    opacity: 0.7;
    letter-spacing: 0.04em;
}

/* Section créneaux */
.dispo-section {
    padding: 4rem 0 0;
    background: var(--obsidian);
}

/* Liste compacte */
.dispo-list {
    max-width: 560px;
    border-top: 1px solid var(--border);
}

.dispo-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dispo-row-date {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    min-width: 72px;
    flex-shrink: 0;
}

.dispo-row-day {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ivory);
    letter-spacing: 0.04em;
}

.dispo-row-month {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.dispo-row-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.dispo-chip {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ivory);
    padding: 0.25rem 0.6rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--tf);
}

.dispo-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.dispo-chip.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--obsidian);
}

.dispo-chip.taken {
    filter: blur(3px);
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}

/* Type de session selector */
.session-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 0.5rem;
}

.session-type-card {
    background: var(--obsidian);
    padding: 1.4rem 1.2rem;
    cursor: pointer;
    transition: background 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.session-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.session-type-card:hover {
    background: var(--surface);
}

.session-type-card.active {
    background: var(--surface);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.4);
}

.session-type-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gold);
}

.session-type-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.session-type-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--ivory);
}

.session-type-card.active .session-type-title {
    color: var(--gold);
}

.session-type-desc {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.72rem;
    color: var(--ivory);
    opacity: 0.45;
    line-height: 1.5;
}

/* Info domicile */
.domicile-info {
    margin-top: 0.75rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-left: 2px solid var(--gold);
    background: rgba(60, 45, 36, 0.15);
    display: none;
}

.domicile-info p {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold-pale);
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .mirror-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mirror-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .film-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--obsidian);
        width: 78%;
        max-width: 320px;
        height: 100vh;
        padding: 6rem 2.5rem 3rem;
        transition: left 0.4s var(--ease);
        border-right: 1px solid var(--border);
        gap: 2.2rem;
    }

    .nav-menu.active { left: 0; }
    .nav-link { font-size: 0.9rem; }
    .nav-toggle { display: flex; }

    .ritual-steps,
    .standard-grid {
        grid-template-columns: 1fr;
        background: none;
        gap: 2px;
    }

    .ritual-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .ritual-step:last-child { border-bottom: none; }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .rituel-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row { grid-template-columns: 1fr; }

    .film-journal-grid { grid-template-columns: repeat(2, 1fr); }
    .film-strip { grid-template-columns: repeat(2, 1fr); }

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

    .mirror-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .footer-layout { grid-template-columns: 1fr; gap: 2.5rem; }

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

    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .dispo-grid { flex-direction: column; background: none; gap: 2px; }
    .dispo-date-card { flex-direction: row; min-width: unset; }
    .dispo-date-label {
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 1rem;
        min-width: 70px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .dispo-row { flex-wrap: wrap; gap: 0.5rem; }
    .dispo-row-times { gap: 0.3rem; }
    .session-type-selector { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .film-journal-grid { grid-template-columns: 1fr; }
    .film-strip { grid-template-columns: repeat(2, 1fr); }
    .standard-pillar { padding: 2.5rem 1.5rem; }
    .rituel-form { padding: 2rem 1.5rem; }
}

/* ============================================
   AVIS / TÉMOIGNAGES
   ============================================ */

.reviews-section {
    padding: 4rem 0;
    background: var(--obsidian);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    font-size: 1rem;
    line-height: 1;
}

.review-stars .star {
    color: rgba(255,255,255,0.15);
}

.review-stars .star.filled {
    color: var(--gold);
}

.review-comment {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ivory);
    opacity: 0.75;
    line-height: 1.8;
    flex-grow: 1;
}

.review-name {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.reviews-empty {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ivory);
    opacity: 0.4;
    text-align: center;
    padding: 2rem 0;
}

.review-form-wrap {
    max-width: 560px;
    margin: 0 auto;
}

/* Star rating input — affiché en ordre inverse (5 → 1) puis remis visuellement via row-reverse */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.star-rating .star-label {
    font-size: 1.6rem;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--tf);
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.star-rating input:checked ~ .star-label,
.star-rating .star-label:hover,
.star-rating .star-label:hover ~ .star-label {
    color: var(--gold);
}

/* ============================================
   FLASH MESSAGES (client)
   ============================================ */

.site-flash-wrap {
    max-width: 720px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: var(--ivory);
}

.site-flash p { margin: 0; }

.site-flash-success { border-color: var(--gold); color: var(--gold-pale); }
.site-flash-error   { border-color: #b96b5e; color: #d99a8f; }
.site-flash-info    { border-color: var(--border); color: var(--ivory); }

.site-flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.site-flash-close:hover { opacity: 1; }

@media (max-width: 600px) {
    .star-rating { justify-content: flex-start; }
    .reviews-list { grid-template-columns: 1fr; }
}
