body {
  outline: 8px solid red !important;
}
    :root {
      --bg: #0b0b0b;
      --bg-soft: #121212;
      --text: #f3eee7;
      --muted: #b7afa5;
      --line: rgba(243, 238, 231, 0.12);
      --accent: #d8c2a3;
      --max: 1240px;
      --narrow: 860px;
      --gap: clamp(1rem, 2vw, 2rem);
      --section-pad: clamp(4rem, 10vw, 9rem);
      --radius: 20px;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }
        .theme-through-flesh {
      --accent: #e7e0d7;
      --button-primary-bg: #f3eee7;
      --button-primary-text: #111111;
    }
    .theme-dust-line {
      --accent: #8c6743;
      --button-primary-bg: #3a2f24;
      --button-primary-text: #f3eee7;
    }
    .theme-campfire-vein {
      --accent: #a14f24;
      --button-primary-bg: #4a2312;
      --button-primary-text: #f3eee7;
    }
   

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .narrow {
      width: min(calc(100% - 2rem), var(--narrow));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      background: linear-gradient(to bottom, rgba(0,0,0,0.62), rgba(0,0,0,0));
      transition: background 0.25s ease, backdrop-filter 0.25s ease;
    }

    .site-header.scrolled {
      background: rgba(8, 8, 8, 0.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.82rem;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.04);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: var(--text);
    }

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-heading p {
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.05rem;
}
.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.quote {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.12;
  max-width: 16ch;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  display: grid;
  gap: 0.75rem;
}

.process-index {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card p {
  color: var(--muted);
}

    .products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.15)), url('../images/product-placeholder.jpg') center center / cover no-repeat;
  box-shadow: var(--shadow);
}

@media (min-width: 981px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card {
    min-height: 540px;
  }
}

    .product-card:nth-child(2) {
      background-image: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.15)), url('../images/product-placeholder-2.jpg');
    }

    .product-card:nth-child(3) {
      background-image: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.15)), url('../images/product-placeholder-3.jpg');
    }

    .product-content {
      width: 100%;
      padding: 1.3rem;
      display: grid;
      gap: 0.6rem;
    }

    .product-content h3 {
      font-size: 1.35rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .product-content p {
      color: var(--muted);
      max-width: 26ch;
    }
    .small-note {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.85rem 1.2rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      background: transparent;
      color: var(--text);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      font-size: 0.94rem;
      letter-spacing: 0.04em;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.28);
    }
/*.button.primary {
  background: var(--button-primary-bg, var(--text));
  color: var(--button-primary-text, #111);
  border-color: var(--button-primary-bg, var(--text));
}
*/
.button.primary {
  background: rgba(90, 70, 50, 0.85);
  border-color: rgba(90, 70, 50, 0.85);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
/*
    .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
*/

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 45%);
      z-index: -1;
    }

/*.hero-content {
  width: 100%;
  margin-right: auto;
} 
*/
.hero-content {
  padding: 10rem 1.2rem 5rem;
}

.page-home .hero-content {
  max-width: 760px;
  padding: 8.5rem 1.2rem 4rem;
}

.page-product .hero-content {
  max-width: 700px;
  padding: 8.5rem 1.2rem 4rem;
}

.page-home .hero {
  --hero-position: 62% center;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 8%, rgba(0,0,0,0.44) 50%, rgba(0,0,0,0.28) 100%),
    url('../images/hero-background.jpg') var(--hero-position) / cover no-repeat;
}
/*
.page-product .hero {
  background:
    linear-gradient(to top, rgba(0,0,0,0.92) 8%, rgba(0,0,0,0.52) 54%, rgba(0,0,0,0.22) 100%),
    url('../images/trouve.jpg') center center / cover no-repeat;
}
*/

    .eyebrow {
      display: inline-block;
      margin-bottom: 1rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.72rem;
    }

  h1, h2, h3, p {
  margin: 0;
}

h1 {
  line-height: 0.94;
  text-transform: uppercase;
}
.page-home h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 9vw, 8rem);
  letter-spacing: 0.03em;
}

.page-product h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.4rem);
  letter-spacing: 0.05em;
}

    .hero-subtitle {
      margin-top: 1rem;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 1.8rem;
    }

    .section {
      padding: var(--section-pad) 0;
    }

    .section + .section {
      border-top: 1px solid var(--line);
    }

    .statement {
      display: grid;
      gap: 1.5rem;
    }

    .statement h2 {
      font-size: clamp(1.8rem, 4vw, 3.1rem);
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      max-width: 12ch;
    }

    .statement p {
      color: var(--muted);
      font-size: clamp(1.05rem, 1.5vw, 1.18rem);
      max-width: 28rem;
    }
    .section-statement {
      margin-top: 6rem;
      margin-left: 8%;
      max-width: 480px;
    }

    .split {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .panel-copy {
      padding: clamp(1.5rem, 3vw, 2.5rem);
      display: grid;
      gap: 1rem;
      min-height: 100%;
      align-content: center;
    }

    .panel-copy p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 24rem;
    }

    .panel-copy .emphasis {
      color: var(--text);
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      line-height: 1.08;
      max-width: 12ch;
    }

    .panel-image {
  min-height: 420px;
  background: linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)), url('../images/story-placeholder.jpg') center center / cover no-repeat;
}

    .full-image {
      min-height: 86vh;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background:
        linear-gradient(to top, rgba(0,0,0,0.24), rgba(0,0,0,0.06)),
        url('../images/through-flesh-detail-2.jpg') center center / cover no-repeat;
    }

    .gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

    .gallery-card {
      min-height: 560px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .gallery-card:first-child {
      background-image:
        linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.06)),
        url('../images/through-flesh-detail-3.jpg');
    }

    .gallery-card:last-child {
      background-image:
        linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.06)),
        url('../images/through-flesh-detail-4.jpg');
    }

    .micro-copy {
      margin-top: 1.2rem;
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: 0.03em;
    }

    .ending {
      text-align: center;
      display: grid;
      gap: 1.2rem;
      justify-items: center;
    }

    .ending .quote {
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .cta-box {
      padding: clamp(2rem, 6vw, 4rem);
      border-radius: calc(var(--radius) + 8px);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        url('../images/cta-background.jpg') center center / cover no-repeat;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .cta-box p {
      margin: 1rem auto 0;
      max-width: 32rem;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 1.8rem;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      padding: 1.4rem 0 2rem;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

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

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
      
      @media (min-width: 981px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-card {
    min-height: 540px;
  }
}

    
@media (max-width: 980px) {
  .hero {
    background-position: center center;
  }

  .story-grid,
  .products-grid,
  .process-grid,
  .split,
  .gallery {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 420px;
  }

  .panel-image,
  .gallery-card {
    min-height: 440px;
  }

  .nav {
    display: none;
  }
}

    @media (max-width: 640px) {
      .header-inner {
        padding: 0.85rem 0;
      }

      .brand span {
        letter-spacing: 0.14em;
        font-size: 0.72rem;
      }

      .hero-content {
        padding: 7.5rem 1.4rem 3.5rem;
      }

      h1 {
        font-size: clamp(2.5rem, 12vw, 4.1rem);
      }

      .full-image {
        min-height: 66vh;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal,
      .button,
      .site-header {
        transition: none;
      }
      /* HERO BASE (commun) */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

/* HERO HOME */
.page-home .hero {
  background:
    linear-gradient(to top, rgba(0,0,0,0.65) 10%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.2) 100%),
    url('../images/hero-background.jpg') center center / cover no-repeat;
}

/* HERO THROUGH FLESH */


.theme-through-flesh .hero {
  background:
    linear-gradient(to top, rgba(0,0,0,0.75) 10%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%),
    url('../images/trouve.png') center center / cover no-repeat;
}
   body.theme-through-flesh .hero {
  background:
    linear-gradient(to top, rgba(0,0,0,0.75) 10%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%),
    url('../images/trouve.png') center center / cover no-repeat !important;
}
/* HERO THROUGH DUST LINE */
        body.theme-dust-line .hero {
          background:
            linear-gradient(
              to top,
              rgba(0,0,0,0.92) 8%,
              rgba(0,0,0,0.65) 45%,
              rgba(0,0,0,0.85) 100%
            ),
            url('../images/dust_line.png') center center / cover no-repeat;
            }
            .theme-dust-line .hero {
      background:
        linear-gradient(
          to top,
          rgba(0,0,0,0.92) 8%,
          rgba(0,0,0,0.65) 45%,
          rgba(0,0,0,0.85) 100%
        ),
        url('../images/dust_line.png') center center / cover no-repeat;
        }
        
       body.theme-campfire-vein .hero {
        background:
        linear-gradient(to top, rgba(0,0,0,0.92) 8%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.85) 100%),
            url('../images/campfire_vein_landscape.png') center center / cover no-repeat;
            }
            .theme-campfire-vein .hero {
      background:
        linear-gradient(
          to top,
          rgba(0,0,0,0.92) 8%,
          rgba(0,0,0,0.65) 45%,
          rgba(0,0,0,0.85) 100%
        ),
        url('../images/campfire_vein_landscape.png') center center / cover no-repeat;
        }
        .page-product .hero-content {
  width: min(calc(100% - 2rem), var(--max));
  max-width: 700px;
  margin: 0 auto 0 auto;
  padding: 8.5rem 1.2rem 4rem;
}

@media (max-width: 640px) {
  .page-product .hero-content {
    padding: 7.5rem 1.4rem 3.5rem;
    max-width: 100%;
  }
}
    }