/** Shopify CDN: Minification failed

Line 26:11 Unexpected "{"
Line 26:20 Expected ":"
Line 27:11 Unexpected "{"
Line 27:20 Expected ":"
Line 28:11 Unexpected "{"
Line 28:20 Expected ":"
Line 29:11 Unexpected "{"
Line 29:20 Expected ":"
Line 30:11 Unexpected "{"
Line 30:20 Expected ":"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:ld-home-editorial (INDEX:28) */
/* =========================================================
     LD HOME — Editorial theme for Loïc DAVID (Shopify Dawn)
     ========================================================= */

  /* VERROU D'INTENSITÉ — titres sur fond variable (hors hero/cta) */
  #LdHome-{{ section.id }} h2,
  #LdHome-{{ section.id }} h3,
  #LdHome-{{ section.id }} .ld-h2,
  #LdHome-{{ section.id }} .ld-h3,
  #LdHome-{{ section.id }} .ld-quote__text {
    color: var(--ld-ink) !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  /* Hero et CTA banner : spécificité maximale pour écraser Dawn */
  #LdHome-{{ section.id }} .ld-hero .ld-hero__inner h1.ld-hero__title,
  #LdHome-{{ section.id }} .ld-cta .ld-cta__inner h2.ld-cta__title {
    color: #f7f4ee !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  /* --- Thème sombre (défaut) -------------------------------- */
  .ld-home {
    --ld-ink: #f7f4ee;
    --ld-paper: #0b0b0b;
    --ld-cream: #141413;
    --ld-muted: rgba(247, 244, 238, 0.65);
    --ld-line: rgba(247, 244, 238, 0.18);
    --ld-accent: #a8835a;
    --ld-serif: var(--font-heading-family, 'Cormorant Garamond', 'EB Garamond', Georgia, serif);
    --ld-sans: var(--font-body-family, 'Inter', 'Helvetica Neue', Arial, sans-serif);

    color: var(--ld-ink);
    background: var(--ld-paper);
    font-family: var(--ld-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* --- Thème clair (optionnel) ------------------------------ */
  .ld-home.ld-home--light {
    --ld-ink: #0b0b0b;
    --ld-paper: #f7f4ee;
    --ld-cream: #efe8dc;
    --ld-muted: rgba(11, 11, 11, 0.62);
    --ld-line: rgba(11, 11, 11, 0.15);
  }

  /* --- Page container --------------------------------------- */
  .ld-page {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
  }
  .ld-page--narrow {
    max-width: 880px;
  }

  /* --- Typography primitives -------------------------------- */
  .ld-eyebrow {
    font-family: var(--ld-sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin: 0 0 18px;
    font-weight: 500;
  }
  .ld-eyebrow--light { color: rgba(255, 255, 255, 0.82); }
  .ld-eyebrow--xs { font-size: 11px; margin-bottom: 10px; }

  .ld-h2 {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(34px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
  }
  .ld-h3 {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin: 0 0 20px;
  }
  .ld-rte {
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.7;
    color: var(--ld-ink);
  }
  .ld-rte p { margin: 0 0 1.1em; }
  .ld-rte p:last-child { margin-bottom: 0; }
  .ld-rte strong { font-weight: 600; }

  /* --- Buttons & links -------------------------------------- */
  .ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    min-height: 52px;
    font-family: var(--ld-sans);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 0;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
  }
  .ld-btn--primary {
    background: #fff;
    color: #0b0b0b;
    border-color: #fff;
  }
  .ld-btn--primary:hover { transform: translateY(-1px); background: #0b0b0b; color: #fff; border-color: #0b0b0b; }
  .ld-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
  }
  .ld-btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

  .ld-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ld-sans);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ld-ink);
    border-bottom: 1px solid var(--ld-ink);
    padding-bottom: 3px;
    transition: gap 0.25s ease, opacity 0.25s ease;
    font-weight: 500;
  }
  .ld-link:hover { gap: 16px; }
  .ld-link--sm { font-size: 12px; }

  /* --- HERO -------------------------------------------------- */
  .ld-hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    background: #0b0b0b;
  }
  .ld-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .ld-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ld-hero__veil {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%);
  }
  .ld-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 64px) clamp(60px, 10vh, 100px);
  }
  .ld-hero__title {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(44px, 7vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    max-width: 18ch;
  }
  .ld-hero__subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.55;
    max-width: 52ch;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.88);
  }
  .ld-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
  }
  .ld-hero__scroll {
    position: absolute;
    bottom: 32px;
    right: clamp(20px, 5vw, 64px);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .ld-hero__scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
  }
  .ld-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(-100%);
    animation: ld-scroll 2.4s ease-in-out infinite;
  }
  @keyframes ld-scroll {
    0%   { transform: translateY(-100%); }
    50%  { transform: translateY(0); }
    100% { transform: translateY(100%); }
  }

  /* --- MANIFESTO -------------------------------------------- */
  .ld-manifesto {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--ld-cream);
  }
  .ld-manifesto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
  }
  @media (min-width: 900px) {
    .ld-manifesto__grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
  }
  .ld-manifesto__media {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ld-paper);
  }
  .ld-manifesto__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }
  .ld-manifesto:hover .ld-manifesto__media img { transform: scale(1.02); }
  .ld-manifesto__body { max-width: 56ch; }
  .ld-signature {
    font-family: var(--ld-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ld-muted);
    margin: -14px 0 24px;
  }
  .ld-manifesto .ld-link { margin-top: 28px; }

  /* --- PULL QUOTE ------------------------------------------- */
  .ld-quote {
    padding: clamp(80px, 12vw, 160px) 0;
    text-align: center;
    background: var(--ld-paper);
  }
  .ld-quote__text {
    font-family: var(--ld-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .ld-quote__attribution {
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ld-muted);
  }

  /* --- WORLDS / COLLECTIONS --------------------------------- */
  .ld-worlds {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--ld-cream);
  }
  .ld-section-head {
    margin-bottom: clamp(40px, 6vw, 80px);
    max-width: 72ch;
  }
  .ld-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .ld-section-head__intro {
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.65;
    color: var(--ld-muted);
    margin: 0;
    max-width: 56ch;
  }
  .ld-section-head--center .ld-section-head__intro { margin-left: auto; margin-right: auto; }

  .ld-worlds__grid {
    display: grid;
    gap: clamp(28px, 3vw, 40px);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px)  { .ld-worlds__grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1080px) { .ld-worlds__grid { grid-template-columns: repeat(3, 1fr); } }

  .ld-world {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ld-paper);
    transition: transform 0.4s ease;
  }
  .ld-world:hover { transform: translateY(-4px); }
  .ld-world__media {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ld-cream);
  }
  .ld-world__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }
  .ld-world:hover .ld-world__media img { transform: scale(1.04); }
  .ld-world__body {
    padding: 28px 24px 32px;
  }
  .ld-world__title {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    margin: 0 0 12px;
  }
  .ld-world__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ld-muted);
    margin: 0 0 20px;
  }

  /* --- TECHNIQUE -------------------------------------------- */
  .ld-technique {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--ld-paper);
    border-top: 1px solid var(--ld-line);
    border-bottom: 1px solid var(--ld-line);
  }
  .ld-technique__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--ld-line);
    border: 1px solid var(--ld-line);
  }
  @media (min-width: 720px)  { .ld-technique__grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1080px) { .ld-technique__grid { grid-template-columns: repeat(4, 1fr); } }

  .ld-step {
    background: var(--ld-paper);
    padding: clamp(32px, 3vw, 48px) clamp(24px, 2.5vw, 36px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  .ld-step__num {
    font-family: var(--ld-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 3.2vw, 52px);
    color: var(--ld-accent);
    line-height: 1;
    margin-bottom: 28px;
    display: block;
  }
  .ld-step__title {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.2;
    margin: 0 0 14px;
  }
  .ld-step__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ld-muted);
    margin: 0;
  }

  /* --- PRESS BAR -------------------------------------------- */
  .ld-pressbar {
    padding: clamp(44px, 6vw, 80px) 0;
    background: var(--ld-paper);
    border-top: 1px solid var(--ld-line);
    border-bottom: 1px solid var(--ld-line);
  }
  .ld-pressbar__eyebrow {
    text-align: center;
    font-family: var(--ld-sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin: 0 0 28px;
    font-weight: 500;
  }
  .ld-pressbar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 6vw, 80px);
  }
  .ld-pressbar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
  }
  .ld-pressbar__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .ld-pressbar__item img {
    max-height: 38px;
    max-width: 180px;
    width: auto;
    height: auto;
    display: block;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  }
  .ld-pressbar__item a:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-1px);
  }
  .ld-pressbar__name {
    font-family: var(--ld-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 26px);
    color: var(--ld-muted);
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .ld-pressbar__item a:hover .ld-pressbar__name {
    color: var(--ld-ink);
  }

  /* --- PRESS ------------------------------------------------- */
  .ld-press {
    padding: clamp(80px, 12vw, 160px) 0;
    text-align: center;
    background: var(--ld-cream);
  }
  .ld-press__logo {
    margin: 0 auto 32px;
    max-width: 220px;
  }
  .ld-press__logo img { width: 100%; height: auto; display: block; }
  .ld-press__publication {
    font-family: var(--ld-serif);
    font-style: italic;
    font-size: 22px;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
    color: var(--ld-muted);
  }
  .ld-press__quote {
    font-family: var(--ld-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.32;
    margin: 0 0 32px;
    letter-spacing: -0.005em;
  }

  /* --- COMMITMENTS ------------------------------------------ */
  .ld-commitments {
    padding: clamp(70px, 10vw, 120px) 0;
    background: var(--ld-paper);
  }
  .ld-commitments__title {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
  }
  .ld-commitments__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 56px);
  }
  @media (min-width: 800px) { .ld-commitments__grid { grid-template-columns: repeat(3, 1fr); } }

  .ld-commit {
    text-align: center;
    padding: 0 16px;
  }
  .ld-commit__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--ld-accent);
    border-radius: 50%;
    margin-bottom: 24px;
  }
  .ld-commit__title {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 12px;
  }
  .ld-commit__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ld-muted);
    margin: 0;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- CTA BANNER ------------------------------------------- */
  .ld-cta {
    position: relative;
    min-height: min(70vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: #0b0b0b;
    text-align: center;
  }
  .ld-cta__media { position: absolute; inset: 0; z-index: 0; }
  .ld-cta__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ld-cta__veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.65));
  }
  .ld-cta__inner {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 64px);
    max-width: 860px;
  }
  .ld-cta__title {
    font-family: var(--ld-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(36px, 5.4vw, 72px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }
  .ld-cta__subtitle {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.88);
  }
  .ld-cta__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  /* --- Reveal animation ------------------------------------- */
  .ld-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .ld-reveal.is-visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .ld-reveal { opacity: 1; transform: none; transition: none; }
    .ld-hero__scroll-line::after { animation: none; }
  }
/* END_SECTION:ld-home-editorial */