  :root {
    --terracotta: #C4622D;
    --ocre: #D4923A;
    --indigo: #1B3A5C;
    --noir: #0F0D0A;
    --creme: #F5EDE0;
    --blanc-casse: #F0E8DB;
    --sable: #E8D5B5;
    --brun: #3D2B1A;
    --or: #C9A84C;
    --noir-profond: #080604;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--noir);
    color: var(--creme);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(15,13,10,0.97), rgba(15,13,10,0.6), transparent);
    transition: background 0.4s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300;
    letter-spacing: 0.15em; color: var(--creme); text-decoration: none;
  }
  .nav-logo span { color: var(--or); font-style: italic; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 0.75rem; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--sable); text-decoration: none;
    position: relative; transition: color 0.3s; cursor: pointer;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--or); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--or); }
  .nav-links a.active { color: var(--or); }
  .nav-links a.active::after { width: 100%; }
  .nav-links a:hover::after { width: 100%; }
  .nav-lang {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--or); border: 1px solid var(--or); padding: 6px 16px;
    text-decoration: none; transition: all 0.3s;
  }
  .nav-lang:hover { background: var(--or); color: var(--noir); }

  /* all sections flow naturally */

  /* ===== HERO (ACCUEIL) ===== */
  .hero {
    min-height: 100vh; position: relative;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px),
      repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(196,98,45,0.03) 30px, rgba(196,98,45,0.03) 31px);
    z-index: 1; pointer-events: none;
  }
  .hero-left {
    position: relative; display: flex; flex-direction: column;
    justify-content: center; padding: 120px 80px 100px; z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(232,213,181,0.55);
    margin-bottom: 36px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
  }
  .hero-eyebrow-line {
    display: inline-block; width: 40px; height: 1.5px; background: var(--or); flex-shrink: 0;
  }
  .hero-name-block { position: relative; }
  .hero-surname {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem); font-weight: 300;
    line-height: 1; color: var(--blanc-casse);
    opacity: 0; animation: fadeUp 1s ease forwards 0.3s;
  }
  .hero-firstname {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 7vw, 7rem); font-weight: 300;
    line-height: 0.9; color: var(--blanc-casse);
    opacity: 0; animation: fadeUp 1s ease forwards 0.5s;
  }
  .hero-circle {
    position: absolute; top: 30px; right: -20px;
    width: 42px; height: 42px;
    border: 1.5px solid var(--or);
    border-radius: 50%;
    opacity: 0; animation: fadeIn 1s ease forwards 0.9s;
  }
  .hero-circle::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--or);
  }
  .hero-initial {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: clamp(4rem, 7vw, 7rem); font-weight: 300; */
    font-size: clamp(2rem, 7vw, 1rem); font-weight: 300;
    font-style: italic; color: var(--or);
    margin-top: 32px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
  }
  .hero-discipline {
    font-size: 0.7rem; font-weight: 400; letter-spacing: 0.35em;
    text-transform: uppercase; color: rgba(232,213,181,0.6);
    margin-top: 40px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 1s;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; font-weight: 300;
    color: var(--sable); margin-top: 20px; max-width: 380px; line-height: 1.7;
    opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
  }
  .hero-cta {
    margin-top: 48px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 1.3s;
  }
  .btn-gold {
    display: inline-block; padding: 18px 48px;
    background: var(--or); color: var(--noir);
    font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none;
    transition: all 0.4s; cursor: pointer; border: none;
  }
  .btn-gold:hover { background: var(--sable); }
  .hero-right { position: relative; overflow: hidden; margin: 80px 40px 40px 0; }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    opacity: 0; animation: fadeIn 1.2s ease forwards 0.4s;
  }
  /* — Équerres dorées à l'intérieur du cadre photo — */
  .equerre {
    position: absolute; z-index: 5; pointer-events: none;
    opacity: 0; animation: fadeIn 1s ease forwards 1.2s;
  }
  .equerre::before, .equerre::after {
    content: ''; position: absolute; background: var(--or);
  }
  .equerre--tl { top: 18px; left: 18px; }
  .equerre--tl::before { top: 0; left: 0; width: 55px; height: 2.5px; }
  .equerre--tl::after  { top: 0; left: 0; width: 2.5px; height: 55px; }

  .equerre--tr { top: 18px; right: 18px; }
  .equerre--tr::before { top: 0; right: 0; width: 55px; height: 2.5px; }
  .equerre--tr::after  { top: 0; right: 0; width: 2.5px; height: 55px; }

  .equerre--bl { bottom: 18px; left: 18px; }
  .equerre--bl::before { bottom: 0; left: 0; width: 55px; height: 2.5px; }
  .equerre--bl::after  { bottom: 0; left: 0; width: 2.5px; height: 55px; }

  .equerre--br { bottom: 18px; right: 18px; }
  .equerre--br::before { bottom: 0; right: 0; width: 55px; height: 2.5px; }
  .equerre--br::after  { bottom: 0; right: 0; width: 2.5px; height: 55px; }
  .hero-right-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, var(--noir), transparent);
    z-index: 2;
  }
  .hero-badge {
    position: absolute; bottom: 40px; right: 40px;
    font-family: 'Cormorant Garamond', serif; font-size: 0.65rem;
    letter-spacing: 0.1em; color: rgba(201,168,76,0.5); z-index: 6;
    opacity: 0; animation: fadeIn 0.8s ease forwards 1.5s;
  }
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 80px;
    display: flex; align-items: center; gap: 14px; z-index: 10;
    opacity: 0; animation: fadeIn 0.8s ease forwards 1.6s;
  }
  .scroll-line { width: 50px; height: 1px; background: var(--or); position: relative; overflow: hidden; }
  .scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--creme); animation: scrollPulse 2s ease infinite;
  }
  .scroll-text { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sable); }

  /* ===== INTRO BAND ===== */
  .intro-band {
    background: var(--brun); padding: 80px 60px;
    display: flex; align-items: center; gap: 80px; position: relative; overflow: hidden;
  }
  .intro-band::before {
    content: '\201C'; position: absolute; font-family: 'Cormorant Garamond', serif;
    font-size: 25rem; color: rgba(201,168,76,0.04); top: -80px; left: 40px; line-height: 1; pointer-events: none;
  }
  .intro-quote {
    flex: 1; font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem); font-style: italic; font-weight: 300; line-height: 1.5; color: var(--creme);
  }
  .intro-quote strong { color: var(--or); font-style: normal; font-weight: 600; }
  .intro-divider { width: 1px; height: 120px; background: var(--or); opacity: 0.4; flex-shrink: 0; }
  .intro-stats { display: flex; flex-direction: column; gap: 36px; }
  .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: var(--or); line-height: 1; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sable); margin-top: 4px; }

  /* ===== ABOUT ===== */
  .about-section {
    background: #160F08; display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh;
  }
  .about-image { position: relative; overflow: hidden; background: #160F08; }
  .about-image img { width: 100%; height: 100%; object-fit: contain; object-position: center center; filter: sepia(10%) saturate(0.95); }
  .about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 85%, #160F08 100%); }
  .about-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
  .section-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or); margin-bottom: 16px; }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300; line-height: 1.15; color: var(--creme); margin-bottom: 32px;
  }
  .section-title em { font-style: italic; color: var(--or); }
  .about-text { font-size: 0.95rem; line-height: 1.9; color: var(--sable); font-weight: 200; margin-bottom: 20px; }
  .about-text:first-of-type { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--creme); }
  .about-signature { margin-top: 40px; display: flex; align-items: center; gap: 20px; }
  .signature-line { width: 50px; height: 1px; background: var(--or); }
  .signature-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--or); }

  /* ===== PRESS KIT ===== */
  .press-kit {
    margin-top: 48px; padding-top: 36px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .press-kit-label {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--or); margin-bottom: 16px; font-weight: 400;
  }
  .press-kit-links { display: flex; gap: 16px; flex-wrap: wrap; }
  .press-kit-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(201,168,76,0.25);
    background: transparent;
    color: var(--sable);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; font-weight: 400; font-style: italic;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s;
  }
  .press-kit-btn:hover {
    border-color: var(--or); color: var(--or);
    background: rgba(201,168,76,0.06);
  }
  .press-kit-btn-icon {
    font-size: 1rem; font-style: normal;
  }

  /* ===== BIOGRAPHIE ===== */
  .bio-section {
    background: var(--noir); padding: 100px 60px; position: relative; overflow: hidden;
  }
  .bio-section::before {
    content: 'PARCOURS'; position: absolute; font-family: 'Cormorant Garamond', serif;
    font-size: 14rem; font-weight: 600; color: rgba(201,168,76,0.025);
    right: -40px; top: 30px; pointer-events: none; line-height: 1;
  }
  .bio-layout {
    display: grid; grid-template-columns: 1fr 1px 1fr; gap: 60px;
    align-items: start; position: relative;
  }
  .bio-column { }
  .bio-divider-line {
    background: linear-gradient(to bottom, transparent, var(--or), transparent);
    opacity: 0.3; align-self: stretch;
  }
  .bio-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300; font-style: italic;
    color: var(--or); margin-bottom: 28px; line-height: 1.3;
  }
  .bio-column p {
    font-size: 0.95rem; line-height: 2; color: var(--sable);
    font-weight: 300; margin-bottom: 20px;
  }
  .bio-column p strong {
    color: var(--creme); font-weight: 500;
  }
  .bio-column p em {
    color: var(--or); font-style: italic;
  }
  .bio-highlight {
    margin: 36px 0; padding: 28px 32px;
    border-left: 2px solid var(--or);
    background: rgba(61,43,26,0.25);
  }
  .bio-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; line-height: 1.8;
    color: var(--creme); margin: 0;
  }
  .bio-mentors {
    display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap;
  }
  .bio-mentor-tag {
    padding: 6px 18px;
    border: 1px solid rgba(201,168,76,0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; font-style: italic; color: var(--sable);
    letter-spacing: 0.05em;
  }
  @media (max-width: 900px) {
    .bio-section { padding: 60px 30px; }
    .bio-layout { grid-template-columns: 1fr; gap: 40px; }
    .bio-divider-line { display: none; }
  }

  /* ===== ATELIER — Section enrichie ===== */
  .atelier-section {
    background: var(--noir); padding: 100px 60px; position: relative; overflow: hidden;
  }
  .atelier-section::before {
    content: 'ATELIER'; position: absolute; font-family: 'Cormorant Garamond', serif;
    font-size: 16rem; font-weight: 600; color: rgba(201,168,76,0.025);
    left: -30px; top: 20px; pointer-events: none; line-height: 1;
  }
  .atelier-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 60px;
  }
  .atelier-card {
    position: relative; overflow: hidden;
    background: var(--brun);
    border: 1px solid rgba(201,168,76,0.1);
    transition: all 0.5s;
  }
  .atelier-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 12px 50px rgba(0,0,0,0.5);
  }
  .atelier-card.wide { grid-column: span 2; }
  .atelier-card-img {
    width: 100%; display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
    filter: saturate(0.85);
  }
  .atelier-card.tall .atelier-card-img { height: 480px; object-fit: cover; }
  .atelier-card.wide .atelier-card-img { height: 400px; object-fit: cover; object-position: center; }
  .atelier-card:hover .atelier-card-img {
    transform: scale(1.04); filter: saturate(1);
  }
  .atelier-card-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 30px 28px;
    background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.6) 60%, transparent 100%);
    transform: translateY(10px); opacity: 0;
    transition: all 0.5s ease;
  }
  .atelier-card:hover .atelier-card-caption {
    transform: translateY(0); opacity: 1;
  }
  .atelier-card-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 300; font-style: italic;
    color: var(--creme); margin-bottom: 8px;
  }
  .atelier-card-caption p {
    font-size: 0.85rem; line-height: 1.7; color: var(--sable); font-weight: 300;
  }
  /* Gold corner accents on atelier cards */
  .atelier-card::before, .atelier-card::after { content: ''; position: absolute; z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.4s; }
  .atelier-card:hover::before, .atelier-card:hover::after { opacity: 1; }
  .atelier-card::before { top: 14px; left: 14px; width: 30px; height: 30px; border-top: 2px solid var(--or); border-left: 2px solid var(--or); }
  .atelier-card::after { bottom: 14px; right: 14px; width: 30px; height: 30px; border-bottom: 2px solid var(--or); border-right: 2px solid var(--or); }

  /* ── VIDEO CAROUSEL ── */
  .video-carousel-wrapper {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
  }
  .video-carousel-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .video-carousel-header .section-label {
    display: inline-block;
  }
  .video-carousel-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--sable);
    opacity: 0.7;
    margin-top: 10px;
  }
  .video-carousel {
    position: relative;
    overflow: visible;
  }
  .video-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* start with 20% left padding so first slide is centered */
    padding-left: 20%;
  }
  .video-slide {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-sizing: border-box;
    transition: opacity 0.5s, transform 0.5s, filter 0.5s;
    opacity: 0.35;
    transform: scale(0.88);
    filter: brightness(0.5);
    cursor: pointer;
  }
  .video-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  .video-slide-inner {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 9 / 16;
    max-height: 70vh;
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
    background: var(--noir-profond);
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  }
  .video-slide-inner video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
  }
  /* Équerres dorées sur les vidéos */
  .video-slide-inner::before, .video-slide-inner::after {
    content: '';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .video-slide-inner::before {
    top: 16px; left: 16px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
  }
  .video-slide-inner::after {
    bottom: 16px; right: 16px;
    width: 40px; height: 40px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
  }
  /* Overlay dégradé bas */
  .video-overlay-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 30px 24px;
    background: linear-gradient(to top, rgba(8,6,4,0.85) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
  }
  .video-overlay-caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--creme);
    margin: 0;
  }
  /* Play button overlay — sombre */
  .video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(15, 13, 10, 0.65);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    backdrop-filter: blur(6px);
  }
  .video-play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent rgba(201,168,76,0.7);
    margin-left: 4px;
  }
  .video-play-btn:hover {
    background: rgba(15, 13, 10, 0.8);
    border-color: var(--or);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .video-play-btn:hover::after {
    border-color: transparent transparent transparent var(--or);
  }
  .video-play-btn.hidden { opacity: 0; pointer-events: none; }
  /* Navigation arrows */
  .video-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--or);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
  }
  .video-nav:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--or);
  }
  .video-nav.prev { left: 10px; }
  .video-nav.next { right: 10px; }
  /* Dots / indicateurs */
  .video-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }
  .video-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    cursor: pointer;
    transition: all 0.4s;
  }
  .video-dot.active {
    background: var(--or);
    border-color: var(--or);
    box-shadow: 0 0 12px rgba(201,168,76,0.4);
    transform: scale(1.3);
  }
  /* Compteur de vidéos */
  .video-counter {
    text-align: center;
    margin-top: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: rgba(201,168,76,0.4);
  }

  @media (max-width: 900px) {
    .atelier-mosaic { grid-template-columns: 1fr; }
    .atelier-card.wide { grid-column: span 1; }
    .atelier-card.tall .atelier-card-img, .atelier-card.wide .atelier-card-img { height: 300px; }
    .atelier-section { padding: 60px 30px; }
    .video-slide { flex: 0 0 80%; padding: 0 8px; }
    .video-carousel-track { padding-left: 10%; }
    .video-nav { width: 40px; height: 40px; font-size: 1.1rem; }
    .video-nav.prev { left: 4px; }
    .video-nav.next { right: 4px; }
    .video-play-btn { width: 56px; height: 56px; }
    .video-play-btn::after { border-width: 10px 0 10px 18px; }
    .video-slide-inner { max-height: 60vh; }
  }

  /* ===== EXPOSITIONS ===== */
  .expo-section { padding: 100px 60px; background: var(--noir); position: relative; }
  .expo-section::after {
    content: 'EXPO'; position: absolute; font-family: 'Cormorant Garamond', serif;
    font-size: 18rem; font-weight: 600; color: rgba(201,168,76,0.03); right: -20px; top: 40px; pointer-events: none;
  }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
  .section-link {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sable); text-decoration: none; padding-bottom: 6px;
    border-bottom: 1px solid rgba(201,168,76,0.3); transition: all 0.3s; cursor: pointer;
  }
  .section-link:hover { color: var(--or); border-color: var(--or); }
  .expo-item {
    display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 40px;
    padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative;
  }
  .expo-item::before {
    content: ''; position: absolute; left: -60px; right: -60px; top: 0; bottom: 0;
    background: rgba(196,98,45,0.04); opacity: 0; transition: opacity 0.3s;
  }
  .expo-item:hover::before { opacity: 1; }
  .expo-year { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: rgba(201,168,76,0.4); transition: color 0.3s; }
  .expo-item:hover .expo-year { color: var(--or); }
  .expo-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; font-style: italic; color: var(--creme); margin-bottom: 4px; }
  .expo-info p { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--sable); font-weight: 300; }
  .expo-tag {
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 16px; border: 1px solid;
  }
  .expo-tag.upcoming { border-color: var(--terracotta); color: var(--terracotta); }
  .expo-tag.past { border-color: rgba(255,255,255,0.15); color: var(--sable); }

  /* ===== EXPO DECADES ===== */
  .expo-decade { margin-bottom: 8px; }
  .expo-decade-btn {
    display: flex; align-items: center; gap: 16px; width: 100%;
    background: transparent; border: none; border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 16px 0; cursor: pointer; transition: all 0.3s;
  }
  .expo-decade-btn:hover { border-bottom-color: var(--or); }
  .expo-decade-label {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    font-weight: 300; color: rgba(201,168,76,0.5); transition: color 0.3s;
  }
  .expo-decade-btn:hover .expo-decade-label,
  .expo-decade.open .expo-decade-label { color: var(--or); }
  .expo-decade-count {
    font-size: 0.65rem; letter-spacing: 0.15em; color: var(--sable); opacity: 0.5;
  }
  .expo-decade-arrow {
    margin-left: auto; font-size: 0.8rem; color: var(--or); opacity: 0.4;
    transition: transform 0.3s, opacity 0.3s;
  }
  .expo-decade.open .expo-decade-arrow { transform: rotate(90deg); opacity: 1; }
  .expo-decade-list {
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
  }
  .expo-decade.open .expo-decade-list { max-height: 2000px; }

  /* ===== EXPO GALERIE PHOTOS ===== */
  .expo-gallery {
    margin-top: 70px; position: relative;
  }
  .expo-gallery-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
  }
  .expo-gallery-line { width: 40px; height: 1.5px; background: var(--or); flex-shrink: 0; }
  .expo-gallery-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
    font-weight: 300; font-style: italic; color: var(--sable);
  }
  .expo-photos {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px;
  }
  .expo-photo {
    position: relative; overflow: hidden;
    border: 1px solid rgba(201,168,76,0.08);
    transition: all 0.5s; cursor: default;
  }
  .expo-photo:first-child { grid-row: span 2; }
  .expo-photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.8); transition: all 0.7s;
  }
  .expo-photo:hover img { filter: saturate(1); transform: scale(1.03); }
  .expo-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 50px 24px 20px;
    background: linear-gradient(to top, rgba(8,6,4,0.9) 0%, rgba(8,6,4,0.5) 60%, transparent 100%);
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s ease;
  }
  .expo-photo:hover .expo-photo-caption { opacity: 1; transform: translateY(0); }
  .expo-photo-caption h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    font-weight: 400; font-style: italic; color: var(--or); margin-bottom: 6px;
  }
  .expo-photo-caption p { font-size: 0.78rem; line-height: 1.6; color: var(--sable); font-weight: 300; }
  /* Gold dot accent */
  .expo-photo::after {
    content: ''; position: absolute; top: 14px; right: 14px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--or); opacity: 0; transition: opacity 0.4s;
  }
  .expo-photo:hover::after { opacity: 0.7; }

  @media (max-width: 900px) {
    .expo-photos { grid-template-columns: 1fr; }
    .expo-photo:first-child { grid-row: span 1; }
  }

  /* ===== CONTACT STRIP ===== */
  .contact-strip {
    background: var(--terracotta); padding: 80px 60px;
    display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden;
  }
  .contact-strip::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
  }
  .contact-strip-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300; font-style: italic; color: var(--creme); max-width: 480px; line-height: 1.25; position: relative;
  }
  .contact-strip-action { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; position: relative; }
  .btn-white {
    display: inline-block; padding: 16px 44px; background: var(--creme); color: var(--terracotta);
    font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s;
  }
  .btn-white:hover { background: var(--brun); color: var(--or); }
  .btn-whatsapp {
    display: inline-block; padding: 14px 36px; background: #25D366; color: #fff;
    font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 0.3s;
  }
  .btn-whatsapp:hover { background: #1EBE57; }
  .contact-email { font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(245,237,224,0.6); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--brun); padding: 50px 60px; display: flex; align-items: center; justify-content: space-between;
  }
  .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; letter-spacing: 0.15em; color: var(--sable); }
  .footer-brand span { color: var(--or); font-style: italic; }
  .footer-social { display: flex; gap: 24px; }
  .footer-social a { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sable); text-decoration: none; opacity: 0.6; transition: all 0.3s; }
  .footer-social a:hover { opacity: 1; color: var(--or); }
  .footer-copy { font-size: 0.65rem; color: rgba(232,213,181,0.4); letter-spacing: 0.1em; }

  /* ===== GALERIE PAGE ===== */
  .galerie-header {
    padding: 0 0 50px; background: var(--noir);
  }
  .galerie-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; color: var(--creme);
  }
  .galerie-header h1 em { color: var(--or); font-style: italic; }
  .galerie-hint {
    font-family: 'Cormorant Garamond', serif; font-size: 0.9rem;
    font-style: italic; color: rgba(232,213,181,0.45);
    margin-top: 12px; letter-spacing: 0.03em;
  }
  .galerie-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; padding: 0 0 80px; background: var(--noir);
  }
  .galerie-card {
    perspective: 800px; cursor: pointer;
  }
  .galerie-card-inner {
    position: relative; width: 100%; padding-bottom: 120%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
  }
  .galerie-card:hover .galerie-card-inner {
    transform: rotateY(8deg) scale(1.03);
  }
  .galerie-card-frame {
    position: absolute; inset: 0;
    background: var(--brun);
    border: 3px solid rgba(201,168,76,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.5s;
  }
  /* — Filigrane sur les cartes galerie — */
  .galerie-card-frame::after {
    content: 'F. YHRUAM';
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; font-style: italic;
    letter-spacing: 0.3em; color: rgba(245,237,224,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    pointer-events: none;
    transform: rotate(-25deg);
  }
  .galerie-card:hover .galerie-card-frame {
    border-color: var(--or);
    box-shadow: 0 16px 60px rgba(201,168,76,0.15), 0 8px 30px rgba(0,0,0,0.6);
  }
  /* — Overlay "Voir les détails" au survol — */
  .galerie-card-overlay {
    position: absolute; inset: 0; z-index: 4;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: rgba(8,6,4,0.55);
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
  }
  .galerie-card:hover .galerie-card-overlay { opacity: 1; }
  .galerie-card-overlay-icon {
    width: 44px; height: 44px; border: 1.5px solid var(--or); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--or);
  }
  .galerie-card-overlay-text {
    font-family: 'Cormorant Garamond', serif; font-size: 0.8rem;
    font-style: italic; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--creme);
  }
  .galerie-card-frame img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.9);
    transition: all 0.6s;
    -webkit-user-select: none; user-select: none;
    -webkit-user-drag: none; user-drag: none;
    pointer-events: none;
  }
  .galerie-card:hover .galerie-card-frame img {
    filter: saturate(1.1);
    transform: scale(1.05);
  }
  .galerie-card-label {
    text-align: center; padding: 14px 8px 0;
    font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
    font-style: italic; color: var(--sable); letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ===== FILTERS ===== */
  .galerie-filters {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end;
    margin-bottom: 20px; padding-bottom: 28px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .filter-group { display: flex; flex-direction: column; gap: 6px; }
  .filter-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--or); font-weight: 400;
  }
  .filter-group select {
    appearance: none; -webkit-appearance: none;
    background: rgba(61,43,26,0.5); border: 1px solid rgba(201,168,76,0.2);
    color: var(--creme); font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem; font-weight: 400;
    padding: 10px 36px 10px 14px; cursor: pointer; transition: all 0.3s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A84C'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    min-width: 190px;
  }
  .filter-group select:hover, .filter-group select:focus {
    border-color: var(--or); outline: none; box-shadow: 0 0 12px rgba(201,168,76,0.1);
  }
  .filter-group select option { background: var(--brun); color: var(--creme); }
  .filter-reset {
    background: transparent; border: 1px solid rgba(201,168,76,0.2);
    color: var(--sable); font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem; font-style: italic; padding: 10px 20px;
    cursor: pointer; transition: all 0.3s; margin-left: auto;
  }
  .filter-reset:hover { border-color: var(--or); color: var(--or); }
  .galerie-count {
    font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
    font-style: italic; color: rgba(232,213,181,0.5); margin-bottom: 24px;
  }
  .dispo-badge {
    display: inline-block; padding: 4px 14px; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; border: 1px solid;
  }
  .dispo-badge.disponible { border-color: #4a9; color: #4a9; }
  .dispo-badge.achete { border-color: rgba(255,255,255,0.2); color: var(--sable); }
  .dispo-badge.en-cours { border-color: var(--ocre); color: var(--ocre); }
  @media (max-width: 900px) {
    .galerie-filters { flex-direction: column; align-items: stretch; }
    .filter-group select { min-width: auto; width: 100%; }
    .filter-reset { margin-left: 0; }
  }

  /* ===== PAGINATION ===== */
  .galerie-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 40px 0 20px;
  }
  .galerie-pagination button {
    width: 40px; height: 40px;
    background: transparent; border: 1px solid rgba(201,168,76,0.25);
    color: var(--sable); font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 500; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
  }
  .galerie-pagination button:hover {
    border-color: var(--or); color: var(--or);
  }
  .galerie-pagination button.active {
    background: var(--or); border-color: var(--or);
    color: var(--noir); font-weight: 600;
  }
  .galerie-pagination .page-arrow {
    width: 44px; height: 44px; font-size: 1.1rem; border: none;
    color: var(--or); background: transparent;
  }
  .galerie-pagination .page-arrow:hover { color: var(--creme); }
  .galerie-pagination .page-arrow:disabled {
    color: rgba(201,168,76,0.2); cursor: default;
  }
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(8,6,4,0.92);
    backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s;
  }
  .modal-overlay.show {
    display: flex; opacity: 1;
  }
  .modal-content {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 1000px; width: 90%; max-height: 90vh;
    background: var(--noir-profond);
    border: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    position: relative;
    animation: modalIn 0.5s ease forwards;
  }
  .modal-image {
    position: relative; overflow: hidden;
  }
  .modal-image::after {
    content: 'F. YHRUAM';
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 500; font-style: italic;
    letter-spacing: 0.35em; color: rgba(245,237,224,0.18);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    pointer-events: none;
    transform: rotate(-25deg);
  }
  .modal-image img {
    width: 100%; height: 100%; object-fit: cover;
    -webkit-user-select: none; user-select: none;
    -webkit-user-drag: none; user-drag: none;
    pointer-events: none;
  }
  .modal-details {
    padding: 60px 50px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .modal-label {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or); margin-bottom: 12px;
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
    font-weight: 300; font-style: italic; color: var(--creme); margin-bottom: 28px;
  }
  .modal-specs { margin-bottom: 40px; }
  .modal-spec {
    display: flex; justify-content: space-between; padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
  }
  .modal-spec-label { color: var(--sable); font-weight: 300; }
  .modal-spec-value { color: var(--creme); font-weight: 400; }
  .modal-desc {
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    font-style: italic; color: var(--sable); line-height: 1.8; margin-bottom: 40px;
  }
  .btn-acquire {
    display: inline-block; padding: 18px 48px;
    background: var(--or); color: var(--noir);
    font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.4s; text-align: center;
  }
  .btn-acquire:hover { background: var(--sable); }
  .modal-close {
    position: absolute; top: 20px; right: 24px;
    width: 40px; height: 40px; background: none; border: 1px solid rgba(201,168,76,0.3);
    color: var(--or); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
  }
  .modal-close:hover { background: var(--or); color: var(--noir); }
  /* Audio toggle button in modal */
  .modal-audio-btn {
    position: absolute; top: 20px; right: 72px;
    width: 40px; height: 40px; background: none; border: 1px solid rgba(201,168,76,0.3);
    color: var(--or); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
  }
  .modal-audio-btn:hover { background: var(--or); color: var(--noir); }
  .modal-audio-btn.muted { opacity: 0.4; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes scrollPulse { 0% { left: -100%; } 100% { left: 100%; } }
  @keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 50vh; margin: 40px 20px 20px 0; }
    .hero-left { padding: 140px 30px 60px; }
    .equerre--tl, .equerre--tr { top: 10px; } .equerre--bl, .equerre--br { bottom: 10px; } .equerre--tl, .equerre--bl { left: 10px; } .equerre--tr, .equerre--br { right: 10px; }
    .equerre--tl::before, .equerre--tr::before, .equerre--bl::before, .equerre--br::before { width: 35px; }
    .equerre--tl::after, .equerre--tr::after, .equerre--bl::after, .equerre--br::after { height: 35px; }
    .galerie-grid { grid-template-columns: repeat(2, 1fr); padding: 0 30px 60px; }
    .modal-content { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
    .about-section { grid-template-columns: 1fr; }
    .about-image { min-height: 400px; }
    nav { padding: 20px 30px; }
    .nav-links { gap: 20px; }
    .intro-band { flex-direction: column; gap: 40px; padding: 60px 30px; }
    .expo-section { padding: 60px 30px; }
    .contact-strip { flex-direction: column; gap: 30px; padding: 60px 30px; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
  }
  @media (max-width: 600px) {
    .galerie-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

  /* ===== CONTACT MODAL ===== */
  .contact-modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(8,6,4,0.92);
    backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s;
    padding: 20px;
  }
  .contact-modal-overlay.show {
    display: flex; opacity: 1;
  }
  .contact-modal {
    background: var(--noir-profond);
    border: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    max-width: 600px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 50px 40px;
    position: relative;
    animation: modalIn 0.5s ease forwards;
  }
  .contact-modal-close {
    position: absolute; top: 20px; right: 24px;
    width: 40px; height: 40px; background: none;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--or); font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
  }
  .contact-modal-close:hover { background: var(--or); color: var(--noir); }
  .contact-modal-header { margin-bottom: 30px; }
  .contact-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; font-style: italic;
    color: var(--creme); margin-bottom: 10px;
  }
  .contact-modal-header p {
    font-size: 0.85rem; color: var(--sable); font-weight: 300; line-height: 1.6;
  }
  .contact-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .contact-form-group {
    margin-bottom: 20px;
  }
  .contact-form-group label {
    display: block; margin-bottom: 6px;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--or); font-weight: 400;
  }
  .contact-form-group input,
  .contact-form-group select,
  .contact-form-group textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--creme);
    font-family: 'Jost', sans-serif; font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none; box-sizing: border-box;
  }
  .contact-form-group input:focus,
  .contact-form-group select:focus,
  .contact-form-group textarea:focus {
    border-color: var(--or);
  }
  .contact-form-group input::placeholder,
  .contact-form-group textarea::placeholder {
    color: rgba(232,213,181,0.3);
  }
  .contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
  }
  .contact-form-group select option {
    background: var(--noir); color: var(--creme);
  }
  .contact-form-group textarea {
    resize: vertical; min-height: 120px;
  }
  .contact-form-submit {
    display: block; width: 100%; padding: 18px;
    background: var(--or); color: var(--noir);
    font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.4s;
    margin-top: 10px;
  }
  .contact-form-submit:hover { background: var(--sable); }
  .contact-form-submit:disabled {
    opacity: 0.5; cursor: not-allowed;
  }
  .contact-success {
    text-align: center; padding: 40px 20px;
  }
  .contact-success-icon {
    width: 60px; height: 60px; border-radius: 50%;
    border: 2px solid var(--or); color: var(--or);
    font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .contact-success p {
    color: var(--sable); font-size: 0.95rem; line-height: 1.7;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
  }
  .contact-error {
    text-align: center; padding: 20px;
    background: rgba(196,98,45,0.1);
    border: 1px solid rgba(196,98,45,0.3);
    margin-bottom: 20px;
  }
  .contact-error p {
    color: var(--terracotta); font-size: 0.85rem;
  }
  @media (max-width: 600px) {
    .contact-modal { padding: 40px 24px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-modal-header h2 { font-size: 1.5rem; }
  }
