
:root{
  --bg0:#0b0d0f;
  --bg1:#0f1417;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#e9eef2;
  --muted:rgba(233,238,242,.72);
  --gold:#D6AA50;
  --jade:#56966E;
  --hot:#ff5f5f;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:22px;
  --wood:#A67C52;
  --camel:#C9A582;
  --warm-bg:rgba(166,124,82,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial; color:var(--text); background:var(--bg0)}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

body.theme-dark{
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(86,150,110,.10), transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(214,170,80,.08), transparent 55%),
    linear-gradient(180deg,#07090b,#0b0d0f),
    url("assets/img/bg_thai.png");
  background-size:cover;
  background-attachment:fixed;
}

body.theme-light{
  --bg0:#f4f5f2;
  --bg1:#ffffff;
  --card:rgba(0,0,0,.04);
  --card2:rgba(0,0,0,.06);
  --text:#0b0d0f;
  --muted:rgba(14,20,24,.85);
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(86,150,110,.14), transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(214,170,80,.10), transparent 55%),
    url("assets/img/bg_light.png");
  background-size:cover;
  background-attachment:fixed;
}

#particles{position:fixed;inset:0;z-index:0;pointer-events:none;opacity:.9}

.bamboo-shadows{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0;
  animation:bambooFadeOut 2.5s ease-out forwards;
}
.bamboo-left,
.bamboo-right{
  position:absolute;
  top:0;
  bottom:0;
  width:40%;
  background:linear-gradient(to right, rgba(0,0,0,.85), transparent);
  filter:blur(12px);
}
.bamboo-left{
  left:0;
  transform:translateX(-100%);
  animation:bambooSlideLeft 2.5s ease-out forwards;
}
.bamboo-right{
  right:0;
  background:linear-gradient(to left, rgba(0,0,0,.85), transparent);
  transform:translateX(100%);
  animation:bambooSlideRight 2.5s ease-out forwards;
}
@keyframes bambooSlideLeft{
  0%{transform:translateX(-100%); opacity:1}
  50%{transform:translateX(0); opacity:1}
  100%{transform:translateX(-100%); opacity:0}
}
@keyframes bambooSlideRight{
  0%{transform:translateX(100%); opacity:1}
  50%{transform:translateX(0); opacity:1}
  100%{transform:translateX(100%); opacity:0}
}
@keyframes bambooFadeOut{
  0%, 50%{opacity:1}
  100%{opacity:0}
}

.nav{
  position:fixed; top:14px; left:50%; transform:translateX(-50%);
  width:min(1140px, calc(100% - 22px));
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(10,12,14,.55);
  border:1px solid rgba(214,170,80,.16);
  backdrop-filter:blur(12px);
  z-index:20;
}

body.theme-light .nav{background:rgba(255,255,255,.55)}

.brand{display:flex; align-items:center; gap:10px}
.brand-logo{width:34px;height:34px;border-radius:10px;object-fit:contain;background:rgba(255,255,255,.18);padding:6px}
body.theme-light .brand-logo{background:rgba(0,0,0,.06)}
.brand-title{font-family:Cinzel,serif;font-weight:700;letter-spacing:.6px}

.links{display:flex; gap:18px; font-weight:600; font-size:14px}
.links a{opacity:.88}
.links a:hover{opacity:1}

.actions{display:flex; align-items:center; gap:10px}
.icon-btn{
  width:40px;height:40px;border-radius:14px; display:grid; place-items:center;
  background:var(--card); border:1px solid rgba(214,170,80,.12)
}
.icon-btn svg{width:18px;height:18px;fill:currentColor;opacity:.9}

.cta{
  border:0; cursor:pointer;
  padding:10px 16px; border-radius:999px;
  background:linear-gradient(90deg, rgba(86,150,110,1), rgba(214,170,80,1));
  color:#0b0d0f; font-weight:800;
  box-shadow:0 10px 30px rgba(214,170,80,.22);
  position:relative;
}
.cta::after{
  content:""; position:absolute; inset:-2px;
  border-radius:999px; border:1px solid rgba(255,255,255,.18);
  opacity:.25; pointer-events:none;
}
.cta:hover{transform:translateY(-1px)}
.cta.big{padding:14px 22px; font-size:16px}
.cta.mini{padding:9px 14px; font-size:13px}
.cta[data-cta="1"]{animation:ctaShake 3.2s ease-in-out infinite}
@keyframes ctaShake{
  0%, 86%, 100%{transform:translateX(0)}
  90%{transform:translateX(-2px)}
  92%{transform:translateX(2px)}
  94%{transform:translateX(-2px)}
  96%{transform:translateX(2px)}
}

.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  border:1px solid rgba(214,170,80,.22);
  background:rgba(0,0,0,.18);
  color:var(--text); font-weight:700;
}
body.theme-light .ghost{background:rgba(255,255,255,.55)}
.ghost.small{padding:10px 14px; font-size:13px}
.ghost:hover{transform:translateY(-1px)}

.theme-toggle{
  width:44px;height:40px;border-radius:14px;border:1px solid rgba(214,170,80,.16);
  background:var(--card); cursor:pointer; display:grid; place-items:center;
}
.theme-toggle .sun{display:none}
body.theme-light .theme-toggle .sun{display:inline}
body.theme-light .theme-toggle .moon{display:none}

.nav-link-mobile{
  display:none;
}

.hero{position:relative; min-height:100vh; display:grid; place-items:center; padding:110px 16px 40px; z-index:1}
.hero-bg{position:absolute; inset:0; overflow:hidden}
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.04);
  transition:opacity 900ms ease, transform 1400ms ease;
  filter:saturate(1.08) contrast(1.05);
}
.hero-slide.is-active{opacity:1; transform:scale(1.02)}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(0,0,0,.30), rgba(0,0,0,.84)),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.88));
}
body.theme-light .hero-overlay{
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(255,255,255,.30), rgba(255,255,255,.86)),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.92));
}
.temple{
  position:absolute; left:0; right:0; bottom:-8px;
  width:100%; opacity:.85; pointer-events:none;
  mix-blend-mode:screen;
}
body.theme-light .temple{mix-blend-mode:multiply; opacity:.55}

.hero-inner{
  position:relative; max-width:980px; text-align:center;
  padding:32px 18px;
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px; border-radius:999px;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(214,170,80,.18);
  font-weight:700; color:var(--muted); font-size:13px;
}
body.theme-light .badge{background:rgba(255,255,255,.55)}
.dot{width:8px;height:8px;border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(214,170,80,.12)}

h1{font-family:Cinzel,serif; font-size:52px; line-height:1.05; margin:18px 0 10px; letter-spacing:.4px}
.hero p{margin:0 auto 18px; max-width:720px; color:var(--muted); font-size:16px; line-height:1.6}
.hero-ctas{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px}

.hero-mini{
  margin-top:22px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
}
.mini-card{
  padding:14px 14px;
  border-radius:18px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(214,170,80,.14);
  backdrop-filter:blur(8px);
}
body.theme-light .mini-card{background:rgba(255,255,255,.55)}
.mini-k{font-weight:900; font-size:12px; color:var(--muted)}
.mini-v{font-weight:800; margin-top:6px; font-size:13px}
.phone-reveal-card{cursor:pointer; transition:all 0.3s ease}
.phone-reveal-card:hover{transform:translateY(-2px); border-color:var(--gold)}
.phone-reveal-card.shake{animation:phoneShake 0.6s ease-in-out}
.phone-reveal-btn{display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap}
.phone-icon{font-size:18px; display:inline-block}
.phone-reveal-card.shake .phone-icon{animation:iconRing 0.6s ease-in-out}
.hidden{display:none}
.phone-number{color:var(--gold); font-weight:900}
@keyframes phoneShake{
  0%, 100%{transform:translateX(0)}
  10%, 30%, 50%, 70%, 90%{transform:translateX(-4px)}
  20%, 40%, 60%, 80%{transform:translateX(4px)}
}
@keyframes iconRing{
  0%, 100%{transform:rotate(0deg)}
  10%, 30%, 50%, 70%, 90%{transform:rotate(-15deg)}
  20%, 40%, 60%, 80%{transform:rotate(15deg)}
}

.section{position:relative; z-index:1; padding:80px 16px}
.section-alt{
  background:rgba(0,0,0,.12);
  border-top:1px solid rgba(214,170,80,.10);
  border-bottom:1px solid rgba(214,170,80,.10);
}
body.theme-light .section-alt{background:rgba(255,255,255,.60)}

.section-head{max-width:900px; margin:0 auto 28px; text-align:center}
.section-head h2{font-family:Cinzel,serif; font-size:34px; margin:0 0 10px}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

.grid-3{
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.card{
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}
.card img{width:100%; height:240px; object-fit:cover; display:block}
.card-body{padding:16px}
.card-body h3{margin:0 0 8px; font-size:18px}
.card-body p{margin:0 0 14px; color:var(--muted); line-height:1.55}

.feature-row{
  max-width:1140px; margin:20px auto 0;
  display:grid; grid-template-columns:repeat(2,1fr); gap:14px;
}
.feature{
  display:flex; gap:14px; align-items:center;
  padding:16px;
  border-radius:22px;
  background:var(--card);
  border:1px solid rgba(214,170,80,.14);
}
.feature img{width:86px; height:auto}
.feature-title{font-weight:900}
.feature-desc{color:var(--muted); margin-top:6px; line-height:1.5}

.services-badges{
  max-width:1140px; margin:24px auto 0;
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
}
.service-badge{
  display:flex; gap:12px; align-items:center;
  padding:14px;
  border-radius:18px;
  background:var(--warm-bg);
  border:1px solid var(--camel);
  border-width:1px;
  opacity:0.92;
  transition:all 0.3s ease;
}
.service-badge:hover{
  opacity:1;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(166,124,82,.15);
}
.badge-icon{
  font-size:28px;
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius:12px;
  background:rgba(214,170,80,.12);
}
.badge-name{font-weight:800; font-size:13px}
.badge-desc{font-size:11px; color:var(--muted); margin-top:2px}

.plat-du-jour-card{
  max-width:720px; margin:0 auto;
  padding:32px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--camel);
  box-shadow:var(--shadow);
  text-align:center;
}
.plat-icon{
  font-size:64px;
  margin-bottom:16px;
}
.plat-du-jour-card h3{
  font-family:Cinzel,serif;
  font-size:24px;
  margin:0 0 12px;
}
.plat-du-jour-card p{
  color:var(--muted);
  line-height:1.7;
  margin:0 0 20px;
}

.plateaux-sushi-grid{
  max-width:1140px; margin:0 auto 24px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.plateau-sushi-card{
  padding:20px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--camel);
  box-shadow:var(--shadow);
  text-align:center;
}
.plateau-visual{
  flex-shrink:0;
}
.plateau-emoji{
  font-size:56px;
  margin:12px 0;
}
.plateau-body h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}
.plateau-price{
  font-size:24px;
  font-weight:900;
  color:var(--gold);
  margin:8px 0 12px;
}
.plateau-body p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}
.traiteur-block{
  max-width:720px;
  margin:0 auto 24px;
  padding:28px;
  border-radius:var(--radius);
  background:var(--warm-bg);
  border:1px solid var(--wood);
  text-align:center;
}
.traiteur-icon{
  font-size:48px;
  margin-bottom:12px;
}
.traiteur-block h3{
  font-family:Cinzel,serif;
  font-size:22px;
  margin:0 0 8px;
}
.traiteur-block p{
  color:var(--muted);
  margin:0 0 18px;
  line-height:1.6;
}

.bestsellers-carousel{
  position:relative;
  max-width:520px;
  margin:0 auto;
  overflow:hidden;
}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(214,170,80,.35);
  color:var(--gold);
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:10;
  transition:all 0.3s ease;
  backdrop-filter:blur(8px);
}
body.theme-light .carousel-arrow{
  background:rgba(255,255,255,.85);
}
.carousel-arrow:hover{
  background:rgba(0,0,0,.75);
  border-color:var(--gold);
  transform:translateY(-50%) scale(1.05);
}
body.theme-light .carousel-arrow:hover{
  background:rgba(255,255,255,.95);
}
.carousel-arrow-prev{
  left:12px;
}
.carousel-arrow-next{
  right:12px;
}
.carousel-arrow svg{
  width:24px;
  height:24px;
}
.bestsellers-track{
  display:flex;
  transition:transform 0.8s ease-in-out;
}
.bestseller-card{
  min-width:100%;
  padding:28px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--camel);
  box-shadow:var(--shadow);
  text-align:center;
  position:relative;
  flex-shrink:0;
}
.bs-badge{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--wood);
  color:#fff;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.bs-badge.non-spicy{
  background:#56966E;
}
.bs-badge.spicy{
  background:#ff9f5f;
}
.bs-badge.very-spicy{
  background:linear-gradient(135deg, var(--hot), #ff8f5f);
}
.bs-img-placeholder{
  font-size:72px;
  margin:16px 0;
}
.bestseller-card h3{
  font-family:Cinzel,serif;
  font-size:20px;
  margin:0 0 8px;
}
.bs-accompagnement{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  margin:8px 0 12px;
  font-style:italic;
}
.bs-price{
  font-size:22px;
  font-weight:900;
  color:var(--gold);
  margin-bottom:14px;
}
.service-proof{
  text-align:center;
  margin-top:24px;
  padding:14px;
  font-size:14px;
  font-weight:700;
  color:var(--muted);
}
.service-proof span{
  color:var(--text);
}

.gallery-carousel{
  position:relative;
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
  border-radius:22px;
}
.gallery-track{
  display:flex;
  transition:transform 0.8s ease-in-out;
  height:500px;
}
.gallery-item{
  min-width:100%;
  max-width:100%;
  width:100%;
  height:500px;
  margin:0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
  cursor:pointer;
  background:var(--card);
  flex-shrink:0;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.04)}

.menu-pdf-block{
  max-width:720px;
  margin:28px auto 0;
  padding:28px;
  border-radius:var(--radius);
  background:var(--warm-bg);
  border:1px solid var(--wood);
  text-align:center;
}
.menu-pdf-icon{
  font-size:48px;
  margin-bottom:12px;
}
.menu-pdf-block h3{
  font-family:Cinzel,serif;
  font-size:22px;
  margin:0 0 8px;
}
.menu-pdf-block p{
  color:var(--muted);
  margin:0 0 18px;
  line-height:1.6;
}

.center{display:flex; justify-content:center; margin-top:18px}

.reviews-wrap{
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:360px 1fr; gap:16px;
  align-items:start;
}
.rating{
  padding:18px;
  border-radius:22px;
  background:var(--card);
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}
.rating-big{font-size:56px; font-weight:1000; letter-spacing:-1px}
.rating-big span{font-size:20px; opacity:.7; font-weight:800}
.stars{font-size:18px; letter-spacing:2px; color:var(--gold); margin-top:6px}
.rating-sub{color:var(--muted); margin-top:10px; line-height:1.5}
.review-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.review{
  padding:16px;
  border-radius:22px;
  background:var(--card);
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}
.review-top{display:flex; align-items:center; gap:10px; margin-bottom:10px}
.avatar{
  width:40px;height:40px;border-radius:14px; display:grid; place-items:center;
  font-weight:1000; color:#0b0d0f;
  background:linear-gradient(90deg, rgba(214,170,80,1), rgba(86,150,110,1));
}
.name{font-weight:900}
.meta{font-size:12px; color:var(--muted); margin-top:2px}
.review p{margin:0; color:var(--muted); line-height:1.6}

.map-block{max-width:1140px; margin:18px auto 0}
.map{
  width:100%; height:380px; border:0;
  border-radius:22px;
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}

.info-grid{
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.info-card{
  padding:18px;
  border-radius:22px;
  background:var(--card);
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}
.info-card.clickable-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.info-card.clickable-card .ghost{
  margin-top:auto;
}
.info-k{font-weight:1000; color:var(--muted); font-size:12px}
.info-v{font-weight:900; margin-top:8px; line-height:1.5}
.phone-reveal-card-info{cursor:pointer; transition:all 0.3s ease}
.phone-reveal-card-info:hover{transform:translateY(-2px); border-color:var(--gold)}
.phone-reveal-card-info.shake{animation:phoneShake 0.6s ease-in-out}
.phone-icon-info{font-size:18px; display:inline-block}
.phone-reveal-card-info.shake .phone-icon-info{animation:iconRing 0.6s ease-in-out}
.phone-number-info{color:var(--gold); font-weight:900}

.dietary-notice{
  max-width:1140px;
  margin:24px auto 0;
  display:flex;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:var(--radius);
  background:var(--warm-bg);
  border:1px solid var(--wood);
}
.dietary-icon{
  font-size:56px;
  flex-shrink:0;
}
.dietary-text h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
}
.dietary-text p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.fineprint{
  max-width:1140px; margin:18px auto 0;
  display:grid; grid-template-columns:repeat(2,1fr); gap:14px;
}
.proof{
  width:100%; border-radius:22px;
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
  object-fit:cover;
}

.story{
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1.2fr; gap:18px; align-items:center;
}
.story-illu{
  width:100%; border-radius:22px;
  border:1px solid rgba(214,170,80,.14);
  box-shadow:var(--shadow);
}
.story-text h3{margin:0 0 10px; font-size:24px}
.story-text p{margin:0 0 14px; color:var(--muted); line-height:1.7}
.story-ctas{display:flex; gap:10px; flex-wrap:wrap}

.footer{padding:28px 16px; border-top:1px solid rgba(214,170,80,.12); position:relative; z-index:1}
.footer-inner{
  max-width:1140px; margin:0 auto;
  display:flex; justify-content:space-between; gap:18px; align-items:center; flex-wrap:wrap;
}
.footer-brand{display:flex; align-items:center; gap:10px}
.footer-brand img{width:38px;height:38px;border-radius:12px;background:var(--card);padding:7px}
.footer-title{font-family:Cinzel,serif; font-weight:800}
.footer-sub{color:var(--muted); font-size:13px}
.footer-links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:700; font-size:13px}
.footer-links a:hover{color:var(--text)}
.footer-actions{display:flex; gap:10px; align-items:center}

.phone-modal{
  position:fixed; inset:0; display:none; place-items:center;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(10px);
  z-index:50;
}
.phone-modal.show{display:grid}
.phone-card{
  width:min(520px, calc(100% - 24px));
  border-radius:26px;
  background:rgba(15,20,23,.92);
  border:1px solid rgba(214,170,80,.18);
  box-shadow:0 30px 90px rgba(0,0,0,.5);
  padding:18px;
  text-align:center;
}
body.theme-light .phone-card{background:rgba(255,255,255,.92)}
.phone-title{font-family:Cinzel,serif; font-weight:800; font-size:20px}
.phone-number{font-size:34px; font-weight:1000; margin:12px 0 6px}
.phone-number a{color:var(--gold)}
.phone-sub{color:var(--muted); line-height:1.6}
.phone-buttons{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:14px}

.lightbox{
  position:fixed; inset:0; display:none; place-items:center;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(6px);
  z-index:60;
}
.lightbox.show{display:grid}
.lightbox img{
  width:min(1100px, calc(100% - 20px));
  max-height:85vh;
  object-fit:contain;
  border-radius:22px;
  border:1px solid rgba(214,170,80,.18);
  box-shadow:0 30px 120px rgba(0,0,0,.6);
  background:rgba(15,20,23,.55);
}
.lightbox-close{
  position:fixed; top:18px; right:18px;
  width:44px; height:44px; border-radius:16px;
  border:1px solid rgba(214,170,80,.18);
  background:rgba(0,0,0,.35); color:#fff;
  cursor:pointer; font-weight:1000;
}

@media (max-width: 980px){
  .links{display:none}
  .cta-desktop{display:none !important}
  .nav-link-mobile{display:none}
  .nav{
    padding:8px 10px;
    width:calc(100% - 16px);
    top:8px;
  }
  .brand-logo{width:30px; height:30px}
  .brand-title{font-size:14px}
  .actions{gap:6px}
  .icon-btn{width:36px; height:36px}
  .theme-toggle{width:36px; height:36px}
  h1{font-size:40px}
  .hero-mini{grid-template-columns:1fr; max-width:520px; margin-left:auto; margin-right:auto}
  .grid-3{grid-template-columns:1fr}
  .card img{height:220px}
  .feature-row{grid-template-columns:1fr}
  .reviews-wrap{grid-template-columns:1fr}
  .review-cards{grid-template-columns:1fr}
  .info-grid{grid-template-columns:1fr}
  .fineprint{grid-template-columns:1fr}
  .story{grid-template-columns:1fr}
  .services-badges{grid-template-columns:1fr}
  .service-badge{padding:12px}
  .plateaux-sushi-grid{grid-template-columns:1fr}
  .bestsellers-carousel{max-width:100%; padding:0 8px}
  .bestseller-card{padding:20px 16px; font-size:14px}
  .bs-img-placeholder{font-size:56px; margin:12px 0}
  .bestseller-card h3{font-size:18px}
  .gallery-carousel{max-width:100%; padding:0 16px}
  .gallery-track{height:380px}
  .gallery-item{height:380px}
  .dietary-notice{flex-direction:column; text-align:center}
  .carousel-arrow{width:40px; height:40px}
  .carousel-arrow svg{width:20px; height:20px}
  .carousel-arrow-prev{left:4px}
  .carousel-arrow-next{right:4px}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important}
}

body.theme-light .card,
body.theme-light .info-card,
body.theme-light .review,
body.theme-light .rating,
body.theme-light .feature,
body.theme-light .mini-card{
  background:rgba(255,255,255,.88);
  color:var(--text);
}

.welcome-image{
  max-width:1140px;
  margin:30px auto 0;
}
.welcome-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:22px;
  box-shadow:var(--shadow);
}

#infos{
  text-align:center;
}
#infos > *{
  margin-left:auto;
  margin-right:auto;
}
#infos .info-grid{
  max-width:1140px;
}
#infos h2{
  text-align:center;
}
