/* ============================================================
   Cho Cho Industry (CCI) — Homepage styles
   Palette (CI): Black / White / Blue + Yellow & Gold accents
   Fonts: DM Sans (headings) + Roboto (body)
   ============================================================ */

:root{
  /* Brand */
  --cci-blue:#1f1a6e;
  --cci-blue-700:#2a2496;
  --cci-blue-500:#3f7fd6;
  --cci-blue-50:#eef1fb;
  --cci-yellow:#f5e21f;
  --gold:#c9a227;
  --gold-soft:#e7c75a;
  --gold-50:#faf3dc;
  --cream:#fdf6e3;

  /* Functional (errors only) */
  --danger:#d64533;
  --danger-soft:#fde7e3;

  /* Neutral */
  --white:#ffffff;
  --ink:#15151b;
  --ink-soft:#54545e;
  --line:#e7e7ee;
  --silver:#a8a8b0;
  --tint:#f6f7fb;

  --wrap:1320px;
  --pad:40px;
  --r:20px;
  --r-sm:12px;
  --shadow:0 18px 50px -20px rgba(31,26,110,.22);
  --shadow-sm:0 8px 24px -12px rgba(31,26,110,.18);
  --nav-h:74px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:var(--nav-h)}
body{
  margin:0;
  font-family:"Roboto",system-ui,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:"DM Sans",sans-serif;margin:0;line-height:1.1;letter-spacing:-.025em}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--pad);width:100%}
.section{padding:108px 0}
.section--tint{background:var(--tint)}

/* ---------- shared bits ---------- */
.eyebrow{
  display:inline-block;font-family:"DM Sans",sans-serif;font-weight:600;
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--cci-blue-500);margin-bottom:16px;
}
.eyebrow--light{color:var(--gold-soft)}
.eyebrow--gold{color:var(--gold)}
.h2{font-size:clamp(32px,3.6vw,50px);font-weight:700;margin-bottom:18px}
.h2--light{color:#fff}
.ink-blue{color:var(--cci-blue)}
.ink-gold{color:var(--gold)}
.center-head{text-align:center;max-width:780px;margin-inline:auto;margin-bottom:54px}
.h2--oneline{white-space:nowrap}
.lead-center{color:var(--ink-soft);font-size:18px}

.ic{width:22px;height:22px;flex:none;stroke:currentColor;fill:none;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:"DM Sans",sans-serif;font-weight:600!important;font-size:16px!important;
  padding:15px 30px!important;border-radius:100px!important;border:2px solid transparent!important;
  cursor:pointer!important;transition:.2s ease!important;white-space:nowrap!important;
}
.btn--primary{background:var(--cci-blue)!important;color:#fff!important}
.btn--primary:hover{background:var(--cci-blue-700)!important;transform:translateY(-2px);box-shadow:var(--shadow-sm);color:#fff!important;}
.btn--outline{background:transparent;color:var(--cci-blue);border-color:var(--cci-blue)}
.btn--outline:hover{background:var(--cci-blue);color:#fff;transform:translateY(-2px)}
.btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn--ghost:hover{background:#fff;color:var(--cci-blue);border-color:#fff}
.btn--light{background:#fff;color:var(--cci-blue)}
.btn--light:hover{background:var(--cci-yellow);color:var(--cci-blue);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.btn--full{width:100%!important;margin-top:6px}

.link-arrow{
  display:inline-flex;align-items:center;gap:.6em;font-family:"DM Sans",sans-serif;
  font-weight:600;color:var(--cci-blue);transition:.2s;
}
.link-arrow::after{content:"→";display:inline-grid;place-items:center;width:32px;height:32px;flex:none;
  border-radius:50%;background:var(--cci-blue);color:#fff;font-size:.92em;line-height:1;
  transition:transform .2s ease,box-shadow .2s ease}
.link-arrow:hover::after{transform:translateX(4px);box-shadow:var(--shadow-sm)}
.link-arrow--gold{color:var(--gold)}
.link-arrow--gold::after{background:var(--gold)}
.link-arrow--light{color:#fff}
.link-arrow--light::after{background:#fff;color:var(--cci-blue)}
.link-arrow--sm{font-size:14px}
.link-arrow--sm::after{width:26px;height:26px}
/* group the label + round arrow together, pushed to the right edge of the box */
.about__text .link-arrow,
.bcard__body .link-arrow,
.ncard__body .link-arrow{display:flex;width:100%;justify-content:flex-start;align-items:center}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(10px);border-bottom:1px solid var(--line)}
.nav__inner{
  position:relative;
  max-width:var(--wrap);margin:0 auto;padding:0 var(--pad);height:var(--nav-h);
  display:flex;align-items:center;gap:24px;
}
.nav__logo{display:flex;align-items:center;flex:none;margin-right:8px}
.nav__logo img{height:38px}
.nav__logo-fallback{
  display:none;font-family:"DM Sans",sans-serif;font-weight:700;font-size:26px;
  color:var(--cci-blue);letter-spacing:-.04em;align-items:center;
}
.nav__logo-fallback b{color:var(--cci-blue);position:relative}
.nav__logo-fallback b::after{content:"";position:absolute;top:-2px;right:-3px;
  width:7px;height:7px;background:var(--cci-yellow);border-radius:2px}

/* center the menu in the page; logo stays left, language switch stays right */
.nav__menu{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  display:flex;align-items:center}
.nav__list{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0}
.nav__list > li > a,.nav__top{
  font-family:"DM Sans",sans-serif;font-weight:500;font-size:16px;color:var(--ink);
  background:none;border:0;cursor:pointer;padding:9px 11px;border-radius:9px;
  display:inline-flex;align-items:center;gap:5px;transition:.15s;white-space: nowrap;
}
.nav__list > li > a:hover,.nav__top:hover{color:var(--cci-blue);background:var(--cci-blue-50)}
.caret{width:9px;height:6px;fill:none;stroke:currentColor;stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.has-drop:hover .caret{transform:rotate(180deg)}

.drop{
  position:absolute;margin-top:10px;min-width:230px;background:#fff;
  border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);
  padding:8px;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:.18s ease;z-index:60;
}
.has-drop{position:relative}
/* invisible bridge across the 10px gap so hover stays continuous */
.drop::before{content:"";position:absolute;left:0;right:0;top:-12px;height:12px}
.has-drop:hover .drop,.has-drop:focus-within .drop{opacity:1;visibility:visible;transform:translateY(0)}
.drop a{display:block;padding:10px 14px;border-radius:9px;font-size:14px;color:var(--ink-soft);transition:.12s}
.drop a:hover{background:var(--cci-blue-50);color:var(--cci-blue)}
.drop__div{display:block;height:1px;background:var(--line);margin:6px 8px}

.nav__right{display:flex;align-items:center;gap:14px;flex:none;margin-left:auto}

/* language — three circles */
.lang{display:flex;gap:7px}
.lang__btn{
  width:34px;height:34px;border-radius:50%;border:1.5px solid var(--line);
  background:#fff;cursor:pointer;font-family:"DM Sans",sans-serif;font-weight:600;
  font-size:12px;color:var(--ink-soft);transition:.18s;display:flex;
  align-items:center;justify-content:center;padding:0;
}
.lang__btn:hover{border-color:var(--cci-blue-500);color:var(--cci-blue)}
.lang__btn.is-active{background:var(--cci-blue);border-color:var(--cci-blue);color:#fff}

.nav__burger{display:none;flex-direction:column;gap:5px;background:none;border:0;
  cursor:pointer;padding:8px}
.nav__burger span{width:24px;height:2px;background:var(--cci-blue);border-radius:2px;transition:.25s}
.nav__burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__burger.is-open span:nth-child(2){opacity:0}
.nav__burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- mobile drawer ---------- */
.drawer{position:fixed;inset:var(--nav-h) 0 0;background:#fff;z-index:45;
  transform:translateX(100%);transition:transform .3s ease;overflow-y:auto;visibility:hidden}
.drawer.is-open{transform:translateX(0);visibility:visible}
.drawer__nav{padding:18px 24px 60px;display:flex;flex-direction:column}
.drawer__nav > a,.drawer__nav summary{
  font-family:"DM Sans",sans-serif;font-weight:600;font-size:16px;
  padding:15px 4px;border-bottom:1px solid var(--line);cursor:pointer;list-style:none;
}
.drawer__nav summary::-webkit-details-marker{display:none}
.drawer__nav summary::after{content:"+";float:right;color:var(--cci-blue-500);font-weight:400}
.drawer__nav details[open] summary::after{content:"–"}
.drawer__nav details a{display:block;padding:10px 16px;color:var(--ink-soft);font-size:16px}
.drawer__lang{display:flex;gap:10px;margin-top:24px}

/* ============================================================
   HERO — full-bleed image + overlaid text (right)
   ============================================================ */
.hero{position:relative;display:flex;align-items:center;
  min-height:calc(100vh - var(--nav-h));overflow:hidden;background:var(--cci-blue)}
.hero__slides{position:absolute;inset:0;z-index:0}
.hero__bg{position:absolute;inset:0;width:100%;height:100%!important;object-fit:cover;
  opacity:0;transition:opacity 1.1s ease}
.hero__bg.is-active{opacity:1}
/* slider controls — bottom-left cluster */
.hero__controls{position:absolute;left:40px;bottom:34px;z-index:3;
  display:flex;align-items:center;gap:16px}
.hero__arrow{width:44px;height:44px;border-radius:50%;flex:none;cursor:pointer;
  border:1.5px solid rgba(247,241,230,.5);background:rgba(53,49,40,.3);color:#f7f1e6;
  display:flex;align-items:center;justify-content:center;transition:.2s;backdrop-filter:blur(4px)}
.hero__arrow:hover{background:rgba(53,49,40,.6);border-color:rgba(247,241,230,.8)}
.hero__arrow svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.hero__dots{display:flex;gap:9px}
.hero__dots button{width:9px;height:9px;border-radius:50%;border:0;padding:0;cursor:pointer;
  background:rgba(247,241,230,.45);transition:.25s}
.hero__dots button:hover{background:rgba(247,241,230,.7)}
.hero__dots button.is-active{background:#f7f1e6;width:26px;border-radius:5px}
/* dark warm gradient (#353128) — full behind the text (right), fading to clear over the bowl (left) */
.hero__tint{position:absolute;inset:0;
  background:linear-gradient(to left,rgba(53,49,40,.94) 0%,rgba(53,49,40,.78) 26%,rgba(53,49,40,.34) 52%,rgba(53,49,40,0) 78%)}
.hero__badge{position:absolute;left:40px;top:36px;z-index:2;color:#f7f1e6;
  font-family:"DM Sans",sans-serif;font-weight:600;font-size:12px;letter-spacing:.18em;
  text-transform:uppercase;padding:9px 16px;border:1.5px solid rgba(247,241,230,.5);
  border-radius:100px;backdrop-filter:blur(4px)}

.hero__inner{position:relative;z-index:2;display:flex;justify-content:flex-end}
.hero__panel-inner{max-width:560px}
/* CCI logo above the eyebrow (white version, sits on the dark hero) */
.hero__logo{display:block;height:clamp(44px,5vw,64px);width:auto;margin:0 0 18px}
.hero__title{color:#f7f1e6;font-size:clamp(32px,3.7vw,52px);font-weight:700;line-height:1.12;margin:6px 0 24px}
.hero__title .hl{color:var(--gold-soft)}
.hero__lead{color:rgba(247,241,230,.9);max-width:520px;font-size:18px;margin:0 0 34px}
/* hero text sits on the dark tint — keep accents light for contrast */
.hero .eyebrow--light{color:var(--gold-soft)}
.hero .btn--ghost{color:#f7f1e6;border-color:rgba(247,241,230,.55)}
.hero .btn--ghost:hover{background:#f7f1e6;color:#353128;border-color:#f7f1e6}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap}

/* scroll cue — minimal white steaming bowl */
.hero__scroll{position:absolute;left:50%;bottom:24px;transform:translateX(-50%);z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:5px;color:#fff}
.hero__scroll span{font-family:"DM Sans",sans-serif;font-weight:600;font-size:10px;
  letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.8)}
.bowl{width:50px;height:44px}

/* hero product — pack pops up (bottom-left) */
.hero__product{position:absolute;left:clamp(6px,2.4vw,46px);bottom:clamp(24px,5vh,56px);z-index:2;
  width:clamp(180px,22vw,320px);height:clamp(180px,22vw,320px);pointer-events:none}
.hero__pack{position:absolute;inset:0;opacity:0;transform:translateY(26px) scale(.9);
  transition:opacity .7s ease,transform .8s cubic-bezier(.18,.9,.24,1)}
.hero__pack.is-active{opacity:1;transform:translateY(0) scale(1)}
/* pack shakes in bursts, like someone rattling it — soft white glow at the edges */
.hero__packimg{position:absolute;inset:0;margin:auto;width:70%;height:70%;object-fit:contain;
  transform-origin:50% 22%;animation:heroPackShake 2.4s ease-in-out infinite;
  filter:drop-shadow(0 0 10px rgba(255,255,255,.60)) drop-shadow(0 0 5px rgba(255,255,255,.72))
    drop-shadow(0 0 2px rgba(255,255,255,.76))}
@keyframes heroPackShake{
  0%,34%,100%{transform:rotate(0deg)}
  4%{transform:rotate(-4deg)}
  9%{transform:rotate(3.5deg)}
  14%{transform:rotate(-3deg)}
  19%{transform:rotate(2.5deg)}
  24%{transform:rotate(-1.5deg)}
  29%{transform:rotate(1deg)}
}
.bowl__body{fill:none;stroke:#fff;stroke-width:2.4;stroke-linejoin:round}
.bowl__rim{stroke:#fff;stroke-width:2.4;stroke-linecap:round;fill:none}
.bowl__steam path{fill:none;stroke:#fff;stroke-width:2.2;stroke-linecap:round;
  opacity:.85;animation:steam 2.4s ease-in-out infinite}
.bowl__steam path:nth-child(2){animation-delay:.5s}
.bowl__steam path:nth-child(3){animation-delay:1s}
@keyframes steam{
  0%{opacity:0;transform:translateY(4px)}
  35%{opacity:.9}
  100%{opacity:0;transform:translateY(-5px)}
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:72px;align-items:stretch}
.about__text p{color:var(--ink-soft);font-size:16px;margin:0 0 26px}
/* vision & mission — short statements above the intro paragraph */
/* Vision narrow on the left, Mission wider so its text also fits two lines */
.about__vm{display:grid;grid-template-columns:0.72fr 1.28fr;gap:18px;align-items:start;
  margin:22px 0 28px;}
.vm{padding-left:18px;border-left:3px solid var(--gold)}
.vm__label{display:block;font-family:"DM Sans",sans-serif;font-weight:800;
  text-transform:uppercase;letter-spacing:.14em;font-size:12px;color:var(--gold);
  margin-bottom:8px}
.about__vm .vm__text{margin:0;font-family:"DM Sans",sans-serif;font-weight:700;
  color:var(--cci-blue);font-size:clamp(14px,1.1vw,16px);line-height:1.45}
.pillars{list-style:none;margin:0 0 28px;padding:0;display:grid;
  grid-template-columns:1fr 1fr;gap:14px}
.pillars li{display:flex;align-items:center;gap:10px;font-family:"DM Sans",sans-serif;
  font-weight:600;font-size:16px}
.pillars .ic{color:var(--cci-blue-500)}
.about__media{position:relative}
/* image fills the column so its height matches the about__text column */
.about__media img{width:100%;height:100%!important;min-height:460px;object-fit:cover;
  border-radius:var(--r)!important;box-shadow:var(--shadow)!important;display:block}
.about__badge{position:absolute;right:18px;top:18px;background:var(--cci-blue);color:#fff;
  border-radius:16px;padding:18px 22px;box-shadow:var(--shadow);display:flex;flex-direction:column}
.about__badge strong{font-family:"DM Sans",sans-serif;font-size:28px;line-height:1}
.about__badge span{font-size:12px;opacity:.85;margin-top:4px}

.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:84px;
  padding-top:52px;border-top:1px solid var(--line)}
/* stats are clickable links — reset link styling + clear hover affordance */
.stat{text-align:center;display:block;text-decoration:none;color:inherit;cursor:pointer;
  padding:16px 10px;border-radius:16px;transition:transform .25s ease,background .25s ease,box-shadow .25s ease}
.stat:hover{transform:translateY(-5px);background:var(--cci-blue-50);box-shadow:var(--shadow-sm)}
.stat:hover .stat__lbl{color:var(--cci-blue)}
.stat:focus-visible{outline:2px solid var(--cci-blue);outline-offset:3px}
.stat__num{display:block;font-family:"DM Sans",sans-serif;font-weight:700;
  font-size:clamp(38px,4vw,54px);color:var(--cci-blue);line-height:1}
.stat__num em{color:var(--cci-yellow);font-style:normal}
.stat__lbl{display:block;margin-top:8px;font-family:"DM Sans",sans-serif;font-weight:600;
  color:var(--ink);font-size:16px}
.stat__desc{display:block;margin:5px auto 0;max-width:230px;color:var(--ink-soft);
  font-size:12px;line-height:1.45}

/* ============================================================
   BURST DIVIDER — gold & white sunburst + floating bowl
   ============================================================ */
/* flat background with a clean geometric composition (Nongshim-style) */
.burst{position:relative;overflow:hidden;text-align:center;padding:90px 24px 96px;
  --burst-bg:#fbf5ec;background:var(--burst-bg)}
.burst__decor{position:absolute;inset:0;z-index:0;pointer-events:none}
.bd{position:absolute}
/* product stage panel — anchors the carousel so the space isn't empty */
.bd--stage{left:50%;top:48%;transform:translate(-50%,-50%);
  width:min(1140px,95%);height:min(540px,70%);background:#f6ead0;border-radius:36px}
/* brand-coloured flat blocks (CCI blue · gold · yellow), gently animated */
/* tucked into the top-left corner so it never sits under the caption text */
/* wavy-line motifs (replaced the old solid blocks) — one per brand colour */
.bd--orange,.bd--red,.bd--gold,.bd--blue{
  width:clamp(96px,12vw,150px);height:clamp(52px,7vw,82px);
  background-repeat:no-repeat;background-position:center;background-size:contain}
.bd--orange{left:10px;top:20px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M14 20H126'/%3E%3Cpath d='M14 42H126'/%3E%3Cpath d='M14 64H126'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 7s ease-in-out infinite}
.bd--red{right:3%;bottom:64px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%231f1a6e' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M14 20H126'/%3E%3Cpath d='M14 42H126'/%3E%3Cpath d='M14 64H126'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 8.5s ease-in-out infinite reverse}
.bd--gold{right:7%;top:44px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%23f5e21f' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M14 20q14 -13 28 0t28 0t28 0t28 0'/%3E%3Cpath d='M14 42q14 -13 28 0t28 0t28 0t28 0'/%3E%3Cpath d='M14 64q14 -13 28 0t28 0t28 0t28 0'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 9s ease-in-out infinite}
.bd--blue{left:8%;bottom:56px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%233f7fd6' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M14 20q14 -13 28 0t28 0t28 0t28 0'/%3E%3Cpath d='M14 42q14 -13 28 0t28 0t28 0t28 0'/%3E%3Cpath d='M14 64q14 -13 28 0t28 0t28 0t28 0'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 6s ease-in-out infinite .4s}
/* dot-grid accent */
.bd--dots{right:5%;top:25%;width:clamp(92px,11vw,140px);height:clamp(60px,8vw,92px);
  background-image:radial-gradient(var(--cci-blue) 2.3px,transparent 2.5px);background-size:18px 18px;
  animation:bdPulse 5s ease-in-out infinite}
/* outlined ring accent */
.bd--ring{left:6%;top:34%;width:clamp(40px,5vw,68px);height:clamp(40px,5vw,68px);
  border:6px solid var(--gold-soft);border-radius:50%;animation:bdRing 6.5s ease-in-out infinite}
@keyframes bdFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}
@keyframes bdSpin{to{transform:rotate(360deg)}}
@keyframes bdPulse{0%,100%{opacity:.9;transform:translateY(0)}50%{opacity:.45;transform:translateY(-8px)}}
@keyframes bdRing{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-10px) scale(1.12)}}
.burst__inner{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center}
/* slogan — one line of text riding an SVG wave path; colour follows each
   product's sachet colour (--pack-color set per slide) */
.burst__wavedef{position:absolute;width:0;height:0;overflow:hidden}
.burst__line{display:block;width:clamp(320px,64vw,900px);max-width:100%;height:auto;overflow:visible;margin:0}
/* stacked 2nd wave line — pulled up so the two waves sit close */
.burst__line + .burst__line{margin-top:-56px}
.burst__line text{font-family:"DM Sans",sans-serif;font-weight:800;font-style:italic;
  fill:var(--pack-color,var(--cci-blue));font-size:48px;letter-spacing:-.01em;text-anchor:middle}
/* tagline (2nd sentence) — a touch smaller than the name, still fits the wave */
.burst__line--sub text{font-size:28px;font-weight:700}
.burst__caption .burst__line--sub{margin-top:-46px}
/* Burmese line (mock) — sits under the English slogan */
.burst__my{font-family:"Padauk","Myanmar Text","Noto Sans Myanmar","Pyidaungsu",sans-serif;
  color:var(--pack-color,var(--cci-blue));opacity:.9;font-weight:600;
  font-size:clamp(16px,1.5vw,18px);line-height:1.6;margin:8px 0 0;padding:0 24px}

/* carousel stage — caption top-left, arrows top-right, images below */
.burst__stage{position:relative;width:100%;max-width:var(--wrap);margin:18px auto 0;
  min-height:clamp(560px,62vw,740px)}
/* viewport stacks the slides; clips the images that fly off to the sides */
.burst__viewport{position:relative;width:100%;min-height:clamp(560px,62vw,740px);overflow:hidden}
/* slides crossfade like Nissin's swiper-fade (text just fades with the slide) */
.burst__slide{position:absolute;top:0;left:0;width:100%;
  display:flex;flex-direction:column;align-items:stretch;gap:clamp(14px,2vw,28px);
  min-height:clamp(560px,62vw,740px);
  opacity:0;pointer-events:none;transition:opacity .8s ease}
.burst__slide.is-active{opacity:1;pointer-events:auto;z-index:2}
.burst__media{display:flex;flex-direction:row-reverse;
  align-items:center;justify-content:center;gap:0;width:100%;
  min-height:clamp(320px,40vw,480px);
  /* nudge the product + bowl up a little */
  margin-top:clamp(-56px,-4vw,-28px)}
/* per-product name + slogan — centred on the page, waves in on each slide */
.burst__caption{align-self:center;text-align:center;max-width:min(92%,900px);margin-inline:auto;
  padding-top:clamp(12px,2vw,28px);position:relative;z-index:4}
.burst__caption .burst__line{padding:0;max-width:none;margin-inline:auto}
.burst__caption .burst__line + .burst__line{margin-top:-56px}
.burst__caption .burst__my{padding:0;max-width:none}
/* per-letter water ripple: each glyph is a .wletter tspan whose dy is driven
   by a travelling sine wave in JS (see js/script.js). Kept on the #ccWave path. */
.burst__name{font-family:"DM Sans",sans-serif;font-weight:800;color:var(--gold);
  font-size:clamp(16px,1.6vw,22px);letter-spacing:.04em;text-transform:uppercase;
  margin:0 0 6px}

/* dish (right) & tilted pack (left) — bigger, tucked closer (slight overlap).
   max-height caps them so they always fit the stage and never get clipped. */
.burst__dish{flex:none;width:auto;height:auto;
  max-width:min(420px,42%);max-height:clamp(280px,36vw,420px);
  z-index:3;margin-left:-4%;filter:drop-shadow(0 26px 30px rgba(31,26,110,.24))}
.burst__pack{flex:none;width:auto;height:auto;
  max-width:min(620px,60%);max-height:clamp(320px,40vw,460px);
  z-index:2;filter:drop-shadow(0 24px 28px rgba(31,26,110,.26))}

/* ── Nissin-style image transition ──────────────────────────────
   images swoop in from the right, settle into a slight fan, swoop
   out to the left. Same easing as nissinfoods.com (.item-img-wrap). */
.burst__dish,.burst__pack{will-change:transform,opacity;
  transition:transform 1.3s cubic-bezier(.36,.1,0,1),opacity .8s ease}
/* settled — active slide */
.burst__slide.is-active .burst__pack{transform:rotate(-9deg) translate3d(0,0,0) scale(1);opacity:1}
.burst__slide.is-active .burst__dish{transform:rotate(5deg) translate3d(0,0,0) scale(1);opacity:1}
/* incoming — parked off to the right */
.burst__slide.is-next .burst__pack{transform:rotate(22deg) translate3d(150%,0,0) scale(.6);opacity:0}
.burst__slide.is-next .burst__dish{transform:rotate(28deg) translate3d(175%,0,0) scale(.6);opacity:0}
/* outgoing — flown off to the left */
.burst__slide.is-prev .burst__pack{transform:rotate(-34deg) translate3d(-160%,0,0) scale(.6);opacity:0}
.burst__slide.is-prev .burst__dish{transform:rotate(-26deg) translate3d(-150%,0,0) scale(.6);opacity:0}

/* arrows — grouped at the top-right of the stage */
.burst__nav{position:absolute;top:0;right:0;z-index:6;display:flex;gap:10px}
.burst__arrow{width:46px!important;height:46px!important;border-radius:50%!important;border:1px solid var(--line)!important;background:#fff!important;
  display:grid!important;place-items:center;cursor:pointer;color:var(--cci-blue)!important;
  box-shadow:var(--shadow-sm)!important;transition:background .2s,color .2s,transform .2s!important;padding: 6px !important;}
.burst__arrow:hover{background:var(--cci-blue)!important;color:#fff!important;transform:scale(1.07)!important;}
.burst__arrow svg{width:22px!important;height:22px!important;fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round}

/* dots */
.burst__dots{position:absolute;bottom:0;left:50%;transform:translateX(-50%);z-index:5;
  display:flex;gap:8px}
.burst__dots button{width:9px;height:9px;border-radius:50%;border:0;padding:0;cursor:pointer;
  background:var(--gold-soft);opacity:.5;transition:.2s}
.burst__dots button.is-active{opacity:1;background:var(--gold);transform:scale(1.15)}

/* ============================================================
   BRANDS — image cards with white gradient
   ============================================================ */
/* section background — soft sachet-coloured glows so it isn't flat & empty */
/* content block centred in the section — equal, generous space above the
   heading and below the category chips (symmetric padding, all screens) */
.brands{position:relative;overflow:hidden;padding-block:140px}
.brands > .wrap{position:relative;z-index:1}
/* scattered burst-style accents — wavy lines, dots, ring (positions differ from burst) */
.brands__decor{position:absolute;inset:0;z-index:0;pointer-events:none}
.bdec{position:absolute}
.bdec--wave1,.bdec--wave2{background-repeat:no-repeat;background-position:center;background-size:contain}
.bdec--wave1{left:2.5%;top:12%;width:clamp(80px,9vw,132px);height:clamp(44px,5vw,72px);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M14 20H126'/%3E%3Cpath d='M14 42H126'/%3E%3Cpath d='M14 64H126'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 7.5s ease-in-out infinite}
.bdec--wave2{right:1.5%;top:45%;width:clamp(80px,9vw,132px);height:clamp(44px,5vw,72px);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 78'%3E%3Cg fill='none' stroke='%231f1a6e' stroke-width='6' stroke-linecap='round'%3E%3Cpath d='M14 20H126'/%3E%3Cpath d='M14 42H126'/%3E%3Cpath d='M14 64H126'/%3E%3C/g%3E%3C/svg%3E");
  animation:bdFloat 8.5s ease-in-out infinite reverse}
/* width/height are exact multiples of the 17px grid so no dot column/row is clipped;
   moved further in from the edge to clear the scrollbar */
.bdec--dots{right:5%;top:8%;width:119px;height:85px;
  background-image:radial-gradient(var(--cci-blue) 2.2px,transparent 2.4px);
  background-size:17px 17px;background-position:0 0;
  opacity:.45;animation:bdPulse 5.5s ease-in-out infinite}
.bdec--ring{right:7%;bottom:14%;width:clamp(34px,4vw,58px);height:clamp(34px,4vw,58px);
  border:6px solid var(--gold-soft);border-radius:50%;animation:bdRing 6.5s ease-in-out infinite}
.brands::before{content:"";position:absolute;z-index:0;pointer-events:none;
  left:-150px;top:-100px;width:440px;height:440px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(201,162,39,.14),transparent 72%)}
.brands::after{content:"";position:absolute;z-index:0;pointer-events:none;
  right:-170px;bottom:-130px;width:500px;height:500px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(31,26,110,.10),transparent 72%)}
.brand-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.bcard{position:relative;border-radius:var(--r);overflow:hidden;min-height:460px;
  box-shadow:var(--shadow-sm);border:1px solid var(--line);display:flex;
  flex-direction:column;justify-content:flex-end;background:var(--tint);transition:.3s}
.bcard__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  transition:transform .5s ease}
.bcard::after{content:"";position:absolute;inset:0;z-index:1;background:
  linear-gradient(to top,#fff 30%,rgba(255,255,255,.86) 44%,rgba(255,255,255,.30) 60%,rgba(255,255,255,0) 78%)}
.bcard:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--brand)}
.bcard:hover .bcard__bg{transform:scale(1.05)}
.bcard__logo{position:absolute;left:0;right:0;top:0;height:60%;z-index:2;
  display:flex;align-items:center;justify-content:center;padding:30px 34px;pointer-events:none}
.bcard__logo img{max-width:78%;max-height:118px;width:auto;height:auto;object-fit:contain;
  filter:drop-shadow(0 10px 22px rgba(20,16,79,.22))}
.bcard__logo--white img{filter:brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0,0,0,.4))}
.bcard__body{position:relative;z-index:2;padding:26px;display:flex;flex-direction:column;gap:9px;
  /* lock title/description/button to the same level across both cards */
  min-height:214px}
.bcard__tag{font-family:"DM Sans",sans-serif;font-weight:600;font-size:12px;
  letter-spacing:.1em;text-transform:uppercase;width:max-content;
  padding:5px 12px;border-radius:100px}
.bcard h3{font-size:24px;margin:2px 0}
.bcard p{color:var(--ink-soft);font-size:16px;margin:0 0 8px}
/* brand cards — gold (Cho's Kitchen) & blue (Shin Shin) */
.bcard--gold{--brand:var(--gold)}
.bcard--blue{--brand:var(--cci-blue)}
.bcard--dna{--brand:var(--gold)}
.bcard__tag{background:color-mix(in srgb,var(--brand,var(--cci-blue)) 13%,#fff);
  color:var(--brand,var(--cci-blue))}
.bcard__body .link-arrow{color:var(--brand,var(--cci-blue));margin-top:auto}
.bcard__body .link-arrow::after{background:var(--brand,var(--cci-blue))}
.soon{position:absolute;top:16px;right:16px;z-index:3;background:var(--cci-blue);color:#fff;
  font-family:"DM Sans",sans-serif;font-weight:600;font-size:12px;padding:6px 13px;border-radius:100px}

.cats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:48px}
.cat{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-sm);padding:18px 20px;font-family:"DM Sans",sans-serif;
  font-weight:600;font-size:16px;transition:.2s}
.cat:hover{border-color:var(--cci-blue-500);color:var(--cci-blue);transform:translateY(-3px)}
.cat .ic{color:var(--cci-blue-500);width:26px;height:26px}

/* ============================================================
   MANUFACTURING
   ============================================================ */
.mfg{background:var(--cci-blue);color:#fff}
.mfg__grid{display:grid;grid-template-columns:1fr 1.05fr;gap:72px;align-items:center}
.mfg__media img{width:100%;height:500px;object-fit:cover;border-radius:var(--r);box-shadow:var(--shadow)}
.mfg__lead{color:rgba(255,255,255,.86);font-size:16px;margin:0 0 30px}
.mfg__feats{display:grid;grid-template-columns:1fr 1fr;gap:22px 28px;margin-bottom:30px}
.feat{display:flex;gap:14px;align-items:flex-start}
.feat .ic{color:var(--cci-yellow);width:26px;height:26px;margin-top:2px}
.feat strong{display:block;font-family:"DM Sans",sans-serif;font-size:16px}
.feat span{color:rgba(255,255,255,.78);font-size:14px}

/* ============================================================
   EXPORT
   ============================================================ */
.export__grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.export__text p{color:var(--ink-soft);font-size:16px;margin:0 0 24px}
.chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px}
.chip{background:#fff;border:1px solid var(--line);border-radius:100px;padding:9px 16px;
  font-size:14px;font-family:"DM Sans",sans-serif;font-weight:500}
.export__media{position:relative;border-radius:var(--r);overflow:hidden;min-height:360px;
  background:#fff;border:1px solid var(--line)}
.export__media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.export__media--ph{background:radial-gradient(circle at 30% 40%,var(--cci-blue-50),#fff 70%)}
.export__pins{position:absolute;inset:0}
.pin{position:absolute;left:var(--x);top:var(--y);width:12px;height:12px;border-radius:50%;
  background:var(--cci-blue-500);box-shadow:0 0 0 0 rgba(63,127,214,.5)}
.pin--home{background:var(--gold);width:15px;height:15px;animation:ping 2s infinite}
@keyframes ping{0%{box-shadow:0 0 0 0 rgba(201,162,39,.5)}70%{box-shadow:0 0 0 16px rgba(201,162,39,0)}100%{box-shadow:0 0 0 0 rgba(201,162,39,0)}}

/* ============================================================
   INNOVATION
   ============================================================ */
.innov__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.icard{background:var(--cci-blue-50);border-radius:var(--r);padding:32px 30px;transition:.25s}
.icard:nth-child(2){background:#FFE0D8}
.icard:nth-child(3){background:#fff9d6}
.icard:hover{transform:translateY(-6px);box-shadow:var(--shadow-sm)}
.icard__ic{display:inline-flex;width:54px;height:54px;border-radius:16px;background:#fff;
  align-items:center;justify-content:center;margin-bottom:16px;box-shadow:var(--shadow-sm)}
.icard__ic svg{width:26px;height:26px;fill:none;stroke:var(--cci-blue);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.icard:nth-child(2) .icard__ic svg{stroke:#F35235}
.icard:nth-child(3) .icard__ic svg{stroke:var(--gold)}
.icard h3{font-size:20px;margin-bottom:8px}
.icard p{color:var(--ink-soft);font-size:16px;margin:0}
/* section is exactly one screen; the bowl fills the leftover space below the cards */
.innov{position:relative;overflow:hidden;height:100vh;min-height:640px;
  display:flex;flex-direction:column;padding:108px 0 0}
.innov > .wrap{position:relative;z-index:2;flex:none}
.innov .center-head{margin-bottom:22px}
/* bowl enlarged, sits close under the cards and is cropped by the section's bottom edge */
.innov__bowl{position:relative;z-index:2;flex:none;align-self:center;margin-top:72px;
  width:min(760px,60%);height:auto;object-fit:cover;object-position:top center;
  filter:drop-shadow(0 -8px 26px rgba(31,26,110,.1))}
/* chives — smaller pieces kept to the side edges, gently spilling inward then fading out */
.innov__chive{position:absolute;top:0;bottom:0;z-index:1;width:min(22%,300px);
  background-image:url('../assets/images/chive.webp');background-repeat:repeat-y;
  background-size:auto 64%;opacity:.78;pointer-events:none}
.innov__chive--l{left:0;background-position:left center;
  -webkit-mask-image:linear-gradient(to right,#000 0%,#000 40%,transparent 100%);
          mask-image:linear-gradient(to right,#000 0%,#000 40%,transparent 100%)}
.innov__chive--r{right:0;background-position:right center;transform:scaleX(-1);
  -webkit-mask-image:linear-gradient(to right,#000 0%,#000 40%,transparent 100%);
          mask-image:linear-gradient(to right,#000 0%,#000 40%,transparent 100%)}

/* ============================================================
   CSR
   ============================================================ */
.csr__grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:72px;align-items:center}
.csr__media img{width:100%;height:480px;object-fit:cover;border-radius:var(--r);box-shadow:var(--shadow)}
.csr__text p{color:var(--ink-soft);font-size:16px;margin:0 0 26px}
.csr__items{display:flex;flex-direction:column;gap:18px;margin-bottom:26px}
.csr__item{display:flex;gap:14px;align-items:flex-start}
.csr__item .ic{color:var(--cci-blue-500);width:26px;height:26px;margin-top:2px}
.csr__item strong{display:block;font-family:"DM Sans",sans-serif;font-size:16px}
.csr__item span{color:var(--ink-soft);font-size:14px}

/* ============================================================
   NEWS
   ============================================================ */
.news__head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:44px;gap:24px}
.news__head .h2{margin-bottom:0}
.news__grid{display:grid;grid-template-columns:repeat(3,1fr)!important;gap:28px}
.ncard{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  display:flex;flex-direction:column;transition:.25s}
.ncard:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.ncard__media{display:block;height:200px;overflow:hidden}
.ncard__media img{width:100%;height:100%!important;object-fit:cover;transition:.4s}
.ncard__media img.ph,.ncard__media .ph{background:linear-gradient(135deg,var(--cci-blue-50),var(--tint))}
.ncard:hover .ncard__media img{transform:scale(1.05)}
.ncard__body{padding:24px;display:flex;flex-direction:column;gap:8px;flex:1}
.ncard__meta{font-size:14px;color:var(--silver);display:flex;align-items:center;gap:8px}
.tag{font-family:"DM Sans",sans-serif;font-weight:600;font-size:12px;letter-spacing:.06em;
  text-transform:uppercase;padding:4px 10px;border-radius:100px}
.tag--blue{background:var(--cci-blue-50);color:var(--cci-blue)}
.tag--gold{background:#f7eecb;color:var(--gold)}
.tag--yellow{background:#fbf3b0;color:#8a7400}
.ncard h3{font-size:18px;line-height:1.3}
.ncard h3 a:hover{color:var(--cci-blue)}
.ncard p{color:var(--ink-soft);font-size:14px;margin:0;flex:1}
.ncard .link-arrow{margin-top:6px}

/* ============================================================
   CONTACT
   ============================================================ */
/* dark contact section */
.contact--dark{background:var(--cci-blue);color:#fff}
.contact--dark .eyebrow{color:var(--gold-soft)}
.contact--dark .h2{color:#fff}
.contact--dark .ink-blue{color:var(--gold-soft)}
.contact--dark .contact__info p{color:rgba(255,255,255,.78)}
.contact--dark .contact__list .ic{color:var(--gold-soft)}
.contact--dark .contact__list span{color:rgba(255,255,255,.78)}
.contact--dark .contact__social a{background:rgba(255,255,255,.12)}
.contact--dark .contact__social a:hover{background:rgba(255,255,255,.24)}
.contact--dark .contact__form{color:var(--ink)}
.contact--dark .contact__form label{color:var(--ink)}
.contact__grid{display:grid;grid-template-columns:1fr 1.1fr;gap:72px;align-items:start}
.contact__info p{color:var(--ink-soft);margin:0 0 24px}
.contact__list{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:18px}
.contact__list li{display:flex;gap:14px;align-items:flex-start}
.contact__list .ic{color:var(--cci-blue-500);margin-top:2px}
.contact__list span{color:var(--ink-soft);font-size:16px}
.contact__social{display:flex;gap:12px}
.contact__social a{width:42px;height:42px;border-radius:12px;background:var(--cci-blue);
  display:flex;align-items:center;justify-content:center;transition:.2s}
.contact__social a:hover{background:var(--cci-blue-700);transform:translateY(-2px)}
.contact__social svg{width:20px;height:20px;fill:#fff}
.contact__social .ig{fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.contact__social .ig .dot{fill:#fff;stroke:none}
.contact__social--foot a{background:var(--cci-blue)}
.contact__social--foot a:hover{background:var(--cci-blue-700)}

.contact__form{background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:36px;box-shadow:var(--shadow-sm)}
.field{margin-bottom:18px;display:flex;flex-direction:column}
.field p{margin-bottom:0px;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field label{font-family:"DM Sans",sans-serif;font-weight:600;font-size:14px;margin-bottom:7px}
.field label em{color:var(--danger);font-style:normal}
.field input,.field select,.field textarea{
  font-family:"Roboto",sans-serif;font-size:16px;padding:12px 14px!important;border:1px solid var(--line)!important;
  border-radius:10px!important;background-color:var(--tint)!important;transition:.15s!important;width:100%!important;color:var(--ink)}
.field input:focus,.field select:focus,.field textarea:focus{
  outline: none !important;border-color:var(--cci-blue)!important;background-color:#fff!important;box-shadow:0 0 0 3px var(--cci-blue-50)!important;}
.field textarea{resize:vertical}
/* custom-styled select — matches the country-code dropdown & navbar style */
.field select{
  appearance:none;-webkit-appearance:none;-moz-appearance:none;cursor:pointer;padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2354545e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:11px 7px}
.field select:hover{border-color:var(--cci-blue-500)}
.phone-row{display:grid;grid-template-columns:auto 1fr;gap:10px;align-items:stretch}
/* custom country-code dropdown — styled like the navbar dropdowns */
.ccdrop{position:relative}
.ccdrop__btn{display:flex;align-items:center;gap:7px;height:100%;min-height:46px;
  padding:10px 13px;border:1px solid var(--line);border-radius:10px;background:var(--tint);
  font-family:"DM Sans",sans-serif;font-weight:600;font-size:16px;color:var(--ink);
  cursor:pointer;transition:.15s;white-space:nowrap}
.ccdrop__btn:hover{border-color:var(--cci-blue-500)}
.ccdrop.is-open .ccdrop__btn{border-color:var(--cci-blue);background:#fff;box-shadow:0 0 0 3px var(--cci-blue-50)}
.ccdrop__flag{font-size:18px;line-height:1}
.ccdrop__btn .caret{width:9px;height:6px;fill:none;stroke:var(--ink-soft);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;transition:transform .2s;margin-left:1px}
.ccdrop.is-open .ccdrop__btn .caret{transform:rotate(180deg)}
.ccdrop__list{position:absolute;top:calc(100% + 8px);left:0;z-index:30;width:288px;max-height:296px;
  overflow-y:auto;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);
  padding:8px;margin:0;list-style:none;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s}
.ccdrop.is-open .ccdrop__list{opacity:1;visibility:visible;transform:translateY(0)}
.ccdrop__list li{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:9px;
  font-size:14px;color:var(--ink-soft);cursor:pointer;transition:.12s}
.ccdrop__list li:hover,.ccdrop__list li.is-active{background:var(--cci-blue-50);color:var(--cci-blue)}
.ccdrop__list li .flag{font-size:20px;line-height:1;flex:none}
.ccdrop__list li .nm{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ccdrop__list li .cd{font-family:"DM Sans",sans-serif;font-weight:600;color:var(--ink)}
.ccdrop__list li.is-active .cd{color:var(--cci-blue)}
.err{color:var(--danger);font-size:12px;margin-top:5px;display:none}
.field.invalid .err{display:block}
.field.invalid input,.field.invalid textarea{border-color:var(--danger)}
.form-ok{background:var(--cci-blue-50);color:var(--cci-blue);border-radius:10px;padding:14px 16px;
  margin:14px 0 0;font-size:14px;font-weight:500}

/* ============================================================
   FOOTER
   ============================================================ */
.foot{background:var(--tint);color:var(--ink-soft);padding:80px 0 0}
.foot__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:52px;
  max-width:var(--wrap);margin:0 auto;padding-left:var(--pad);padding-right:var(--pad)}
.foot__logo{height:46px;width:auto;margin-bottom:18px}
.foot__logo-fallback{display:none;font-family:"DM Sans",sans-serif;font-weight:700;
  font-size:28px;color:var(--cci-blue);margin-bottom:18px}
.foot__brand p{font-size:16px;max-width:320px;margin:0 0 20px}
.foot__col h4{font-family:"DM Sans",sans-serif;color:var(--ink);font-size:16px;margin-bottom:16px}
.foot__col a{display:block;padding:6px 0;font-size:14px;transition:.15s}
.foot__col a:hover{color:var(--cci-blue)}
.foot__bar{border-top:1px solid var(--line);padding:22px 0;
  display:flex;justify-content:space-between;font-size:14px;
  max-width:var(--wrap);margin:0 auto;padding-left:var(--pad);padding-right:var(--pad);flex-wrap:wrap;gap:10px}
.foot__legal{display:flex;gap:18px}
.foot__legal a:hover{color:var(--cci-blue)}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px){
  .nav__menu{display:none}
  .nav__burger{display:flex}
  /* mobile top bar: logo left, hamburger right; language switch lives in the drawer */
  .nav__right{margin-left:auto}
  .nav__right .lang{display:none}
  /* shift the hero photo so more of the noodle bowl shows on mobile */
  .hero__bg{object-position:20% center}
  .hero{min-height:600px;align-items:flex-start}
  .hero__inner{justify-content:flex-start;padding-top:108px;padding-bottom:52px}
  .hero__panel-inner{max-width:600px}
  .hero__badge{left:var(--pad);top:24px}
  .hero__tint{background:linear-gradient(to top,rgba(53,49,40,.92) 0%,rgba(53,49,40,.5) 60%,rgba(53,49,40,.35) 100%)}
  .hero__scroll{display:none}
  .about__grid,.mfg__grid,.export__grid,.csr__grid,.contact__grid{
    grid-template-columns:1fr;gap:44px}
  .mfg__feats{grid-template-columns:1fr 1fr}
  .brand-cards,.innov__grid,.news__grid{grid-template-columns:1fr 1fr!important;}
  .cats{grid-template-columns:1fr 1fr}
  .foot__grid{grid-template-columns:1fr 1fr}
  .about__media img,.mfg__media img,.csr__media img{height:400px}
  .bcard--dna{grid-column:span 2}
}
@media (max-width:720px){
  :root{--pad:22px}
  .section{padding:68px 0}
  /* brands: normal mobile spacing */
  .brands{padding-block:68px}
  .stats{grid-template-columns:1fr;gap:32px 16px}
  .brand-cards,.innov__grid,.news__grid,.cats,.pillars,.mfg__feats,.field-row,.about__vm{grid-template-columns:1fr!important;}
  .bcard--dna{grid-column:auto}
  .bcard{min-height:400px}
  .news__head{flex-direction:column;align-items:flex-start;gap:8px}
  .about__badge{right:14px;top:14px;padding:14px 18px}
  .foot__grid{grid-template-columns:1fr;gap:30px}
  /* hide decor blocks that overlap the caption / arrows on small screens */
  .bd--dots,.bd--ring,.bd--orange,.bd--gold{display:none}
  /* brands: keep only the subtle waves on mobile, hide the heavier accents */
  .bdec--dots,.bdec--ring,.bdec--wave2{display:none}
  .bd--stage{height:min(440px,74%)}
  /* mobile: slogan sits BELOW the product images */
  .burst__slide{justify-content:center}
  .burst__media{gap:14px;min-height:clamp(230px,72vw,330px);order:1}
  .burst__caption{max-width:64%;order:2;padding-top:0;margin-top:8px}
  /* 2-line slogans: the desktop -56px overlap is too much for the small,
     shorter SVG lines on mobile — tighten it to a readable gap */
  .burst__caption .burst__line + .burst__line{margin-top:-4px}
  .burst__dish{width:min(150px,38%)}
  .burst__pack{width:min(210px,52%)}
  /* keep stage / viewport / slide the same height so images aren't clipped */
  .burst__stage,.burst__viewport,.burst__slide{min-height:clamp(440px,118vw,560px)}
  .burst__slide{gap:12px}
  .burst__arrow{width:38px!important;height:38px!important;}
  .burst__arrow svg{width:18px!important;height:18px!important}
  .h2--oneline{white-space:normal}
  /* hero product: tiny, tucked top-right so it clears the hero text */
  .hero__product{left:auto;right:10px;bottom:auto;top:84px;
    width:clamp(88px,26vw,120px);height:clamp(88px,26vw,120px)}
  /* hero CTAs: stack full-width so both buttons are equal */
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%}
  /* innovation: more breathing room above the heading, balanced with the section's bottom space */
  .innov{height:auto;min-height:0;padding:52px 0 52px}
  /* mobile: show the whole bowl (no crop) */
  .innov__bowl{flex:none;margin:16px auto 0;width:min(420px,88%);aspect-ratio:auto;height:auto;object-fit:contain}
  .innov__chive{width:26%;background-size:auto 60%;opacity:.5}
  .ccdrop__list{width:min(280px,80vw)}
  @keyframes floatPackSm{0%,100%{transform:translateY(0) rotate(-12deg)}
    50%{transform:translateY(-8px) rotate(-12deg)}}
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important;transition:none!important}
}
