    /* ===================== RESET & BASE ===================== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black:      #080808;
      --deep:       #0f0f0f;
      --dark:       #1a1a1a;
      --card:       #141414;
      --gold:       #c9a454;
      --gold-light: #e8c97a;
      --gold-dim:   #8b6b2a;
      --cream:      #f0e4c8;
      --text:       #d4c8b0;
      --muted:      #6b6355;
      --white:      #ffffff;
      --border:     rgba(201, 164, 84, 0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    ::selection { background: var(--gold); color: var(--black); }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

    /* ===================== NAV ===================== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.5s ease;
    }

    #navbar.scrolled {
      background: rgba(8, 8, 8, 0.92);
      backdrop-filter: blur(20px);
      padding: 16px 60px;
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.3s;
    }

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

    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 10px 24px;
      font-size: 0.7rem !important;
      letter-spacing: 0.2em;
      cursor: pointer;
      transition: all 0.3s !important;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }

    /* ===================== HERO ===================== */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 80%, rgba(201, 164, 84, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(201, 164, 84, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #080808 0%, #0f0a04 50%, #080808 100%);
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,164,84,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,164,84,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

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

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 8px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.2s ease 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 300;
      color: var(--cream);
      letter-spacing: 0.05em;
      margin-bottom: 56px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease 0.8s forwards;
    }

    .hero-locations {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 64px;
      opacity: 0;
      animation: fadeUp 1s ease 1s forwards;
    }

    .hero-locations span {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-locations span::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--gold-dim);
    }

    .hero-cta {
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }

    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 18px 48px;
      transition: all 0.4s ease;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 20px 60px rgba(201,164,84,0.25);
    }

    .btn-outline {
      display: inline-block;
      border: 1px solid var(--gold-dim);
      color: var(--gold);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 18px 48px;
      margin-left: 20px;
      transition: all 0.4s ease;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201,164,84,0.08);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 1s ease 1.6s forwards;
    }

    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold-dim), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    /* ===================== SECTIONS BASE ===================== */
    section { padding: 140px 60px; }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--gold-dim);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
    }

    .section-title em { font-style: italic; color: var(--gold); }

    /* ===================== MANIFESTO ===================== */
    #manifesto {
      background: var(--deep);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .manifesto-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .manifesto-text p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 1.8vw, 1.35rem);
      line-height: 1.9;
      color: var(--cream);
      margin-bottom: 24px;
      font-weight: 300;
    }

    .manifesto-text p strong {
      color: var(--gold);
      font-weight: 500;
    }

    .manifesto-visual {
      position: relative;
    }

    .manifesto-frame {
      border: 1px solid var(--border);
      padding: 60px 50px;
      background: var(--card);
      position: relative;
    }

    .manifesto-frame::before {
      content: '';
      position: absolute;
      top: -1px; left: 40px;
      width: 60px;
      height: 2px;
      background: var(--gold);
    }

    .manifesto-stat {
      margin-bottom: 40px;
    }

    .manifesto-stat:last-child { margin-bottom: 0; }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .manifesto-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin: 28px 0;
    }

    /* ===================== EXPERIENCE ===================== */
    #experience {
      background: var(--black);
    }

    .experience-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .experience-header {
      margin-bottom: 80px;
      max-width: 600px;
    }

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

    .exp-card {
      background: var(--card);
      padding: 60px 50px;
      border: 1px solid var(--border);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .exp-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .exp-card:hover { background: #1a1609; }
    .exp-card:hover::before { transform: scaleX(1); }

    .exp-number {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 400;
      color: var(--border);
      line-height: 1;
      margin-bottom: 32px;
      transition: color 0.4s;
    }

    .exp-card:hover .exp-number { color: rgba(201,164,84,0.15); }

    .exp-icon {
      font-size: 1.5rem;
      margin-bottom: 24px;
      display: block;
    }

    .exp-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
    }

    .exp-desc {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--muted);
    }

    /* ===================== DJS ===================== */
    #djs {
      background: var(--deep);
      border-top: 1px solid var(--border);
    }

    .djs-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .djs-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 80px;
    }

    .djs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .dj-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .dj-card:first-child {
      grid-column: span 2;
    }

    .dj-photo {
      width: 100%;
      aspect-ratio: 1 / 1.2;
      background: var(--card);
      position: relative;
      overflow: hidden;
    }

    .dj-card:first-child .dj-photo {
      aspect-ratio: 2 / 1.2;
    }

    .dj-photo-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .dj-initials {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 400;
      color: var(--gold-dim);
      opacity: 0.4;
      letter-spacing: 0.1em;
    }

    .dj-card:first-child .dj-initials { font-size: 5rem; }

    /* Gradient overlays for DJ photos */
    .dj-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(8,8,8,0.9) 100%);
    }

    /* Unique color tint for each DJ */
    .dj-card:nth-child(1) .dj-photo-inner { background: linear-gradient(135deg, #0f0a04, #1a1006); }
    .dj-card:nth-child(2) .dj-photo-inner { background: linear-gradient(135deg, #060810, #0a0f1a); }
    .dj-card:nth-child(3) .dj-photo-inner { background: linear-gradient(135deg, #08060f, #120a18); }
    .dj-card:nth-child(4) .dj-photo-inner { background: linear-gradient(135deg, #040a08, #081410); }

    .dj-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      z-index: 2;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .dj-card:hover .dj-overlay { transform: translateY(0); }

    .dj-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 4px;
    }

    .dj-card:first-child .dj-name { font-size: 1.8rem; }

    .dj-style {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .dj-tag {
      display: inline-block;
      border: 1px solid rgba(201,164,84,0.3);
      color: var(--muted);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 10px;
      margin: 3px 3px 0 0;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease 0.1s;
    }

    .dj-card:hover .dj-tag {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===================== REFERENCES ===================== */
    #references {
      background: var(--black);
      border-top: 1px solid var(--border);
    }

    .references-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .references-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .references-header .section-label {
      justify-content: center;
    }

    .references-header .section-label::after { display: none; }

    .references-header .section-label::before {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--gold-dim);
    }

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

    .client-item {
      padding: 50px 40px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background 0.4s;
      position: relative;
      overflow: hidden;
    }

    .client-item:nth-child(4n) { border-right: none; }
    .client-item:nth-last-child(-n+4) { border-bottom: none; }

    .client-item:hover { background: var(--card); }

    .client-category {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 20px;
    }

    .client-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }

    .client-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .client-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-style: italic;
      color: var(--text);
      padding-top: 20px;
      border-top: 1px solid var(--border);
      line-height: 1.7;
    }

    .client-quote-author {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 10px;
      font-style: normal;
      font-family: 'Inter', sans-serif;
    }

    .testimonials-row {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .testimonial {
      background: var(--card);
      padding: 50px;
      border: 1px solid var(--border);
      position: relative;
    }

    .testimonial::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.2;
      position: absolute;
      top: 20px;
      left: 30px;
      line-height: 1;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--cream);
      line-height: 1.8;
      margin-bottom: 30px;
      padding-top: 30px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 0.9rem;
      color: var(--black);
      font-weight: 600;
      flex-shrink: 0;
    }

    .author-info strong {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    .author-info span {
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    /* ===================== PRESSE / MARQUEE ===================== */
    #presse {
      padding: 60px 0;
      background: var(--deep);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 80px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .marquee-text {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    /* ===================== CONTACT ===================== */
    #contact {
      background: var(--deep);
    }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 100px;
      align-items: start;
    }

    .contact-left .section-title {
      margin-bottom: 32px;
    }

    .contact-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--text);
      line-height: 1.9;
      margin-bottom: 48px;
    }

    .contact-info-item {
      display: flex;
      flex-direction: column;
      margin-bottom: 28px;
    }

    .contact-info-label {
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .contact-info-value {
      color: var(--gold);
      font-size: 0.95rem;
      text-decoration: none;
      transition: color 0.3s;
    }

    .contact-info-value:hover { color: var(--gold-light); }

    .contact-form {
      background: var(--card);
      padding: 60px;
      border: 1px solid var(--border);
    }

    .form-group {
      margin-bottom: 28px;
    }

    .form-label {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      padding: 12px 0;
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
    }

    .form-select {
      cursor: pointer;
      background: var(--card);
    }

    .form-select option {
      background: var(--dark);
    }

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

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

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .form-submit {
      width: 100%;
      background: var(--gold);
      color: var(--black);
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 20px;
      cursor: pointer;
      transition: all 0.4s ease;
      margin-top: 12px;
    }

    .form-submit:hover {
      background: var(--gold-light);
      box-shadow: 0 10px 40px rgba(201,164,84,0.2);
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 60px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(5, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-brand .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.75rem;
      transition: all 0.3s;
    }

    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col-title {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 24px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-size: 0.75rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-legal a:hover { color: var(--gold); }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.1); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      #navbar { padding: 20px 30px; }
      #navbar.scrolled { padding: 14px 30px; }
      .nav-links { gap: 24px; }
      section { padding: 100px 30px; }
      footer { padding: 60px 30px; }

      .manifesto-inner { grid-template-columns: 1fr; gap: 60px; }
      .experience-grid { grid-template-columns: 1fr; }
      .djs-grid { grid-template-columns: 1fr 1fr; }
      .dj-card:first-child { grid-column: span 2; }
      .clients-grid { grid-template-columns: 1fr 1fr; }
      .client-item:nth-child(2n) { border-right: none; }
      .client-item:nth-child(4n) { border-right: 1px solid var(--border); }
      .testimonials-row { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 60px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      section { padding: 80px 24px; }
      footer { padding: 60px 24px; }
      .hero-locations { flex-wrap: wrap; gap: 16px; }
      .btn-outline { margin-left: 0; margin-top: 12px; display: block; text-align: center; }
      .djs-header { flex-direction: column; gap: 24px; align-items: flex-start; }
      .djs-grid { grid-template-columns: 1fr; }
      .dj-card:first-child { grid-column: span 1; }
      .dj-card:first-child .dj-photo { aspect-ratio: 1 / 1.2; }
      .clients-grid { grid-template-columns: 1fr; }
      .client-item { border-right: none; }
      .client-item:nth-child(4n) { border-right: none; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
      .contact-form { padding: 40px 28px; }
    }

    /* ===================== FORM STATUS ===================== */
    .form-status {
      margin-top: 18px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      line-height: 1.6;
      min-height: 1.2em;
    }
    .form-status-ok    { color: var(--gold-light); }
    .form-status-error { color: #d98b7a; }

    /* ===================== LANDING PAGES ===================== */
    .landing { padding: 200px 40px 100px; max-width: 900px; margin: 0 auto; }
    .breadcrumb {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gold); }
    .landing h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 28px;
    }
    .landing h1 em { font-style: italic; color: var(--gold); }
    .landing .lede {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      line-height: 1.75;
      color: var(--text);
      margin-bottom: 56px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
    }
    .landing h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 400;
      color: var(--cream);
      margin: 56px 0 20px;
    }
    .landing h3 {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--gold);
      margin: 32px 0 12px;
    }
    .landing p { margin-bottom: 18px; }
    .landing ul { margin: 0 0 24px 20px; }
    .landing li { margin-bottom: 10px; }
    .landing strong { color: var(--cream); font-weight: 500; }
    .landing .answer {
      font-size: 1.05rem;
      color: var(--cream);
      border-left: 2px solid var(--gold);
      padding-left: 22px;
      margin: 0 0 28px;
    }
    .landing-venues {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin: 32px 0 40px;
    }
    .venue-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 24px;
    }
    .venue-card .venue-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .venue-card .venue-meta {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .venue-card p { font-size: 0.92rem; margin: 0; }
    .landing-cta {
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .related-links {
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .related-links .footer-col-title { margin-bottom: 16px; }
    .related-links ul { list-style: none; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; }
    .related-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
    .related-links a:hover { color: var(--gold); }

    @media (max-width: 768px) {
      .landing { padding: 140px 24px 80px; }
    }

    /* ===================== PRIX & FAQ (page mariage) ===================== */
    .price-range {
      display: flex;
      flex-direction: column;
      gap: 6px;
      border: 1px solid var(--gold);
      padding: 26px 30px;
      margin: 30px 0;
      background: rgba(201, 164, 84, 0.05);
    }
    .price-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .price-value {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.5rem);
      color: var(--gold-light);
      line-height: 1.1;
      font-variant-numeric: tabular-nums;
    }
    .price-note {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      color: var(--text);
    }

    .faq-block {
      display: flex;
      flex-direction: column;
      margin: 26px 0 8px;
      border-top: 1px solid var(--border);
    }
    .faq-item {
      padding: 26px 0;
      border-bottom: 1px solid var(--border);
    }
    .landing .faq-q {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 400;
      letter-spacing: 0;
      color: var(--cream);
      margin: 0 0 10px;
      text-transform: none;
    }
    .faq-a {
      margin: 0;
      color: var(--text);
      max-width: 68ch;
    }

    /* ===================== ÉTUDE DE CAS (pages arrondissement) ===================== */
    .casestudy {
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold);
      background: var(--card);
      padding: 28px 30px;
      margin: 34px 0;
    }
    .casestudy-tag {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .casestudy-venue {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: var(--cream);
      margin-bottom: 22px;
    }
    .casestudy-grid {
      display: grid;
      gap: 16px;
      margin: 0;
    }
    .casestudy-grid > div {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 16px;
      align-items: baseline;
    }
    .casestudy-grid dt {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .casestudy-grid dd {
      margin: 0;
      color: var(--text);
      font-size: 0.95rem;
    }
    @media (max-width: 620px) {
      .casestudy-grid > div { grid-template-columns: 1fr; gap: 4px; }
    }

    /* ===================== FORMAT RÉPONSE (AEO) ===================== */
    .updated {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin: -14px 0 26px;
    }
    .answerbox {
      border: 1px solid var(--gold);
      background: rgba(201, 164, 84, 0.06);
      padding: 26px 30px;
      margin: 0 0 40px;
    }
    .answerbox-tag {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.66rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .landing .answerbox p {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      line-height: 1.6;
      color: var(--cream);
    }

    .table-scroll {
      overflow-x: auto;
      border: 1px solid var(--border);
      margin: 26px 0 10px;
    }
    .data-table {
      width: 100%;
      min-width: 620px;
      border-collapse: collapse;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
    }
    .data-table th {
      text-align: left;
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
      padding: 14px 18px;
      background: var(--dark);
      border-bottom: 1px solid var(--border);
      white-space: nowrap;
    }
    .data-table td {
      padding: 13px 18px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      vertical-align: top;
      font-variant-numeric: tabular-nums;
    }
    .data-table tbody tr:last-child td { border-bottom: none; }
    .data-table .row-us td {
      background: rgba(201, 164, 84, 0.07);
      color: var(--cream);
    }
    .table-caption {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      color: var(--muted);
      margin: 0 0 30px;
    }

    .sources {
      border-top: 1px solid var(--border);
      padding-top: 22px;
      margin-top: 40px;
    }
    .sources-tag {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.66rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .landing .sources ul { list-style: none; margin: 0; padding: 0; }
    .landing .sources li { margin-bottom: 7px; font-size: 0.85rem; }
    .sources a { color: var(--text); }
    .sources a:hover { color: var(--gold); }

    .footer-contact {
      margin: 0 0 20px;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
    }
    .footer-contact a {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: color 0.3s;
    }
    .footer-contact a:hover { color: var(--gold); }

    /* ===================== BANDEAU DE CONSENTEMENT ===================== */
    .cookie-bar {
      position: fixed;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 200;
      max-width: 760px;
      margin: 0 auto;
      background: var(--card);
      border: 1px solid var(--gold);
      padding: 22px 26px;
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .cookie-bar.is-open { opacity: 1; transform: translateY(0); }

    .cookie-text {
      flex: 1 1 320px;
      margin: 0;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--text);
    }
    .cookie-text a { color: var(--gold); }

    .cookie-actions { display: flex; gap: 12px; flex: 0 0 auto; }

    /* Les deux boutons ont volontairement la même taille et le même poids :
       refuser doit demander exactement le même effort qu'accepter. */
    .cookie-btn {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 13px 26px;
      min-width: 128px;
      cursor: pointer;
      background: transparent;
      border: 1px solid var(--gold-dim);
      color: var(--gold);
      transition: all 0.3s ease;
    }
    .cookie-btn:hover { border-color: var(--gold); background: rgba(201, 164, 84, 0.08); }
    .cookie-btn-accept { background: var(--gold); border-color: var(--gold); color: var(--black); }
    .cookie-btn-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }

    @media (max-width: 620px) {
      .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 20px; gap: 18px; }
      .cookie-actions { width: 100%; }
      .cookie-btn { flex: 1; min-width: 0; padding: 13px 10px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .cookie-bar { transition: none; }
    }

    /* ===================== PAGES LÉGALES ===================== */
    .legal h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
    .legal .todo {
      border: 1px dashed var(--gold-dim);
      padding: 18px 22px;
      margin: 22px 0;
      font-size: 0.9rem;
      color: var(--muted);
    }
