:root {
        --ink: #0A0F1E;
        --ink-2: #0F1628;
        --ash: #1E2A3E;
        --bone: #f4ede2;
        --bone-dim: #c9bfae;
        --ember: #C1121F;
        --gold: #d9a96c;
        --spark: #E8C547;
        --line: rgba(244, 237, 226, 0.12);

        --serif: "Fraunces", "Times New Roman", serif;
        --sans: "Outfit", system-ui, sans-serif;
      }

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

      html {
        scroll-behavior: smooth;
      }

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

      ::selection {
        background: var(--ember);
        color: var(--ink);
      }

      /* ========== GRAIN OVERLAY ========== */
      body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 100;
        opacity: 0.35;
        mix-blend-mode: overlay;
      }

      /* ========== NAV ========== */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 24px 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.5s ease;
        background: linear-gradient(
          180deg,
          rgba(10, 8, 6, 0.6) 0%,
          rgba(10, 8, 6, 0) 100%
        );
      }

      .nav.scrolled {
        padding: 14px 48px;
        background: rgba(10, 8, 6, 0.72);
        backdrop-filter: blur(20px) saturate(1.2);
        -webkit-backdrop-filter: blur(20px) saturate(1.2);
        border-bottom: 1px solid var(--line);
      }

      .nav__brand {
        font-family: var(--serif);
        font-style: italic;
        font-size: clamp(13px, 1.8em + 2vw, 25px);
        letter-spacing: 0.02em;
        color: var(--ember);
        text-decoration: none;
        display: flex;
        align-items: baseline;
        gap: 8px;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
      }

      .nav__brand-mark {
        font-family: var(--sans);
        font-weight: 800;
        font-size: clamp(13px, 1.5em + 2vw, 25px);
        font-style: normal;
        letter-spacing: 0.4em;
        text-transform: uppercase;
      }

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

      .nav__links a {
        color: var(--bone);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        font-weight: 500;
        position: relative;
        padding-bottom: 4px;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
      }

      .nav__links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--bone);
        transition: width 0.4s ease;
      }

      .nav__links a:hover::after {
        width: 100%;
      }

      .nav__links:hover a:not(:hover) {
        opacity: 0.55;
        transition: opacity 0.3s ease;
      }

      .nav__links a {
        transition: opacity 0.3s ease, font-variation-settings 0.3s ease;
      }

      /* ========== HERO SPLIT ========== */
      .hero {
        position: relative;
        height: 100vh;
        min-height: 720px;
        overflow: hidden;
        background: var(--ink);
        cursor: none;
      }

      /* Two background layers */
      .hero__layer {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        will-change: opacity, transform;
        transition: filter 0.6s ease;
      }

      .hero__layer--spectacle {
        background-image:
          linear-gradient(
            180deg,
            rgba(10, 8, 6, 0.25) 0%,
            rgba(10, 8, 6, 0.55) 100%
          ),
          url("assets/img/hero-spectacle.jpg");
      }

      .hero__layer--atelier {
        background-image:
          linear-gradient(
            180deg,
            rgba(10, 8, 6, 0.35) 0%,
            rgba(10, 8, 6, 0.65) 100%
          ),
          url("assets/img/hero-atelier.jpg");
        filter: grayscale(0.3) contrast(1.1);
      }

      /* Vertical divider that follows cursor */
      .hero__divider {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(
          180deg,
          transparent 0%,
          var(--gold) 20%,
          var(--gold) 80%,
          transparent 100%
        );
        opacity: 0.6;
        pointer-events: none;
        z-index: 5;
        transform: translateX(-50%);
        mix-blend-mode: screen;
      }

      .hero__divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.5;
      }

      .hero__divider::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow:
          0 0 16px var(--ember),
          0 0 32px var(--ember);
      }

      /* Custom cursor labels */
      .hero__cursor-label {
        position: absolute;
        top: 50%;
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone);
        pointer-events: none;
        z-index: 6;
        transform: translateY(-50%);
        opacity: 0.7;
        transition: opacity 0.3s ease;
        font-weight: 500;
        mix-blend-mode: difference;
      }

      .hero__cursor-label--left {
        left: -90px;
      }
      .hero__cursor-label--right {
        right: -90px;
      }

      /* Hero content */
      .hero__content {
        position: absolute;
        inset: 0;
        z-index: 10;
        padding: 0 48px 150px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        pointer-events: none;
      }

      .hero__content > * {
        pointer-events: auto;
      }

      .hero__top {
        position: absolute;
        top: 120px;
        left: 48px;
        right: 48px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
      }

      .hero__eyebrow {
        font-size: 12px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone);
        display: flex;
        align-items: center;
        gap: 14px;
        opacity: 0;
        animation: fadeIn 1.2s 0.4s forwards;
      }

      .hero__eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--gold);
      }

      .hero__coords {
        text-align: right;
        font-size: 12px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--bone);
        line-height: 1.9;
        opacity: 0;
        animation: fadeIn 1.2s 0.6s forwards;
      }

      .hero__title {
        font-family: var(--serif);
        font-weight: 300;
        font-size: clamp(60px, 10vw, 168px);
        line-height: 0.9;
        letter-spacing: -0.025em;
        color: var(--bone);
        max-width: 100%;
        text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
      }

      .hero__title em {
        font-style: italic;
        font-weight: 400;
      }

      .hero__title-line {
        display: block;
        overflow: hidden;
      }

      .hero__title-line > span {
        display: block;
        transform: translateY(110%);
        animation: lineUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
      }

      .hero__title-line:nth-child(1) span {
        animation-delay: 0.5s;
      }
      .hero__title-line:nth-child(2) span {
        animation-delay: 0.65s;
      }
      .hero__title-line:nth-child(3) span {
        animation-delay: 0.8s;
      }

      .hero__title--acrostic {
        display: flex;
        flex-direction: column;
        gap: 0.05em;
      }

      .acrostic__letter {
        font-family: var(--sans);
        font-weight: 800;
        font-style: normal;
        letter-spacing: 0.05em;
        margin-right: 0.15em;
      }

      .acrostic__dash {
        color: var(--bone-dim);
        margin-right: 0.2em;
        font-style: normal;
        font-weight: 300;
      }

      @keyframes lineUp {
        to {
          transform: translateY(0);
        }
      }

      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      .hero__bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 56px;
      }

      .hero__caption {
        display: flex;
        gap: 80px;
        opacity: 0;
        animation: fadeIn 1.4s 1.2s forwards;
      }

      .hero__caption-block {
        max-width: 280px;
      }

      .hero__caption-label {
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .hero__caption-label::before {
        content: "";
        width: 6px;
        height: 6px;
        border: 1px solid var(--gold);
        border-radius: 50%;
      }

      .hero__caption-text {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        line-height: 1.5;
        color: var(--bone);
        font-weight: 300;
      }

      .hero__scroll-hint {
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone-dim);
        display: flex;
        align-items: center;
        gap: 14px;
        opacity: 0;
        animation: fadeIn 1.4s 1.4s forwards;
      }

      .hero__scroll-hint::after {
        content: "";
        width: 36px;
        height: 1px;
        background: var(--bone-dim);
        animation: scrollLine 2.4s ease-in-out infinite;
        transform-origin: left;
      }

      @keyframes scrollLine {
        0%,
        100% {
          transform: scaleX(0.3);
        }
        50% {
          transform: scaleX(1);
        }
      }

      /* Hide hero on touch devices, show simpler version */
      @media (hover: none) {
        .hero {
          cursor: default;
        }
        .hero__divider,
        .hero__cursor-label {
          display: none;
        }
        .hero__layer--spectacle {
          opacity: 1;
        }
        .hero__layer--atelier {
          opacity: 0;
        }
      }

      /* ========== ABOUT (style Anima) ========== */
      .about {
        padding: 100px 48px 100px;
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
      }

      .about__split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        margin-bottom: 140px;
      }

      .about__left {
        display: flex;
        flex-direction: column;
        gap: 48px;
        position: sticky;
        top: 120px;
      }

      .about__label {
        font-size: 11px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 32px;
      }

      .about__label::before {
        content: "— ";
      }

      .about__title {
        font-family: var(--serif);
        font-size: clamp(48px, 6.5vw, 104px);
        font-weight: 300;
        line-height: 0.95;
        letter-spacing: -0.025em;
      }

      .about__title em {
        font-style: italic;
        color: var(--ember);
      }

      .about__intro {
        font-family: var(--sans);
        font-size: clamp(16px, 1.4vw, 20px);
        line-height: 1.7;
        font-weight: 300;
        color: var(--bone-dim);
      }

      .about__intro::before {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 28px;
      }

      .about__mosaic {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .about__mosaic-main {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        border-radius: 2px;
      }

      .about__mosaic-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .about__mosaic-cell {
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 2px;
      }

      .about__mosaic-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.85);
        transition: filter 0.4s ease, transform 0.6s ease;
      }

      .about__mosaic-main:hover .about__mosaic-img,
      .about__mosaic-cell:hover .about__mosaic-img {
        filter: brightness(1);
        transform: scale(1.03);
      }

      .about__pillars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .pillar {
        background: var(--ink);
        padding: 56px 40px 56px 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: relative;
        padding-left: 40px;
      }

      .pillar:first-child {
        padding-left: 0;
      }

      .pillar__num {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13px;
        color: var(--gold);
        letter-spacing: 0.05em;
      }

      .pillar__title {
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 400;
        line-height: 1.1;
      }

      .pillar__title em {
        font-style: italic;
      }

      .pillar__text {
        font-size: 14px;
        line-height: 1.75;
        color: var(--bone-dim);
        max-width: 380px;
      }

      /* ========== FAMILY (style Nivora — photo native, texte par-dessus) ========== */
      .family {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 80px 48px;
        isolation: isolate;
        background: #050302;
      }

      .family__bg {
        position: absolute;
        inset: 0;
        background-image: url("/assets/img/seine.jpg");
        background-size: cover;
        background-position: center;
        filter: contrast(1.05);
        opacity: 0.8;
        z-index: 0;
      }

      /* Subtle vignette only — preserve the photo's natural colors */
      .family__bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(0, 0, 0, 0.35) 100%
          ),
          linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.25) 0%,
            transparent 25%,
            transparent 70%,
            rgba(0, 0, 0, 0.4) 100%
          );
      }

      .family__content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1600px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: calc(100vh - 160px);
      }

      /* Top labels — subtle, in the corners */
      .family__top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 10px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone);
        opacity: 0.85;
      }

      .family__top-left,
      .family__top-right {
        font-weight: 500;
      }

      .family__top-center {
        font-family: var(--sans);
        font-weight: 700;
        letter-spacing: 0.5em;
        font-size: 11px;
      }

      /* Center stack: small text on top, then GIANT title, then sub + CTA */
      .family__center {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 80px 0;
      }

      .family__eyebrow {
        font-size: 11px;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--bone);
        margin-bottom: 28px;
        font-weight: 600;
      }

      /* THE giant headline — passes in front of the firework */
      .family__headline {
        width: max-content;
        max-width: 100%;
        font-family: var(--sans);
        font-weight: 500;
        font-size: clamp(50px, 10vw, 200px);
        line-height: 0.8;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        padding: 0 0.15em;
        background: linear-gradient(
          180deg,
          #f8efe0 0%,
          #f4ede2 35%,
          #d9a96c 70%,
          #C1121F 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        text-shadow: none;
        margin: 0 auto;
        filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
      }

      .family__headline em {
        font-style: italic;
        font-weight: 500;
        padding-right: 0.05em;
        display: inline-block;
      }

      .family__headline-line {
        display: block;
      }

      .family__cta {
        margin-top: 48px;
        display: inline-block;
        padding: 18px 40px;
        border: 1px solid var(--bone);
        background: transparent;
        color: var(--bone);
        font-size: 11px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
      }

      .family__cta:hover {
        background: var(--bone);
        color: var(--ink);
      }

      /* Bottom-left signature like Nivora */
      .family__signature {
        align-self: flex-start;
        font-family: var(--serif);
        font-style: italic;
        font-size: 13px;
        color: var(--bone);
        opacity: 0.8;
      }

      /* ========== STATS BAND ========== */
      .stats {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 60px 48px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1600px;
        margin: 0 auto;
      }

      .stat__num {
        font-family: var(--serif);
        font-size: 72px;
        font-weight: 300;
        line-height: 1;
        color: var(--bone);
        margin-bottom: 8px;
      }

      .stat__num em {
        font-style: italic;
        color: var(--ember);
      }

      .stat__label {
        font-size: 10px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--bone-dim);
      }

      /* ========== SERVICES ========== */
      .services {
        padding: 180px 48px;
        max-width: 1600px;
        margin: 0 auto;
      }

      .section-head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 100px;
        align-items: end;
      }

      .section-head__num {
        font-family: var(--serif);
        font-style: italic;
        font-size: 14px;
        color: var(--gold);
      }

      .section-head__title {
        font-family: var(--serif);
        font-size: clamp(48px, 6vw, 96px);
        font-weight: 300;
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin-top: 16px;
      }

      .section-head__title em {
        font-style: italic;
        color: var(--ember);
      }

      .section-head__desc {
        font-size: 18px;
        line-height: 1.7;
        color: var(--bone-dim);
        max-width: 460px;
        justify-self: end;
      }

      .services__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .service {
        background: var(--ink);
        padding: 72px 48px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        min-height: 420px;
        position: relative;
        transition: background 0.5s ease;
        cursor: pointer;
        overflow: hidden;
        z-index: 9;
      }

      /* Image + filtre sur un calque derrière */
      .service::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: -1;
        /* Compositing GPU indépendant : empêche le ré-échantillonnage
           pixellisé du background quand la carte parent passe en opacity < 1
           pendant le fade in. */
        transform: translateZ(0);
        backface-visibility: hidden;
      }

      #services > div.services__grid > div:nth-child(1)::before {
        background-image: url('assets/img/wedding.jpg');
        filter: brightness(0.8) contrast(0.8);
      }

      #services > div.services__grid > div:nth-child(2)::before {
        background-image: url('assets/img/computer.jpg');
        filter: brightness(0.8);
      }

      #services > div.services__grid > div:nth-child(3)::before {
        background-image: url('assets/img/gender-reveal.jpg');
        filter: brightness(0.6);
      }

      #services > div.services__grid > div:nth-child(4)::before {
        background-image: url('assets/img/public-show.jpg');
        filter: brightness(0.8) contrast(0.9);
      }

      .service:hover {
        background: var(--ink-2);
      }

      .service__icon {
        width: 52px;
        height: 52px;
        color: var(--ember);
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      /* Each icon has its own gentle idle animation, accelerated on hover */
      .service__icon--ray {
        animation: iconRayPulse 4s ease-in-out infinite;
        transform-origin: center;
      }
      .service__icon--star {
        animation: iconStarSpin 18s linear infinite;
        transform-origin: center;
      }
      .service__icon--flame {
        animation: iconFlameFlicker 2.4s ease-in-out infinite;
        transform-origin: center bottom;
      }
      .service__icon--burst {
        animation: iconBurstBreathe 5s ease-in-out infinite;
        transform-origin: center;
      }

      @keyframes iconRayPulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.08); opacity: 0.85; }
      }
      @keyframes iconStarSpin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
      }
      @keyframes iconFlameFlicker {
        0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
        25% { transform: scaleY(1.06) translateY(-1px); opacity: 0.9; }
        50% { transform: scaleY(0.98) translateY(0.5px); opacity: 1; }
        75% { transform: scaleY(1.04) translateY(-0.5px); opacity: 0.92; }
      }
      @keyframes iconBurstBreathe {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
      }

      .service:hover .service__icon {
        animation-play-state: paused;
        transform: scale(1.1);
        color: var(--spark);
      }

      .service__num {
        position: absolute;
        top: 24px;
        right: 32px;
        font-family: var(--serif);
        font-style: italic;
        font-size: 13px;
        color: var(--gold);
        opacity: 0.6;
      }

      .service__title {
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 400;
        line-height: 1.1;
        margin-top: auto;
      }

      .service__title em {
        font-style: italic;
      }

      .service__desc {
        font-size: 18px;
        line-height: 1.7;
        color: var(--bone);
      }

      .service__more {
        font-size: 11px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--bone);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
      }

      .service__more::after {
        content: "→";
        transition: transform 0.4s ease;
      }

      .service:hover .service__more::after {
        transform: translateX(8px);
      }

      /* ========== SCROLL REVEAL : fade séquentiel ========== */
      .service.is-hidden {
        opacity: 0;
        will-change: opacity;
        /* Isolation du contexte de compositing : empêche le grain global
           (body::before, mix-blend-mode: overlay) d'interagir avec la carte
           pendant que son opacité est en transition — sinon le bruit devient
           visible comme une texture pixellisée au lieu d'un grain fin. */
        isolation: isolate;
      }

      .service.is-revealed {
        opacity: 1;
        transition: opacity 0.4s ease-out;
        will-change: opacity;
        isolation: isolate;
      }

      /* Une fois le fade terminé, on libère tout : le grain peut à nouveau
         passer normalement par-dessus la carte. */
      .service.is-settled {
        will-change: auto;
        isolation: auto;
      }

      @media (prefers-reduced-motion: reduce) {
        .service.is-hidden,
        .service.is-revealed {
          opacity: 1;
          transition: none;
        }
      }

      /* ========== GALLERY (art-gallery masonry) ========== */
      .gallery {
        padding: 200px 0 200px;
        background: var(--ink);
        position: relative;
      }

      .gallery__head {
        padding: 0 48px;
        max-width: 1600px;
        margin: 0 auto 80px;
      }

      .gallery__index {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 48px;
        max-width: 1600px;
        margin: 0 auto 56px;
        font-size: 10px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone-dim);
        border-bottom: 1px solid var(--line);
        padding-bottom: 18px;
      }

      .gallery__index span:first-child {
        color: var(--gold);
      }

      /* Masonry — CSS columns approach (true asymmetric flow) */
      .gallery__masonry {
        padding: 0 48px;
        max-width: 1600px;
        margin: 0 auto;
        column-count: 3;
        column-gap: 32px;
      }

      .frame {
        position: relative;
        display: block;
        margin: 0 0 32px;
        overflow: hidden;
        background: var(--ink-2);
        break-inside: avoid;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
      }

      .frame__img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
        will-change: transform;
      }

      .frame:hover .frame__img {
        transform: scale(1.04);
      }

      /* Subtle veil that reveals on hover */
      .frame__veil {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(10, 8, 6, 0) 30%,
          rgba(10, 8, 6, 0.78) 100%
        );
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
      }

      .frame:hover .frame__veil {
        opacity: 1;
      }

      .frame__caption {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 22px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        opacity: 0;
        transform: translateY(8px);
        transition:
          opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s,
          transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s;
        pointer-events: none;
      }

      .frame:hover .frame__caption {
        opacity: 1;
        transform: translateY(0);
      }

      .frame__title {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.1;
        color: var(--bone);
        letter-spacing: -0.005em;
        margin: 0;
      }

      .frame__meta {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: right;
        font-size: 10px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--bone);
        opacity: 0.85;
        white-space: nowrap;
      }

      .frame__meta span:first-child {
        color: var(--gold);
      }

      /* Tiny corner badge always visible (subtle) */
      .frame__badge {
        position: absolute;
        top: 18px;
        left: 18px;
        font-size: 9px;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: var(--bone);
        background: rgba(10, 8, 6, 0.6);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        padding: 6px 10px;
        line-height: 1;
        opacity: 0.85;
      }

      .gallery__cta {
        text-align: center;
        margin-top: 100px;
        padding: 0 48px;
      }

      /* ========== CTA BUTTON ========== */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        padding: 22px 36px;
        background: transparent;
        border: 1px solid var(--bone);
        color: var(--bone);
        font-size: 12px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transition: color 0.4s ease;
      }

      .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--ember);
        transform: translateY(101%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
      }

      .btn:hover {
        color: var(--ink);
      }
      .btn:hover::before {
        transform: translateY(0);
      }

      .btn--primary {
        background: var(--ember);
        border-color: var(--ember);
        color: var(--ink);
      }

      .btn--primary::before {
        background: var(--bone);
      }

      .btn__arrow {
        width: 24px;
        height: 1px;
        background: currentColor;
        position: relative;
      }

      .btn__arrow::after {
        content: "";
        position: absolute;
        right: 0;
        top: -3px;
        width: 7px;
        height: 7px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        transform: rotate(45deg);
      }

      /* ========== PHONE BUTTON (signature animation) ========== */
      .btn-phone {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        padding: 20px 28px 20px 34px;
        background: var(--ember);
        border: 1px solid var(--ember);
        color: var(--ink);
        font-family: var(--serif);
        font-style: italic;
        font-size: 22px;
        font-weight: 400;
        text-decoration: none;
        cursor: pointer;
        position: relative;
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        overflow: hidden;
      }

      .btn-phone__label {
        font-family: var(--sans);
        font-size: 9px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        font-style: normal;
        color: var(--ink);
        opacity: 0.7;
        margin-right: 14px;
        padding-right: 14px;
        border-right: 1px solid rgba(10, 8, 6, 0.3);
        transition: all 0.4s ease;
      }

      .btn-phone__num {
        letter-spacing: 0.02em;
        position: relative;
        z-index: 2;
      }

      .btn-phone__icon {
        position: relative;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 6px;
      }

      .btn-phone__icon svg {
        width: 18px;
        height: 18px;
        position: relative;
        z-index: 2;
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      /* Pulsing ring on hover */
      .btn-phone__pulse {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid var(--ember);
        opacity: 0;
        /* Animation defined but paused at rest — restarts on hover */
        animation: phonePulse 1.6s ease-out;
        animation-play-state: paused;
      }

      .btn-phone__pulse:nth-child(2) {
        animation-delay: 0.8s;
      }

      .btn-phone:hover {
        background: var(--ink);
        color: var(--bone);
        border-color: var(--bone);
        padding-right: 34px;
      }

      .btn-phone:hover .btn-phone__label {
        color: var(--bone);
        border-right-color: rgba(244, 237, 226, 0.3);
        opacity: 0.6;
      }

      .btn-phone:hover .btn-phone__icon svg {
        transform: rotate(-12deg) scale(1.1);
        color: var(--ember);
      }

      .btn-phone:hover .btn-phone__pulse {
        animation-play-state: running;
      }

      @keyframes phonePulse {
        0% {
          opacity: 0.7;
          transform: scale(1);
        }
        100% {
          opacity: 0;
          transform: scale(2.2);
        }
      }

      /* ========== TESTIMONIAL SLIDER ========== */
      .testimonial {
        padding: 200px 48px;
        text-align: center;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
      }

      .testimonial__quote-mark {
        font-family: var(--serif);
        font-style: italic;
        font-size: 200px;
        color: var(--ember);
        line-height: 0.5;
        margin-bottom: 40px;
        display: block;
      }

      .testimonial__track {
        position: relative;
        min-height: 320px;
      }

      .testimonial__slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
        pointer-events: none;
      }

      .testimonial__slide.is-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        position: relative;
      }

      .testimonial__text {
        font-family: var(--serif);
        font-size: clamp(28px, 3.5vw, 48px);
        font-weight: 300;
        line-height: 1.3;
        letter-spacing: -0.01em;
        margin-bottom: 48px;
      }

      .testimonial__text em {
        font-style: italic;
        color: var(--ember);
      }

      .testimonial__author {
        font-size: 11px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--bone-dim);
      }

      .testimonial__author strong {
        display: block;
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: 18px;
        letter-spacing: 0;
        text-transform: none;
        color: var(--bone);
        margin-bottom: 6px;
      }

      .testimonial__nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        margin-top: 80px;
      }

      .testimonial__arrow {
        width: 48px;
        height: 48px;
        border: 1px solid var(--line);
        background: transparent;
        color: var(--bone);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        font-family: var(--serif);
        font-size: 20px;
      }

      .testimonial__arrow:hover {
        background: var(--ember);
        border-color: var(--ember);
        color: var(--ink);
      }

      .testimonial__dots {
        display: flex;
        gap: 12px;
      }

      .testimonial__dot {
        width: 32px;
        height: 1px;
        background: var(--line);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.4s ease;
        position: relative;
      }

      .testimonial__dot::before {
        content: "";
        position: absolute;
        inset: -10px 0;
      }

      .testimonial__dot.is-active {
        background: var(--bone);
        width: 56px;
      }

      /* ========== CONTACT CTA ========== */
      .contact {
        position: relative;
        padding: 180px 48px;
        text-align: center;
        background: linear-gradient(180deg, var(--ink) 0%, #1a0a04 100%);
        overflow: hidden;
      }

      .contact::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 50% 100%,
          rgba(255, 91, 31, 0.15) 0%,
          transparent 60%
        );
      }

      .contact__inner {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
      }

      .contact__eyebrow {
        font-size: 11px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 32px;
      }

      .contact__title {
        font-family: var(--serif);
        font-size: clamp(56px, 8vw, 120px);
        font-weight: 300;
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin-bottom: 48px;
      }

      .contact__title em {
        font-style: italic;
        color: var(--ember);
      }

      .contact__text {
        font-size: 16px;
        line-height: 1.7;
        color: var(--bone-dim);
        max-width: 540px;
        margin: 0 auto 60px;
      }

      .contact__actions {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ========== FOOTER ========== */
      .footer {
        padding: 80px 48px 40px;
        border-top: 1px solid var(--line);
      }

      .footer__grid {
        max-width: 1600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
      }

      .footer__brand {
        font-family: var(--serif);
        font-style: italic;
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 12px;
      }

      .footer__tag {
        font-size: 13px;
        color: var(--bone-dim);
        max-width: 320px;
        line-height: 1.6;
      }

      .footer__col h5 {
        font-size: 10px;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
        font-weight: 600;
      }

      .footer__col p,
      .footer__col a {
        font-size: 13px;
        color: var(--bone-dim);
        display: block;
        margin-bottom: 8px;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer__col a:hover {
        color: var(--bone);
      }

      .footer__bottom {
        max-width: 1600px;
        margin: 0 auto;
        padding-top: 32px;
        border-top: 1px solid var(--line);
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--bone-dim);
      }

      .footer__bottom a {
        color: var(--bone-dim);
        text-decoration: none;
      }

      /* ========== BURGER & MOBILE MENU (base : caché sur desktop) ========== */
      .nav__burger {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin: -8px;
        z-index: 60;
        position: relative;
      }
      .nav__burger-bar {
        display: block;
        width: 26px;
        height: 1.5px;
        background: var(--bone);
        margin: 6px 0;
        transition:
          transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
          opacity 0.3s ease,
          background 0.3s ease;
        transform-origin: center;
      }
      .nav__burger.is-open .nav__burger-bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }
      .nav__burger.is-open .nav__burger-bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }
      .nav__burger.is-open .nav__burger-bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }

      .nav-mobile {
        position: fixed;
        inset: 0;
        z-index: 55;
        background: rgba(10, 8, 6, 0.96);
        backdrop-filter: blur(24px) saturate(1.2);
        -webkit-backdrop-filter: blur(24px) saturate(1.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 32px 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
      }
      .nav-mobile.is-open {
        opacity: 1;
        pointer-events: auto;
      }
      .nav-mobile__links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 28px;
        width: 100%;
      }
      .nav-mobile__links li {
        overflow: hidden;
      }
      .nav-mobile__links a {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 300;
        font-size: clamp(38px, 11vw, 56px);
        line-height: 1;
        letter-spacing: -0.02em;
        color: var(--bone);
        text-decoration: none;
        display: inline-block;
        transform: translateY(110%);
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        transition-delay: 0s;
      }
      .nav-mobile.is-open .nav-mobile__links a {
        transform: translateY(0);
      }
      .nav-mobile.is-open li:nth-child(1) a { transition-delay: 0.05s; }
      .nav-mobile.is-open li:nth-child(2) a { transition-delay: 0.12s; }
      .nav-mobile.is-open li:nth-child(3) a { transition-delay: 0.19s; }
      .nav-mobile.is-open li:nth-child(4) a { transition-delay: 0.26s; }
      .nav-mobile__links a:active {
        color: var(--ember);
      }
      .nav-mobile__foot {
        margin-top: auto;
        padding-top: 40px;
        border-top: 1px solid var(--line);
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        opacity: 0;
        transition: opacity 0.5s ease 0.3s;
      }
      .nav-mobile.is-open .nav-mobile__foot {
        opacity: 1;
      }
      .nav-mobile__phone {
        font-family: var(--serif);
        font-style: italic;
        font-size: 22px;
        color: var(--ember);
        text-decoration: none;
      }
      .nav-mobile__city {
        font-size: 10px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--bone-dim);
      }

      /* ========== RESPONSIVE ========== */
      @media (max-width: 1280px) {
        .gallery__masonry {
          column-count: 2;
        }
      }

      /* ---------- TABLETTE & PETITE TABLETTE ≤980px ---------- */
      @media (max-width: 980px) {
        .nav {
          padding: 16px 24px;
        }
        .nav.scrolled {
          padding: 12px 24px;
        }
        .nav__links {
          display: none;
        }
        .nav__burger {
          display: block;
        }

        .hero {
          padding: 0 24px 60px;
        }
        .hero__top {
          left: 24px;
          right: 24px;
          top: 90px;
        }
        .hero__content {
          padding: 0 24px 56px;
        }
        .hero__caption {
          gap: 32px;
          flex-direction: column;
        }
        .hero__bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 32px;
        }

        .about {
          padding: 100px 24px;
        }
        .about__split {
          grid-template-columns: 1fr;
          gap: 56px;
          margin-bottom: 80px;
        }
        .about__left {
          position: static;
        }
        .about__pillars {
          grid-template-columns: 1fr;
        }
        .pillar {
          padding: 40px 0;
          padding-left: 0;
        }
        .pillar:not(:first-child) {
          padding-left: 0;
          border-top: 1px solid var(--line);
        }

        .family {
          padding: 60px 24px;
          min-height: auto;
        }
        .family__top {
          flex-direction: column;
          gap: 8px;
          align-items: center;
        }
        .family__center {
          padding: 60px 0;
        }

        .stats {
          grid-template-columns: repeat(2, 1fr);
          padding: 40px 24px;
          gap: 32px;
        }
        .services {
          padding: 100px 24px;
        }
        .section-head {
          grid-template-columns: 1fr;
          gap: 24px;
          margin-bottom: 60px;
        }
        .section-head__desc {
          justify-self: start;
        }
        .services__grid {
          grid-template-columns: 1fr;
        }
        .service {
          padding: 56px 32px;
          min-height: 360px;
        }

        .gallery {
          padding: 100px 0;
        }
        .gallery__head,
        .gallery__index,
        .gallery__cta {
          padding: 0 24px;
        }
        .gallery__masonry {
          padding: 0 24px;
          column-count: 1;
          column-gap: 0;
        }
        .frame {
          margin-bottom: 16px;
        }
        .frame__caption {
          opacity: 1;
          transform: none;
          left: 16px;
          right: 16px;
          bottom: 16px;
        }
        .frame__veil {
          opacity: 1;
        }

        .testimonial {
          padding: 100px 24px;
        }
        .testimonial__nav {
          gap: 20px;
          margin-top: 60px;
        }

        .contact {
          padding: 100px 24px;
        }
        .footer {
          padding: 60px 24px 24px;
        }
        .footer__grid {
          grid-template-columns: 1fr;
          gap: 40px;
          margin-bottom: 40px;
        }
        .footer__bottom {
          flex-direction: column;
          gap: 12px;
        }
      }

      /* ---------- MOBILE ≤640px ---------- */
      @media (max-width: 640px) {
        /* NAV : padding latéral réduit, marque plus discrète */
        .nav {
          padding: 14px 20px;
        }
        .nav.scrolled {
          padding: 10px 20px;
        }
        .nav__brand {
          font-size: 16px;
          letter-spacing: 0.01em;
          gap: 6px;
        }
        .nav__brand-mark {
          font-size: 14px;
          letter-spacing: 0.3em;
        }

        /* HERO : on simplifie tout. Le split interactif n'a pas de sens au doigt :
           on garde la couche spectacle plein écran, on cache divider/labels,
           et on désactive le clic-pour-toggle qui pouvait être déclenché par un
           tap accidentel pendant un scroll. */
        .hero {
          padding: 0 20px 40px;
          min-height: 100vh;
          min-height: 100svh; /* évite le saut quand la barre d'URL se cache */
          height: auto;
          cursor: default;
        }
        .hero__layer--atelier {
          opacity: 0;
        }
        .hero__divider,
        .hero__cursor-label {
          display: none;
        }
        .hero__top {
          top: 80px;
          left: 20px;
          right: 20px;
          flex-direction: column;
          gap: 10px;
          align-items: flex-start;
        }
        .hero__coords {
          text-align: left;
        }
        .hero__eyebrow,
        .hero__coords {
          font-size: 10px;
          letter-spacing: 0.3em;
        }
        .hero__content {
          padding: 0 20px 40px;
          justify-content: flex-end;
        }
        .hero__title {
          /* Titre plus serré pour ne pas déborder en portrait */
          font-size: clamp(44px, 14vw, 64px);
          line-height: 0.95;
        }
        .hero__bottom {
          margin-top: 32px;
          gap: 24px;
        }
        .hero__caption {
          gap: 20px;
        }
        .hero__caption-block {
          max-width: 100%;
        }
        .hero__caption-text {
          font-size: 15px;
        }
        .hero__scroll-hint {
          font-size: 9px;
        }

        /* ABOUT */
        .about {
          padding: 72px 20px 72px;
        }
        .about__split {
          gap: 40px;
          margin-bottom: 64px;
        }
        .about__left {
          gap: 32px;
        }
        .about__title {
          font-size: clamp(40px, 11vw, 56px);
        }
        .about__intro {
          font-size: 15px;
          line-height: 1.65;
        }
        .about__intro::before {
          margin-bottom: 20px;
        }
        .about__mosaic {
          gap: 8px;
        }
        .about__mosaic-side {
          gap: 8px;
        }
        .pillar {
          padding: 32px 0;
          gap: 16px;
        }
        .pillar__title {
          font-size: 26px;
        }
        .pillar__text {
          font-size: 14px;
        }

        /* FAMILY */
        .family {
          padding: 80px 20px;
        }
        .family__center {
          padding: 40px 0;
        }
        .family__headline {
          font-size: clamp(48px, 16vw, 78px);
        }
        .family__cta {
          margin-top: 36px;
          padding: 16px 32px;
          font-size: 10px;
        }

        /* STATS : 2 colonnes plus aérées, chiffres réduits */
        .stats {
          padding: 48px 20px;
          gap: 36px 24px;
        }
        .stat__num {
          font-size: 52px;
        }
        .stat__label {
          font-size: 9px;
          letter-spacing: 0.3em;
        }

        /* SERVICES */
        .services {
          padding: 80px 20px;
        }
        .section-head {
          margin-bottom: 48px;
        }
        .section-head__title {
          font-size: clamp(40px, 11vw, 56px);
        }
        .section-head__desc {
          font-size: 15px;
        }
        .service {
          padding: 48px 24px;
          min-height: 320px;
          gap: 20px;
        }
        .service__title {
          font-size: 26px;
        }
        .service__desc {
          font-size: 15px;
        }
        .service__icon {
          width: 44px;
          height: 44px;
        }

        /* GALLERY */
        .gallery {
          padding: 80px 0;
        }
        .gallery__head {
          margin-bottom: 48px;
        }
        .gallery__head,
        .gallery__index,
        .gallery__cta,
        .gallery__masonry {
          padding: 0 20px;
        }
        .gallery__index {
          font-size: 9px;
          letter-spacing: 0.3em;
          flex-direction: column;
          gap: 4px;
          align-items: flex-start;
        }
        .frame {
          margin-bottom: 12px;
        }
        .frame__title {
          font-size: 20px;
        }
        .frame__meta {
          font-size: 9px;
        }
        .gallery__cta {
          margin-top: 56px;
        }

        /* TESTIMONIAL */
        .testimonial {
          padding: 80px 20px;
        }
        .testimonial__quote-mark {
          font-size: 120px;
          margin-bottom: 20px;
        }
        .testimonial__text {
          font-size: 22px;
          line-height: 1.35;
          margin-bottom: 32px;
        }
        .testimonial__author {
          font-size: 10px;
          letter-spacing: 0.3em;
        }
        .testimonial__author strong {
          font-size: 16px;
        }
        .testimonial__nav {
          gap: 16px;
          margin-top: 48px;
        }
        .testimonial__arrow {
          width: 42px;
          height: 42px;
          font-size: 18px;
        }
        .testimonial__dot {
          width: 24px;
        }
        .testimonial__dot.is-active {
          width: 42px;
        }

        /* CONTACT : boutons empilés et largeur contenue (mais pas full-width
           pour préserver la respiration). Le wrap natif de flex s'occupe du reste. */
        .contact {
          padding: 80px 20px;
        }
        .contact__title {
          font-size: clamp(40px, 12vw, 64px);
          margin-bottom: 32px;
        }
        .contact__text {
          font-size: 15px;
          margin-bottom: 40px;
        }
        .contact__actions {
          flex-direction: column;
          gap: 16px;
          align-items: stretch;
        }
        .contact__actions .btn,
        .contact__actions .btn-phone {
          justify-content: center;
        }
        .btn {
          padding: 18px 28px;
          font-size: 11px;
        }
        .btn-phone {
          padding: 16px 24px;
          font-size: 18px;
          gap: 14px;
        }
        .btn-phone__label {
          font-size: 8px;
          margin-right: 10px;
          padding-right: 10px;
        }

        /* FOOTER */
        .footer {
          padding: 56px 20px 24px;
        }
        .footer__grid {
          gap: 32px;
          margin-bottom: 32px;
        }
        .footer__brand {
          font-size: 28px;
        }
        .footer__tag {
          font-size: 12px;
        }
        .footer__bottom {
          font-size: 10px;
          letter-spacing: 0.15em;
        }
      }

      /* ---------- TRÈS PETIT MOBILE ≤380px ---------- */
      @media (max-width: 380px) {
        .nav__brand {
          font-size: 14px;
        }
        .nav__brand-mark {
          font-size: 12px;
        }
        .hero__title {
          font-size: clamp(36px, 13vw, 48px);
        }
        .about__title,
        .section-head__title {
          font-size: clamp(34px, 11vw, 44px);
        }
        .stat__num {
          font-size: 44px;
        }
        .testimonial__text {
          font-size: 19px;
        }
        .contact__title {
          font-size: clamp(34px, 12vw, 48px);
        }
      }