/* LABC Pitch — design CSS (ported from the pitch artifact). Edit with care: this file drives the whole visual identity (colors, fonts, layout, carousel, marquee, stickers). */
@font-face{
    font-family:"LABC";
    src:url("../fonts/LABCRegular.woff2") format("woff2");
    font-weight:400; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"Homie";
    src:url("../fonts/HomieRegular.woff2") format("woff2");
    font-weight:400; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"Homie";
    src:url("../fonts/HomieSemiBold.woff2") format("woff2");
    font-weight:600; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"Homie";
    src:url("../fonts/HomieBold.woff2") format("woff2");
    font-weight:700; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"Homie";
    src:url("../fonts/HomieBlack.woff2") format("woff2");
    font-weight:900; font-style:normal; font-display:swap;
  }
  :root{
    --paper:#FAF3E3;
    --paper-dim:#F0E2C6;
    --ink:#1C1712;
    --ink-soft:#4A3F33;
    --pine-950:#0A211C;
    --pine-900:#0D2B24;
    --pine-700:#125240;
    --pine-500:#12977E;
    --odb-green:#0C6A4C;
    --orange:#EA5425;
    --orange-dim:#C8451D;
    --mustard:#E5CC19;
    --line: rgba(28,23,18,0.12);
    --line-on-pine: rgba(250,243,227,0.16);
    --shadow: 0 18px 40px rgba(10,33,28,0.16);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--paper) !important;
    color:var(--ink) !important;
    font-family:"Homie", ui-sans-serif, system-ui, sans-serif !important;
    font-weight:400;
    font-size:16px;
    line-height:1.6;
    letter-spacing:-0.02em;
    -webkit-font-smoothing:antialiased;
  }
  img{display:block;max-width:100%;}

  h1,h2,h3{
    font-family:"LABC", "Homie", sans-serif !important;
    font-weight:400;
    margin:0;
    text-wrap:balance;
    text-transform:uppercase;
    letter-spacing:-0.1em;
    line-height:0.9;
    color:var(--orange) !important;
  }

  .eyebrow{
    font-family:"Homie", sans-serif;
    font-weight:900;
    font-size:0.74rem;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--orange);
    margin:0 0 0.9rem;
  }
  .eyebrow.on-pine{ color:var(--mustard); }
  .goodies .eyebrow{ color:var(--ink); }

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 clamp(1.25rem, 4vw, 3rem);
  }

  a{color:inherit;}

  /* ---------- NAV ---------- */
  .nav{
    position:sticky; top:0; z-index:40;
    background:rgba(250,243,227,0.88);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:0.7rem; padding-bottom:0.7rem;
  }
  .nav-logo{height:34px !important; width:auto !important; max-width:none !important;}
  .nav-links{
    display:flex; align-items:center; gap:clamp(0.85rem,2vw,1.6rem);
    font-family:"Homie",sans-serif; font-weight:900; font-size:0.72rem; letter-spacing:0.03em;
    text-transform:uppercase;
    list-style:none; margin:0; padding:0;
  }
  .nav-links a{
    text-decoration:none; color:var(--ink);
    position:relative; padding:0.2rem 0;
    white-space:nowrap;
  }
  .nav-links a:hover{color:var(--orange-dim);}
  .nav-cta{
    display:inline-flex; align-items:center; gap:0.4rem;
    background:var(--orange); color:var(--paper) !important;
    padding:0.5rem 0.95rem; border-radius:999px;
    font-size:0.86rem; font-weight:600; text-decoration:none;
    white-space:nowrap;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .nav-cta:hover{background:var(--mustard); color:var(--pine-950) !important;}
  button.music-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:40px; height:40px; flex:none;
    margin-left:0.6rem;
    border-radius:50%;
    border:1.5px solid var(--line);
    background:transparent;
    color:var(--ink);
    cursor:pointer;
    padding:0;
    font-size:inherit; font-weight:inherit; text-align:center; text-transform:none;
    transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .music-toggle:hover{border-color:var(--orange); color:var(--orange);}
  .music-toggle.is-playing{background:var(--mustard); border-color:var(--mustard); color:var(--pine-950);}
  .music-toggle svg{width:17px; height:17px;}
  .music-toggle .icon-pause{display:none;}
  .music-toggle.is-playing .icon-play{display:none;}
  .music-toggle.is-playing .icon-pause{display:block;}
  @media (max-width:640px){
    .music-toggle{width:36px; height:36px; margin-left:0.45rem;}
    .music-toggle svg{width:15px; height:15px;}
  }
  button.nav-menu-toggle{
    display:none;
    flex-direction:column; justify-content:center; gap:5px;
    width:38px; height:38px; padding:0; margin-left:0.6rem;
    border:none; background:transparent; cursor:pointer; flex:none;
    font-size:inherit; font-weight:inherit; text-align:center; text-transform:none;
  }
  .nav-menu-toggle .bar{
    display:block; width:100%; height:2px; background:var(--ink);
    border-radius:2px; transition:transform 0.25s ease, opacity 0.2s ease;
  }
  .nav.is-open .nav-menu-toggle .bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav.is-open .nav-menu-toggle .bar:nth-child(2){opacity:0;}
  .nav.is-open .nav-menu-toggle .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  /* ---------- HERO ---------- */
  .hero{
    background:var(--paper);
    padding-top:clamp(2rem,5vw,3.5rem);
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap:clamp(1.5rem,4vw,3rem);
    align-items:center;
    padding-bottom:clamp(2.5rem,6vw,4rem);
  }
  .hero-copy h1{
    font-size:clamp(2.3rem, 5vw, 3.6rem);
    line-height:1.08;
  }
  .hero-copy .kicker{
    display:inline-block;
    margin:1rem 0 0;
    padding:0.3rem 0.75rem;
    background:var(--mustard);
    color:var(--pine-950);
    font-weight:700;
    font-size:0.78rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    border-radius:999px;
    transform:rotate(-2deg);
  }
  .hero-copy p{
    max-width:46ch;
    font-size:1.08rem;
    color:var(--ink-soft);
    margin:1.1rem 0 1.7rem;
  }
  .chip-row{
    display:flex; flex-wrap:wrap; gap:0.6rem;
    margin-bottom:1.8rem;
  }
  .chip{
    display:inline-flex; align-items:center; gap:0.4rem;
    border:1px solid var(--line);
    background:var(--paper-dim);
    padding:0.45rem 0.85rem;
    border-radius:999px;
    font-size:0.85rem;
    font-weight:600;
    color:var(--ink-soft);
  }
  .chip svg{width:14px;height:14px;flex:none;}
  a.chip{text-decoration:none; transition:border-color 0.2s ease, color 0.2s ease;}
  a.chip:hover{border-color:var(--orange); color:var(--orange);}
  .btn-row{display:flex; flex-wrap:wrap; gap:0.8rem; align-items:center;}
  .btn-primary{
    display:inline-flex; align-items:center; gap:0.5rem;
    background:var(--orange); color:var(--paper);
    padding:0.85rem 1.5rem; border-radius:999px;
    text-decoration:none; font-weight:600; font-size:0.98rem;
    box-shadow:var(--shadow);
  }
  .btn-primary:hover{background:var(--orange-dim);}
  .btn-ghost{
    display:inline-flex; align-items:center; gap:0.5rem;
    color:var(--ink); text-decoration:none; font-weight:600; font-size:0.95rem;
    border-bottom:1.5px solid var(--ink);
    padding-bottom:2px;
  }
  .hero-photo{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    background:var(--pine-950);
    aspect-ratio: 4 / 5;
    border:8px solid var(--paper);
    transform:rotate(1.2deg);
    transition:transform 0.4s ease;
  }
  .hero-photo:hover{
    transform:rotate(1.2deg) scale(1.035);
  }
  .hero-slide{
    position:absolute; inset:0;
    opacity:0;
    transition:opacity 0.6s ease;
  }
  .hero-slide.active{opacity:1;}
  .hero-slide img,
  .hero-slide video{
    width:100% !important; height:100% !important; object-fit:cover !important; display:block;
  }
  .hero-slide .tag{
    position:absolute; left:1.1rem; bottom:1.1rem;
    background:rgba(10,33,28,0.72);
    color:var(--paper);
    font-size:0.78rem;
    padding:0.45rem 0.8rem;
    border-radius:999px;
    font-weight:600;
    backdrop-filter:blur(3px);
  }
  .hero-nav{
    position:absolute; top:50%;
    transform:translateY(-50%);
    z-index:5;
    display:inline-flex; align-items:center; justify-content:center;
    width:40px; height:40px;
    border-radius:50%;
    border:1.5px solid rgba(250,243,227,0.55) !important;
    background:rgba(10,33,28,0.45) !important;
    backdrop-filter:blur(3px);
    color:var(--paper) !important;
    cursor:pointer;
    padding:0;
    transition:background 0.2s ease, border-color 0.2s ease;
  }
  .hero-nav:hover{background:rgba(10,33,28,0.72) !important; border-color:var(--paper) !important;}
  .hero-nav svg{width:18px; height:18px;}
  .hero-nav.prev{left:0.9rem;}
  .hero-nav.next{right:0.9rem;}
  @media (max-width:640px){
    .hero-nav{width:34px; height:34px;}
    .hero-nav svg{width:15px; height:15px;}
  }
  @media (prefers-reduced-motion: reduce){
    .hero-slide{transition:none;}
  }

  /* ---------- SCROLL CUE ---------- */
  .scroll-cue{
    background:var(--paper);
    text-align:center;
    padding-bottom:clamp(1.6rem,4vw,2.6rem);
  }
  .scroll-cue a{
    display:inline-flex; align-items:center; justify-content:center;
    width:52px; height:52px;
    border-radius:50%;
    border:1.5px solid var(--line);
    color:var(--ink);
    text-decoration:none;
    animation:scrollBounce 2.2s ease-in-out infinite;
    transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .scroll-cue a:hover{border-color:var(--orange); color:var(--orange); background:var(--paper-dim);}
  .scroll-cue svg{width:20px;height:20px;}
  @keyframes scrollBounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(8px);}
  }
  @media (prefers-reduced-motion: reduce){
    .scroll-cue a{animation:none;}
  }

  /* ---------- MARK BAND ---------- */
  .mark-band{
    background:var(--orange);
    padding:clamp(2.6rem,6vw,4.2rem) 0;
    text-align:center;
  }
  .mark-band img{
    margin:0 auto;
    width:min(560px, 78%);
    height:auto;
  }
  .gif-band{
    background:#DC4928;
    padding:clamp(2.6rem,6vw,4.2rem) 0;
    text-align:center;
  }
  .gif-band img{
    width:min(480px, 68%);
    height:auto;
    margin:0 auto;
    display:block;
  }

  /* ---------- STICKER ---------- */
  .sticker-odb{
    position:fixed;
    left:clamp(0.8rem, 2.5vw, 2rem);
    bottom:clamp(0.8rem, 2.5vw, 2rem);
    width:clamp(72px, 9vw, 116px);
    height:auto;
    z-index:60;
    transform:rotate(-9deg);
    animation:stickerFloat 5s ease-in-out infinite;
    pointer-events:none;
    filter:drop-shadow(0 6px 14px rgba(28,23,18,0.28));
  }
  .sticker-odb img{width:100%; height:auto; display:block; transition:opacity 0.3s ease;}
  .sticker-odb .odb-mask{
    position:absolute; inset:0;
    background:var(--mustard);
    -webkit-mask-size:contain; mask-size:contain;
    -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
    -webkit-mask-position:center; mask-position:center;
    opacity:0;
    transition:opacity 0.3s ease;
  }
  .sticker-odb.on-dark img{opacity:0;}
  .sticker-odb.on-dark .odb-mask{opacity:1;}
  @keyframes stickerFloat{
    0%,100%{transform:rotate(-9deg) translateY(0);}
    50%{transform:rotate(-6deg) translateY(-8px);}
  }
  @media (prefers-reduced-motion: reduce){
    .sticker-odb{animation:none;}
  }
  @media (max-width:640px){
    .sticker-odb{display:none;}
  }
  .sticker-takeaway{
    position:fixed;
    right:clamp(0.8rem, 2.5vw, 2rem);
    bottom:clamp(0.8rem, 2.5vw, 2rem);
    z-index:60;
    background:var(--odb-green);
    color:var(--paper);
    font-family:"Homie",sans-serif; font-weight:900;
    font-size:0.76rem;
    line-height:1.3;
    letter-spacing:0.03em;
    text-transform:uppercase;
    text-align:center;
    padding:0.8rem 1.1rem;
    border-radius:18px;
    box-shadow:var(--shadow);
    transform:rotate(7deg);
    animation:stickerFloat2 5.5s ease-in-out infinite;
    pointer-events:none;
    transition:background 0.3s ease, color 0.3s ease;
  }
  .sticker-takeaway.on-dark{
    background:var(--mustard);
    color:var(--pine-950);
  }
  @keyframes stickerFloat2{
    0%,100%{transform:rotate(7deg) translateY(0);}
    50%{transform:rotate(4deg) translateY(-7px);}
  }
  @media (prefers-reduced-motion: reduce){
    .sticker-takeaway{animation:none;}
  }
  @media (max-width:640px){
    .sticker-takeaway{font-size:0.6rem; padding:0.6rem 0.85rem; right:0.7rem; bottom:0.7rem; border-radius:14px;}
  }
  .mark-band .tagline{
    margin-top:1.1rem;
    font-family:"LABC", "Homie", sans-serif;
    font-weight:400;
    letter-spacing:-0.04em;
    font-size:clamp(1.6rem,4.5vw,2.6rem);
    color:var(--mustard);
    text-transform:uppercase;
  }

  /* ---------- SECTION GENERIC ---------- */
  section{padding:clamp(3.5rem,8vw,6rem) 0;}
  .section-head{
    max-width:640px;
    margin-bottom:clamp(2rem,5vw,3rem);
  }
  .section-head h2{font-size:clamp(1.9rem,4vw,2.7rem);}
  .on-pine{background:var(--pine-900); color:var(--paper);}
  .on-pine .section-head p{color:rgba(250,243,227,0.78);}
  .section-head p{
    margin-top:0.8rem; color:var(--ink-soft); font-size:1.03rem; max-width:52ch;
  }

  /* ---------- HISTOIRE ---------- */
  .histoire-grid{
    display:grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap:clamp(2rem,5vw,3.5rem);
    align-items:start;
  }
  .histoire-grid h2{margin-bottom:1.2rem;}
  .histoire-grid p{font-size:1.05rem; color:var(--ink-soft); margin:0 0 1rem;}
  .histoire-grid p:last-child{margin-bottom:0;}
  .histoire-figure{
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    position:relative;
    border:8px solid var(--paper);
    transform:rotate(-1.4deg);
    transition:transform 0.4s ease;
  }
  .histoire-figure:hover{
    transform:rotate(-1.4deg) scale(1.035);
  }
  .histoire-figure img{width:100% !important; height:100% !important; object-fit:cover !important; aspect-ratio: 6/5;}
  .histoire-figure figcaption{
    position:absolute; left:0; right:0; bottom:0;
    background:linear-gradient(180deg, rgba(10,33,28,0) 0%, rgba(10,33,28,0.75) 100%);
    color:var(--paper);
    padding:2.2rem 1.1rem 0.9rem;
    font-size:0.82rem;
    font-weight:600;
  }
  .stat-row{
    display:flex; gap:1.6rem; margin-top:1.8rem; flex-wrap:wrap;
  }
  .stat{min-width:120px;}
  .stat b{
    display:block; font-family:"LABC","Homie",sans-serif; font-weight:400; letter-spacing:-0.1em; font-size:1.6rem; color:var(--orange);
  }
  .stat span{font-size:0.82rem; color:var(--ink-soft);}

  /* ---------- MENU ---------- */
  .menu-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:clamp(2rem,5vw,3.5rem);
    align-items:start;
  }
  .menu-block{margin-bottom:2rem;}
  .menu-block:last-child{margin-bottom:0;}
  .menu-block h3{
    font-family:"Homie",sans-serif;
    font-weight:700;
    font-size:0.78rem;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--mustard);
    margin-bottom:0.9rem;
    padding-bottom:0.6rem;
    border-bottom:1px solid var(--line-on-pine);
  }
  .menu-item{
    display:flex; justify-content:space-between; gap:1rem;
    padding:0.7rem 0;
    border-bottom:1px dashed var(--line-on-pine);
  }
  .menu-item:last-child{border-bottom:none;}
  .menu-item-name{
    font-family:"Homie",sans-serif;
    font-weight:600;
    font-size:1.05rem;
  }
  .menu-item-name .best{
    display:inline-block;
    font-family:"Homie",sans-serif;
    font-size:0.62rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--pine-950);
    background:var(--mustard);
    padding:0.14rem 0.4rem;
    border-radius:5px;
    vertical-align:middle;
    margin-left:0.5rem;
    transform:translateY(-2px);
    display:inline-block;
  }
  .menu-item-desc{
    font-size:0.86rem;
    color:rgba(250,243,227,0.66);
    margin-top:0.15rem;
    max-width:40ch;
  }
  .menu-item-price{
    font-family:"Homie",sans-serif;
    font-weight:600;
    font-size:1.05rem;
    color:var(--mustard);
    white-space:nowrap;
    font-variant-numeric:tabular-nums;
  }
  .menu-visual{
    position:sticky;
    top:6rem;
  }
  .menu-visual .frame{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,0.45);
    transform:rotate(1.6deg);
    border:8px solid var(--paper);
  }
  .menu-visual .frame img{width:100%; height:auto; display:block;}
  .menu-visual .caption{
    text-align:center;
    font-size:0.82rem;
    color:rgba(250,243,227,0.6);
    margin-top:1.4rem;
  }

  /* ---------- BANNER STRIP ---------- */
  .banner-strip{
    position:relative;
    width:100%; line-height:0; background:var(--pine-950);
    scroll-margin-top:5.5rem;
  }
  .banner-strip img{width:100% !important; height:auto; max-height:420px; object-fit:cover !important;}
  .partner-cta{
    position:absolute;
    right:clamp(1rem, 7vw, 4.5rem);
    bottom:clamp(1rem, 4vw, 2.2rem);
    z-index:5;
    background:var(--mustard);
    color:var(--pine-950);
    font-family:"Homie",sans-serif; font-weight:900;
    font-size:0.92rem;
    line-height:1.4;
    letter-spacing:0.01em;
    text-align:center;
    text-decoration:none;
    padding:1rem 1.4rem;
    border-radius:18px;
    box-shadow:var(--shadow);
    transform:rotate(-4deg);
    transition:transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .partner-cta:hover{
    transform:rotate(-4deg) scale(1.045);
    background:var(--orange); color:var(--paper);
  }
  @media (max-width:640px){
    .partner-cta{
      font-size:0.72rem;
      line-height:1.35;
      padding:0.75rem 1rem;
      right:0.8rem;
      bottom:0.8rem;
      border-radius:14px;
      max-width:56vw;
    }
  }

  /* ---------- PARTNER BAND ---------- */
  .partner-band{
    background:var(--orange);
    padding:1.3rem 0;
  }
  .partner-label-marquee{
    overflow:hidden;
    width:100%;
    margin-bottom:0.8rem;
    -webkit-mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }
  .partner-label-track{
    display:flex; width:max-content;
    animation:partnerLabelScroll 22s linear infinite;
  }
  .partner-label-marquee:hover .partner-label-track{animation-play-state:paused;}
  @keyframes partnerLabelScroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  .partner-label-group{
    display:flex; align-items:center; flex:none;
  }
  .partner-label{
    font-family:"Homie",sans-serif; font-weight:900; font-size:0.82rem; letter-spacing:0.08em;
    text-transform:uppercase; color:var(--paper); margin:0; white-space:nowrap;
    padding:0 1.4rem;
  }
  .partner-label-dot{
    width:5px; height:5px; border-radius:50%; background:rgba(250,243,227,0.5); flex:none;
  }
  .partner-marquee{
    overflow:hidden;
    width:100%;
    -webkit-mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }
  .partner-track{
    display:flex; width:max-content;
    animation:partnerScroll 26s linear infinite;
  }
  .partner-marquee:hover .partner-track{animation-play-state:paused;}
  @keyframes partnerScroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  .partner-group{
    display:flex; align-items:center; flex:none;
    gap:2rem; padding-right:2rem;
  }
  .partner-sep{
    width:1px; height:22px; background:rgba(250,243,227,0.32); flex:none;
  }
  .partner-item{
    display:inline-flex; align-items:center; gap:0.55rem;
    text-decoration:none; color:var(--paper);
  }
  .partner-role{
    background:var(--pine-950); color:var(--paper);
    font-size:0.66rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
    padding:0.22rem 0.55rem; border-radius:999px; flex:none;
  }
  .partner-name{font-weight:700; font-size:0.94rem; white-space:nowrap;}
  .partner-item svg{width:15px; height:15px; flex:none; color:rgba(250,243,227,0.75); transition:color 0.2s ease;}
  .partner-item:hover .partner-name{color:var(--mustard);}
  .partner-item:hover svg{color:var(--mustard);}
  @media (prefers-reduced-motion: reduce){
    .partner-track{animation:none;}
    .partner-label-track{animation:none;}
  }
  @media (max-width:640px){
    .partner-group{gap:1.3rem; padding-right:1.3rem;}
    .partner-name{font-size:0.86rem;}
    .partner-track{animation-duration:18s;}
    .partner-label{font-size:0.74rem; padding:0 1rem;}
    .partner-label-track{animation-duration:16s;}
  }

  /* ---------- ADRESSE ---------- */
  .adresse-grid{
    display:grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap:clamp(2rem,5vw,3.5rem);
    align-items:center;
  }
  .adresse-photos{
    display:grid;
    grid-template-columns: 1.3fr 1fr;
    gap:0.9rem;
  }
  .adresse-photos img{
    width:100% !important; height:100% !important; object-fit:cover !important; border-radius:18px; box-shadow:var(--shadow);
    border:6px solid var(--paper);
    transition:transform 0.4s ease;
  }
  .adresse-photos .tall{aspect-ratio:3/4.3; transform:rotate(-1deg);}
  .adresse-photos .short{aspect-ratio:3/4.3; margin-top:2.4rem; transform:rotate(1.8deg);}
  .adresse-photos .tall:hover{transform:rotate(-1deg) scale(1.035);}
  .adresse-photos .short:hover{transform:rotate(1.8deg) scale(1.035);}
  .info-card{
    background:var(--paper-dim);
    border-radius:22px;
    padding:clamp(1.6rem,4vw,2.4rem);
  }
  .addr-line{
    display:flex; gap:0.8rem; align-items:flex-start;
    margin-bottom:1.3rem;
  }
  .addr-line svg{width:20px;height:20px;flex:none; margin-top:2px; color:var(--orange);}
  a.addr-line-link{
    text-decoration:none; color:inherit;
    padding:0.5rem 0.6rem; margin:-0.5rem -0.6rem 0.8rem;
    border-radius:12px;
    transition:background 0.2s ease;
  }
  a.addr-line-link:hover{background:var(--paper);}
  a.addr-line-link:hover b{color:var(--orange);}
  .addr-line-arrow{
    width:16px !important; height:16px !important;
    margin-left:auto; align-self:center;
    color:var(--ink-soft) !important;
  }
  .addr-line b{display:block; font-weight:700; font-size:1.02rem;}
  .addr-line span{font-size:0.9rem; color:var(--ink-soft);}
  .hours-table{
    width:100%; border-collapse:collapse; margin-top:0.4rem;
  }
  .hours-table td{
    padding:0.42rem 0;
    font-size:0.94rem;
    border-bottom:1px solid var(--line);
  }
  .hours-table tr:last-child td{border-bottom:none;}
  .hours-table td:first-child{color:var(--ink-soft); font-weight:600;}
  .hours-table td:last-child{text-align:right; font-weight:600; font-variant-numeric:tabular-nums;}
  .note-pill{
    margin-top:1.4rem;
    font-size:0.88rem;
    color:var(--ink-soft);
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:14px;
    padding:0.85rem 1rem;
  }

  /* ---------- GOODIES ---------- */
  .goodies-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:1.5rem; flex-wrap:wrap;
    margin-bottom:2rem;
  }
  .goodies-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:1.2rem;
  }
  .goodies-grid figure{margin:0; position:relative; border-radius:18px; overflow:hidden; box-shadow:var(--shadow); border:6px solid var(--paper); transition:transform 0.4s ease;}
  .goodies-grid figure:nth-child(1){transform:rotate(-1.3deg);}
  .goodies-grid figure:nth-child(2){transform:rotate(1.6deg);}
  .goodies-grid figure:nth-child(3){transform:rotate(-0.7deg);}
  .goodies-grid figure:nth-child(4){transform:rotate(1.1deg);}
  .goodies-grid figure:nth-child(1):hover{transform:rotate(-1.3deg) scale(1.045);}
  .goodies-grid figure:nth-child(2):hover{transform:rotate(1.6deg) scale(1.045);}
  .goodies-grid figure:nth-child(3):hover{transform:rotate(-0.7deg) scale(1.045);}
  .goodies-grid figure:nth-child(4):hover{transform:rotate(1.1deg) scale(1.045);}
  .goodies-grid img{width:100% !important; aspect-ratio:3/4; object-fit:cover !important;}
  .goodies-grid figcaption{
    position:absolute; left:0.9rem; bottom:0.9rem;
    background:var(--paper);
    color:var(--ink);
    font-size:0.78rem; font-weight:600;
    padding:0.4rem 0.7rem; border-radius:999px;
  }
  .goodies-price{
    position:absolute; top:0.7rem; right:0.7rem;
    background:var(--orange); color:var(--paper);
    font-family:"Homie",sans-serif; font-weight:900; font-size:0.78rem;
    padding:0.32rem 0.65rem; border-radius:999px;
    box-shadow:var(--shadow);
  }

  /* ---------- AVIS ---------- */
  .avis-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1.3rem;
  }
  .avis-card{
    background:var(--paper-dim);
    border-radius:22px;
    padding:clamp(1.6rem,3vw,2rem);
    display:flex;
    flex-direction:column;
    box-shadow:var(--shadow);
  }
  .avis-card:nth-child(1){transform:rotate(-0.6deg);}
  .avis-card:nth-child(2){transform:rotate(0.5deg);}
  .avis-card:nth-child(3){transform:rotate(-0.4deg);}
  .avis-stars{display:flex; gap:0.2rem; margin-bottom:0.9rem;}
  .avis-stars svg{width:16px; height:16px; fill:var(--orange);}
  .avis-text{
    font-size:0.98rem; color:var(--ink); line-height:1.55;
    margin:0 0 1.3rem; flex:1;
  }
  .avis-meta{
    display:flex; align-items:center; gap:0.7rem;
    padding-top:1rem; border-top:1px solid var(--line);
  }
  .avis-avatar{
    width:38px; height:38px; border-radius:50%; flex:none;
    background:var(--pine-900); color:var(--paper);
    display:flex; align-items:center; justify-content:center;
    font-family:"Homie",sans-serif; font-weight:700; font-size:0.95rem;
  }
  .avis-name{font-weight:700; font-size:0.9rem; display:block;}
  .avis-sub{font-size:0.78rem; color:var(--ink-soft);}
  .avis-source{
    margin-top:2rem; text-align:center; font-size:0.85rem; color:var(--ink-soft);
  }
  .avis-source a{color:var(--ink-soft); text-decoration:underline; text-underline-offset:2px;}

  /* ---------- INSTAGRAM ---------- */
  .insta-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:1.5rem; flex-wrap:wrap;
    margin-bottom:2rem;
  }
  .insta-handle{
    display:inline-flex; align-items:center; gap:0.6rem;
  }
  .insta-handle svg{width:26px;height:26px; color:var(--paper);}
  .insta-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0.5rem;
  }
  .insta-grid a{
    position:relative;
    display:block;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:10px;
  }
  .insta-grid img{
    width:100% !important; height:100% !important; object-fit:cover !important;
  }
  .insta-grid a::after{
    content:"";
    position:absolute; inset:0;
    background:rgba(10,33,28,0);
    transition:background 0.25s ease;
  }
  .insta-grid a:hover::after{background:rgba(10,33,28,0.18);}
  .insta-grid .ig-icon{
    position:absolute; top:0.6rem; right:0.6rem;
    width:20px; height:20px; color:#fff;
    opacity:0; transition:opacity 0.25s ease;
    filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  }
  .insta-grid a:hover .ig-icon{opacity:1;}
  .insta-follow{
    margin-top:1.8rem;
    text-align:center;
  }
  .btn-insta{
    display:inline-flex; align-items:center; gap:0.55rem;
    background:var(--mustard); color:var(--pine-950);
    padding:0.85rem 1.6rem; border-radius:999px;
    text-decoration:none; font-weight:700; font-size:0.98rem;
  }
  .btn-insta:hover{background:var(--paper);}
  @media (max-width:640px){
    .insta-grid{grid-template-columns:repeat(2,1fr);}
  }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--pine-950);
    color:var(--paper);
    padding:clamp(3rem,6vw,4rem) 0 clamp(1.6rem,3vw,2rem);
  }
  .footer-top{
    display:grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap:2.5rem;
    padding-bottom:2.5rem;
    border-bottom:1px solid var(--line-on-pine);
  }
  .footer-top img{height:40px !important; width:auto !important; max-width:none !important; margin-bottom:1rem;}
  .footer-top p{font-size:0.92rem; color:rgba(250,243,227,0.68); max-width:32ch;}
  .footer-col h4{
    font-family:"Homie",sans-serif; font-weight:700; font-size:0.74rem; letter-spacing:0.14em;
    text-transform:uppercase; color:var(--mustard); margin:0 0 0.9rem;
  }
  .footer-col a, .footer-col div{
    display:block; text-decoration:none; color:var(--paper);
    font-size:0.94rem; margin-bottom:0.55rem;
  }
  .footer-col a:hover{color:var(--mustard);}
  .footer-bottom{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:0.8rem;
    padding-top:1.6rem;
    font-size:0.8rem;
    color:rgba(250,243,227,0.5);
  }
  .footer-bottom a{
    color:rgba(250,243,227,0.72);
    text-decoration:underline; text-underline-offset:2px;
  }
  .footer-bottom a:hover{color:var(--mustard);}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px){
    button.nav-menu-toggle{display:flex;}
    .nav-links{
      display:none;
      position:absolute;
      top:100%; left:0; right:0;
      flex-direction:column;
      align-items:stretch;
      gap:0;
      background:var(--paper);
      border-bottom:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:0.4rem clamp(1.25rem,4vw,3rem) 1rem;
    }
    .nav-links a{
      display:block;
      padding:0.9rem 0;
      border-bottom:1px solid var(--line);
      font-size:0.88rem;
    }
    .nav-links li:last-child a{border-bottom:none;}
    .nav.is-open .nav-links{display:flex;}
    .hero-grid, .histoire-grid, .menu-grid, .adresse-grid{grid-template-columns:1fr;}
    .hero-photo{order:-1; aspect-ratio:16/11;}
    .goodies-grid{grid-template-columns:1fr 1fr;}
    .avis-grid{grid-template-columns:1fr;}
    .avis-card{transform:none !important;}
    .footer-top{grid-template-columns:1fr; gap:1.8rem;}
    .adresse-photos .short{margin-top:0;}
    .menu-visual{position:static; top:auto;}
  }
  @media (max-width:640px){
    .goodies-grid{grid-template-columns:1fr;}
    .goodies-grid figure{transform:none !important;}
  }

/* ---------- COOKIE BANNER (RGPD) ---------- */
.cookie-banner{
  position:fixed;
  left:clamp(0.8rem,3vw,1.5rem);
  right:clamp(0.8rem,3vw,1.5rem);
  bottom:clamp(0.8rem,3vw,1.5rem);
  z-index:200;
  max-width:760px;
  margin:0 auto;
  background:var(--pine-950);
  color:var(--paper);
  border-radius:20px;
  box-shadow:0 20px 50px rgba(10,33,28,0.35);
  padding:1.3rem 1.5rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem 1.6rem;
  transform:translateY(140%);
  opacity:0;
  transition:transform 0.45s ease, opacity 0.45s ease;
}
.cookie-banner.is-visible{transform:translateY(0); opacity:1;}
.cookie-banner p{margin:0; flex:1 1 320px; font-size:0.88rem; line-height:1.55; color:rgba(250,243,227,0.88);}
.cookie-banner a{color:var(--mustard); text-decoration:underline; text-underline-offset:2px;}
.cookie-banner .cookie-actions{display:flex; gap:0.7rem; flex:0 0 auto; flex-wrap:wrap;}
.cookie-banner .btn-cookie{
  display:inline-flex; align-items:center;
  border:none; cursor:pointer;
  padding:0.7rem 1.3rem;
  border-radius:999px;
  font-family:"Homie",sans-serif;
  font-weight:700;
  font-size:0.86rem;
  white-space:nowrap;
  transition:background 0.2s ease, color 0.2s ease;
}
.cookie-banner .btn-cookie-accept{background:var(--orange); color:var(--paper);}
.cookie-banner .btn-cookie-accept:hover{background:var(--orange-dim);}
.cookie-banner .btn-cookie-decline{background:transparent; color:var(--paper); border:1.5px solid rgba(250,243,227,0.4);}
.cookie-banner .btn-cookie-decline:hover{border-color:var(--mustard); color:var(--mustard);}
@media (max-width:640px){
  .cookie-banner{padding:1.1rem 1.2rem;}
  .cookie-banner .cookie-actions{width:100%;}
  .cookie-banner .btn-cookie{flex:1 1 auto; justify-content:center;}
}

/* ---------- 404 ---------- */
.notfound{
  padding:clamp(3.5rem,10vw,6.5rem) 0 clamp(4rem,10vw,7rem);
  text-align:center;
}
.notfound h1{
  font-size:clamp(4rem,16vw,9rem);
  line-height:0.85;
  margin-bottom:1.2rem;
}
.notfound p{
  max-width:46ch;
  margin:0 auto 2rem;
  font-size:1.08rem;
  color:var(--ink-soft);
}
.notfound .btn-row{display:flex; flex-wrap:wrap; gap:1rem; justify-content:center;}
.notfound .kicker-chip{
  display:inline-block;
  margin:0 0 1.4rem;
  padding:0.3rem 0.9rem;
  background:var(--mustard);
  color:var(--pine-950);
  font-weight:700;
  font-size:0.82rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border-radius:999px;
  transform:rotate(-2deg);
}

/* ---------- PAGES LÉGALES (confidentialité / CGU) ---------- */
.legal-page{
  padding:clamp(2.5rem,6vw,4.5rem) 0 clamp(3rem,7vw,5rem);
  max-width:820px;
}
.legal-page h1{font-size:clamp(2.1rem,5vw,3.1rem); line-height:1; margin-bottom:1.6rem;}
.legal-notice{
  background:var(--paper-dim);
  border:1px solid var(--line);
  border-radius:16px;
  padding:1.1rem 1.4rem;
  font-size:0.9rem;
  color:var(--ink-soft);
  margin-bottom:2.4rem;
}
.legal-page h2{
  font-size:1.35rem; text-transform:none; letter-spacing:0; line-height:1.25;
  color:var(--pine-700); font-family:"Homie",sans-serif; font-weight:900;
  margin:2.4rem 0 0.9rem;
}
.legal-page p, .legal-page li{font-size:0.98rem; color:var(--ink-soft); margin:0 0 1rem;}
.legal-page ul{padding-left:1.2rem; margin:0 0 1rem;}
.legal-page a{color:var(--orange-dim); text-decoration:underline; text-underline-offset:2px;}
.legal-page strong{color:var(--ink);}
.legal-page .placeholder{
  background:rgba(234,84,37,0.12); color:var(--orange-dim);
  padding:0.05rem 0.4rem; border-radius:5px; font-weight:600;
}
.legal-updated{font-size:0.85rem; color:var(--ink-soft); opacity:0.75; margin-top:2.5rem;}
