/* ================================================================
   PANDA RAMEN — Feuille de style globale
   Charte Agence Blender 2025
   UMI #3939a8 · KIMCHI #f41424
   ================================================================ */

:root {
  /* Couleurs principales (charte) */
  --umi:        #3939a8;
  --umi-dark:   #27276f;
  --kimchi:     #f41424;
  --kimchi-dark:#b20c19;

  /* Couleurs secondaires */
  --nori:   #007915;
  --ninjin: #ff6700;
  --miso:   #ffe0ac;
  --matcha: #88c200;
  --tamago: #fdae02;

  /* Neutres */
  --cream:   #FDF6EC;
  --dark:    #1A1A2E;
  --ink:     #111018;
  --muted:   #6b6778;
  --line:    #e8e0d5;
  --white:   #ffffff;

  /* Typo */
  --font-title: 'Bungee', 'Archivo Black', 'Impact', sans-serif; /* substitut Malbern */
  --font-jp:    'Noto Serif JP', serif;
  --font-body:  'Barlow', system-ui, -apple-system, sans-serif;
  --font-cond:  'Barlow Condensed', 'Barlow', sans-serif;
}

*,*::before,*::after{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--dark);
  line-height:1.6;
  font-size:17px;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

/* ============ TYPO ============ */
h1,h2,h3,h4{
  font-family:var(--font-title);
  font-weight:400;
  letter-spacing:.02em;
  text-transform:uppercase;
  line-height:1.05;
  color:var(--ink);
}
h1{ font-size: clamp(2.4rem, 5vw + 1rem, 5rem); }
h2{ font-size: clamp(1.9rem, 2.6vw + 1rem, 3.4rem); }
h3{ font-size: clamp(1.3rem, 1.2vw + 1rem, 1.9rem); }
p{ font-size:1rem; color:#2a2838; }

.ink-kimchi{ color:var(--kimchi); }
.ink-umi   { color:var(--umi); }
.ink-gold  { color:var(--tamago); }

/* ============ CONTAINER ============ */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.container-sm{ max-width:860px; margin:0 auto; padding:0 24px; }

/* ============ NAV ============ */
.site-nav{
  position:sticky; top:0; z-index:100;
  background:var(--cream);
  border-bottom:2px solid var(--ink);
  box-shadow:0 2px 0 var(--kimchi);
}
.nav-inner{
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
.nav-logo{
  display:flex; align-items:center; gap:10px;
}
.nav-logo img{
  height:56px; width:auto;
  display:block;
  transition:transform .25s;
}
.nav-logo:hover img{ transform:rotate(-6deg) scale(1.04); }
@media (max-width:900px){
  .nav-logo img{ height:48px; }
}

.nav-links{
  display:flex; align-items:center; gap:4px;
  list-style:none;
}
.nav-links a{
  display:inline-block;
  padding:8px 14px;
  font-family:var(--font-cond);
  font-weight:600;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--ink);
  border-radius:4px;
  transition:.18s;
}
.nav-links a:hover{ background:var(--umi); color:var(--white); }
.nav-links a.active{ background:var(--kimchi); color:var(--white); }

.nav-cta{
  background:var(--kimchi); color:var(--white);
  padding:10px 18px; border-radius:999px;
  font-family:var(--font-cond); font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
  font-size:.9rem;
  box-shadow:3px 3px 0 var(--ink);
  transition:.2s;
}
.nav-cta:hover{ transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--ink); background:var(--kimchi-dark);}

.nav-burger{
  display:none;
  width:42px;height:42px;
  border:2px solid var(--ink);
  border-radius:8px;
  position:relative;
}
.nav-burger span{
  position:absolute; left:8px; right:8px; height:3px; background:var(--ink); border-radius:2px;
  transition:.25s;
}
.nav-burger span:nth-child(1){ top:11px; }
.nav-burger span:nth-child(2){ top:18px; }
.nav-burger span:nth-child(3){ top:25px; }
.nav-burger.is-open span:nth-child(1){ top:18px; transform:rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity:0; }
.nav-burger.is-open span:nth-child(3){ top:18px; transform:rotate(-45deg); }

@media (max-width:900px){
  .nav-burger{ display:block; }
  .nav-cta{ display:none; }
  .nav-links{
    position:fixed; top:72px; left:0; right:0;
    flex-direction:column; align-items:stretch;
    background:var(--cream);
    padding:20px 24px 30px;
    border-bottom:2px solid var(--ink);
    transform:translateY(-140%);
    transition:transform .3s ease;
    gap:4px;
  }
  .nav-links.is-open{ transform:translateY(0); }
  .nav-links a{ padding:14px 18px; font-size:1.05rem; }
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 26px;
  font-family:var(--font-cond); font-weight:700;
  font-size:1rem;
  text-transform:uppercase; letter-spacing:.14em;
  border-radius:999px;
  transition:.2s;
  border:2px solid transparent;
}
.btn-primary{
  background:var(--kimchi); color:var(--white);
  box-shadow:4px 4px 0 var(--ink);
}
.btn-primary:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); background:var(--kimchi-dark); }

.btn-secondary{
  background:var(--umi); color:var(--white);
  box-shadow:4px 4px 0 var(--ink);
}
.btn-secondary:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); background:var(--umi-dark); }

.btn-ghost{
  background:transparent; color:var(--ink); border-color:var(--ink);
}
.btn-ghost:hover{ background:var(--ink); color:var(--white); }

/* ============ HERO ============ */
.hero{
  position:relative;
  background:var(--umi);
  color:var(--white);
  padding:90px 0 110px;
  overflow:hidden;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 10%, rgba(244,20,36,.35), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(253,174,2,.25), transparent 45%);
  pointer-events:none;
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center; }
@media (max-width:900px){ .hero .container{ grid-template-columns:1fr; } }

.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--kimchi); color:var(--white);
  padding:8px 14px; border-radius:999px;
  font-family:var(--font-cond); font-weight:700;
  text-transform:uppercase; letter-spacing:.18em;
  font-size:.78rem; margin-bottom:22px;
}
.hero-eyebrow::before{
  content:""; width:8px; height:8px; border-radius:50%; background:var(--white);
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.4; transform:scale(1.4); }
}
.hero h1{ color:var(--white); }
.hero h1 span.kimchi{ color:var(--tamago); }
.hero-desc{
  font-size:1.15rem; color:rgba(255,255,255,.85);
  max-width:520px; margin:22px 0 32px;
}
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-art{ position:relative; display:flex; justify-content:center; }
.hero-bowl{
  width:min(460px, 100%);
  aspect-ratio:1;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 60%),
    conic-gradient(from 180deg at 50% 50%, var(--kimchi), var(--tamago), var(--kimchi));
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  display:grid; place-items:center;
  border:6px solid var(--white);
}
.hero-bowl img{
  width:92%; height:92%; object-fit:cover; border-radius:50%;
  border:4px solid var(--ink);
}
.hero-badge{
  position:absolute;
  background:var(--tamago);
  color:var(--ink);
  font-family:var(--font-title); font-size:.9rem;
  padding:14px 18px;
  border-radius:50%;
  width:110px; height:110px;
  display:grid; place-items:center; text-align:center;
  line-height:1.1;
  border:3px solid var(--ink);
  transform:rotate(-12deg);
  box-shadow:4px 4px 0 var(--ink);
}
.hero-badge.tl{ top:10px; left:-10px; }
.hero-badge.br{ bottom:20px; right:-10px; background:var(--kimchi); color:var(--white); }

/* ============ SECTIONS ============ */
.section{ padding:90px 0; }
.section-tight{ padding:60px 0; }
.section-dark{ background:var(--ink); color:var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3{ color:var(--white); }
.section-cream{ background:var(--cream); }
.section-miso{ background:var(--miso); }
.section-umi{ background:var(--umi); color:var(--white); }
.section-umi h1,.section-umi h2,.section-umi h3{ color:var(--white); }

.eyebrow{
  display:inline-block;
  font-family:var(--font-cond); font-weight:700;
  text-transform:uppercase; letter-spacing:.22em;
  color:var(--kimchi);
  font-size:.82rem;
  margin-bottom:14px;
}
.section-title{ max-width:800px; }
.section-title p{ margin-top:16px; color:var(--muted); font-size:1.1rem; }

/* ============ CARDS ============ */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px;
  margin-top:48px;
}
.card{
  background:var(--white);
  border:2px solid var(--ink);
  border-radius:12px;
  padding:26px;
  box-shadow:6px 6px 0 var(--ink);
  transition:.2s;
}
.card:hover{ transform:translate(-3px,-3px); box-shadow:9px 9px 0 var(--ink); }
.card .icon{
  width:50px; height:50px; border-radius:12px;
  display:grid; place-items:center;
  margin-bottom:16px;
  font-size:26px;
  background:var(--umi); color:var(--white);
}
.card .icon img, .info-card .icon img{
  width:72%; height:72%; object-fit:contain;
}
.card.kimchi .icon{ background:var(--kimchi); }
.card.tamago .icon{ background:var(--tamago); color:var(--ink); }
.card.matcha .icon{ background:var(--matcha); color:var(--ink); }
.card.ninjin .icon{ background:var(--ninjin); }
.card h3{ font-size:1.15rem; margin-bottom:10px; }
.card p{ color:var(--muted); font-size:.97rem; }

/* ============ GALLERY ============ */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:18px;
  margin-top:40px;
}
.gallery figure{
  position:relative;
  border-radius:12px; overflow:hidden;
  border:2px solid var(--ink);
  aspect-ratio: 4/5;
  box-shadow:5px 5px 0 var(--ink);
}
.gallery figure img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.gallery figure:hover img{ transform:scale(1.07); }
.gallery figcaption{
  position:absolute; bottom:0; left:0; right:0;
  padding:16px; color:var(--white);
  background:linear-gradient(transparent, rgba(0,0,0,.8));
  font-family:var(--font-title); font-size:1rem;
  text-transform:uppercase; letter-spacing:.08em;
}

/* ============ TIMELINE ============ */
.timeline{
  margin-top:48px;
  position:relative;
  padding-left:36px;
}
.timeline::before{
  content:""; position:absolute; left:12px; top:6px; bottom:6px;
  width:3px; background:var(--kimchi);
}
.timeline-item{
  position:relative;
  padding:0 0 36px 0;
}
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-30px; top:8px;
  width:18px; height:18px; border-radius:50%;
  background:var(--tamago);
  border:3px solid var(--ink);
}
.timeline-date{
  font-family:var(--font-title);
  color:var(--umi); font-size:1.2rem; margin-bottom:6px;
}
.timeline-item h3{ font-size:1.3rem; margin-bottom:8px; }
.timeline-item p{ color:var(--muted); }

/* ============ FOUNDERS ============ */
.founders{ display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:48px; }
@media (max-width:800px){ .founders{ grid-template-columns:1fr; } }
.founder{
  background:var(--white);
  border:2px solid var(--ink);
  border-radius:16px;
  overflow:hidden;
  box-shadow:8px 8px 0 var(--ink);
}
.founder-head{
  background:var(--umi); color:var(--white);
  padding:28px;
  display:flex; gap:18px; align-items:center;
}
.founder.kimchi-head .founder-head{ background:var(--kimchi); }
.founder-avatar{
  width:80px; height:80px; border-radius:50%;
  background:var(--white); color:var(--umi);
  display:grid; place-items:center;
  font-family:var(--font-title); font-size:1.8rem;
  border:3px solid var(--ink);
  flex-shrink:0;
}
.founder.kimchi-head .founder-avatar{ color:var(--kimchi); }
.founder-head h3{ color:var(--white); font-size:1.6rem; margin-bottom:4px; }
.founder-head p{ color:rgba(255,255,255,.85); font-family:var(--font-cond); text-transform:uppercase; letter-spacing:.15em; font-size:.85rem; }
.founder-body{ padding:28px; }
.founder-body h4{ font-family:var(--font-title); font-size:1rem; color:var(--kimchi); margin:18px 0 8px; letter-spacing:.08em; }
.founder.kimchi-head .founder-body h4{ color:var(--umi); }
.founder-body ul{ list-style:none; }
.founder-body ul li{
  padding:6px 0 6px 22px;
  position:relative;
  color:var(--muted);
}
.founder-body ul li::before{
  content:"🍥"; position:absolute; left:0; top:4px;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,.8);
  padding:70px 0 30px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px;
}
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; } }
@media (max-width:500px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand h3{ color:var(--white); font-size:1.6rem; margin-bottom:10px; }
.footer-brand p{ color:rgba(255,255,255,.6); font-size:.95rem; max-width:280px; }
.footer-logo{
  display:inline-block;
  margin-bottom:14px;
}
.footer-logo img{
  height:96px; width:auto;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.4));
}
.footer-col h4{
  font-family:var(--font-cond); text-transform:uppercase; letter-spacing:.15em;
  font-size:.9rem; color:var(--tamago); margin-bottom:14px;
}
.footer-col ul{ list-style:none; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul a{ color:rgba(255,255,255,.7); font-size:.95rem; transition:.2s; }
.footer-col ul a:hover{ color:var(--tamago); }
.footer-socials{ display:flex; gap:10px; margin-top:14px; }
.footer-socials a{
  width:40px; height:40px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.08);
  transition:.2s;
}
.footer-socials a:hover{ background:var(--kimchi); }
.footer-socials svg{ width:18px; height:18px; fill:var(--white); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:40px; padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:.85rem; color:rgba(255,255,255,.5);
}

/* ============ BANDEAU NOODLES (décoratif) ============ */
.noodle-strip{
  background:var(--kimchi); color:var(--white);
  padding:16px 0; overflow:hidden;
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.noodle-track{
  display:flex; gap:40px;
  animation:scroll 28s linear infinite;
  white-space:nowrap;
}
.noodle-track span{
  font-family:var(--font-title);
  font-size:1.3rem;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.noodle-track span::after{
  content:"🍜"; margin-left:30px;
}
@keyframes scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============ SURVEY / FORM ============ */
.survey-wrap{
  max-width:780px; margin:0 auto;
  background:var(--white);
  border:2px solid var(--ink);
  border-radius:20px;
  box-shadow:10px 10px 0 var(--ink);
  overflow:hidden;
}
.survey-head{
  background:var(--umi); color:var(--white);
  padding:30px 34px;
}
.survey-head h2{ color:var(--white); margin-bottom:8px; }
.survey-head p{ color:rgba(255,255,255,.85); }
.survey-body{ padding:30px 34px 36px; }

.q{ margin-bottom:32px; }
.q-head{
  display:flex; align-items:center; gap:12px; margin-bottom:14px;
}
.q-num{
  width:34px; height:34px; border-radius:50%;
  background:var(--kimchi); color:var(--white);
  display:grid; place-items:center;
  font-family:var(--font-title); font-size:.95rem;
  flex-shrink:0;
}
.q h3{
  font-family:var(--font-body); font-weight:700;
  font-size:1.15rem; text-transform:none; letter-spacing:0;
  color:var(--ink);
}
.opts{ display:flex; flex-wrap:wrap; gap:10px; }
.opt{
  cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px;
  background:var(--white);
  border:2px solid var(--line);
  border-radius:999px;
  font-size:.95rem; color:var(--dark);
  transition:.18s;
  user-select:none;
}
.opt input{ display:none; }
.opt:hover{ border-color:var(--umi); color:var(--umi); background:#EEF3FB; }
.opt.checked{ background:var(--umi); border-color:var(--umi); color:var(--white); }
.opt.kimchi:hover{ border-color:var(--kimchi); color:var(--kimchi); background:#FCEEED; }
.opt.kimchi.checked{ background:var(--kimchi); border-color:var(--kimchi); color:var(--white); }

.field{ margin-bottom:18px; }
.field label{
  display:block; font-family:var(--font-cond);
  text-transform:uppercase; letter-spacing:.14em;
  font-size:.8rem; font-weight:700;
  color:var(--muted); margin-bottom:8px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding:12px 14px;
  font:inherit; font-size:1rem;
  background:#fafafd;
  border:2px solid var(--line);
  border-radius:10px;
  color:var(--ink);
  transition:.2s;
}
.field input:focus, .field textarea:focus{
  outline:none; border-color:var(--umi);
  background:var(--white);
}
.field textarea{ min-height:100px; resize:vertical; }

.survey-footer{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  padding-top:16px; border-top:1px dashed var(--line);
}
.survey-count{
  color:var(--muted); font-size:.9rem;
  font-family:var(--font-cond); text-transform:uppercase; letter-spacing:.12em;
}
.survey-count b{ color:var(--kimchi); font-size:1.05rem; }

.survey-success{
  display:none;
  padding:40px 34px;
  text-align:center;
}
.survey-success.show{ display:block; }
.survey-success .emoji{ font-size:3.5rem; margin-bottom:12px; display:flex; align-items:center; justify-content:center; gap:8px; }
.survey-success .emoji img{ width:96px; height:96px; }
.survey-success h3{ font-size:1.7rem; margin-bottom:8px; }
.survey-success p{ color:var(--muted); max-width:420px; margin:0 auto; }

/* ============ INFO CONTACT ============ */
.info-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:22px; margin-top:40px;
}
.info-card{
  background:var(--white);
  border:2px solid var(--ink); border-radius:14px;
  padding:24px;
  box-shadow:5px 5px 0 var(--ink);
}
.info-card .icon{
  width:46px;height:46px;border-radius:12px;
  display:grid;place-items:center;
  font-size:22px;
  margin-bottom:14px;
  background:var(--kimchi); color:var(--white);
}
.info-card h4{ font-family:var(--font-title); font-size:1.1rem; margin-bottom:8px; }
.info-card p, .info-card a{ color:var(--muted); font-size:.95rem; line-height:1.5; }
.info-card a:hover{ color:var(--kimchi); }

.map-wrap{
  margin-top:30px; border:2px solid var(--ink); border-radius:14px; overflow:hidden;
  box-shadow:8px 8px 0 var(--ink);
}
.map-wrap iframe{ width:100%; height:380px; border:0; display:block; }

/* ============ UTIL ============ */
.split{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
}
@media (max-width:900px){ .split{ grid-template-columns:1fr; } }
.split .media{
  border-radius:16px; overflow:hidden;
  border:2px solid var(--ink);
  box-shadow:8px 8px 0 var(--ink);
  aspect-ratio:4/3;
}
.split .media img{ width:100%; height:100%; object-fit:cover; }

.chip{
  display:inline-block;
  background:var(--miso); color:var(--ink);
  padding:4px 12px; border-radius:999px;
  font-family:var(--font-cond); font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  font-size:.78rem;
  margin-right:6px;
}

.big-quote{
  font-family:var(--font-jp);
  font-size:clamp(1.3rem, 2vw + .5rem, 2rem);
  line-height:1.5;
  color:var(--ink);
  max-width:820px; margin:0 auto;
  text-align:center;
  position:relative;
  padding:40px 20px;
}
.big-quote::before{
  content:"“"; position:absolute; top:-20px; left:50%; transform:translateX(-50%);
  font-size:6rem; color:var(--kimchi); font-family:serif;
  line-height:1;
}

/* ============ HONEYPOT ANTI-BOT (invisible) ============ */
.hp-field{
  position:absolute !important;
  left:-9999px !important; top:-9999px !important;
  width:1px; height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s, transform .7s; }
.reveal.in{ opacity:1; transform:translateY(0); }
