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

  /* Screen-reader only utility */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  /* Keyboard focus styles */
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  /* Remove focus ring for mouse users */
  :focus:not(:focus-visible) { outline: none; }

  :root {
    --black: #070707;
    --deep: #0d0d0d;
    --surface: #111111;
    --surface2: #161616;
    --gold: #b8965a;
    --gold-light: #d4af72;
    --gold-pale: #e8d5a8;
    --silver: #9ba0a8;
    --white: #f0ece4;
    --white-dim: rgba(240,236,228,0.55);
    --white-faint: rgba(240,236,228,0.1);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(184,150,90,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(7,7,7,0.9) 0%, transparent 100%);
    transition: opacity 0.4s;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 44px; list-style: none; }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.75) 45%, rgba(7,7,7,0.15) 100%);
    z-index: 1;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
  }


  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 680px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 108px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.01em;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
  }
  .hero-title em { font-style: italic; color: var(--gold-pale); }
  .hero-sub {
    font-size: 16px;
    line-height: 2;
    color: var(--white-dim);
    max-width: 400px;
    letter-spacing: 0.05em;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
  }
  .btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-block;
    padding: 16px 0;
    color: var(--silver);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(155,160,168,0.3);
    transition: color 0.3s, border-color 0.3s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white); }

  .hero-right {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 41%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.4s forwards;
  }
  .hero-stat {
    padding: 30px 0;
    border-bottom: 1px solid var(--white-faint);
  }
  .hero-stat:first-child { border-top: 1px solid var(--white-faint); }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 8px;
  }
  .hero-stat-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
  }
  .hero-scroll {
    position: absolute;
    bottom: 44px; left: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
  }
  .hero-scroll-line {
    width: 40px; height: 1px;
    background: var(--gold);
    animation: pulse 2s ease-in-out 2.2s infinite alternate;
  }
  @keyframes pulse { from { width: 40px; opacity: 1; } to { width: 20px; opacity: 0.5; } }
  .hero-scroll span { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--silver); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* SHARED SECTION */
  .section-label {
    font-size: 10.5px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .section-title { font-family: var(--serif); font-weight: 300; line-height: 1.05; }

  /* SERVICES */
  #services { padding: 100px 60px; background: var(--deep); }
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: end;
  }
  .services-title { font-size: clamp(42px, 5vw, 70px); }
  .services-title em { font-style: italic; color: var(--gold-pale); }
  .services-desc {
    font-size: 15px;
    line-height: 2;
    color: var(--white-dim);
    letter-spacing: 0.04em;
    align-self: end;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--surface);
    padding: 52px 42px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .service-card:hover { background: var(--surface2); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: var(--serif);
    font-size: 80px;
    font-weight: 300;
    color: rgba(184,150,90,0.07);
    position: absolute;
    top: 20px; right: 20px;
    line-height: 1;
    transition: color 0.4s;
    pointer-events: none;
  }
  .service-card:hover .service-num { color: rgba(184,150,90,0.14); }
  .service-icon { width: 32px; height: 1px; background: var(--gold); margin-bottom: 40px; }
  .service-name {
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 300;
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .service-name em { font-style: italic; color: var(--gold-pale); }
  .service-text {
    font-size: 14px;
    line-height: 1.95;
    color: var(--white-dim);
    letter-spacing: 0.04em;
    margin-bottom: 32px;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .service-tag {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(184,150,90,0.4);
    padding: 5px 11px;
  }

  /* WHY US */
  #why { padding: 100px 60px; background: var(--black); }
  .why-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 64px;
    align-items: end;
  }
  .why-title { font-size: clamp(42px, 5vw, 70px); }
  .why-title em { font-style: italic; color: var(--gold-pale); }
  .why-intro { font-size: 15px; line-height: 2; color: var(--white-dim); letter-spacing: 0.04em; }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 80px; }
  .why-item {
    padding-top: 28px;
    border-top: 1px solid var(--white-faint);
    transition: border-color 0.4s;
  }
  .why-item:hover { border-top-color: rgba(184,150,90,0.6); }
  .why-num {
    font-family: var(--serif);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
  .why-item-title {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .why-item-text { font-size: 14px; line-height: 1.95; color: var(--white-dim); letter-spacing: 0.04em; }

  /* DIFF STRIP */
  .diff-strip {
    background: var(--gold);
    padding: 0 60px;
    height: 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .diff-track {
    display: flex;
    gap: 60px;
    align-items: center;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .diff-item { display: flex; align-items: center; gap: 16px; }
  .diff-dot { width: 4px; height: 4px; background: rgba(7,7,7,0.5); border-radius: 50%; }
  .diff-item span { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black); font-weight: 500; }

  /* CLIENTS */
  #clients { padding: 100px 60px; background: var(--deep); }
  .clients-header { text-align: center; margin-bottom: 56px; }
  .clients-title { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; }
  .clients-title em { font-style: italic; color: var(--gold-pale); }
  .clients-sub { font-size: 12px; color: var(--silver); letter-spacing: 0.16em; text-transform: uppercase; }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
    gap: 1px;
    background: rgba(184,150,90,0.15);
  }
  .client-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: var(--deep);
    transition: background 0.3s;
  }
  .client-cell:hover { background: var(--surface); }
  .client-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--white-dim);
    transition: color 0.3s;
    text-align: center;
  }
  .client-name em { font-style: italic; }
  .client-cell:hover .client-name { color: var(--gold-pale); }
  .clients-note {
    text-align: center;
    font-size: 15px;
    color: rgba(184,150,90,0.6);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 52px;
  }

  /* CONTACT */
  #contact {
    padding: 110px 60px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #contact::before {
    content: '4AE';
    position: absolute;
    font-family: var(--serif);
    font-size: 340px;
    font-weight: 300;
    color: rgba(184,150,90,0.022);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }
  .contact-eyebrow {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }
  .contact-eyebrow::before,
  .contact-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
  .contact-title {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    position: relative;
  }
  .contact-title em { font-style: italic; color: var(--gold-pale); }
  .contact-sub {
    font-size: 15px;
    color: var(--white-dim);
    letter-spacing: 0.06em;
    margin-bottom: 60px;
    line-height: 1.9;
    position: relative;
  }
  .contact-form {
    display: flex;
    max-width: 540px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
  }
  .contact-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--white-faint);
    border-right: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 18px 24px;
    outline: none;
    transition: border-color 0.3s;
  }
  .contact-input:focus { border-color: rgba(184,150,90,0.45); }
  .contact-input::placeholder { color: var(--silver); }
  .contact-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 18px 32px;
    cursor: none;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .contact-btn:hover { background: var(--gold-light); }
  .contact-alt { font-size: 13px; color: var(--silver); letter-spacing: 0.1em; position: relative; }
  .contact-alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,150,90,0.3); transition: border-color 0.3s; }
  .contact-alt a:hover { border-color: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--deep);
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(184,150,90,0.3);
  }
  .footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 300; letter-spacing: 0.12em; color: var(--white); }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 9px; color: var(--silver); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 6px; }
  .footer-mid { font-size: 13px; color: var(--silver); letter-spacing: 0.1em; text-align: center; line-height: 1.9; }
  .footer-copy { font-size: 11px; color: rgba(155,160,168,0.45); letter-spacing: 0.1em; }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: 0.1s; }
  .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; }
  .d4 { transition-delay: 0.4s; }
  .d5 { transition-delay: 0.5s; }



  /* GALLERY */
  #gallery { padding: 100px 60px; background: var(--deep); }
  .gallery-header { margin-bottom: 56px; }
  .gallery-title { font-size: clamp(42px, 5vw, 70px); margin-top: 16px; }
  .gallery-title em { font-style: italic; color: var(--gold-pale); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 3px;
  }
  .gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .gallery-cell:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: brightness(0.88) saturate(0.9);
    min-height: 320px;
  }
  .gallery-cell:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(1.05);
  }
  .gallery-cell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,7,7,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 28px;
  }
  .gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
  .gallery-cell-label {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
  }

  /* PORTFOLIO */
  #portfolio { padding: 100px 0; background: var(--black); }
  .portfolio-header { margin-bottom: 56px; padding: 0 60px; }
  .portfolio-title { font-size: clamp(42px, 5vw, 70px); margin-top: 16px; }
  .portfolio-title em { font-style: italic; color: var(--gold-pale); }
  .portfolio-list { display: flex; flex-direction: column; }

  .portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    cursor: none;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--white-faint);
    transition: border-color 0.5s;
  }
  .portfolio-item:first-child { border-top: 1px solid var(--white-faint); }
  .portfolio-item:hover { border-color: rgba(184,150,90,0.35); }

  .portfolio-img-col {
    position: relative;
    overflow: hidden;
    background: var(--deep);
  }
  .portfolio-img-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    filter: brightness(0.55) saturate(0.7);
    transition: transform 0.8s ease, filter 0.6s ease;
    pointer-events: none;
  }
  .portfolio-item:hover .portfolio-img-preview {
    transform: scale(1.0);
    filter: brightness(0.75) saturate(0.9);
  }
  .portfolio-img-col::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
  }
  .portfolio-item:hover .portfolio-img-col::after { transform: scaleY(1); }

  .portfolio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
  }
  .portfolio-num {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .portfolio-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(184,150,90,0.25);
    max-width: 40px;
  }
  .portfolio-name {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    transition: color 0.4s;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .portfolio-item:hover .portfolio-name { color: var(--gold-pale); }
  .portfolio-desc {
    font-size: 14px;
    line-height: 2;
    color: var(--white-dim);
    letter-spacing: 0.05em;
    max-width: 380px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  }
  .portfolio-item:hover .portfolio-desc { opacity: 1; transform: translateY(0); }

  /* Even rows: image on right, content on left */
  .portfolio-item:nth-child(even) .portfolio-img-col { order: 2; }
  .portfolio-item:nth-child(even) .portfolio-content { order: 1; }
  .portfolio-item:nth-child(even) .portfolio-img-col::after {
    left: auto; right: 0;
  }


  /* CLIENT LOGO TREATMENTS */
  .client-svg { width: 160px; height: 56px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .client-svg { opacity: 1; }

  /* Target */
  .target-logo { display: flex; align-items: center; gap: 14px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .target-logo { opacity: 1; }
  .target-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--white);
  }

  /* Numéro China */
  .numero-logo { display: flex; flex-direction: column; align-items: center; gap: 3px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .numero-logo { opacity: 1; }
  .numero-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .numero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.45em;
    color: var(--silver);
    text-transform: uppercase;
    border-top: 1px solid rgba(155,160,168,0.35);
    padding-top: 5px;
    width: 100%;
    text-align: center;
  }

  /* PALU NY */
  .palu-logo { display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .palu-logo { opacity: 1; }
  .palu-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 0.45em;
    color: var(--white);
    line-height: 1;
  }
  .palu-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--silver);
    text-transform: uppercase;
  }

  /* Chapal */
  .chapal-logo { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .chapal-logo { opacity: 1; }
  .chapal-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--white);
    line-height: 1;
  }
  .chapal-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--silver);
    text-transform: uppercase;
  }

  /* Glamazon */
  .glamazon-logo { display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0.65; transition: opacity 0.3s; }
  .client-cell:hover .glamazon-logo { opacity: 1; }
  .glamazon-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--gold-pale);
    line-height: 1;
  }
  .glamazon-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.45em;
    color: var(--silver);
    text-transform: uppercase;
  }

  /* Remove old client-name styles */
  .client-name { display: none; }

  /* Partner logo images */
  .partner-logo {
    max-width: 200px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(1) brightness(1.8);
  }
  .client-cell:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0.3) brightness(1.2);
  }


  /* VIDEO LIGHTBOX */
  .video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7,7,7,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .video-lightbox.active {
    opacity: 1;
    pointer-events: all;
  }
  .video-lightbox-inner {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
  }
  .video-lightbox-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(184,150,90,0.3);
    pointer-events: none;
    z-index: 1;
  }
  .video-lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .video-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: color 0.3s;
  }
  .video-lightbox-close:hover { color: var(--white); }
  .video-lightbox-close::before {
    content: '×';
    font-size: 22px;
    font-weight: 200;
    line-height: 1;
  }
  .video-lightbox-label {
    position: absolute;
    bottom: -40px;
    left: 0;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
    font-family: 'Montserrat', sans-serif;
  }
  /* Commercial click cursor hint */
  .portfolio-item.has-video .portfolio-img-col::before {
    content: '▶ WATCH';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid rgba(184,150,90,0.4);
    padding: 10px 20px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    background: rgba(7,7,7,0.5);
  }
  .portfolio-item.has-video:hover .portfolio-img-col::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  /* VIDEO HOVER */
  .portfolio-video {
    min-height: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    filter: brightness(0.55) saturate(0.7);
    transition: transform 0.8s ease, filter 0.6s ease;
    pointer-events: none;
  }
  .portfolio-item:hover .portfolio-video {
    transform: scale(1.0);
    filter: brightness(0.75) saturate(0.9);
  }

  /* GALLERY CAROUSEL LIGHTBOX */
  .carousel-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7,7,7,0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .carousel-lightbox.active {
    opacity: 1;
    pointer-events: all;
  }
  .carousel-inner {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .carousel-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .carousel-close {
    background: none;
    border: none;
    color: var(--silver);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .carousel-close:hover { color: var(--white); }
  .carousel-close::before { content: '×'; font-size: 22px; font-weight: 200; line-height: 1; }
  .carousel-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0a0a0a;
  }
  .carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .carousel-slide.active { opacity: 1; }
  .carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(184,150,90,0.3);
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    font-size: 18px;
    transition: background 0.3s, border-color 0.3s;
    z-index: 2;
  }
  .carousel-nav:hover { background: rgba(184,150,90,0.1); border-color: var(--gold); }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }
  .carousel-nav, .carousel-close, .carousel-dot { cursor: pointer !important; }
  .carousel-footer {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(184,150,90,0.3);
    cursor: none;
    transition: background 0.3s, transform 0.3s;
    border: none;
  }
  .carousel-dot.active { background: var(--gold); transform: scale(1.4); }
  /* Click hint on gallery cell */
  .gallery-cell.has-carousel { cursor: none; }
  .gallery-cell.has-carousel .gallery-cell-overlay {
    background: linear-gradient(to top, rgba(7,7,7,0.7) 0%, transparent 60%);
  }

  .carousel-slide2 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide2.active { opacity:1; }
  .carousel-slide2 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot2 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block; }
  .cdot2.active { background:#b8965a;transform:scale(1.4); }


  /* Restore cursor inside lightboxes */
  #carouselLightbox, #carouselLightbox *,
  #carouselLightbox2, #carouselLightbox2 *,
  #nylonLightbox, #nylonLightbox *,
  #videoLightbox, #videoLightbox *,
  #videoLightbox2, #videoLightbox2 *,
  #hfLightbox, #hfLightbox *,
  #commercialLightbox, #commercialLightbox *,
  #jewelleryLightbox, #jewelleryLightbox *,
  #autoLightbox, #autoLightbox *,
  #makeupLightbox, #makeupLightbox *,
  #scanLightbox, #scanLightbox *,
  #louboutinLightbox, #louboutinLightbox *,
  #armaniLightbox, #armaniLightbox *,
  #tennisLightbox, #tennisLightbox *,
  #numeroLightbox, #numeroLightbox *,
  #chanelLightbox, #chanelLightbox *,
  #opheliaLightbox, #opheliaLightbox *,
  #animationLightbox, #animationLightbox *,
  #targetLightbox, #targetLightbox *,
  #germanierLightbox, #germanierLightbox * {
    cursor: default !important;
  }
  #carouselLightbox button, #carouselLightbox2 button,
  #nylonLightbox button, #videoLightbox button, #videoLightbox2 button,
  #hfLightbox button, #commercialLightbox button,
  #jewelleryLightbox button,
  #autoLightbox button,
  #makeupLightbox button,
  #scanLightbox button,
  #louboutinLightbox button,
  #armaniLightbox button,
  #tennisLightbox button,
  #numeroLightbox button,
  #chanelLightbox button,
  #opheliaLightbox button,
  #animationLightbox button,
  #targetLightbox button,
  #germanierLightbox button,
  .carousel-nav, .carousel-close, .carousel-dot,
  .video-lightbox-close {
    cursor: pointer !important;
  }

  .carousel-slide4 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide4.active { opacity:1; }
  .carousel-slide4 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot4 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block;transition:background 0.3s,transform 0.3s; }
  .cdot4.active { background:#b8965a;transform:scale(1.4); }

  .carousel-slide5 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide5.active { opacity:1; }
  .carousel-slide5 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot5 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block;transition:background 0.3s,transform 0.3s; }
  .cdot5.active { background:#b8965a;transform:scale(1.4); }

  .carousel-slide6 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide6.active { opacity:1; }
  .carousel-slide6 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot6 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block;transition:background 0.3s,transform 0.3s; }
  .cdot6.active { background:#b8965a;transform:scale(1.4); }

  .carousel-slide7 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide7.active { opacity:1; }
  .carousel-slide7 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot7 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block;transition:background 0.3s,transform 0.3s; }
  .cdot7.active { background:#b8965a;transform:scale(1.4); }

  .carousel-slide8 { position:absolute;inset:0;opacity:0;transition:opacity 0.5s ease;display:flex;align-items:center;justify-content:center; }
  .carousel-slide8.active { opacity:1; }
  .carousel-slide8 img { max-width:100%;max-height:100%;object-fit:contain; }
  .cdot8 { width:7px;height:7px;border-radius:50%;background:rgba(184,150,90,0.3);cursor:pointer;border:none;display:inline-block;transition:background 0.3s,transform 0.3s; }
  .cdot8.active { background:#b8965a;transform:scale(1.4); }
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }


  /* HAMBURGER (hidden on desktop) */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    /* Fix lightbox height on iOS Safari + Chrome Android:
       position:fixed;inset:0 uses the LAYOUT viewport (includes URL bar area).
       100dvh = dynamic viewport height = the actual visible area.
       !important overrides the inline inset:0 shorthand. */
    div[id$="Lightbox"] {
      height: 100dvh !important;
      bottom: auto !important;
      top: 0 !important;
    }
    /* All video lightbox inner containers: full-width, max-height = viewport */
    #videoLightbox > div, #videoLightbox2 > div,
    #armaniLightbox > div, #tennisLightbox > div,
    #numeroLightbox > div, #chanelLightbox > div,
    #opheliaLightbox > div, #animationLightbox > div,
    #targetLightbox > div, #germanierLightbox > div,
    #hfLightbox > div, #jewelleryLightbox > div, #autoLightbox > div,
    #scanLightbox > div, #louboutinLightbox > div, #commercialLightbox > div {
      width: 100vw !important;
      max-width: none !important;
      max-height: 100dvh !important;
      overflow: hidden !important;
      padding: 0 !important;
    }
    /* Tighten header row inside lightbox on mobile */
    #videoLightbox > div > div:first-child,
    #videoLightbox2 > div > div:first-child,
    #armaniLightbox > div > div:first-child,
    #tennisLightbox > div > div:first-child,
    #numeroLightbox > div > div:first-child,
    #chanelLightbox > div > div:first-child,
    #opheliaLightbox > div > div:first-child,
    #animationLightbox > div > div:first-child,
    #targetLightbox > div > div:first-child,
    #germanierLightbox > div > div:first-child {
      padding: 12px 16px !important;
      margin-bottom: 0 !important;
    }
    /* Video ratio container fills remaining space */
    #videoLightbox > div > div:last-child,
    #videoLightbox2 > div > div:last-child,
    #armaniLightbox > div > div:last-child,
    #tennisLightbox > div > div:last-child,
    #numeroLightbox > div > div:last-child,
    #chanelLightbox > div > div:last-child,
    #opheliaLightbox > div > div:last-child,
    #animationLightbox > div > div:last-child,
    #targetLightbox > div > div:last-child,
    #germanierLightbox > div > div:last-child {
      aspect-ratio: unset !important;
      height: calc(100dvh - 48px) !important;
    }

    /* Hide custom cursor — touch devices have no pointer */
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto; }

    /* NAV — safe area + larger touch target */
    nav {
      padding: 16px 20px;
      padding-top: max(16px, env(safe-area-inset-top));
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
    }
    .nav-hamburger { display: flex; padding: 10px; }
    .nav-cta { display: none; }
    .nav-links {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(7,7,7,0.98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      z-index: 150;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 14px; letter-spacing: 0.3em; padding: 10px 0; }

    /* HERO */
    .hero-title { font-size: clamp(46px, 13vw, 80px); }
    .hero-sub { font-size: 14px; line-height: 1.85; margin-bottom: 44px; }
    .hero-content { padding: 110px 24px 56px; max-width: 100%; }
    .hero-right { display: none; }
    .hero-bg {
      background: linear-gradient(to bottom, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.6) 100%);
    }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .btn-primary { padding: 16px 36px; font-size: 11px; }

    /* SERVICES */
    #services { padding: 72px 20px; }
    .services-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 36px 24px; }
    .service-name { font-size: 26px; }

    /* WHY */
    #why { padding: 72px 20px; }
    .why-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
    .why-grid { grid-template-columns: 1fr; gap: 32px; }
    .why-item-title { font-size: 22px; }

    /* DIFF STRIP */
    .diff-strip { padding: 0 16px; height: 52px; }

    /* CLIENTS */
    #clients { padding: 72px 20px; }
    .clients-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 100%;
      gap: 1px;
      background: rgba(184,150,90,0.18);
    }
    .client-cell {
      min-height: 120px;
      padding: 24px 16px;
      background: var(--deep);
    }
    .partner-logo {
      max-width: 80%;
      max-height: 80px;
      width: auto;
    }

    /* GALLERY */
    #gallery { padding: 72px 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .gallery-cell:first-child { grid-column: span 2; }
    .gallery-cell img { min-height: 180px; }
    .gallery-cell-overlay { opacity: 1; }

    /* PORTFOLIO */
    #portfolio { padding: 72px 0; }
    .portfolio-header { padding: 0 20px; margin-bottom: 40px; }
    .portfolio-item { grid-template-columns: 1fr; min-height: unset; }
    .portfolio-img-col { height: 280px; }
    .portfolio-content { padding: 32px 20px 40px; }
    .portfolio-name { font-size: clamp(32px, 9vw, 52px); }
    .portfolio-desc { opacity: 1; transform: translateY(0); font-size: 13px; }
    /* Reset even-row reorder so image always comes first */
    .portfolio-item:nth-child(even) .portfolio-img-col { order: 0; }
    .portfolio-item:nth-child(even) .portfolio-content { order: 1; }
    /* Tap hint always visible */
    .portfolio-item.has-video .portfolio-img-col::before {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    /* CONTACT */
    #contact { padding: 88px 20px; }
    .contact-title { font-size: clamp(36px, 10vw, 72px); }
    .contact-sub { font-size: 14px; }
    .contact-form { flex-direction: column; gap: 0; }
    .contact-input {
      border-right: 1px solid var(--white-faint);
      border-bottom: 1px solid var(--white-faint);
      font-size: 15px;
      padding: 18px 20px;
    }
    .contact-btn { width: 100%; padding: 18px; cursor: pointer; }

    /* FOOTER */
    footer {
      flex-direction: column;
      gap: 20px;
      padding: 36px 20px;
      padding-bottom: max(36px, env(safe-area-inset-bottom));
      text-align: center;
    }

    /* LIGHTBOXES */
    .video-lightbox-inner { width: 96vw; }
    .carousel-inner { width: 96vw; }
    .carousel-stage { aspect-ratio: 4/3; }
    .carousel-nav { width: 44px; height: 44px; font-size: 18px; }
    .video-lightbox-close { top: -44px; font-size: 10px; }
    .video-lightbox-close,
    .carousel-close { cursor: pointer !important; padding: 12px 8px; }
    /* Makeup photos stay 3 columns on mobile */
    #makeupGrid { grid-template-columns: repeat(3, 1fr) !important; gap: 2px !important; }
  }

  /* Tablet tweaks */
  @media (min-width: 769px) and (max-width: 1024px) {
    nav { padding: 24px 36px; }
    .nav-links { gap: 28px; }
    .hero-content { padding: 0 36px; max-width: 580px; }
    #services { padding: 80px 36px; }
    .services-header { margin-bottom: 56px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    #why { padding: 80px 36px; }
    .why-grid { gap: 40px 48px; }
    #gallery { padding: 80px 36px; }
    #portfolio { padding: 80px 0; }
    .portfolio-header { padding: 0 36px; }
    .portfolio-content { padding: 48px 40px; }
    #clients { padding: 80px 36px; }
    #contact { padding: 90px 36px; }
    footer { padding: 40px 36px; }
  }
