/* ============================================
   ÉDITION — magazine editorial photographe
   ============================================ */

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

:root {
    --paper:        #fafaf7;
    --paper-warm:   #f4f0e8;
    --paper-edge:   #e8e4d8;
    --ink:          #0a0a0a;
    --ink-soft:     #2a2a2a;
    --ink-mid:      #4a4a4a;
    --ink-light:    #6a6a6a;
    --accent:       #b03e34;  /* 5.3:1 sur paper - AA confortable */
    --accent-soft:  #e85d4c;  /* decoratif sur sombre */
    --border:       rgba(10, 10, 10, 0.12);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
    --font-mono:    'IBM Plex Mono', monospace;

    --container: 1340px;
    --header-h: 78px;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

.skip-link { position: absolute; left: -9999px; background: var(--ink); color: var(--paper); padding: 12px 20px; z-index: 9999; }
.skip-link:focus { left: 10px; top: 10px; }

*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* ============================================
   CURSEUR ÉDITORIAL (point + label "VOIR")
   ============================================ */
.edit-cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, height 0.3s ease;
    width: 12px;
    height: 12px;
    will-change: transform;
}
.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.cursor-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--paper);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.edit-cursor.grow {
    width: 80px;
    height: 80px;
}
.edit-cursor.grow .cursor-dot {
    width: 80px;
    height: 80px;
    background: var(--ink);
}
.edit-cursor.grow .cursor-label {
    opacity: 1;
    transform: scale(1);
}
@media (hover: none), (max-width: 900px) {
    .edit-cursor { display: none; }
    html, body, * { cursor: auto; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.0;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 96;
}
h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

p { line-height: 1.65; color: var(--ink-soft); }

.section-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-left: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
}
.btn-dark {
    background: var(--ink);
    color: var(--paper);
}
.btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--paper);
}
.btn-full { width: 100%; padding: 20px; }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translate(4px, 0); }
.btn-dark .btn-arrow { display: inline-block; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 12px rgba(10, 10, 10, 0.08);
}
body { padding-top: 90px; }
.section, .cover, .feature-section { scroll-margin-top: 100px; }

/* Compatibilite barre WordPress (admin connecte) */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
.site-header.scrolled {
    padding: 8px 0;
    background: rgba(250, 250, 247, 0.97);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title-link {
    display: flex;
    flex-direction: column;
    color: var(--ink);
    line-height: 1;
}
.logo-main {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 4px;
}
.logo-tagline {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin-top: 6px;
}

.nav-list { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-list a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.nav-list a:hover { color: var(--accent); }
.nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 10px 22px;
}
.nav-cta:hover { background: var(--accent) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   COVER (Hero magazine cover)
   ============================================ */
.cover {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}
.cover-grid {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 30px 60px;
    align-items: start;
}

.cover-meta {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
}
.meta-line {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.meta-num {
    color: var(--accent);
    font-weight: 700;
}
.meta-sub {
    color: var(--ink-light);
    font-size: 0.78rem;
}

.cover-title {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.cover-word {
    display: block;
    font-size: clamp(4.5rem, 14vw, 12rem);
    padding-bottom: 0.08em;
    line-height: 0.95;
    white-space: nowrap;
}
.cover-w2 {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
    margin-left: clamp(40px, 8vw, 120px);
}

.cover-image {
    grid-column: 2;
    grid-row: 1 / 4;
    position: relative;
}
.cover-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    will-change: transform;
}
.cover-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.cover-img-wrap:hover img { transform: scale(1.04); }
.cover-credit {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-light);
    letter-spacing: 1px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.cover-credit em { font-style: italic; color: var(--ink); }
.credit-sep { color: var(--accent); }
.credit-stamp {
    background: var(--accent);
    color: var(--paper);
    padding: 3px 8px;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.65rem;
}

/* Contact sheet strip — entre series et feature */
.contact-sheet-strip {
    background: var(--ink);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--ink);
}
.contact-sheet-strip::before,
.contact-sheet-strip::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 10px;
    background-image: radial-gradient(circle at 16px center, var(--paper) 4px, transparent 4.5px);
    background-size: 32px 10px;
    background-repeat: repeat-x;
}
.contact-sheet-strip::before { top: 0; }
.contact-sheet-strip::after { bottom: 0; }
.sheet-track {
    display: flex;
    gap: 8px;
    align-items: center;
    animation: sheetScroll 50s linear infinite;
    white-space: nowrap;
}
.sheet-frame {
    flex: 0 0 100px;
    height: 70px;
    background-position: center;
    background-size: cover;
    position: relative;
    filter: grayscale(0.4);
}
.sheet-frame::after {
    content: attr(data-num);
    position: absolute;
    top: 3px; left: 4px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--accent-soft);
    letter-spacing: 1px;
    background: rgba(10, 10, 10, 0.7);
    padding: 1px 4px;
}
@keyframes sheetScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .sheet-track { animation: none; }
}

/* Feature photos : aussi avec bordure photo */
.feat-photo {
    background: var(--paper);
    padding: 6px 6px 18px;
    box-shadow: 0 8px 24px rgba(10, 10, 10, 0.18);
}
.feat-photo::after {
    content: attr(data-stamp);
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--ink-light);
    letter-spacing: 1.5px;
    z-index: 3;
}

.cover-intro {
    grid-column: 1;
    grid-row: 3;
    max-width: 480px;
    padding-top: 30px;
}
.cover-intro p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300;
}
.cover-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS GENERIC
   ============================================ */
.section {
    padding: 130px 0;
    position: relative;
    scroll-margin-top: var(--header-h);
}

/* ============================================
   EDITO
   ============================================ */
.edito-section {
    background: var(--paper-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.edito-head {
    margin-bottom: 70px;
    display: flex;
    align-items: baseline;
    gap: 0;
}
.edito-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
}
.edito-quote { position: relative; padding-top: 80px; }
.quote-mark {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    line-height: 0.7;
    font-style: italic;
}
.quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
    color: var(--ink);
    font-weight: 400;
    margin: 0;
}
.quote-author {
    margin-top: 36px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.quote-role {
    font-size: 0.7rem;
    color: var(--ink-light);
    letter-spacing: 2px;
}

.edito-text p {
    margin-bottom: 22px;
    font-size: 1.02rem;
    color: var(--ink-soft);
}
.paragraph-lead {
    font-family: var(--font-display);
    font-size: 1.45rem !important;
    line-height: 1.4 !important;
    color: var(--ink) !important;
    font-weight: 400;
}

/* ============================================
   SÉRIES
   ============================================ */
.series-section { padding: 130px 0 100px; }
.series-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 100px;
}
.series-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.92;
    margin-top: 28px;
    letter-spacing: -0.025em;
}
.series-title em { font-style: italic; color: var(--accent); }

.serie {
    padding: 70px 0;
    border-top: 1px solid var(--border);
}
.serie:last-child { border-bottom: 1px solid var(--border); }
.serie-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.serie-reverse .serie-grid { grid-template-columns: 1.15fr 0.85fr; }
.serie-reverse .serie-info { order: 2; }
.serie-reverse .serie-photos { order: 1; }

.serie-no {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 24px;
}
.serie-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.serie-title em { font-style: italic; color: var(--accent); }
.serie-desc {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin-bottom: 22px;
    max-width: 420px;
    line-height: 1.65;
}
.serie-stats {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-light);
    letter-spacing: 1px;
}
.serie-stats span { color: var(--ink); }

.serie-photos {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    aspect-ratio: 1.2/1;
}
.ph {
    margin: 0;
    overflow: hidden;
    will-change: transform;
    background: var(--paper);
    padding: 8px 8px 22px;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.08);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ph::after {
    content: attr(data-date);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--ink-light);
    letter-spacing: 1.5px;
    pointer-events: none;
}
.ph:hover {
    transform: translateY(-4px) rotate(-0.3deg);
    box-shadow: 0 20px 40px rgba(10, 10, 10, 0.15);
}
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.ph:hover img { transform: scale(1.05); }
.ph-1 { grid-row: 1 / 3; grid-column: 1; }
.ph-2 { grid-row: 1; grid-column: 2; }
.ph-3 { grid-row: 2; grid-column: 2; }

/* ============================================
   FEATURED STORY
   ============================================ */
.feature-section {
    background: var(--ink);
    color: var(--paper);
    padding: 140px 0;
}
.feature-section .section-num { color: var(--accent-soft); }
.feature-section .section-tag { color: rgba(250, 250, 247, 0.7); }

.feature-meta {
    margin-bottom: 50px;
    display: flex;
    align-items: baseline;
    gap: 0;
}
.feature-headline {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: baseline;
}
.feature-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.88;
    color: var(--paper);
    letter-spacing: -0.025em;
}
.feature-title span { display: block; }
.feature-title em { font-style: italic; color: var(--accent-soft); }
.feature-subtitle {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: rgba(250, 250, 247, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    align-self: end;
}

.feature-lead-grid {
    margin-bottom: 70px;
    max-width: 720px;
}
.feature-dropcap {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--paper);
    font-style: italic;
    font-weight: 300;
}
.feature-dropcap > span {
    font-style: italic;
    color: rgba(250, 250, 247, 0.85);
}
.feature-dropcap::first-letter {
    font-size: 5rem;
    float: left;
    line-height: 0.85;
    margin: 0.05em 12px 0 0;
    font-style: normal;
    color: var(--accent-soft);
    font-weight: 500;
}

.feature-photos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin-bottom: 80px;
    aspect-ratio: 1.7/1;
}
.feat-photo {
    margin: 0;
    overflow: hidden;
    position: relative;
}
.feat-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.feat-photo:hover img { transform: scale(1.04); }
.feat-photo figcaption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--paper);
    background: rgba(10, 10, 10, 0.7);
    padding: 5px 10px;
    letter-spacing: 1px;
}
.feat-large { grid-column: 1; grid-row: 1 / 3; }
.feat-small:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.feat-small:nth-of-type(3) { grid-column: 2; grid-row: 2; }
.feat-medium { grid-column: 3; grid-row: 1 / 3; }

.feature-text-cols {
    column-count: 2;
    column-gap: 60px;
    max-width: 920px;
    margin: 0 auto;
}
.feature-text-cols p {
    color: rgba(250, 250, 247, 0.78);
    font-size: 1rem;
    margin-bottom: 20px;
    break-inside: avoid;
    line-height: 1.7;
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs-section { background: var(--paper); }
.tarifs-head {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.tarifs-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin-top: 28px;
    letter-spacing: -0.025em;
}
.tarifs-title em { font-style: italic; color: var(--accent); }

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.tarif-card {
    background: var(--paper);
    padding: 50px 40px;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tarif-card:hover { background: var(--paper-warm); }
.tarif-card header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.tarif-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--ink);
}
.tarif-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 1.5px;
}
.tarif-desc {
    color: var(--ink-soft);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.tarif-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}
.tarif-includes li {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
}
.tarif-includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}
.tarif-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.price-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.price-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
}
.price-num em { font-style: italic; }
.price-num span {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 400;
    margin-left: 4px;
}

.tarif-featured {
    background: var(--ink);
    color: var(--paper);
}
.tarif-featured .tarif-name { color: var(--paper); }
.tarif-featured .tarif-num { color: var(--accent-soft); }
.tarif-featured .tarif-desc { color: rgba(250, 250, 247, 0.75); }
.tarif-featured .tarif-includes li { color: rgba(250, 250, 247, 0.85); }
.tarif-featured .tarif-includes li::before { color: var(--accent-soft); }
.tarif-featured .price-label { color: rgba(250, 250, 247, 0.65); }
.tarif-featured .price-num { color: var(--paper); }
.tarif-featured .price-num span { color: var(--accent-soft); }
.tarif-featured .tarif-price { border-top-color: rgba(250, 250, 247, 0.18); }
.tarif-featured header { border-bottom-color: rgba(250, 250, 247, 0.18); }
.tarif-featured:hover { background: #0e0e0e; }
.tarif-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--accent);
    color: var(--paper);
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   CARNET DE NOTES
   ============================================ */
.carnet-section { background: var(--paper-warm); }
.carnet-head {
    margin-bottom: 70px;
    display: flex;
    align-items: baseline;
    gap: 0;
}
.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}
.note { margin: 0; padding: 36px 0 0; border-top: 2px solid var(--ink); }
.note-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    margin: 0 0 28px;
    font-weight: 400;
}
.note footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.note cite {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--ink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.note-context {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-light);
    letter-spacing: 1.5px;
}

/* ============================================
   BOOKING
   ============================================ */
.booking-section { background: var(--paper); }
.booking-head {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.booking-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 28px 0 18px;
    letter-spacing: -0.025em;
}
.booking-title em { font-style: italic; color: var(--accent); }
.booking-intro {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink-soft);
    font-style: italic;
    font-weight: 300;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-row { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.info-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.info-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    font-style: italic;
}
a.info-value:hover { color: var(--accent); }

.booking-form {
    background: var(--paper);
}
.form-row { margin-bottom: 24px; }
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
    font-style: italic;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}
textarea { resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--paper);
    letter-spacing: 4px;
    margin-bottom: 12px;
    font-weight: 500;
}
.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-soft);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-col p {
    color: rgba(250, 250, 247, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: rgba(250, 250, 247, 0.75);
    font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid rgba(250, 250, 247, 0.1);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(250, 250, 247, 0.5);
}

/* ============================================
   ANIMATIONS PHOTO
   ============================================ */
.mask-reveal { clip-path: inset(0 100% 0 0); }

/* Shutter flash : flash blanc bref a l'apparition */
.shutter-flash {
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: screen;
}

/* Photos cliquables : indicateur visuel subtil */
.ph, .feat-photo, .cover-img-wrap {
    position: relative;
}
.ph:focus-visible, .feat-photo:focus-visible, .cover-img-wrap:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

/* ============================================
   LIGHTBOX ACCESSIBLE
   ============================================ */
.edt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.edt-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

/* OUVERTURE EN DIAPHRAGME : le contenu apparait comme un iris d'objectif qui s'ouvre */
.edt-lightbox .edt-lb-figure {
    clip-path: circle(0% at center);
    transform: scale(0.85);
    transition: none;
}
.edt-lightbox.open .edt-lb-figure {
    animation: apertureOpen 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes apertureOpen {
    0% {
        clip-path: circle(0% at center);
        transform: scale(0.85);
    }
    60% {
        clip-path: circle(85% at center);
        transform: scale(1.02);
    }
    100% {
        clip-path: circle(75% at center);
        transform: scale(1);
    }
}

/* Halo terre-rouge bref quand le diaphragme s'ouvre */
.edt-lightbox.open::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        var(--accent-soft) 0%,
        var(--accent) 25%,
        transparent 55%);
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    animation: apertureGlow 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.edt-lightbox .edt-lb-figure { position: relative; z-index: 1; }
@keyframes apertureGlow {
    0%   { opacity: 0; transform: scale(0.2); }
    30%  { opacity: 0.75; transform: scale(1.1); }
    70%  { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
    .edt-lightbox .edt-lb-figure { clip-path: none; transform: none; }
    .edt-lightbox.open .edt-lb-figure { animation: none; }
    .edt-lightbox.open::before { display: none; }
}

/* SHUTTER FLASH : flash blanc bref au clic sur une photo (declenchement camera) */
.shutter-trigger-flash {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 10010;
    opacity: 0;
    pointer-events: none;
}
.shutter-trigger-flash.fire {
    animation: shutterTrigger 0.45s ease-out;
}
@keyframes shutterTrigger {
    0%   { opacity: 0; }
    8%   { opacity: 0.95; }
    25%  { opacity: 0.5; }
    100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .shutter-trigger-flash { display: none; }
}

.edt-lb-figure {
    margin: 0;
    max-width: 95vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.edt-lb-figure img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.edt-lb-cap {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--paper);
    text-align: center;
    max-width: 600px;
}
.edt-lb-cap:empty { display: none; }

.edt-lb-close {
    position: fixed;
    top: 24px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(250, 250, 247, 0.4);
    color: var(--paper);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edt-lb-close:hover, .edt-lb-close:focus-visible {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .cover-grid { grid-template-columns: 1fr; gap: 40px; }
    .cover-meta, .cover-title, .cover-intro, .cover-image { grid-column: 1; }
    .cover-image { aspect-ratio: 4/4.5; }
    .cover-img-wrap { aspect-ratio: auto; height: 100%; }
    .edito-grid { grid-template-columns: 1fr; gap: 50px; }
    .serie-grid, .serie-reverse .serie-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-headline { grid-template-columns: 1fr; gap: 24px; }
    .tarifs-grid { grid-template-columns: 1fr; }
    .notes-grid { grid-template-columns: 1fr; gap: 36px; }
    .booking-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-text-cols { column-count: 1; }
    .feat-large, .feat-small, .feat-medium { grid-column: auto; grid-row: auto; }
    .feature-photos { grid-template-columns: 1fr 1fr; aspect-ratio: 1/1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--paper);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 22px; align-items: flex-start; }
    .nav-list a { font-size: 0.95rem; }

    .section { padding: 80px 0; }
    .cover { padding: 30px 0 60px; }
    .cover-word { font-size: 3.5rem; }
    .form-row-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
