/*
 * SIBED Theme — Main Stylesheet
 * Biscuiterie d'Excellence — Mauritanie
 * Version: 1.0.0
 */
/* ═══════════════════════════════════════════════
       DESIGN TOKENS — SIBED Biscuiterie
       Gold palette pulled directly from brand SVGs
    ═══════════════════════════════════════════════ */
    :root {
      /* Brand Gold Palette */
      --g-deep:      #ae7a17;
      --g-primary:   #dfab54;
      --g-warm:      #fbbe4b;
      --g-bright:    #fed267;
      --g-orange:    #f4982a;
      --g-light:     #f7d794;
      --g-pale:      #fbeca0;

      /* Backgrounds */
      --cream:       #fdf8f0;
      --cream-mid:   #f7eed9;
      --cream-dark:  #efe0c0;
      --dark:        #120d04;
      --dark-mid:    #1c1508;
      --dark-card:   #231a09;
      --dark-border: #2d2010;

      /* Text */
      --text-dark:   #2a1f08;
      --text-body:   #5a4520;
      --text-muted:  #9a7a40;
      --text-light:  #f5e8c8;
      --text-pale:   #c8aa70;

      /* Fonts */
      --f-display:   'Cormorant Garamond', Georgia, serif;
      --f-body:      'Jost', sans-serif;

      /* Transitions */
      --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ═══ RESET ═══════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--f-body);
      font-weight: 300;
      font-size: 16px;
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
    }
    img, svg { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }

    /* ═══ SCROLLBAR ════════════════════════════════ */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--g-primary); border-radius: 2px; }

    /* ═══ NOISE LAYER ══════════════════════════════ */
    body::after {
      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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9998;
      mix-blend-mode: multiply;
    }

    /* ═══ UTILITIES ════════════════════════════════ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--f-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--g-deep);
    }
    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: var(--g-primary);
    }

    .display {
      font-family: var(--f-display);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }

    .section { padding: 110px 72px; position: relative; }
    .section--cream { background: var(--cream); }
    .section--cream-mid { background: var(--cream-mid); }
    .section--dark { background: var(--dark); }
    .section--dark-mid { background: var(--dark-mid); }

    .container { max-width: 1320px; margin: 0 auto; }

    /* ═══ REVEAL ANIMATIONS — NO JS DEPENDENCY ════
       Content is ALWAYS visible. .reveal / .reveal-left /
       .reveal-right are no-ops. .in adds a subtle entrance
       only when JS fires the IntersectionObserver.
    ════════════════════════════════════════════════ */
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
    .reveal.in       { animation: revealUp    0.75s var(--ease) both; }
    .reveal-left.in  { animation: revealLeft  0.75s var(--ease) both; }
    .reveal-right.in { animation: revealRight 0.75s var(--ease) both; }
    @keyframes revealUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
    @keyframes revealLeft  { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:none; } }
    @keyframes revealRight { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:none; } }
    .d1 { transition-delay: 0.1s !important; }
    .d2 { transition-delay: 0.2s !important; }
    .d3 { transition-delay: 0.3s !important; }
    .d4 { transition-delay: 0.45s !important; }
    .d5 { transition-delay: 0.6s !important; }

    /* ═══════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 72px;
      background: rgba(253, 248, 240, 0.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--cream-dark);
      transition: all 0.4s var(--ease);
    }
    #nav.solid {
      background: rgba(253, 248, 240, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 12px rgba(174,122,23,0.10);
      padding: 12px 72px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 0;
    }
    .nav-logo img, .nav-logo object {
      height: 52px;
      width: auto;
    }
    .nav-logo-svg {
      height: 52px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
    }
    #nav.solid .nav-logo-svg { height: 40px; }

    .nav-menu {
      display: flex; align-items: center; gap: 44px;
    }
    .nav-menu a {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-body);
      position: relative;
      transition: color 0.3s;
    }
    .nav-menu a::after {
      content: '';
      position: absolute; bottom: -5px; left: 0; right: 0;
      height: 1px; background: var(--g-primary);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s var(--ease);
    }
    .nav-menu a:hover { color: var(--g-deep); }
    .nav-menu a:hover::after { transform: scaleX(1); }

    .nav-btn {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dark);
      background: var(--g-primary);
      padding: 11px 28px;
      transition: all 0.3s var(--ease);
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .nav-btn:hover {
      background: var(--g-warm);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(223,171,84,0.3);
    }

    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      background: var(--dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    /* ── Video background ── */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      pointer-events: none;
    }

    /* Dark overlay so text is readable */
    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(12, 9, 3, 0.82) 0%,
        rgba(12, 9, 3, 0.65) 45%,
        rgba(12, 9, 3, 0.3) 100%
      );
      z-index: 1;
      pointer-events: none;
    }

    /* Warm gold vignette at bottom */
    .hero-video-overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(12,9,3,0.7), transparent);
    }

    .hero-left {
      padding: 140px 64px 100px 72px;
      position: relative;
      z-index: 2;
    }

    /* On video bg, force light text */
    #hero .hero-title { color: var(--text-light) !important; }
    #hero .hero-subtitle { color: rgba(240, 220, 180, 0.8) !important; }
    #hero .eyebrow { color: var(--g-primary) !important; }

    .hero-eyebrow {
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease) forwards 0.3s;
    }

    .hero-title {
      font-size: clamp(3.2rem, 5.5vw, 5.8rem);
      color: var(--text-dark);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease) forwards 0.5s;
    }
    .hero-title em {
      font-style: italic;
      color: var(--g-deep);
    }

    .hero-subtitle {
      font-size: 0.88rem;
      line-height: 1.95;
      color: var(--text-body);
      max-width: 420px;
      margin-bottom: 52px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease) forwards 0.7s;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 24px;
      opacity: 0;
      animation: fadeUp 0.9s var(--ease) forwards 0.9s;
    }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 14px;
      font-family: var(--f-body);
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--dark);
      background: linear-gradient(135deg, var(--g-primary) 0%, var(--g-warm) 60%, var(--g-deep) 100%);
      padding: 16px 38px;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all 0.35s var(--ease);
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, var(--g-warm) 0%, var(--g-bright) 60%, var(--g-primary) 100%);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(223,171,84,0.35);
    }
    .btn-arrow {
      width: 28px; height: 1px;
      background: currentColor;
      position: relative; flex-shrink: 0;
    }
    .btn-arrow::after {
      content: '';
      position: absolute; right: 0; top: -4px;
      width: 8px; height: 8px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: rotate(45deg);
    }

    .btn-outline-dark {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-light);
      border-bottom: 1px solid rgba(240,220,180,0.5);
      padding-bottom: 4px;
      transition: all 0.3s;
    }
    .btn-outline-dark:hover {
      color: var(--g-primary);
      border-color: var(--g-primary);
      gap: 18px;
    }

    /* ── Hero Right: Product Showcase ── */
    .hero-right {
      position: relative;
      height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      z-index: 2;
    }

    .hero-product-ring {
      position: absolute;
      width: 580px; height: 580px;
      border: 1px solid rgba(174,122,23,0.15);
      border-radius: 50%;
      animation: spin-slow 40s linear infinite;
    }
    .hero-product-ring-2 {
      width: 440px; height: 440px;
      animation-duration: 28s;
      animation-direction: reverse;
      border-color: rgba(174,122,23,0.1);
    }

    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .hero-product-main {
      position: relative; z-index: 3;
      width: 420px;
      filter: drop-shadow(0 30px 60px rgba(174,122,23,0.25));
      animation: floatImg 6s ease-in-out infinite;
      opacity: 0;
      animation: floatImg 6s ease-in-out infinite, fadeIn 1s var(--ease) forwards 0.6s;
    }

    @keyframes floatImg {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50%       { transform: translateY(-18px) rotate(1deg); }
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* Scattered small product cards */
    .hero-product-tag {
      position: absolute;
      background: white;
      border: 1px solid var(--cream-dark);
      padding: 12px 18px;
      border-radius: 2px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      z-index: 4;
      opacity: 0;
      animation: fadeIn 0.8s var(--ease) forwards;
    }
    .hero-product-tag:nth-child(1) { top: 22%; left: 4%; animation-delay: 1s; }
    .hero-product-tag:nth-child(2) { bottom: 26%; right: 4%; animation-delay: 1.2s; }

    .hpt-label {
      font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 4px;
    }
    .hpt-value {
      font-family: var(--f-display); font-size: 0.95rem; font-weight: 500;
      color: var(--text-dark);
    }
    .hpt-dot {
      display: inline-block;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--g-primary);
      margin-right: 6px; vertical-align: middle;
    }

    /* ─ Gold crumble wave divider ─ */
    .wave-divider {
      width: 100%; line-height: 0; display: block;
      overflow: hidden;
    }
    .wave-divider svg { display: block; width: 100%; }

    /* ═══════════════════════════════════════════════
       MARQUEE STRIP
    ═══════════════════════════════════════════════ */
    .marquee-strip {
      background: var(--g-primary);
      padding: 16px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex; gap: 0;
      animation: marquee 22s linear infinite;
    }
    .marquee-item {
      font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--dark);
      padding: 0 32px;
      display: flex; align-items: center; gap: 32px;
    }
    .marquee-item::after {
      content: '✦';
      font-size: 0.5rem;
      color: rgba(18,13,4,0.4);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════════════════════
       PRODUCTS SECTION
    ═══════════════════════════════════════════════ */
    #products {
      background: var(--cream);
      padding: 120px 72px;
    }

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

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

    /* Two-product layout */
    .products-grid--two {
      grid-template-columns: repeat(2, 1fr);
      max-width: 960px;
      margin: 0 auto;
    }

    .product-card--large .product-card-body {
      padding: 36px 40px 44px;
    }
    .product-card--large .product-name {
      font-size: 1.8rem;
    }

    .product-card-img--tall {
      min-height: 420px !important;
      padding: 48px 40px !important;
    }
    .product-card-img--tall img {
      max-width: 280px;
      width: 100%;
    }

    .product-card {
      background: var(--cream-mid);
      border: 1px solid var(--cream-dark);
      overflow: hidden;
      position: relative;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      cursor: pointer;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(174,122,23,0.15);
    }

    /* Featured card spans 2 rows */
    .product-card--featured {
      grid-row: span 2;
    }

    .product-card-img {
      background: linear-gradient(135deg, #f9ead0, #f2d095, #f9ead0);
      display: flex; align-items: center; justify-content: center;
      padding: 48px 32px;
      position: relative;
      overflow: hidden;
    }
    .product-card--featured .product-card-img {
      padding: 72px 48px;
      min-height: 460px;
    }

    .product-card-img::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 40%, rgba(251,190,75,0.2) 0%, transparent 60%);
    }

    .product-card-img img {
      position: relative; z-index: 1;
      width: 100%;
      max-width: 260px;
      filter: drop-shadow(0 20px 40px rgba(174,122,23,0.2));
      transition: transform 0.5s var(--ease);
    }
    .product-card--featured .product-card-img img { max-width: 320px; }
    .product-card:hover .product-card-img img { transform: scale(1.06) rotate(1deg); }

    .product-img-name {
      position: absolute;
      bottom: 16px;
      left: 0; right: 0;
      text-align: center;
      z-index: 2;
      font-family: var(--f-display);
      font-size: 1.8rem;
      font-weight: 600;
      font-style: italic;
      color: var(--g-deep);
      letter-spacing: 0.08em;
      pointer-events: none;
    }
    .product-img-name::after {
      content: '';
      display: block;
      width: 36px;
      height: 2px;
      background: var(--g-primary);
      margin: 5px auto 0;
      border-radius: 1px;
    }

    .product-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--g-primary);
      color: var(--dark);
      font-size: 0.54rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 5px 12px;
      z-index: 2;
    }

    .product-card-body {
      padding: 28px 28px 32px;
      border-top: 1px solid var(--cream-dark);
    }
    .product-card--featured .product-card-body { padding: 36px; }

    .product-cat {
      font-size: 0.58rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--g-deep); margin-bottom: 10px;
    }

    .product-name {
      font-family: var(--f-display);
      font-size: 1.45rem; font-weight: 500;
      color: var(--text-dark); margin-bottom: 10px;
    }
    .product-card--featured .product-name { font-size: 2rem; margin-bottom: 14px; }

    .product-desc {
      font-size: 0.78rem; line-height: 1.85;
      color: var(--text-body); margin-bottom: 20px;
    }

    .product-footer {
      display: flex; align-items: center; justify-content: space-between;
    }

    .product-tags {
      display: flex; gap: 8px; flex-wrap: wrap;
    }
    .product-tag-pill {
      font-size: 0.55rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--cream-dark);
      padding: 4px 10px;
    }

    .product-cta {
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--g-deep);
      display: flex; align-items: center; gap: 8px;
      transition: gap 0.3s;
    }
    .product-card:hover .product-cta { gap: 14px; }
    .product-cta-arrow {
      width: 22px; height: 1px;
      background: var(--g-primary);
      position: relative;
    }
    .product-cta-arrow::after {
      content: '';
      position: absolute; right: 0; top: -3px;
      width: 6px; height: 6px;
      border-top: 1px solid var(--g-primary);
      border-right: 1px solid var(--g-primary);
      transform: rotate(45deg);
    }

    /* ═══════════════════════════════════════════════
       STORY / ABOUT
    ═══════════════════════════════════════════════ */
    #story {
      background: var(--dark);
      padding: 130px 72px;
      overflow: hidden;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .story-visual {
      position: relative;
    }

    .story-img-wrap {
      position: relative;
    }

    .story-product-display {
      background: linear-gradient(145deg, #2a1e08, #1c1508, #2a1e08);
      aspect-ratio: 4/5;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .story-product-display::before {
      content: '';
      position: absolute; inset: 24px;
      border: 1px solid rgba(223,171,84,0.15);
      pointer-events: none;
    }
    .story-product-display::after {
      content: '';
      position: absolute;
      top: -40%; right: -40%;
      width: 80%; height: 80%;
      background: radial-gradient(circle, rgba(251,190,75,0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .story-product-display img {
      width: 80%;
      max-width: 340px;
      position: relative; z-index: 2;
      filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    }

    .story-accent-box {
      position: absolute;
      bottom: -28px; right: -28px;
      background: var(--g-primary);
      color: var(--dark);
      padding: 28px 32px;
      z-index: 3;
      min-width: 160px;
    }
    .story-accent-num {
      font-family: var(--f-display);
      font-size: 2.8rem; font-weight: 600;
      line-height: 1; display: block;
    }
    .story-accent-label {
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      display: block; margin-top: 6px;
    }

    .story-text .eyebrow { color: var(--g-light); margin-bottom: 24px; }
    .story-text .eyebrow::before { background: var(--g-primary); }

    .story-title {
      font-size: clamp(2.2rem, 3.5vw, 3.4rem);
      color: var(--text-light);
      margin-bottom: 32px;
    }
    .story-title em { font-style: italic; color: var(--g-primary); }

    .story-text p {
      font-size: 0.83rem; line-height: 2.05;
      color: var(--text-pale); margin-bottom: 22px;
    }

    .story-values {
      margin-top: 48px;
      display: flex; flex-direction: column; gap: 20px;
    }

    .story-value {
      display: flex; gap: 20px; align-items: flex-start;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--dark-border);
    }
    .story-value:last-child { border-bottom: none; padding-bottom: 0; }

    .sv-num {
      font-family: var(--f-display);
      font-size: 2rem; font-weight: 300;
      color: rgba(223,171,84,0.25);
      line-height: 1; flex-shrink: 0; width: 40px;
    }

    .sv-content h4 {
      font-family: var(--f-display);
      font-size: 1.05rem; font-weight: 500;
      color: var(--text-light); margin-bottom: 4px;
    }
    .sv-content p {
      font-size: 0.75rem; line-height: 1.7;
      color: var(--text-pale); margin: 0;
    }

    /* ═══════════════════════════════════════════════
       STATS
    ═══════════════════════════════════════════════ */
    #stats {
      background: linear-gradient(135deg, var(--g-deep) 0%, var(--g-primary) 50%, var(--g-warm) 100%);
      padding: 80px 72px;
    }

    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center; padding: 40px 24px;
      border-right: 1px solid rgba(18,13,4,0.15);
    }
    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: var(--f-display);
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 300; line-height: 1;
      color: var(--dark); display: block;
      margin-bottom: 10px;
    }
    .stat-unit { font-size: 0.6em; opacity: 0.7; }
    .stat-label {
      font-size: 0.63rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(18,13,4,0.65);
    }

    /* ═══════════════════════════════════════════════
       FULL-WIDTH PRODUCT BANNER
    ═══════════════════════════════════════════════ */
    #banner {
      background: linear-gradient(135deg, #f2d095 0%, #fbeac8 40%, #f9e0a8 100%);
      padding: 100px 72px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    #banner::before {
      content: '';
      position: absolute; bottom: -60px; right: -60px;
      width: 400px; height: 400px;
      border: 1px solid rgba(174,122,23,0.15);
      border-radius: 50%;
    }
    #banner::after {
      content: '';
      position: absolute; bottom: -120px; right: -120px;
      width: 580px; height: 580px;
      border: 1px solid rgba(174,122,23,0.08);
      border-radius: 50%;
    }

    .banner-text { position: relative; z-index: 2; }
    .banner-text .eyebrow { margin-bottom: 24px; }
    .banner-title {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--text-dark); margin-bottom: 24px;
    }
    .banner-title em { font-style: italic; color: var(--g-deep); }
    .banner-desc {
      font-size: 0.84rem; line-height: 2;
      color: var(--text-body); margin-bottom: 44px;
      max-width: 420px;
    }

    .banner-visual {
      position: relative; z-index: 2;
      display: flex; align-items: flex-end; justify-content: center;
      gap: 24px;
    }

    .banner-pack-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .banner-pack-wrap--1 {
      animation: packPulse1 4s ease-in-out infinite;
      transform-origin: bottom center;
    }
    .banner-pack-wrap--2 {
      animation: packPulse2 4s ease-in-out infinite;
      transform-origin: bottom center;
    }
    @keyframes packPulse1 {
      0%, 100% { transform: scale(1.22); }
      50%       { transform: scale(0.82); }
    }
    @keyframes packPulse2 {
      0%, 100% { transform: scale(0.82); }
      50%       { transform: scale(1.22); }
    }

    .banner-pack {
      filter: drop-shadow(0 24px 48px rgba(174,122,23,0.28));
      width: 100%;
      max-width: 220px;
    }

    .banner-pack-name {
      font-family: var(--f-display);
      font-size: 1.6rem;
      font-weight: 600;
      font-style: italic;
      color: var(--text-dark);
      letter-spacing: 0.06em;
      text-transform: capitalize;
      position: relative;
    }
    .banner-pack-name::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--g-primary);
      margin: 6px auto 0;
    }

    .banner-pack--1 {
      animation: floatPack1 7s ease-in-out infinite;
      transform-origin: bottom center;
    }
    .banner-pack--2 {
      animation: floatPack2 7s ease-in-out infinite;
      transform-origin: bottom center;
    }

    @keyframes floatPack1 {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50%       { transform: translateY(-18px) rotate(-1deg); }
    }
    @keyframes floatPack2 {
      0%, 100% { transform: translateY(-10px) rotate(2deg); }
      50%       { transform: translateY(8px) rotate(1deg); }
    }


    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    #footer {
      background: var(--dark-mid);
      border-top: 1px solid var(--dark-border);
    }

    /* Top gold bar */
    .footer-gold-bar {
      height: 4px;
      background: linear-gradient(90deg, var(--g-deep), var(--g-primary), var(--g-warm), var(--g-primary), var(--g-deep));
    }

    .footer-main {
      padding: 80px 72px 60px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      border-bottom: 1px solid var(--dark-border);
    }

    .footer-brand img { height: auto; width: 200px; max-width: 100%; margin-bottom: 24px; filter: brightness(1.1); }

    .footer-brand p {
      font-size: 0.77rem; line-height: 1.95;
      color: var(--text-pale); max-width: 260px;
      margin-bottom: 32px;
    }

    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--dark-border);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s var(--ease);
    }
    .social-btn svg { width: 13px; height: 13px; fill: var(--text-pale); transition: fill 0.3s; }
    .social-btn:hover { border-color: var(--g-primary); background: var(--g-primary); }
    .social-btn:hover svg { fill: var(--dark); }

    .footer-col h5 {
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--g-primary); margin-bottom: 28px;
    }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a {
      font-size: 0.78rem; color: var(--text-pale);
      display: flex; align-items: center; gap: 0;
      transition: color 0.3s, gap 0.3s;
    }
    .footer-col a::before {
      content: '';
      width: 0; height: 1px;
      background: var(--g-primary);
      transition: width 0.3s;
      margin-right: 0;
      flex-shrink: 0;
    }
    .footer-col a:hover { color: var(--g-primary); gap: 8px; }
    .footer-col a:hover::before { width: 14px; margin-right: 0; }

    .footer-bottom {
      padding: 24px 72px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-copy {
      font-size: 0.64rem; color: var(--text-muted);
      letter-spacing: 0.08em;
    }
    .footer-copy span { color: var(--g-primary); }
    .footer-links {
      display: flex; gap: 28px;
    }
    .footer-links a {
      font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted); transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--g-primary); }

    /* ═══════════════════════════════════════════════
       MOBILE NAV
    ═══════════════════════════════════════════════ */
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
    }
    .hamburger span {
      display: block; width: 26px; height: 1.5px;
      background: var(--g-deep); transition: all 0.3s;
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .section { padding: 90px 40px; }
      #products, #story, #quality, #stats, #range, #banner, #testimonials{ padding-left: 40px; padding-right: 40px; }
      #footer .footer-main, #footer .footer-bottom { padding-left: 40px; padding-right: 40px; }
      #nav, #nav.solid { padding-left: 40px; padding-right: 40px; }
      .hero-left { padding: 140px 40px 80px 40px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .product-card--featured { grid-row: span 1; }
      .quality-grid { grid-template-columns: repeat(2, 1fr); }
      .quality-item:nth-child(2) { border-right: none; }
      .quality-item:nth-child(3) { border-top: 1px solid var(--cream-dark); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid rgba(18,13,4,0.15); }
      .range-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      #nav .nav-menu, #nav .nav-btn { display: none; }
      .hamburger { display: flex; }
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { display: none; }
      .hero-left { padding: 120px 30px 80px; }
      .story-grid, .contact-grid, #banner { grid-template-columns: 1fr; gap: 48px; }
      .banner-visual { order: -1; }
      .products-grid, .range-grid, .test-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; padding: 60px 30px 40px; }
      .footer-bottom { flex-direction: column; gap: 16px; padding: 20px 30px; }
      .contact-form { padding: 32px 24px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: span 1; }
    }

    /* ═══════════════════════════════════════════════
       LISTE D'AUTRES PRODUITS
    ═══════════════════════════════════════════════ */
    #other-products {
      background: var(--cream-mid);
      padding: 110px 72px;
    }
    .other-products-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .other-products-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--text-dark);
      margin-top: 16px;
      margin-bottom: 18px;
    }
    .other-products-header p {
      font-size: 0.85rem;
      line-height: 1.9;
      color: var(--text-body);
      max-width: 560px;
      margin: 0 auto;
    }
    .other-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1320px;
      margin: 0 auto;
    }
    .other-card {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      overflow: hidden;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      cursor: pointer;
    }
    .other-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(174,122,23,0.12);
    }
    .other-card-img {
      aspect-ratio: 1;
      overflow: hidden;
      background: linear-gradient(145deg, var(--cream), var(--cream-mid));
      display: flex; align-items: center; justify-content: center;
    }
    .other-card-img img {
      width: 70%;
      object-fit: contain;
      transition: transform 0.5s var(--ease);
    }
    .other-card:hover .other-card-img img { transform: scale(1.08); }
    .other-card-body {
      padding: 20px 22px 24px;
      border-top: 1px solid var(--cream-dark);
    }
    .other-card-tag {
      font-size: 0.54rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--g-deep); margin-bottom: 6px;
    }
    .other-card-name {
      font-family: var(--f-display);
      font-size: 1.2rem; font-weight: 500;
      color: var(--text-dark); margin-bottom: 6px;
    }
    .other-card-desc {
      font-size: 0.74rem; line-height: 1.75;
      color: var(--text-body);
    }

    /* ═══════════════════════════════════════════════
       PRÉSENTATION DE LA SOCIÉTÉ
    ═══════════════════════════════════════════════ */
    #about {
      background: var(--cream);
      padding: 120px 72px;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      max-width: 1320px;
      margin: 0 auto;
    }
    .about-text h2 {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      line-height: 1.1;
      color: var(--text-dark);
      margin-top: 18px; margin-bottom: 28px;
    }
    .about-text h2 em { font-style: italic; color: var(--g-deep); }
    .about-text > p {
      font-size: 0.84rem; line-height: 1.95;
      color: var(--text-body); margin-bottom: 18px;
    }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; margin-top: 52px;
      background: var(--cream-dark);
    }
    .about-stat {
      background: var(--cream);
      padding: 26px 28px;
      display: flex; flex-direction: column; gap: 5px;
    }
    .about-stat-num {
      font-family: var(--f-display);
      font-size: 2.4rem; font-weight: 400;
      color: var(--g-deep); line-height: 1;
    }
    .about-stat-label {
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted);
    }
    .about-stat-desc {
      font-size: 0.73rem; color: var(--text-body); line-height: 1.6;
    }
    .about-visual { position: relative; }
    .about-visual-main {
      background: linear-gradient(145deg, var(--cream-mid), var(--cream));
      border: 1px solid var(--cream-dark);
      padding: 60px;
      display: flex; align-items: center; justify-content: center;
      aspect-ratio: 4/5;
      position: relative; overflow: hidden;
    }
    .about-visual-main::before {
      content: ''; position: absolute; inset: 20px;
      border: 1px solid var(--cream-dark); pointer-events: none;
    }
    .about-visual-main::after {
      content: '';
      position: absolute; top: -30%; right: -30%;
      width: 70%; height: 70%;
      background: radial-gradient(circle, rgba(223,171,84,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .about-visual-main img {
      width: 70%; max-width: 280px;
      filter: drop-shadow(0 20px 50px rgba(174,122,23,0.18));
      position: relative; z-index: 2;
    }
    .about-float-tag {
      position: absolute;
      bottom: -20px; left: -20px;
      background: var(--g-primary);
      color: var(--dark);
      padding: 22px 28px; z-index: 3;
      font-family: var(--f-display);
    }
    .about-float-tag strong { display: block; font-size: 2rem; font-weight: 600; line-height: 1; }
    .about-float-tag span { font-size: 0.66rem; font-weight: 400; letter-spacing: 0.08em; color: rgba(18,13,4,0.7); }
    .about-pillars { margin-top: 48px; display: flex; flex-direction: column; }
    .about-pillar {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 22px 0;
      border-bottom: 1px solid var(--cream-dark);
    }
    .about-pillar:last-child { border-bottom: none; }
    .about-pillar-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--g-primary), var(--g-deep));
      display: flex; align-items: center; justify-content: center;
    }
    .about-pillar-icon svg { width: 18px; height: 18px; stroke: var(--dark); stroke-width: 2; fill: none; }
    .about-pillar-text h4 {
      font-family: var(--f-display);
      font-size: 1rem; font-weight: 500;
      color: var(--text-dark); margin-bottom: 4px;
    }
    .about-pillar-text p { font-size: 0.76rem; line-height: 1.75; color: var(--text-body); margin: 0; }
/* ═══════════════════════════════════════════════
   MOBILE NAV OPEN STATE (WordPress theme addition)
═══════════════════════════════════════════════ */
.nav-menu--open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,248,240,0.98);
  backdrop-filter: blur(20px);
  z-index: 800;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-menu--open a {
  font-size: 1.2rem !important;
  letter-spacing: 0.1em;
}

/* WordPress post navigation */
.post-navigation, .posts-navigation { margin: 40px 0; }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--g-deep); border-bottom: 1px solid var(--g-primary);
  padding-bottom: 3px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-dark); }

/* Custom logo sizing */
.custom-logo-link img { height: 52px; width: auto; max-width: 200px; }
#nav.solid .custom-logo-link img { height: 40px; }

/* WP alignment helpers */
.alignleft  { float: left;  margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }

    /* REVEAL — always visible, no JS dependency */
    .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }

    /* Contact bar in about section */
    .about-contact-bar { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
    .about-contact-item { display: inline-flex; align-items: center; gap: 10px; color: var(--text-dark); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 12px 20px; background: var(--cream-mid); border: 1px solid var(--cream-dark); transition: all 0.3s var(--ease); }
    .about-contact-item:hover { background: var(--g-primary); color: var(--dark); }
    .about-contact-item svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

    /* Footer contact info */
    .footer-contact-info { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
    .footer-contact-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
    .footer-contact-link:hover { color: var(--g-primary); }
    .footer-contact-link svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ═══ LANGUAGE SWITCHER ══════════════════════════ */
.lang-switcher {
  position: relative;
  margin-left: 16px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--g-primary);
  color: var(--text-dark);
  padding: 7px 14px;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.lang-btn svg { stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s; }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-btn:hover { background: var(--g-primary); color: var(--dark); border-color: var(--g-primary); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 80px;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  overflow: hidden;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.lang-dropdown.open { display: flex; flex-direction: column; }
.lang-dropdown a {
  padding: 11px 18px;
  color: rgba(255,255,255,0.65);
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid var(--dark-border);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { color: var(--g-primary); background: rgba(255,255,255,0.04); padding-left: 24px; }
.lang-dropdown a.current-lang { color: var(--g-primary); }

/* Mobile */
@media (max-width: 768px) {
  .lang-switcher { margin-left: 8px; }
}

/* ═══════════════════════════════════════════════
   GAMME COMPLÈTE — Mobile Fix
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  #other-products {
    padding: 72px 20px;
  }

  .other-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Horizontal card: image left, text right */
  .other-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
  }

  .other-card-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 130px;
  }

  .other-card-body {
    padding: 20px 20px 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: none;
    border-left: 1px solid var(--cream-dark);
  }

  .other-card-tag {
    font-size: 0.6rem;
    margin-bottom: 6px;
  }

  .other-card-name {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .other-card-desc {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-body);
  }
}

@media (max-width: 480px) {
  #other-products {
    padding: 60px 16px;
  }

  .other-card {
    grid-template-columns: 100px 1fr;
  }

  .other-card-img {
    min-height: 110px;
  }

  .other-card-body {
    padding: 16px 16px 16px 14px;
  }

  .other-card-name {
    font-size: 1.05rem;
  }

  .other-card-desc {
    font-size: 0.75rem;
  }
}
