    :root {
      --anthracite:      #1c1c1e;
      --anthracite-mid:  #2a2a2d;
      --anthracite-light:#3d3d42;
      --gold:            #c9a84c;
      --gold-light:      #e8c76a;
      --cream:           #f0ece0;
      --text-light:      #d4cfbf;

      /* ▼ COULEUR DU RIDEAU ▼ */
      --curtain-deep: #1a0a0a;
      --curtain-mid:  #5c1a1a;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; background: var(--anthracite); color: var(--text-light); overflow-x: hidden; }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, padding .4s, box-shadow .4s;
    }
    #navbar.scrolled { background: rgba(28,28,30,.97); padding: .65rem 2rem; box-shadow: 0 2px 30px rgba(0,0,0,.5); }

    .nav-brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
    .nav-brand-icon {
      width: 38px; height: 38px; background: var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .nav-brand-icon svg { width: 18px; height: 18px; fill: var(--anthracite); }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
    .nav-logo span { color: var(--cream); }

    .nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
    .nav-links a {
      color: var(--text-light); text-decoration: none; font-size: .75rem;
      letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
      position: relative; transition: color .3s;
    }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px; background: var(--gold); transition: right .3s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { right: 0; }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); transition: .3s; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    @media(max-width:768px){
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(28,28,30,.98); padding: 1.5rem 2rem; gap: 1.2rem; }
      .nav-links.open { display: flex; }
      .nav-toggle { display: flex; }
    }

    /* ─── HERO + CAROUSEL ─── */
    #hero {
      position: relative; height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }

    /* ── Carousel slides track ── */
    .hero-slides {
      position: absolute; inset: 0;
      display: flex; width: 100%; height: 100%;
    }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
      will-change: opacity;
    }
    .hero-slide.active { opacity: 1; }

    /* Dark overlay per slide — keeps text readable */
    .hero-slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,8,4,.78) 0%,
        rgba(20,16,8,.55) 50%,
        rgba(10,8,4,.72) 100%
      );
    }

    /* Spotlight beam overlay (stays on top of slides) */
    .hero-spotlight {
      position: absolute; top: -5%; left: 50%; transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse 50% 65% at 50% 0%, rgba(201,168,76,.14) 0%, transparent 70%);
      pointer-events: none; z-index: 2;
    }
    /* Light rays */
    .hero-rays {
      position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
    }
    .hero-rays::before, .hero-rays::after {
      content: ''; position: absolute; top: -10%; left: 50%;
      width: 2px; height: 130%;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,.1) 35%, rgba(201,168,76,.04) 70%, transparent);
      transform-origin: top center;
    }
    .hero-rays::before { transform: translateX(-50%) rotate(-20deg); }
    .hero-rays::after  { transform: translateX(-50%) rotate(20deg); }

    /* Vignette edges */
    .hero-vignette {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background:
        linear-gradient(to right,  rgba(5,4,2,.55) 0%, transparent 18%, transparent 82%, rgba(5,4,2,.55) 100%),
        linear-gradient(to bottom, rgba(5,4,2,.35) 0%, transparent 25%, transparent 75%, rgba(5,4,2,.5) 100%);
    }

    /* ── Arrow controls ── */
    .hero-arrow {
      position: absolute; top: 50%; z-index: 10;
      transform: translateY(-50%);
      width: 52px; height: 52px;
      background: rgba(15,12,6,.55);
      border: 1px solid rgba(201,168,76,.35);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .3s, border-color .3s, transform .25s;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      /* no border-radius = sharp, theatrical */
    }
    .hero-arrow:hover {
      background: rgba(201,168,76,.18);
      border-color: var(--gold);
      transform: translateY(-50%) scale(1.08);
    }
    .hero-arrow svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .hero-arrow-prev { left: 2rem; }
    .hero-arrow-next { right: 2rem; }
    @media(max-width:576px){
      .hero-arrow-prev { left: .8rem; }
      .hero-arrow-next { right: .8rem; }
      .hero-arrow { width: 40px; height: 40px; }
    }

    /* ── Hero text content ── */
    .hero-content {
      position: relative; z-index: 5; text-align: center; padding: 0 6rem;
    }
    @media(max-width:576px){ .hero-content { padding: 0 1.5rem; } }

    .hero-eyebrow {
      font-size: .68rem; letter-spacing: .38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp .8s .3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 8vw, 6.8rem); font-weight: 300; line-height: 1;
      color: var(--cream); margin-bottom: .5rem;
      opacity: 0; animation: fadeUp .8s .5s forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold); display: block; font-size: .65em; }
    .hero-sub {
      font-size: clamp(.88rem, 2vw, 1.05rem); font-weight: 300;
      color: rgba(212,207,191,.85); letter-spacing: .05em; margin-top: 1.5rem;
      max-width: 520px; margin-inline: auto;
      opacity: 0; animation: fadeUp .8s .7s forwards;
    }
    .hero-cta { margin-top: 3rem; opacity: 0; animation: fadeUp .8s .9s forwards; }

    .btn-gold { display: inline-block; padding: .85rem 2.5rem; border: 1px solid var(--gold); color: var(--gold); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; background: transparent; transition: background .35s, color .35s, transform .25s; cursor: pointer; }
    .btn-gold:hover { background: var(--gold); color: var(--anthracite); transform: translateY(-2px); }
    .btn-gold-fill { background: var(--gold); color: var(--anthracite); }
    .btn-gold-fill:hover { background: var(--gold-light); color: var(--anthracite); }

    .hero-scroll {
      position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      opacity: 0; animation: fadeUp .8s 1.2s forwards; z-index: 10;
    }
    .hero-scroll span { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
    .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 1.8s infinite; }
    @keyframes scrollPulse { 0%,100%{ opacity:.3; transform:scaleY(.6); } 50%{ opacity:1; transform:scaleY(1); } }

    /* ─── GENERIC ─── */
    section { padding: 6rem 0; }
    .section-label { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
    .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--cream); line-height: 1.15; }
    .section-title em { font-style: italic; color: var(--gold); }
    .divider { width: 50px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); margin: 1.5rem 0; }

    /* ─── ABOUT ─── */
    #about { background: var(--anthracite); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    @media(max-width:768px){ .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
    .about-text p { font-weight: 300; line-height: 1.85; color: var(--text-light); margin-bottom: 1.2rem; font-size: .97rem; }
    .about-card { background: var(--anthracite-mid); border: 1px solid rgba(201,168,76,.15); padding: 2.5rem; position: relative; }
    .about-card::before { content: ''; position: absolute; top: -1px; left: 2rem; right: 2rem; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .stat-row { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .stat { flex: 1; min-width: 100px; }
    .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
    .stat-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); margin-top: .3rem; }

    /* ─── SERVICES ─── */
    #services { background: var(--anthracite-mid); position: relative; overflow: hidden; }
    #services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,.3), transparent); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.08); }
    .service-card { background: var(--anthracite-mid); padding: 2.5rem 2rem; position: relative; transition: background .35s; overflow: hidden; }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background: var(--gold); transition: right .4s; }
    .service-card:hover { background: #313136; }
    .service-card:hover::after { right: 0; }
    .service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; line-height: 1; }
    .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--cream); font-weight: 400; margin-bottom: .8rem; }
    .service-desc { font-size: .82rem; color: var(--text-light); font-weight: 300; line-height: 1.8; }

    /* ─── THEATRICAL CURTAIN ─── */
    #theatre-intro {
      position: relative; height: 100vh; min-height: 550px;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .curtain-bg { position: absolute; inset: 0; background: #080608; z-index: 0; }

    .curtain-panel {
      position: absolute; top: 0; bottom: 0; width: 50%;
      z-index: 3; will-change: transform;
    }
    .curtain-panel.left {
      left: 0;
      background: linear-gradient(to right, var(--curtain-deep) 0%, var(--curtain-mid) 55%, #110808 100%);
    }
    .curtain-panel.right {
      right: 0;
      background: linear-gradient(to left, var(--curtain-deep) 0%, var(--curtain-mid) 55%, #110808 100%);
    }
    /* Fold texture */
    .curtain-panel.left::before, .curtain-panel.right::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(90deg,
        rgba(255,255,255,.025) 0px, rgba(0,0,0,.3) 10px,
        transparent 18px, rgba(255,255,255,.015) 28px, transparent 36px);
    }
    /* Inner glow edge */
    .curtain-panel.left::after { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 4px; background: rgba(201,168,76,.2); box-shadow: 0 0 18px rgba(201,168,76,.12); }
    .curtain-panel.right::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: rgba(201,168,76,.2); box-shadow: 0 0 18px rgba(201,168,76,.12); }

    /* Valance bar */
    .curtain-valance {
      position: absolute; top: 0; left: 0; right: 0; height: 80px;
      background: #0a0507; z-index: 10;
      border-bottom: 1px solid rgba(201,168,76,.3);
      box-shadow: 0 4px 25px rgba(0,0,0,.8);
    }
    /* Scallop decoration */
    .curtain-valance::after {
      content: ''; position: absolute; bottom: -14px; left: 0; right: 0; height: 14px;
      background: radial-gradient(circle 7px at 7px 0, transparent 6px, #0a0507 7px) repeat-x left bottom / 14px 14px;
    }

    .stage-floor { position: absolute; bottom: 0; left: 0; right: 0; height: 140px; background: linear-gradient(to top, rgba(201,168,76,.07), transparent); z-index: 2; pointer-events: none; }

    /* ── ROPE LINE ── */
    #rope-line {
      position: absolute;
      z-index: 4; pointer-events: none;
      width: 3px;
      background: repeating-linear-gradient(to bottom, rgba(201,168,76,.75) 0px, rgba(201,168,76,.75) 5px, rgba(160,120,30,.4) 5px, rgba(160,120,30,.4) 10px);
      top: 80px; /* below valance */
      transition: opacity .3s;
    }

    /* ── MACHINISTE ── */
    #rope-man {
      position: absolute;
      z-index: 5;
      bottom: 10%;
      pointer-events: none;
      transition: opacity .5s;
    }

    .theatre-text {
      position: relative; z-index: 5; text-align: center; padding: 0 2rem;
      opacity: 0; transform: translateY(30px);
      transition: opacity .9s .1s, transform .9s .1s; pointer-events: none;
    }
    .theatre-text.visible { opacity: 1; transform: translateY(0); }
    .theatre-tagline { font-size: .62rem; letter-spacing: .55em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
    .theatre-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5.5vw, 4.8rem); font-weight: 300; color: var(--cream); line-height: 1.12; }
    .theatre-title em { display: block; font-style: italic; color: var(--gold); font-size: .72em; }

    /* ─── TIMELINE ─── */
    #realisations { background: var(--anthracite); padding: 5rem 0 6rem; overflow: hidden; }
    .timeline-header { text-align: center; margin-bottom: 3rem; }

    .timeline-track { position: relative; }
    .timeline-axis { position: absolute; top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); z-index: 0; background: linear-gradient(to right, transparent, rgba(201,168,76,.35) 5%, rgba(201,168,76,.35) 95%, transparent); }

    .timeline-scroll-outer { overflow-x: auto; cursor: grab; padding: 0 3rem; scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.3) transparent; -webkit-overflow-scrolling: touch; }
    .timeline-scroll-outer:active { cursor: grabbing; }
    .timeline-scroll-outer::-webkit-scrollbar { height: 4px; }
    .timeline-scroll-outer::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }

    .timeline-inner { display: flex; align-items: center; width: max-content; padding: 200px 5vw; }

    .tl-item { position: relative; width: 180px; flex-shrink: 0; height: 0; cursor: pointer; }

    /* Diamond marker */
    .tl-marker {
      position: absolute; top: 0; left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
      width: 14px; height: 14px;
      background: var(--anthracite); border: 2px solid var(--gold);
      z-index: 3; transition: background .3s, box-shadow .3s, transform .3s;
    }
    .tl-item:hover .tl-marker { background: var(--gold); box-shadow: 0 0 14px rgba(201,168,76,.6); transform: translate(-50%, -50%) rotate(45deg) scale(1.25); }

    /* Year label above marker */
    .tl-year-label {
      position: absolute; left: 50%;
      font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400;
      color: var(--gold); white-space: nowrap; letter-spacing: .04em;
    }
    /* Odd items: year above the line, card below */
    .tl-item:nth-child(odd) .tl-year-label  { top: 0; transform: translate(-50%, calc(-100% - 20px)); }
    .tl-item:nth-child(even) .tl-year-label { bottom: 0; transform: translate(-50%, calc(100% + 20px)); top: auto; }

    /* Connector stub */
    .tl-stub { position: absolute; left: 50%; width: 1px; background: rgba(201,168,76,.45); transform: translateX(-50%); z-index: 1; }
    .tl-item:nth-child(odd)  .tl-stub { top: 6px;  height: 44px; }
    .tl-item:nth-child(even) .tl-stub { bottom: 6px; top: auto; height: 44px; }

    /* Card */
    .tl-card { position: absolute; left: 50%; transform: translateX(-50%); width: 155px; background: var(--anthracite-mid); border: 1px solid rgba(201,168,76,.1); overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .3s; }
    .tl-item:nth-child(odd)  .tl-card { top: 50px; }
    .tl-item:nth-child(even) .tl-card { bottom: 50px; }
    .tl-item:hover .tl-card { border-color: rgba(201,168,76,.55); box-shadow: 0 8px 30px rgba(0,0,0,.6); transform: translateX(-50%) translateY(-4px); }
    .tl-card-img { width: 100%; height: 88px; object-fit: cover; display: block; filter: grayscale(30%) brightness(.85); transition: filter .3s; }
    .tl-item:hover .tl-card-img { filter: grayscale(0%) brightness(1); }
    .tl-card-label { padding: .45rem .6rem; font-size: .67rem; color: var(--cream); font-weight: 500; line-height: 1.35; }

    /* ── POPUP ── */
    .tl-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
    .tl-popup-overlay.open { display: flex; }
    .tl-popup { background: var(--anthracite-mid); border: 1px solid rgba(201,168,76,.3); max-width: 460px; width: 100%; position: relative; animation: popIn .3s ease; }
    @keyframes popIn { from{ opacity:0; transform:scale(.93) translateY(12px); } to{ opacity:1; transform:scale(1) translateY(0); } }
    .tl-popup::before { content: ''; position: absolute; top: -1px; left: 2rem; right: 2rem; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
    .tl-popup-img { width: 100%; height: 210px; object-fit: cover; display: block; }
    .tl-popup-body { padding: 1.4rem 1.7rem 1.7rem; }
    .tl-popup-year { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold); font-weight: 300; line-height: 1; margin-bottom: .4rem; }
    .tl-popup-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cream); font-weight: 400; margin-bottom: .75rem; }
    .tl-popup-desc { font-size: .82rem; color: var(--text-light); font-weight: 300; line-height: 1.8; margin-bottom: 1.3rem; }
    .tl-popup-btn { display: inline-block; padding: .6rem 1.5rem; border: 1px solid var(--gold); color: var(--gold); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; background: transparent; cursor: pointer; transition: background .3s, color .3s; }
    .tl-popup-btn:hover { background: var(--gold); color: var(--anthracite); }
    .tl-popup-close { position: absolute; top: .75rem; right: .75rem; width: 28px; height: 28px; background: rgba(255,255,255,.06); border: none; cursor: pointer; color: var(--text-light); font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; z-index: 1; }
    .tl-popup-close:hover { background: var(--gold); color: var(--anthracite); }

    .timeline-hint { text-align: center; margin-top: 1.5rem; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(201,168,76,.4); display: flex; align-items: center; justify-content: center; gap: .7rem; }
    .timeline-hint::before { content: '←'; }
    .timeline-hint::after  { content: '→'; }

    /* ─── COMPETENCES ─── */
    #competences { background: var(--anthracite-mid); position: relative; }
    #competences::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,.3), transparent); }
    .comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
    .comp-item { padding: 1.8rem; border: 1px solid rgba(201,168,76,.1); position: relative; overflow: hidden; transition: border-color .3s; }
    .comp-item:hover { border-color: rgba(201,168,76,.5); }
    .comp-item::before { content: attr(data-num); position: absolute; top: -.3rem; right: .8rem; font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: rgba(201,168,76,.06); line-height: 1; pointer-events: none; }
    .comp-icon { font-size: 1.5rem; margin-bottom: .8rem; }
    .comp-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: .5rem; }
    .comp-text { font-size: .78rem; color: var(--text-light); font-weight: 300; line-height: 1.8; }

    /* ─── CONTACT ─── */
    #contact-cta { background: var(--anthracite); text-align: center; padding: 6rem 0; position: relative; overflow: hidden; }
    #contact-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.06), transparent 70%); pointer-events: none; }
    .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300; color: var(--cream); margin-bottom: 1.5rem; }
    .cta-sub { font-size: .9rem; color: var(--text-light); font-weight: 300; margin-bottom: 2.5rem; max-width: 480px; margin-inline: auto; }

    /* ─── FOOTER ─── */
    footer { background: #111112; padding: 3rem 0 2rem; border-top: 1px solid rgba(201,168,76,.1); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.8fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    @media(max-width:992px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:576px){ .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .8rem; }
    .footer-logo span { color: var(--cream); }
    .footer-tagline { font-size: .78rem; color: var(--text-light); font-weight: 300; line-height: 1.8; }
    .footer-heading { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: .5rem; }
    .footer-links a { font-size: .8rem; color: var(--text-light); text-decoration: none; font-weight: 300; transition: color .25s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-address { font-size: .8rem; color: var(--text-light); font-weight: 300; line-height: 1.9; margin-bottom: .6rem; }
    .footer-address strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: .2rem; font-size: .78rem; letter-spacing: .05em; }
    #footer-map { height: 155px; border: 1px solid rgba(201,168,76,.15); filter: grayscale(80%) brightness(.65) contrast(1.1); transition: filter .4s; }
    #footer-map:hover { filter: grayscale(40%) brightness(.85); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: .7rem; color: rgba(212,207,191,.4); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:translateY(0); } }
    .reveal { opacity:0; transform:translateY(30px); transition:opacity .7s, transform .7s; }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .reveal-left  { opacity:0; transform:translateX(-30px); transition:opacity .7s, transform .7s; }
    .reveal-left.visible  { opacity:1; transform:translateX(0); }
    .reveal-right { opacity:0; transform:translateX(30px); transition:opacity .7s, transform .7s; }
    .reveal-right.visible { opacity:1; transform:translateX(0); }
    .stagger-1 { transition-delay:.1s; } .stagger-2 { transition-delay:.2s; }
    .stagger-3 { transition-delay:.3s; } .stagger-4 { transition-delay:.4s; }
    .stagger-5 { transition-delay:.5s; }

    /* Machiniste pull animation */
    @keyframes pullRope {
      0%,100% { transform: rotate(-4deg) translateY(0px); }
      50%      { transform: rotate(4deg) translateY(3px); }
    }
    .is-pulling { animation: pullRope 1.2s ease-in-out infinite; transform-origin: 50% 80%; }
  </style>
