
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --dark:#0A0A08;
  --dark2:#0F0E0C;
  --card:#151410;
  --card2:#1A1916;
  --wood:#C4956A;
  --wood-l:#D4AA85;
  --wood-d:#9A6E45;
  --wood-glow:rgba(196,149,106,.12);
  --green:#5C8A6E;
  --green-l:#7AAF90;
  --green-p:#182820;
  --cream:#F5F0E8;
  --muted:rgba(245,240,232,.55);
  --dim:rgba(245,240,232,.35);
  --bd:rgba(196,149,106,.18);
  --bd-g:rgba(92,138,110,.25);
  --r:14px;          /* card radius */
  --r-sm:8px;        /* small radius (menu items, badges) */
  --t:all .22s ease; /* default transition */
  --t-img:transform .55s cubic-bezier(.25,.46,.45,.94); /* image hover */
  --section-pad:6.5rem 3rem; /* section rhythm */
}
html{scroll-behavior:smooth}
body{
  background:var(--dark);
  color:var(--cream);
  font-family:"DM Sans",sans-serif;
  font-weight:300;
  line-height:1.65;
  overflow-x:hidden;
}
/* Grain overlay on entire page */
body::before{
  content:"";
  position:fixed;inset:0;z-index:1000;
  pointer-events:none;
  opacity:.02;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size:200px 200px;
}
h1,h2,h3,h4{font-family:"Cormorant Garamond",serif;font-weight:600;line-height:1.12}
img{display:block;max-width:100%}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 3rem;
  background:rgba(10,10,8,.0);
  transition:background .3s ease, padding .3s ease;
  --nav-link-color:var(--cream); /* warm white — clearly legible over the hero photo without going dark/charcoal */
  --nav-link-opacity:.92; /* substantially stronger than the original ~.47 effective alpha, still visually secondary to the brand/headline */
}
nav.scrolled{
  background:rgba(10,10,8,.94);
  backdrop-filter:blur(16px);
  padding:.85rem 3rem;
  border-bottom:.5px solid var(--bd);
  --nav-link-color:var(--muted); /* preserve the already-approved scrolled look, unchanged */
  --nav-link-opacity:.85;
}
.nav-logo{
  font-family:"Cormorant Garamond",serif;
  font-size:2.3rem;font-weight:600;
  color:var(--wood-l);letter-spacing:.02em;text-decoration:none;
}
.nav-logo span{color:var(--green-l)}
.nav-links{display:flex;gap:1.6rem;list-style:none}
.nav-links a{
  color:var(--nav-link-color);text-decoration:none;
  font-size:.82rem;font-weight:300;letter-spacing:.04em;
  transition:color .22s ease, opacity .22s ease;
  opacity:var(--nav-link-opacity);
  text-shadow:0 1px 6px rgba(10,10,8,.45); /* very subtle — keeps the link legible over brighter parts of the photo without looking heavy */
}
.nav-links a:hover{opacity:1}
.nav-links a:hover{color:var(--cream)}
.nav-cta{
  background:var(--green);color:var(--cream);
  text-decoration:none;padding:.52rem 1.25rem;
  border-radius:100px;font-size:.8rem;font-weight:500;
  letter-spacing:.03em;transition:background .2s,transform .15s;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--green-l);transform:translateY(-1px)}

/* ── HERO ── */
.hero{
  min-height:min(75vh,670px); /* controlled desktop height — capped so it never balloons into a second screen; final trim so the full info strip clears the first viewport */
  position:relative;
  overflow:hidden;
  background:#0A0A08;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding-top:7rem; /* guaranteed clearance below fixed nav — grows the section on short viewports instead of letting content collide */
}
/* Photo plein écran */
.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 35%;
  filter:brightness(.92) saturate(1.08);
}
/* Gradient : bas sombre pour lire le texte, gauche renforcée (zone texte), droite préservée (photo) */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg,
      rgba(10,10,8,.96) 0%,
      rgba(10,10,8,.82) 20%,
      rgba(10,10,8,.55) 40%,
      rgba(10,10,8,.28) 62%,
      transparent 85%
    ),
    linear-gradient(90deg,
      rgba(10,10,8,.75) 0%,
      rgba(10,10,8,.42) 30%,
      rgba(10,10,8,.12) 50%,
      transparent 65%
    ),
    linear-gradient(180deg,
      rgba(10,10,8,.3) 0%,
      transparent 12%
    );
}
/* Texte positionné en bas à gauche */
.hero-content{
  position:relative;
  padding:0 5rem 1.25rem; /* trimmed further — hero has hit its intrinsic content floor, so this bottom breathing room is the safe non-typographic lever left */
  max-width:640px;
  z-index:3;
}
/* Anciens éléments inutilisés */
.hero-left,.hero-right,.hero-right-img{display:none}
.hero-eyebrow{
  display:flex;align-items:center;gap:.8rem;
  font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green-l);font-weight:400;margin-bottom:1.5rem;opacity:.85;
}
.hero-eyebrow::before{content:"";width:24px;height:1px;background:rgba(92,138,110,.6)}
.hero h1{
  font-size:clamp(3.6rem,5.2vw,5.4rem);
  color:var(--cream);margin-bottom:.9rem;
  letter-spacing:-.035em;
  line-height:1.0;
  text-shadow:0 2px 20px rgba(0,0,0,.55);
}
.hero h1 em{
  color:var(--wood-l);
  font-style:italic;
  letter-spacing:-.02em;
  display:inline-block;
}
.hero-sub{
  font-size:1.05rem;color:rgba(245,240,232,.85);
  max-width:460px;margin-bottom:1.5rem;
  line-height:1.82;font-weight:300;
  text-shadow:0 1px 10px rgba(0,0,0,.7);
}
/* Mobile-only shorter hero paragraph (5G) — hidden by default (desktop/
   tablet keep .hero-sub); swapped in at <=680px so exactly one of the two
   is ever visible/in the accessibility tree at a given width. */
.hero-sub-mobile{display:none}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-bottom:1.6rem}
.btn-p{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--wood);color:#0A0A08;
  text-decoration:none;padding:.78rem 1.7rem;
  border-radius:100px;font-weight:500;font-size:.88rem;
  letter-spacing:.015em;
  transition:var(--t);
  box-shadow:0 2px 12px rgba(196,149,106,.18);
}
.btn-p:hover{
  background:var(--wood-l);
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(196,149,106,.3);
}
.btn-o{
  display:inline-flex;align-items:center;gap:.45rem;
  border:1px solid rgba(245,240,232,.25);
  color:var(--cream);text-decoration:none;
  padding:.78rem 1.7rem;border-radius:100px;
  font-size:.88rem;font-weight:400;
  transition:var(--t);
}
.btn-o:hover{border-color:var(--wood);background:rgba(196,149,106,.08)}
/* Hero order-mode CTA only — subtle green accent, reusing the site's existing green-border token */
.hero-actions .btn-o{border-color:var(--green)}
.hero-actions .btn-o:hover{border-color:var(--green);background:rgba(92,138,110,.08)}
.hero-proof{
  display:flex;gap:1.5rem;
  padding-top:1.1rem;
  border-top:.5px solid rgba(196,149,106,.12);
  flex-wrap:wrap;
}
.proof-item{}
.proof-val{
  font-family:"Cormorant Garamond",serif;
  font-size:1.9rem;font-weight:600;color:var(--wood-l);line-height:1;
}
.proof-lbl{
  font-size:.72rem;color:var(--dim);
  text-transform:uppercase;letter-spacing:.08em;margin-top:.2rem;
}
/* Hero food strip — scrolling thumbnails */
.hero-strip{
  position:absolute;bottom:0;left:0;right:0;
  height:110px;
  display:flex;gap:0;overflow:hidden;z-index:3;
}
.hero-strip::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:120px;
  background:linear-gradient(90deg,var(--dark),transparent);z-index:4;
}
.hero-strip::after{
  content:"";position:absolute;right:0;top:0;bottom:0;width:120px;
  background:linear-gradient(-90deg,var(--dark),transparent);z-index:4;
}
.hero-strip-inner{
  display:flex;gap:3px;animation:scroll-strip 30s linear infinite;
  width:max-content;
}
.strip-img{
  width:160px;height:110px;flex-shrink:0;overflow:hidden;
}
.strip-img img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.7) saturate(.9);
  transition:filter .22s ease;
}
.strip-img:hover img{filter:brightness(1) saturate(1.1)}
@keyframes scroll-strip{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* ── TRUST BAR ── */
.trust{
  background:var(--card);
  border-bottom:.5px solid var(--bd);
  padding:1.2rem 3rem;
}
.trust-inner{
  max-width:1140px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:.8rem 1.5rem;
}
.trust-item{
  display:flex;align-items:center;gap:.65rem;
  font-size:.82rem;color:var(--muted);
}
.t-dot{width:5px;height:5px;border-radius:50%;background:var(--green);flex-shrink:0}
.t-dot.w{background:var(--wood)}
.t-val{color:var(--cream);font-weight:500}
.t-stars{color:var(--wood-l);font-size:.94rem;letter-spacing:.06em}

/* ── SHARED LAYOUT ── */
section{padding:var(--section-pad)}
.wrap{max-width:1140px;margin:0 auto}
/* Anchor-scroll clearance — keeps same-page nav targets from landing under the fixed nav */
#galerie,#avis,#contact{scroll-margin-top:7rem}
.s-tag{
  font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;
  color:var(--green-l);font-weight:500;margin-bottom:1rem;
  display:flex;align-items:center;gap:.6rem;
}
.s-tag::before{content:"";width:22px;height:1px;background:var(--green)}
.s-title{
  font-size:clamp(2rem,4vw,3rem);color:var(--cream);
  margin-bottom:1rem;
}
.s-title em{color:var(--wood-l);font-style:italic}
.s-sub{color:var(--muted);max-width:480px;font-size:.96rem;line-height:1.7}

/* ── FOOD SHOWCASE ── */
.food-showcase{background:var(--dark)}
.showcase-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  grid-template-rows:100px 100px;
  gap:.5rem;
  margin-top:3rem;
}
.showcase-item{
  position:relative;overflow:hidden;border-radius:var(--r);cursor:default;
}
.showcase-item img{
  width:100%;height:100%;object-fit:cover;
  transition:var(--t-img);
  filter:brightness(.85) saturate(1.1);
}
.showcase-item:hover img{transform:scale(1.02);filter:brightness(.95) saturate(1.12)}
.showcase-item.span2{grid-column:1;grid-row:1/3}
.showcase-item.span2 img{object-position:center 30%}
.showcase-caption{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.4rem 1.6rem;
  background:linear-gradient(0deg,rgba(10,10,8,.75) 0%,transparent 100%);
}
.sc-name{
  font-family:"Cormorant Garamond",serif;
  font-size:1.2rem;font-weight:600;color:var(--cream);
  margin-bottom:.2rem;
}
.sc-type{
  font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);
}

/* ── SIGNATURES ── */
.signatures{
  background:var(--card);
  position:relative;
}
.signatures::after{
  content:"";position:absolute;
  bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, var(--bd), transparent);
}
.sig-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:3.5rem;
}
.sig-card{
  border-radius:var(--r);overflow:hidden;
  background:var(--card2);
  border:.5px solid var(--bd);
  transition:var(--t);
}
.sig-card:hover{
  transform:translateY(-5px);
  border-color:rgba(196,149,106,.35);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.sig-img{
  height:100px;overflow:hidden;position:relative;
}
.sig-img::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(10,10,8,.55) 0%, transparent 50%);
  pointer-events:none;
}
.sig-img img{
  width:100%;height:100%;object-fit:cover;
  object-position:center 25%;
  transition:var(--t-img);
  filter:brightness(.97) saturate(1.04);
}
.sig-card:hover .sig-img img{transform:scale(1.03);filter:brightness(.98) saturate(1.06)}
.sig-body{padding:1.5rem}
.sig-name{
  font-family:"Cormorant Garamond",serif;
  font-size:1.22rem;font-weight:600;
  color:var(--cream);margin-bottom:.4rem;
  letter-spacing:.01em;
}
.sig-desc{font-size:.84rem;color:var(--muted);line-height:1.6}
.sig-badge{
  display:inline-block;margin-top:.7rem;
  font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;
  padding:.25rem .75rem;border-radius:100px;
  border:.5px solid var(--bd-g);color:var(--green-l);
}

/* ── ABOUT / TRUST ── */
.about{
  background:var(--dark);
  position:relative;
}
.about::before{
  content:"";position:absolute;
  top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, var(--bd), transparent);
}
.about-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:start;
}
.about-text{}
.about-text p{color:var(--muted);margin-bottom:1.15rem;font-size:.96rem;line-height:1.78}
.about-text p strong{color:var(--wood-l);font-weight:500}
.about-pull{
  font-family:"Cormorant Garamond",serif;
  font-size:1.55rem;font-style:italic;
  color:var(--cream);line-height:1.48;
  margin:2rem 0 2rem;
  padding-left:1.5rem;
  border-left:2px solid var(--green);
  letter-spacing:.008em;
}
.about-nums{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2.5rem}
.a-num{
  padding:1.25rem 1.4rem;
  background:var(--card);border:.5px solid var(--bd);border-radius:var(--r);
}
.a-num-v{
  font-family:"Cormorant Garamond",serif;
  font-size:2.4rem;font-weight:600;color:var(--wood-l);line-height:1;
}
.a-num-l{font-size:.72rem;color:var(--dim);text-transform:uppercase;letter-spacing:.08em;margin-top:.25rem}
.about-photos{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:100px 100px;gap:.5rem;
}
.ap{
  border-radius:var(--r);overflow:hidden;
  background:var(--card2);
}
.ap.big{grid-column:1/-1}
.ap img{width:100%;height:100%;object-fit:cover;filter:brightness(.92)}

/* ── REVIEWS ── */
.reviews{
  background:var(--dark2);
  position:relative;
}
.reviews::before{
  content:"";position:absolute;
  top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, var(--wood-d), transparent);
}
.reviews-top{
  display:flex;align-items:flex-end;
  justify-content:space-between;gap:2rem;
  margin-bottom:3rem;flex-wrap:wrap;
}
.r-score{
  display:flex;align-items:flex-end;gap:1.25rem;
}
.r-num{
  font-family:"Cormorant Garamond",serif;
  font-size:5rem;font-weight:600;color:var(--wood-l);line-height:1;
}
.r-detail{}
.r-stars{color:var(--wood);font-size:1.3rem;letter-spacing:.08em}
.r-count{font-size:.82rem;color:var(--muted);margin-top:.3rem}
.r-platform{
  font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--green-l);
  margin-top:.3rem;
}
/* Big featured review */
.r-featured{
  background:linear-gradient(135deg, var(--green-p) 0%, rgba(18,32,24,.9) 100%);
  border:1px solid rgba(92,138,110,.3);
  border-radius:var(--r);
  padding:3rem 3rem;
  margin-bottom:1.5rem;
  position:relative;overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(122,175,144,.08);
}
.r-featured::before{
  content:"❝";
  font-family:"Cormorant Garamond",serif;
  font-size:16rem;font-weight:600;line-height:1;
  color:rgba(92,138,110,.1);
  position:absolute;top:-3rem;left:1.5rem;
  pointer-events:none;line-height:.8;
}
/* Subtle warm glow top-right */
.r-featured::after{
  content:"";position:absolute;
  top:-30%;right:-10%;
  width:400px;height:400px;
  background:radial-gradient(ellipse, rgba(196,149,106,.06) 0%, transparent 60%);
  pointer-events:none;
}
.r-feat-text{
  font-family:"Cormorant Garamond",serif;
  font-size:1.8rem;font-style:italic;
  color:var(--cream);line-height:1.52;
  margin-bottom:1.8rem;
  position:relative;z-index:1;
  letter-spacing:.008em;
}
.r-feat-author{
  display:flex;align-items:center;gap:1rem;
  position:relative;z-index:1;
}
.r-avatar{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:"Cormorant Garamond",serif;
  font-size:1.1rem;font-weight:600;flex-shrink:0;
}
.av1{background:rgba(122,175,144,.2);color:var(--green-l)}
.av2{background:rgba(196,149,106,.2);color:var(--wood-l)}
.av3{background:rgba(122,175,212,.2);color:#7AAFD4}
.r-author-name{font-size:.9rem;font-weight:500;color:var(--cream)}
.r-author-date{font-size:.75rem;color:var(--muted)}
.r-stars-sm{color:var(--wood);font-size:.85rem;margin-top:.15rem}
/* Review cards grid */
.r-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.r-card{
  background:var(--card2);border:.5px solid var(--bd);
  border-radius:var(--r);padding:1.6rem 1.7rem;
  transition:var(--t);
}
.r-card:hover{
  border-color:rgba(196,149,106,.28);
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.3);
}
.r-card-header{display:flex;align-items:center;gap:.8rem;margin-bottom:.9rem}
.r-card-name{font-size:.88rem;font-weight:500;color:var(--cream)}
.r-card-date{font-size:.72rem;color:var(--dim)}
.r-card-stars{color:var(--wood);font-size:.85rem;letter-spacing:.06em;margin-bottom:.7rem}
.r-card-text{font-size:.9rem;color:var(--muted);line-height:1.6;font-style:italic}
.g-badge{
  display:flex;align-items:center;gap:.35rem;
  margin-top:.9rem;font-size:.68rem;color:var(--dim);letter-spacing:.04em;
}

/* ── MENU PREVIEW ── */
.menu-sec{background:var(--dark)}
.menu-layout{
  display:grid;grid-template-columns:280px 1fr;
  gap:4rem;margin-top:3.5rem;align-items:start;
}
.menu-nav{
  position:sticky;top:7rem;
  display:flex;flex-direction:column;gap:.4rem;
}
.m-tab{
  background:transparent;border:none;cursor:pointer;
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.6rem .9rem;border-radius:var(--r-sm);
  text-align:left;font-family:"DM Sans",sans-serif;
  transition:var(--t);color:var(--muted);font-size:.82rem;
  white-space:nowrap;flex-shrink:0;
}
.m-tab::before{
  content:"";width:3px;height:24px;border-radius:2px;
  background:transparent;transition:background .22s ease;flex-shrink:0;
}
.m-tab.active{background:var(--card);color:var(--cream)}
.m-tab.active::before{background:var(--green)}
.m-tab:hover:not(.active){background:var(--card2);color:rgba(245,240,232,.75)}
.menu-tabs{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:2.5rem}
.menu-pane{display:none}
.menu-pane.show{display:block}
.menu-items{display:flex;flex-direction:column;gap:.6rem}
.m-item{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:1.4rem;padding:1rem 1.2rem;
  background:var(--card);border:.5px solid var(--bd);
  border-radius:var(--r-sm);transition:border-color .25s,background .25s,transform .25s,box-shadow .25s;
}
.m-item:hover{
  border-color:rgba(196,149,106,.32);
  background:rgba(26,25,22,.9);
  transform:translateX(2px);
  border-left-color:var(--wood);
}
.m-item-img{
  width:70px;height:70px;border-radius:var(--r-sm);overflow:hidden;flex-shrink:0;
}
.m-item-img img{width:100%;height:100%;object-fit:cover}
.m-item-info{flex:1;min-width:0}
.m-name{
  font-family:"Cormorant Garamond",serif;
  letter-spacing:.01em;
  font-size:1.1rem;font-weight:600;color:var(--cream);margin-bottom:.3rem;
}
.m-desc{font-size:.8rem;color:var(--muted);line-height:1.45}
.m-meta{font-size:.72rem;color:rgba(92,138,110,.7);margin-top:.3rem;text-transform:uppercase;letter-spacing:.06em}
.m-price{
  font-family:"Cormorant Garamond",serif;
  font-size:1.2rem;color:var(--wood-l);white-space:nowrap;
  font-weight:600;padding-top:.1rem;
}
/* ── Order selection controls (progressive enhancement, see order.js) ── */
.m-item-right{
  display:flex;flex-direction:column;align-items:flex-end;
  gap:.5rem;flex-shrink:0;
}
/* Hidden in normal menu browsing — revealed only in order-preparation mode */
.m-order{display:none}
body.order-mode .m-order{display:flex;align-items:center;justify-content:flex-end}
/* Order-mode contextual heading — replaces the normal per-tab title only while order.js's body.order-mode is active */
.order-mode-intro{display:none}
body.order-mode #page-title{display:none}
body.order-mode .order-mode-intro{display:block}
.m-add,.m-choose{
  min-width:40px;min-height:40px;padding:0 .7rem;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:var(--wood-l);
  border:.5px solid rgba(196,149,106,.4);border-radius:100px;
  font-family:"DM Sans",sans-serif;font-size:.95rem;font-weight:500;
  cursor:pointer;transition:var(--t);line-height:1;
}
.m-add:hover,.m-choose:hover{background:rgba(196,149,106,.1);border-color:var(--wood)}
.m-choose{font-size:.76rem;letter-spacing:.02em;color:var(--muted);border-color:var(--bd)}
.m-choose:hover{color:var(--cream)}
.m-choose-hint{
  display:block;font-size:.68rem;color:var(--dim);font-style:italic;
  margin-top:.3rem;text-align:right;max-width:150px;
}
.m-qty{
  display:flex;align-items:center;gap:.5rem;
  background:rgba(196,149,106,.06);border:.5px solid var(--bd);
  border-radius:100px;padding:.2rem;
}
.m-qty-btn{
  width:36px;height:36px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:var(--wood-l);border:none;border-radius:50%;
  font-size:1rem;line-height:1;cursor:pointer;transition:var(--t);
}
.m-qty-btn:hover{background:rgba(196,149,106,.16);color:var(--cream)}
.m-qty-val{
  min-width:1.4rem;text-align:center;
  font-family:"Cormorant Garamond",serif;font-size:1.05rem;font-weight:600;
  color:var(--cream);
}

/* ── Ingredient configurator (native <dialog>, see order.js openConfigurator) ── */
.order-config::backdrop{background:rgba(10,10,8,.75)}
.order-config{
  border:none;border-radius:var(--r);
  background:var(--card2);color:var(--cream);
  padding:1.6rem 1.7rem;max-width:400px;width:calc(100% - 2.4rem);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  font-family:"DM Sans",sans-serif;
  margin:auto; /* restores native dialog centering, which the site-wide *{margin:0} reset otherwise cancels */
}
.oc-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:.3rem}
.oc-head h2{
  font-family:"Cormorant Garamond",serif;font-size:1.6rem;font-weight:600;
  color:var(--cream);margin:0;
}
.oc-close{
  background:transparent;border:none;color:var(--muted);font-size:1.3rem;
  line-height:1;cursor:pointer;padding:.2rem .4rem;flex-shrink:0;transition:var(--t);
}
.oc-close:hover{color:var(--cream)}
.oc-sub{font-size:.86rem;color:var(--muted);margin-bottom:1.3rem}
.oc-section{margin-bottom:1.2rem}
.oc-section-title{
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--green-l);font-weight:500;margin-bottom:.6rem;
  display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap;
}
.oc-note{font-size:.68rem;letter-spacing:0;text-transform:none;color:var(--dim);font-weight:400}
.oc-chips{display:flex;flex-wrap:wrap;gap:.5rem}
.oc-chip{
  background:transparent;border:.5px solid var(--bd);color:var(--muted);
  padding:.45rem .9rem;border-radius:100px;font-size:.82rem;
  font-family:"DM Sans",sans-serif;cursor:pointer;transition:var(--t);
  min-height:40px;
}
.oc-chip:hover{border-color:var(--wood);color:var(--cream)}
.oc-chip[aria-pressed="true"]{
  background:rgba(92,138,110,.14);border-color:var(--green);color:var(--cream);
}
.oc-chip:disabled{opacity:.4;cursor:not-allowed}
.oc-chip:disabled:hover{border-color:var(--bd);color:var(--muted)}
.oc-hint{font-size:.74rem;color:var(--dim);font-style:italic;margin-bottom:1.3rem}
.oc-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.oc-price{font-family:"Cormorant Garamond",serif;font-size:1.05rem;color:var(--cream)}
.oc-price strong{color:var(--wood-l);font-weight:600}
.oc-add{white-space:nowrap}
.oc-add:disabled{opacity:.4;cursor:not-allowed;transform:none;box-shadow:none;pointer-events:none}

/* ── Café/Thé Gourmand 3-gourmandise steppers (order.js openChoiceConfigurator, 4F.2/4F.3) ── */
.oc-treats{display:flex;flex-direction:column;gap:.5rem}
.oc-treats-family{
  font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted);font-weight:500;margin:.6rem 0 .1rem;
}
.oc-treats-family:first-child{margin-top:0}
.oc-treats-row{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.oc-treats-name{font-size:.86rem;color:var(--cream)}
.oc-treats-stepper{
  display:flex;align-items:center;gap:.5rem;
  background:rgba(196,149,106,.06);border:.5px solid var(--bd);
  border-radius:100px;padding:.15rem;
}
.oc-treats-btn{
  width:30px;height:30px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;color:var(--wood-l);border:none;border-radius:50%;
  font-size:.92rem;line-height:1;cursor:pointer;transition:var(--t);
}
.oc-treats-btn:hover{background:rgba(196,149,106,.16);color:var(--cream)}
.oc-treats-btn:disabled{opacity:.35;cursor:not-allowed;background:transparent}
.oc-treats-val{
  min-width:1.2rem;text-align:center;
  font-family:"Cormorant Garamond",serif;font-size:1rem;font-weight:600;
  color:var(--cream);
}

/* ── "Ma sélection" desktop summary (4D.2) ──
   .menu-body/.menu-content are built by order.js's setupSummaryLayout();
   outside order mode they're plain unstyled wrappers (no layout change to
   normal "La carte" at all). The 2-column split and sticky summary only
   ever apply in order mode, and only from 1025px up — below that the
   summary is hidden outright (desktop-first per 4D.2, mobile entry point
   is a separate future phase). */
.order-summary{display:none;outline:none}
body.order-mode .order-summary{display:block}
@media(min-width:1025px){
  body.order-mode .menu-body{display:grid;grid-template-columns:1fr 280px;gap:3rem;align-items:start}
  body.order-mode .order-summary{position:sticky;top:7rem}
}
@media(max-width:1024px){
  body.order-mode .order-summary{display:none}
}
.order-summary{
  background:var(--card);border:.5px solid var(--bd);border-radius:var(--r);
  padding:1.4rem 1.5rem;
}
.os-title{
  font-family:"Cormorant Garamond",serif;font-size:1.3rem;font-weight:600;
  color:var(--cream);margin-bottom:1rem;
}
.os-empty{font-size:.86rem;color:var(--muted);font-style:italic}
.os-lines{list-style:none;display:flex;flex-direction:column;gap:1rem;margin-bottom:1.2rem}
.os-line{
  display:flex;flex-direction:column;gap:.6rem;
  padding-bottom:1rem;border-bottom:.5px solid var(--bd);
}
.os-line:last-child{border-bottom:none;padding-bottom:0}
.os-line-name{font-family:"Cormorant Garamond",serif;font-size:1rem;font-weight:600;color:var(--cream)}
.os-line-config{font-size:.74rem;color:var(--green-l);margin-top:.15rem}
.os-line-qty-price{font-size:.78rem;color:var(--muted);margin-top:.3rem}
/* 4D.2A/4D.2B fix: total + controls on their own row, below the name/
   config/qty-price block, so that block gets the full usable column
   width instead of sharing it side-by-side with the fixed-width controls
   cluster (previously left only ~103px for product names). */
.os-line-bottom{display:flex;align-items:center;justify-content:space-between;gap:.8rem}
.os-line-total{font-family:"Cormorant Garamond",serif;font-size:.95rem;color:var(--wood-l);font-weight:600}
.os-line-controls{display:flex;align-items:center;gap:.3rem;flex-shrink:0}
.os-btn{
  width:28px;height:28px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:.5px solid var(--bd);border-radius:50%;
  color:var(--wood-l);font-size:.82rem;line-height:1;cursor:pointer;transition:var(--t);
}
.os-btn:hover{background:rgba(196,149,106,.12);border-color:var(--wood)}
.os-btn-val{min-width:1.1rem;text-align:center;font-size:.82rem;color:var(--cream)}
.os-remove{
  width:28px;height:28px;flex-shrink:0;margin-left:.2rem;
  display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:none;color:var(--dim);font-size:.85rem;cursor:pointer;transition:var(--t);
}
.os-remove:hover{color:var(--wood-l)}
.os-footer{border-top:.5px solid var(--bd);padding-top:1rem;margin-top:.2rem}
.os-total{
  font-family:"Cormorant Garamond",serif;font-size:.98rem;color:var(--cream);
  display:flex;justify-content:space-between;margin-bottom:.8rem;
}
.os-total strong{color:var(--wood-l);font-weight:600}
.os-clear{
  background:transparent;border:none;color:var(--dim);
  font-size:.74rem;letter-spacing:.04em;text-decoration:underline;text-underline-offset:2px;
  cursor:pointer;padding:0;transition:var(--t);
}
.os-clear:hover{color:var(--wood-l)}

/* ── Desktop order handoff actions (order.js appendActionsRow, 5B) ──
   Stacked full-width inside the existing 280px .os-footer — reuses the
   sitewide .btn-p/.btn-o tokens (sized down to fit the column) instead of
   introducing a new button style. */
.os-actions{display:flex;flex-direction:column;gap:.6rem;margin-top:1rem}
.os-actions .btn-p,.os-actions .btn-o{
  width:100%;justify-content:center;
  font-size:.82rem;padding:.65rem 1rem;
}
/* .btn-o was only ever used on <a> elements before (no UA background to
   override); .os-action-sms/.os-action-copy are the first <button>s to
   carry it, so they otherwise fall back to the browser's default light
   button chrome instead of the intended transparent/dark treatment. */
.os-action-sms,.os-action-copy{
  background:transparent;cursor:pointer;
  font-family:"DM Sans",sans-serif;
}
.os-action-sms:disabled,.os-action-copy:disabled{opacity:.4;cursor:not-allowed;pointer-events:none}
.os-copy-status{font-size:.74rem;color:var(--green-l);min-height:1em;margin:0}
.os-manual-copy{
  width:100%;min-height:100px;margin-top:.2rem;resize:vertical;
  background:var(--card2);color:var(--cream);border:.5px solid var(--bd);border-radius:8px;
  padding:.6rem .7rem;font-size:.76rem;font-family:"DM Sans",sans-serif;
}
.os-manual-copy[hidden]{display:none}

/* ── Mobile selection bar + bottom sheet (order.js renderMobileBar /
   openMobileSheet, 5C) — the missing <=1024px entry point; the desktop
   aside stays exactly as hidden as it already was below 1025px (4D.2).
   `.mobile-bar` existence is a JS toggle (`.has-selection`); the
   `>=1025px` rule below is a hard, unconditional desktop override so the
   bar can never show there regardless of any JS state. ── */
.mobile-bar{
  display:none;position:fixed;left:1.1rem;right:1.1rem;
  bottom:calc(1rem + env(safe-area-inset-bottom));
  z-index:40;
  background:var(--card2);color:var(--cream);
  border:.5px solid var(--wood);border-radius:100px;
  padding:.9rem 1.3rem;
  font-family:"DM Sans",sans-serif;font-size:.84rem;font-weight:500;letter-spacing:.01em;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  cursor:pointer;
}
body.order-mode .mobile-bar.has-selection{display:block}
/* 5I.3 — same persistent recall bar, also reachable while browsing the
   normal menu (outside order-mode) once a selection exists, so an
   existing selection is never stranded behind the hidden mobile nav. */
body.viewing-carte .mobile-bar.has-selection{display:block}
@media(min-width:1025px){
  .mobile-bar{display:none !important}
}

/* ── #page-carte header row — "← Accueil" + mobile Composer entry (5I.3) ── */
.carte-composer-entry{display:none}
@media(max-width:680px){
  .carte-header-row{
    display:flex;align-items:center;justify-content:space-between;
    gap:1rem;flex-wrap:wrap;
  }
  .carte-composer-entry{
    display:inline-flex;align-items:center;
    font-size:.78rem;font-weight:500;letter-spacing:.02em;
    color:var(--green-l);text-decoration:none;
    border:.5px solid var(--green);border-radius:100px;
    padding:.45rem .9rem;margin-bottom:1.5rem;
    white-space:nowrap;transition:var(--t);
  }
  .carte-composer-entry:hover{background:rgba(92,138,110,.08)}
  .carte-composer-entry.is-hidden{display:none}
}

dialog.mobile-sheet::backdrop{background:rgba(10,10,8,.75)}
dialog.mobile-sheet{
  position:fixed;inset:auto 0 0 0;margin:0;
  width:100%;max-width:100%;max-height:85vh;
  border:none;border-radius:20px 20px 0 0;
  background:var(--card2);color:var(--cream);
  padding:1.4rem 1.4rem calc(1.1rem + env(safe-area-inset-bottom));
  box-shadow:0 -10px 40px rgba(0,0,0,.5);
  display:flex;flex-direction:column;
  font-family:"DM Sans",sans-serif;
}
@media(min-width:1025px){
  dialog.mobile-sheet{display:none}
}
.ms-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:.8rem;flex-shrink:0}
.ms-head h2{
  font-family:"Cormorant Garamond",serif;font-size:1.3rem;font-weight:600;
  color:var(--cream);margin:0;
}
.ms-close{
  background:transparent;border:none;color:var(--muted);font-size:1.3rem;
  line-height:1;cursor:pointer;padding:.2rem .4rem;flex-shrink:0;
}
.ms-close:hover{color:var(--cream)}
.ms-body{overflow-y:auto;flex:1;min-height:0}
.ms-footer-slot{flex-shrink:0}
.ms-footer-slot .os-footer{margin-top:.8rem}

.menu-note{
  font-size:.8rem;
  color:var(--dim);
  font-style:italic;
  margin-bottom:1.2rem;
  margin-top:-.3rem;
  padding:0;
  background:none;
  border:none;
}

/* ── GALLERY / ATMOSPHERE ── */
.gallery{background:var(--card)}
.gallery-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:2.5rem;flex-wrap:wrap;gap:1.5rem;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:100px 100px;
  gap:.5rem;
}
.g-item{
  border-radius:var(--r);overflow:hidden;position:relative;
}
.g-item img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.84) saturate(1.08);
  transition:var(--t-img);
}
.g-item:hover img{transform:scale(1.02);filter:brightness(.9) saturate(1.08)}
.g-item.tall{grid-row:1/3}
.g-label{
  position:absolute;bottom:1rem;left:1.2rem;
  font-family:"Cormorant Garamond",serif;
  font-size:.95rem;font-style:italic;
  color:rgba(245,240,232,.75);
  text-shadow:0 1px 6px rgba(0,0,0,.6);
}

/* ── PRACTICAL ── */
.practical{background:var(--dark2)}
.prac-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;margin-top:3.5rem;align-items:start;
}
.info-section{margin-bottom:2.5rem}
.i-label{
  font-size:.7rem;text-transform:uppercase;letter-spacing:.13em;
  color:var(--green-l);margin-bottom:.6rem;font-weight:500;
}
.i-val{font-size:.96rem;color:var(--cream);line-height:1.65}
.i-val a{color:var(--wood-l);text-decoration:none}
.i-val a:hover{text-decoration:underline}
.hours-rows{display:grid;grid-template-columns:auto 1fr;gap:.35rem 1.5rem}
.h-day{color:var(--muted);font-size:.9rem}
.h-time{color:var(--cream);font-size:.9rem}
.order-btns{display:flex;flex-direction:column;gap:.75rem;margin-top:.5rem}
.o-btn{
  display:flex;align-items:center;gap:1rem;
  background:var(--card);border:.5px solid var(--bd);
  border-radius:var(--r);padding:1rem 1.3rem;
  text-decoration:none;color:var(--cream);
  transition:var(--t);
}
.o-btn:hover{border-color:var(--wood);transform:translateX(4px)}
.o-icon{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.oi-g{background:#1E3028;color:var(--green-l)}
.oi-w{background:#3D2A1A;color:var(--wood-l)}
.oi-b{background:#1A2A3D;color:#7AAFD4}
.o-title{font-weight:500;font-size:.9rem;margin-bottom:.15rem}
.o-sub{font-size:.77rem;color:var(--muted)}
.map-block{
  background:var(--card);border:.5px solid var(--bd);
  border-radius:var(--r);overflow:hidden;
}
.map-top{
  height:100px;overflow:hidden;position:relative;
}
.map-top img{width:100%;height:100%;object-fit:cover;object-position:top center;filter:brightness(.75)}
.map-top::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(10,10,8,.8) 0%,transparent 60%);
}
.map-info{padding:1.4rem 1.5rem 1.5rem}
.map-addr{
  font-family:"Cormorant Garamond",serif;
  font-size:1.2rem;color:var(--cream);margin-bottom:.5rem;
}
.map-link{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.82rem;color:var(--green-l);
  text-decoration:none;border-bottom:1px solid var(--bd-g);
  padding-bottom:.15rem;transition:color .22s ease;
}
.map-link:hover{color:var(--wood-l)}
.tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:1rem}
.tag{
  font-size:.75rem;padding:.3rem .8rem;border-radius:100px;
  background:var(--card2);border:.5px solid var(--bd);color:var(--muted);
}

/* ── FOOTER ── */
footer{
  background:#07070600;
  border-top:.5px solid var(--bd);
  padding:3rem;
  background:#070706;
}
.foot-inner{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}
.foot-logo{
  font-family:"Cormorant Garamond",serif;
  font-size:1.6rem;color:var(--wood-l);font-weight:600;
  margin-bottom:.4rem;
}
.foot-tag{font-size:.82rem;color:var(--muted);margin-bottom:1.5rem}
.foot-socials{display:flex;gap:.6rem}
.s-btn{
  display:inline-flex;align-items:center;gap:.45rem;
  border:.5px solid var(--bd);color:var(--muted);text-decoration:none;
  padding:.45rem .95rem;border-radius:100px;font-size:.78rem;
  transition:var(--t);
}
.s-btn:hover{border-color:var(--wood);color:var(--wood-l)}
.foot-col h4{
  font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;
  color:var(--dim);margin-bottom:.9rem;font-family:"DM Sans",sans-serif;font-weight:500;
}
.foot-col a{
  display:block;font-size:.85rem;color:var(--muted);
  text-decoration:none;margin-bottom:.45rem;transition:color .22s ease;
}
.foot-col a:hover{color:var(--wood-l)}
.foot-col span{display:block;font-size:.85rem;color:var(--muted);margin-bottom:.45rem}
.foot-copy{
  max-width:1140px;margin:0 auto;
  padding-top:1.5rem;border-top:.5px solid var(--bd);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;
  font-size:.72rem;color:rgba(245,240,232,.22);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  /* Hero — full clean bleed on tablet */
  .hero{min-height:75vh;padding-top:6.5rem}
  /* #menu (the "La carte" page) has no top clearance of its own — unlike
     .hero, which already reserves space below the fixed nav — so its
     first child (the "← Accueil" back-link) sits directly under the
     fixed nav and visually collides with the branding at narrow widths.
     Mirrors .hero's own tablet clearance value exactly. */
  #menu.menu-sec{padding-top:6.5rem}
  .hero-content{padding:0 2.5rem 2.5rem;max-width:100%}
  .hero-food-strip{display:none !important;width:25%}
  .hero h1{font-size:clamp(2.8rem,7vw,4rem);line-height:1.05}
  /* Remove parallax on touch (performance) */
  .hero-bg img{transform:none !important}
  /* Editorial simpler on tablet */
  .editorial{grid-template-columns:1fr}
  .ed-photo{height:100px}
  .ed-panel{padding:3.5rem 3rem}
  .ed-panel::before{display:none}
  /* Taste shorter */
  .taste{height:100px}
  .sig-grid{grid-template-columns:repeat(2,1fr)}
  .about-wrap{grid-template-columns:1fr;gap:2rem}
  .about-photos{display:none}
  .r-cards{grid-template-columns:repeat(2,1fr)}
  .menu-layout{grid-template-columns:1fr;gap:2rem}
  .menu-nav{flex-direction:row;position:static;flex-wrap:wrap;gap:.4rem}
  .m-tab{padding:.6rem .9rem;flex-direction:row;gap:.5rem}
  .m-tab::before{display:none}
  .prac-grid{grid-template-columns:1fr;gap:3rem}
  .foot-inner{grid-template-columns:1fr 1fr;gap:2rem}
  nav{padding:1rem 2rem}
  nav.scrolled{padding:.85rem 2rem}
  .nav-logo{font-size:1.9rem} /* keep tablet at its original, collision-safe size — nav-links still share the row here */
  section{padding:5rem 2rem}
  .trust{padding:1.1rem 2rem}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:100px 100px 100px}
  .g-item.tall{grid-row:1/3;grid-column:1}
  .showcase-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:100px 100px 100px;
  }
  .showcase-item.span2{grid-column:1/-1;grid-row:1}
}
@media(max-width:680px){
  /* Hero mobile — clean, fast, food-first */
  .hero{padding-top:6rem;padding-bottom:0}
  #menu.menu-sec{padding-top:6rem} /* mirrors .hero's own mobile clearance value */
  .hero-content{padding:0 1.5rem 3rem}
  .hero h1{font-size:2.4rem;line-height:1.06}
  .hero-sub{display:none}
  .hero-sub-mobile{
    display:block;
    font-size:.94rem;color:rgba(245,240,232,.85);
    max-width:100%;margin-bottom:2rem;
    line-height:1.55;font-weight:300;
    text-shadow:0 1px 10px rgba(0,0,0,.7);
  }
  .hero-proof{gap:.5rem;padding-top:1.5rem}
  .proof-item{padding:.6rem .9rem}
  .proof-val{font-size:1.4rem}
  .hero-actions{flex-direction:column;gap:.7rem}
  .btn-p,.btn-o{width:100%;justify-content:center;padding:.75rem 1.2rem}
  /* Grain off on mobile (performance) */
  body::before{display:none}
  /* Food strip off */
  .hero-food-strip{display:none !important;width:25%}
  /* Taste off mobile (too heavy) */
  .taste{height:100px}
  .taste-quote{font-size:1.4rem}
  /* Editorial stacked */
  .editorial{display:block}
  .ed-photo{height:100px}
  .ed-panel{padding:2.5rem 1.5rem}
  .ed-title{font-size:1.9rem}
  .ed-details{display:none}
  /* Mood band smaller */
  .mood-band{padding:3rem 0}
  .mood-text{font-size:1.3rem}
  /* Sig cards 1 col */
  .sig-grid{grid-template-columns:1fr}
  /* No stagger offset on mobile */
  .r-card:nth-child(2){transform:none}
  .sig-grid{grid-template-columns:1fr}
  .r-featured{padding:1.8rem}
  .r-feat-text{font-size:1.35rem}
  .r-cards{grid-template-columns:1fr}
  .showcase-grid{grid-template-columns:1fr;grid-template-rows:auto}
  .showcase-item.span2{grid-column:1;grid-row:auto}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:100px 100px 100px}
  .g-item.tall{grid-row:auto;grid-column:auto}
  .foot-inner{grid-template-columns:1fr}
  .foot-copy{flex-direction:column}
  .hero-actions{flex-direction:column;align-items:flex-start}
  nav{padding:.9rem 1.5rem}
  section{padding:4rem 1.5rem}
  .trust-inner{flex-wrap:wrap;gap:.6rem}
  .trust-item:nth-child(n+4){display:none}
}

/* ── TASTE INTERSTITIAL ── */
.taste{
  padding:0;
  position:relative;
  overflow:hidden;
  height:100px;
  display:flex;align-items:center;justify-content:center;
}
.taste-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(0deg, rgba(10,10,8,1) 0%, rgba(10,10,8,.2) 30%, rgba(10,10,8,.2) 70%, rgba(10,10,8,1) 100%),
    linear-gradient(90deg, rgba(10,10,8,.6) 0%, transparent 40%, transparent 60%, rgba(10,10,8,.6) 100%);
  z-index:1;
}
.taste-img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.78) saturate(1.1);
}
.taste-content{
  position:relative;z-index:2;
  text-align:center;
  padding:0 2rem;
}
.taste-quote{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-style:italic;
  color:var(--cream);
  line-height:1.3;
  letter-spacing:-.01em;
  margin-bottom:1.2rem;
}
.taste-quote em{color:var(--wood-l)}
.taste-attr{
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-l);
}


/* ── MOOD BAND ── */
.mood-band{
  padding:5rem 0;
  position:relative;
  background:var(--green-p);
  overflow:hidden;
  text-align:center;
}
.mood-band::before{
  content:"";position:absolute;
  top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, var(--bd-g), transparent);
}
.mood-band::after{
  content:"";position:absolute;
  bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, var(--bd-g), transparent);
}
.mood-inner{
  max-width:680px;margin:0 auto;padding:0 2rem;
}
.mood-text{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.5rem,2.8vw,2.2rem);
  font-style:italic;
  color:var(--cream);
  line-height:1.5;
  letter-spacing:.008em;
}
.mood-text strong{color:var(--wood-l);font-style:normal;font-weight:600}
.mood-line{
  width:40px;height:1px;
  background:var(--green);
  margin:1.5rem auto;
}
.mood-caption{
  font-size:.78rem;letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(122,175,144,.7);
}


/* ── SCROLL ANIMATIONS ── */
.fade-up{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-up.delay-1{transition-delay:.1s}
.fade-up.delay-2{transition-delay:.2s}

/* ── WARM SECTION SEPARATORS ── */
section + section::before,
.trust + section::before{
  content:"";display:block;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(196,149,106,.1), transparent);
  margin-bottom:0;
}

/* ── ABOUT NUMBERS — warmer ── */
.a-num{
  border-left:2px solid transparent;
  transition:var(--t);
}
.a-num:hover{
  border-left-color:var(--wood);
  transform:translateX(3px);
}


/* ══════════════════════════════════════════
   ATMOSPHERIC DEPTH & WARMTH
══════════════════════════════════════════ */

/* Warm ambient radial — food showcase section */
.food-showcase{
  position:relative;
}




.about{background:var(--dark)}

.r-card{background:var(--card2)}

.menu-sec{background:var(--dark)}

.gallery{background:var(--card)}



/* Proof items — warmer */
.proof-item{
  padding:.8rem 1.2rem;
  background:rgba(196,149,106,.04);
  border:.5px solid rgba(196,149,106,.1);
  border-radius:var(--r-sm);
  transition:background .3s;
}
.proof-item:hover{background:rgba(196,149,106,.07)}

/* A-num cards more dimensional */
.a-num{
  background:linear-gradient(135deg, var(--card) 0%, rgba(22,21,17,.9) 100%);
  box-shadow:0 4px 20px rgba(0,0,0,.2), inset 0 1px 0 rgba(196,149,106,.06);
}

/* Mood band — richer */
.mood-band{
  background:linear-gradient(145deg, #152018 0%, #0F1A12 50%, #152018 100%);
}


/* Nav softer and more premium */
nav .nav-links a{
  font-size:.8rem;
  letter-spacing:.05em;
  text-transform:none;
  font-weight:300;
}
nav .nav-cta{
  font-size:.8rem;
  letter-spacing:.03em;
}
/* Slightly larger nav links on true desktop only — tablet keeps its existing safe .8rem */
@media(min-width:1025px){
  nav .nav-links a{font-size:.9rem}
}

/* Sig badge softer */
.sig-badge{
  font-size:.67rem;
  letter-spacing:.08em;
  opacity:.8;
}

/* Featured review number softer */
.r-num{
  color:var(--wood-l);
  opacity:.9;
}


/* ══════════════════════════════════════════
   SIGNATURE MOMENT — Editorial food close-up
══════════════════════════════════════════ */
.editorial{
  position:relative;overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
}
.ed-photo{
  position:relative;overflow:hidden;
  height:100px;
}
.ed-photo img{
  width:100%;height:100%;object-fit:cover;
  object-position:center 20%;
  filter:brightness(.9) saturate(1.1);
  transition:transform 8s ease;
}
.editorial:hover .ed-photo img{transform:scale(1.02)}
.ed-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,
    transparent 50%,
    rgba(10,10,8,.6) 80%,
    rgba(10,10,8,.95) 100%
  );
}
/* Second photo stacked */
.ed-photo-stack{
  position:relative;overflow:hidden;
}
.ed-photo-stack img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.84) saturate(1.1);
  transition:transform 8s ease;
}
.editorial:hover .ed-photo-stack img{transform:scale(1.0)}
/* Editorial text panel — right */
.ed-panel{
  background:var(--dark);
  display:flex;flex-direction:column;justify-content:center;
  padding:3.5rem 4rem;
  position:relative;
}
.ed-panel::before{
  content:"";position:absolute;
  left:0;top:10%;bottom:10%;width:1px;
  background:linear-gradient(180deg,
    transparent,
    var(--bd),
    transparent
  );
}
/* Warm glow right panel */

.ed-label{
  font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--wood-d);font-weight:500;margin-bottom:1.4rem;
  display:flex;align-items:center;gap:.7rem;
}
.ed-label::before{content:"";width:20px;height:1px;background:var(--wood-d)}
.ed-title{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(2.2rem,3.8vw,3.6rem);
  font-weight:600;color:var(--cream);
  line-height:1.1;letter-spacing:-.025em;
  margin-bottom:1.5rem;
}
.ed-title em{color:var(--wood-l);font-style:italic}
.ed-body{
  font-size:1rem;color:var(--muted);
  line-height:1.82;max-width:420px;
  margin-bottom:2.5rem;
}
.ed-body strong{color:var(--cream);font-weight:400}
.ed-details{
  display:flex;flex-direction:column;gap:.7rem;
  padding-top:2rem;
  border-top:.5px solid var(--bd);
  margin-bottom:2.5rem;
}
.ed-detail{
  display:flex;align-items:baseline;gap:.9rem;
  font-size:.82rem;
}
.ed-detail-label{
  color:var(--green-l);font-size:.7rem;
  letter-spacing:.1em;text-transform:uppercase;
  min-width:90px;
}
.ed-detail-val{color:var(--muted)}

/* Responsive editorial */
@media(max-width:900px){
  .editorial{grid-template-columns:1fr;min-height:auto}
  .ed-photo{height:100px}
  .ed-photo-stack{display:none}
  .ed-panel{padding:3rem 2rem}
  .ed-panel::before{display:none}
}


/* ══════════════════════════════════════════
   PREMIUM MICRO-DETAILS
══════════════════════════════════════════ */



/* Wood accent line on section tags */
.s-tag{
  position:relative;
}

/* Trust items warmer */
.t-val{
  color:var(--wood-l);
  font-weight:500;
}

/* R-num with warm glow */


/* Sig card — subtle inner border glow on hover */
.sig-card:hover{
  box-shadow:
    0 16px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(196,149,106,.08);
}

/* Showcase grid items — staggered */
.showcase-grid .showcase-item:nth-child(2){transition-delay:.06s}
.showcase-grid .showcase-item:nth-child(3){transition-delay:.12s}
.showcase-grid .showcase-item:nth-child(4){transition-delay:.18s}
.showcase-grid .showcase-item:nth-child(5){transition-delay:.24s}

/* Hero proof values */
.proof-val{
  font-family:"Cormorant Garamond",serif;
  font-size:1.85rem;font-weight:600;
  color:var(--wood-l);line-height:1;
  text-shadow:none;
}
.proof-lbl{
  font-size:.68rem;color:rgba(245,240,232,.45);
  text-transform:uppercase;letter-spacing:.09em;margin-top:.2rem;
}

/* Scrollbar custom */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:var(--dark2)}
::-webkit-scrollbar-thumb{
  background:rgba(196,149,106,.55);
  border-radius:5px;
  border:2px solid var(--dark2);
}
::-webkit-scrollbar-thumb:hover{background:rgba(196,149,106,.85)}
/* Firefox */
html{scrollbar-width:thin;scrollbar-color:rgba(196,149,106,.55) var(--dark2)}

/* Selection color */
::selection{background:rgba(196,149,106,.22);color:var(--cream)}

/* Focus visible — premium */
:focus-visible{
  outline:1.5px solid rgba(196,149,106,.5);
  outline-offset:3px;
  border-radius:4px;
}


/* Skip to content */
.skip-link{
  position:absolute;top:-100%;left:1rem;
  background:var(--wood);color:#0A0A08;
  padding:.5rem 1rem;border-radius:var(--r-sm);
  font-size:.85rem;font-weight:500;text-decoration:none;
  z-index:9999;transition:top .2s;
}
.skip-link:focus{top:.5rem}

/* ── STICKY MOBILE CTA ── */
.sticky-cta{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  z-index:500;
  padding:.85rem 1.5rem;
  background:rgba(10,10,8,.97);
  border-top:.5px solid var(--bd);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  gap:.7rem;
  align-items:center;justify-content:center;
}
@media(max-width:680px){
  .sticky-cta{display:flex}
  /* prevent overlap with content */
  body{padding-bottom:72px;padding-bottom:calc(72px + env(safe-area-inset-bottom))}
}
.sticky-cta .btn-p{flex:1;max-width:200px;justify-content:center;font-size:.85rem;padding:.7rem 1rem}
.sticky-cta .btn-o{flex:1;max-width:160px;justify-content:center;font-size:.85rem;padding:.7rem 1rem}

/* ══════════════════════════════════════
   MOBILE FINAL POLISH
══════════════════════════════════════ */
@media(max-width:680px){
  /* Nav — tighter on mobile */
  nav{padding:.85rem 1.25rem}
  .nav-links{display:none}  /* hidden on mobile — hamburger would go here */
  .nav-logo{font-size:1.55rem}

  /* Trust bar — reflows onto centered wrapped rows on mobile instead of
     requiring horizontal scroll (was previously a deliberate scrollable
     single row via nowrap/min-width:max-content; the Product Owner asked
     for it to simply wrap, so it no longer needs .trust's own overflow
     handling either).
     Compaction fix: .trust already carries its own vertical padding
     (inherited from the >=1024px tablet rule) — .trust-inner previously
     ALSO carried its own padding here, so the two stacked, roughly
     doubling the block's vertical whitespace; .trust is tightened and
     .trust-inner's own padding is dropped so there is exactly one padding
     layer at this breakpoint. */
  .trust{padding:.75rem 1.25rem}
  .trust-inner{flex-wrap:wrap;justify-content:center;gap:.4rem 1rem}
  /* The 4th trust-item (Tél/SMS) has never actually been hidden on mobile
     — its inline `style="display:flex;flex-direction:column;..."` (set
     directly on the element in index.html) always wins over the
     .trust-item:nth-child(n+4){display:none} rule below, since inline
     styles outrank any external selector without !important. So on real
     mobile devices it has always rendered as a 2-line column, which is
     the single largest contributor to the excess height once the item was
     no longer force-hidden by the (already-inert) scrollable layout.
     Overriding the inline column layout back to one compact row (wrapping
     only if genuinely too narrow, e.g. at 320px) is therefore the correct
     fix — not removing the phone/SMS information, which the Product Owner
     explicitly wants kept visible. */
  .trust-inner .trust-item:last-child{
    flex-direction:row !important;
    align-items:center !important;
    margin-left:0 !important;
    flex-wrap:wrap;
    row-gap:.2rem;column-gap:.8rem;
  }

  /* Hero — tighter bottom padding (sticky CTA takes space) */
  .hero-content{padding:0 1.4rem 2.5rem}

  /* Proof items — horizontal 3-col (5G: padding-top tightened 1.4rem->1.1rem
     to visually reconnect the proof row with the CTA block above it) */
  .hero-proof{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:.5rem;
    border-top:.5px solid rgba(196,149,106,.12);
    padding-top:1.1rem;
  }
  .proof-item{padding:.6rem .7rem;text-align:center}
  .proof-val{font-size:1.3rem}
  .proof-lbl{font-size:.6rem}

  /* Showcase — 1 col, taller */
  .showcase-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
    gap:.6rem;
  }
  .showcase-item,.showcase-item.span2{
    height:100px;
    max-height:100px;
    grid-column:1;
    grid-row:auto;
  }

  /* Sig grid — 1 col, less height */
  .sig-img{height:100px}

  /* Reviews — featured smaller */
  .r-featured{padding:2rem 1.5rem}
  .r-feat-text{font-size:1.35rem}

  /* Editorial — simplified */
  .ed-photo{height:100px}
  .ed-panel{padding:2rem 1.4rem}
  .ed-body{font-size:.9rem}

  .taste-quote{font-size:1.35rem;line-height:1.3}

  /* Gallery — 2 col */
  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:160px 160px 160px;
    gap:.4rem;
  }
  .g-item.tall{grid-row:auto;grid-column:auto}

  /* Practical — stack */
  .prac-grid{grid-template-columns:1fr;gap:2.5rem}

  /* Footer — 1 col */
  .foot-inner{grid-template-columns:1fr;gap:2rem}
  .foot-copy{flex-direction:column;gap:.3rem}
}

/* Touch tap size — ensure all tap targets are 44px+ */
@media(max-width:680px){
  .btn-p,.btn-o{min-height:48px}
  .nav-cta{min-height:40px;display:flex;align-items:center}
  .m-tab{min-height:48px}
  a[href^="tel:"]{display:inline-flex;align-items:center}
}

/* ── GLOBAL IMAGE SIZE CAP (non-hero) ── */
.showcase-item,
.sig-img,
.g-item,
.ed-photo,
.ap,
.map-top,
.hfs-img,
.taste {
  max-height:100px;
}
.sig-img,
.g-item,
.ap,
.map-top {
  max-height:100px;
}


/* Fix link colors everywhere */
a{color:inherit;text-decoration:none}
.foot-link{color:var(--muted);font-size:.85rem;display:block;margin-bottom:.4rem;transition:color .2s}
.foot-link:hover{color:var(--cream)}
footer a,.practical a:not(.btn-p):not(.btn-o){color:var(--muted)}
footer a:hover{color:var(--cream)}

.menu-cat-title{
  font-family:"Cormorant Garamond",serif;
  font-size:1.2rem;font-weight:600;
  color:var(--cream);letter-spacing:.02em;
  margin-bottom:.8rem;
  padding-bottom:.6rem;
  border-bottom:.5px solid var(--bd);
}
